:root {
  --bg-dark: #05070a;
  --bg-card: #11151c;
  --accent: #c79a3b;
  --accent-soft: rgba(199, 154, 59, 0.15);
  --text-main: #f7f7f7;
  --text-muted: #a5b0c2;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.5);
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1a2535 0, #05070a 55%, #000 100%);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.1rem;
}

/* HEADER */

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(5, 7, 10, 0.96),
    rgba(5, 7, 10, 0.86),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  gap: 0.6rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffe8a3, #b52a3a);
  box-shadow: 0 0 12px rgba(181, 42, 58, 0.65);
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 0.82rem;
}

.logo-text span:first-child {
  font-weight: 600;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--accent);
}

.logo-text span:last-child {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.7rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
}

.nav-links a {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  color: var(--text-muted);
  transition: 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.nav-cta {
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  border: none;
  background: linear-gradient(135deg, var(--accent), #f1c870);
  color: #1a1308;
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.65);
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.15s ease;
}

.nav-cta span.emoji {
  font-size: 0.95rem;
}

.nav-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.8);
}

/* HERO */

.hero {
  padding: 1.8rem 0 2.3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr);
  gap: 1.8rem;
}

@media (min-width: 800px) {
  .hero {
    padding: 2.6rem 0 3.2rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: center;
    gap: 2.6rem;
  }
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}

.hero-badge {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.6);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle, #7fffd4, #32cd32);
  box-shadow: 0 0 8px #32cd32;
}

.hero-kicker {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-title {
  font-size: 1.7rem;
  line-height: 1.15;
  margin-bottom: 0.7rem;
  font-weight: 600;
}

@media (min-width: 700px) {
  .hero-title {
    font-size: 2.3rem;
  }
}

.hero-title span.highlight {
  background: linear-gradient(120deg, #f7f7f7, #f1c870, #b52a3a);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 1.4rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.3rem;
}

.btn-primary {
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  background: radial-gradient(circle at 0 0, #f1c870, #b52a3a);
  color: #190e0e;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
}

.btn-ghost {
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-size: 0.86rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.4);
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: 0.15s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, #1e2634, #070910);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 55%);
  opacity: 0.85;
  pointer-events: none;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 0.9rem;
}

.hero-card-title {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-card-subtitle {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.hero-chip {
  font-size: 0.7rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.hero-chip span.pulse {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, #7fffd4, #32cd32);
  box-shadow: 0 0 12px #32cd32;
}

.hero-card-main {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.2), rgba(3, 5, 10, 0.9));
  padding: 0.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 0.75rem;
}

@media (max-width: 480px) {
  .hero-card-main {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-card-scene {
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
  min-height: 140px;

  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform-origin: center;
  transition: transform 0.5s ease;
}

.hero-card-scene-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.55rem 0.7rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  font-size: 0.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-main);
}

.hero-card-pills {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.76rem;
}

.pill {
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: space-between;
}

.pill span.label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-muted);
}

.pill span.value {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.78rem;
}

.hero-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hero-card-tagline {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-card-cta {
  border-radius: 999px;
  border: none;
  padding: 0.5rem 0.9rem;
  font-size: 0.76rem;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: 0.15s ease;
}

.hero-card-cta:hover {
  background: rgba(199, 154, 59, 0.25);
}

/* SECȚIUNI GENERALE */

section {
  padding: 1.4rem 0 0.8rem;
}

section + section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section-header {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.section-title {
  font-size: 1rem;
  font-weight: 600;
}

.section-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* FADE-IN */

.fade-section {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* EXPERIENȚE */

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
}

@media (min-width: 720px) {
  .experience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  border-radius: var(--radius-md);
  background: radial-gradient(circle at top left, #171c26, #080a10);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.8rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover::after {
  opacity: 1;
}

.card-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.card-title {
  font-size: 0.88rem;
  font-weight: 600;
}

.card-text {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.3rem;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.card-meta strong {
  color: var(--accent);
}

/* PACHETE */

.packages-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
}

@media (min-width: 720px) {
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.package {
  border-radius: var(--radius-md);
  background: radial-gradient(circle at top, #191f2c, #090b10);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.85rem;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.package-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.package-label {
  font-size: 0.7rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--accent);
}

.package-price {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--accent);
}

.package-list {
  list-style: none;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.package-list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.35rem;
}

.package-footer {
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.74rem;
  color: var(--text-muted);
}

.package-footer button {
  border-radius: 999px;
  border: none;
  padding: 0.4rem 0.85rem;
  font-size: 0.76rem;
  background: rgba(199, 154, 59, 0.16);
  color: var(--accent);
  cursor: pointer;
  transition: 0.15s ease;
}

.package-footer button:hover {
  background: rgba(199, 154, 59, 0.26);
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
}

@media (min-width: 720px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}

.contact-card {
  border-radius: var(--radius-md);
  background: radial-gradient(circle at top left, #171c26, #080a10);
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-row span.label {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.contact-row span.value {
  font-size: 0.84rem;
  font-weight: 500;
}

.contact-note {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* CHAT-BOT ÎN CONTACT */

.chat-contact {
  align-items: stretch;
}

.chat-panel {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

/* header chat */

.chat-panel-header {
  padding: 0.55rem 0.8rem;
  background: linear-gradient(135deg, #f1c870, #b52a3a);
  color: #1a1308;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.chat-panel-header-main {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.chat-panel-title {
  font-size: 0.82rem;
  font-weight: 600;
}

.chat-panel-subtitle {
  font-size: 0.72rem;
  opacity: 0.9;
}

/* mesaje */

.chat-panel-messages {
  padding: 0.5rem;
  flex: 1;
  min-height: 190px;
  max-height: 260px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: #f0f2f5;
  font-size: 0.8rem;
  color: #111827;
}

.chat-panel-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-panel-messages::-webkit-scrollbar-thumb {
  background: rgba(156, 163, 175, 0.7);
  border-radius: 999px;
}

.msg {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
}

.msg-bot {
  justify-content: flex-start;
}

.msg-user {
  justify-content: flex-end;
}

.msg-avatar {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f1c870, #b52a3a);
  color: #1a1308;
  font-size: 0.68rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.msg-bubble {
  max-width: 98%;
  padding: 0.35rem 0.6rem;
  border-radius: 16px;
  line-height: 1.4;
}

.msg-bot .msg-bubble {
  background: #ffffff;
  border-bottom-left-radius: 4px;
  border: 1px solid #e5e7eb;
}

.msg-user .msg-bubble {
  background: linear-gradient(135deg, #f1c870, #b52a3a);
  color: #1a1308;
  border-bottom-right-radius: 4px;
  box-shadow: 0 6px 18px rgba(181, 42, 58, 0.4);
}

/* typing bubble – gold + red */

.msg-typing .msg-bubble {
  background: linear-gradient(135deg, #f1c870, #b52a3a);
  color: #1a1308;
  border-radius: 16px;
  padding: 0.4rem 0.6rem;
  width: 52px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(181, 42, 58, 0.4);
}

/* 3 puncte animate */

.typing-dots {
  display: inline-flex;
  gap: 3px;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  background: #1a1308;
  border-radius: 999px;
  animation: pulse 1s infinite ease-in-out;
  opacity: 0.6;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes pulse {
  0%   { transform: translateY(0); opacity: 0.6; }
  50%  { transform: translateY(-3px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.6; }
}

/* input chat */

.chat-panel-input {
  display: flex;
  padding: 0.45rem 0.5rem 0.5rem;
  gap: 0.35rem;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
}

.chat-panel-input input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  outline: none;
}

.chat-panel-input input:focus {
  border-color: #b52a3a;
  box-shadow: 0 0 0 1px rgba(181, 42, 58, 0.3);
}

/* buton trimite – gold + red */

.chat-panel-input button {
  border: none;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  color: #1a1308;
  background: linear-gradient(135deg, #f1c870, #b52a3a);
  box-shadow: 0 8px 20px rgba(181, 42, 58, 0.35),
              0 0 6px rgba(241, 200, 112, 0.45);
  transition: 0.18s ease-in-out;
}

.chat-panel-input button:hover {
  filter: brightness(1.05);
  box-shadow: 0 10px 26px rgba(181, 42, 58, 0.55),
              0 0 10px rgba(241, 200, 112, 0.7);
}

.chat-panel-input button:active {
  transform: scale(0.96);
  box-shadow: 0 5px 16px rgba(181, 42, 58, 0.5);
}

@media (max-width: 720px) {
  .chat-panel-messages {
    min-height: 87%;
    max-height: 460px;
  }
}

/* FOOTER */

footer {
  padding: 1.6rem 0 1.2rem;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}

/* MENIU MOBIL JOS */

.mobile-nav {
  position: fixed;
  inset: auto 0 14px 0;
  display: none;
  z-index: 30;
  pointer-events: none;
  justify-content: center;
}

.mobile-nav::before {
  content: "";
  position: fixed;
  inset: auto 0 0 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  z-index: -1;
}

.mobile-nav-inner {
  pointer-events: auto;
  display: flex;
  width: 100%;
  max-width: 520px;
  padding: 0 1rem;
  gap: 0.35rem;
}

.mobile-nav-item {
  flex: 1;
  height: 56px;
  background: rgba(10, 12, 18, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  font-size: 0.67rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: 0.18s ease;
}

.mobile-nav-item .icon {
  font-size: 1.1rem;
  line-height: 1;
}

.mobile-nav-item .label {
  line-height: 1;
}

.mobile-nav-item.is-active {
  color: var(--accent);
  background: radial-gradient(circle at top, rgba(199, 154, 59, 0.2), rgba(10, 12, 18, 0.96));
  border-color: rgba(199, 154, 59, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.95);
}

.mobile-nav-item:active:not(.main-cta):not(.is-active) {
  transform: translateY(1px);
  background: rgba(255, 255, 255, 0.04);
}

.mobile-nav-item.main-cta {
  position: relative;
  background: none;
  border: none;
  box-shadow: none;
}

.main-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #f1c870, #b52a3a);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
  border: 2px solid rgba(20, 10, 4, 0.8);
  transform: translateY(-4px);
  transition: 0.16s ease;
}

.mobile-nav-item.main-cta .icon {
  font-size: 1.35rem;
}

.mobile-nav-item.main-cta .label {
  margin-top: 0.05rem;
  font-size: 0.65rem;
  color: var(--accent);
}

.mobile-nav-item.main-cta:active .main-cta-inner,
.mobile-nav-item.main-cta.is-active .main-cta-inner {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 1);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  main {
    padding-bottom: 4.8rem;
  }

  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.86rem;
  }
}
.msg-bubble {
  white-space: pre-wrap;   /* păstrează \n din PHP / GPT */
}
/* FORM CARD */
.form-card {
  max-width: 820px;
  margin: 0 auto 3rem;
  background: #0c0f16;
  padding: 1.5rem 1.3rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 18px 40px rgba(0,0,0,0.7);
}

/* GRID */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field.full {
  grid-column: 1 / 3;
}

/* LABEL */
.form-field label {
  color: #f1c870;
  font-weight: 600;
  font-size: 0.85rem;
}

/* INPUT + TEXTAREA */
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.55rem 0.8rem;
  background: #0f1521;
  border: 1px solid #2c3547;
  border-radius: 10px;
  color: #fff;
  font-size: 0.9rem;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #f1c870;
  box-shadow: 0 0 0 1px #f1c870;
}

/* BUTTON */
.btn-primary {
  background: linear-gradient(135deg, #f1c870, #b52a3a);
  border: none;
  color: #1a1107;
  padding: 0.7rem 1.6rem;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 12px 30px rgba(0,0,0,0.8);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-link {
  text-decoration: none;
  color: #ccc;
  font-size: 0.9rem;
}

.btn-link:hover {
  color: #f1c870;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-field.full {
    grid-column: 1 / 2;
  }
}
