*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --white: #fdfaf8;
  --light: #f5eee9;
  --blush: #e8c4bb;
  --rose: #c4847a;
  --deep-rose: #9e5a52;
  --dark: #2c2320;
  --dark2: #3a2e2a;
  --gray: #9a8a84;
  --font-d: "Cormorant Garamond", serif;
  --font-b: "Jost", sans-serif;
  --tr: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-b);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* NAV */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    background var(--tr),
    box-shadow var(--tr);
}
#navbar.scrolled {
  background: rgba(253, 250, 248, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196, 132, 122, 0.15);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-mark {
  color: var(--rose);
  font-size: 1.2rem;
}
.logo-name {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color var(--tr);
}
.nav-links a:hover {
  color: var(--dark);
}
.nav-cta {
  background: var(--rose) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 30px;
  font-weight: 600 !important;
  transition: background var(--tr) !important;
}
.nav-cta:hover {
  background: var(--deep-rose) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
}
.mobile-menu {
  display: none;
  background: rgba(253, 250, 248, 0.98);
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(196, 132, 122, 0.2);
}
.mobile-menu.open {
  display: block;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.mobile-menu a {
  font-size: 1.05rem;
  color: var(--dark);
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--rose);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition:
    background var(--tr),
    transform var(--tr),
    box-shadow var(--tr);
  font-family: var(--font-b);
}
.btn-primary:hover {
  background: var(--deep-rose);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(196, 132, 122, 0.35);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  border: 1.5px solid rgba(44, 35, 32, 0.25);
  cursor: pointer;
  transition:
    border-color var(--tr),
    color var(--tr),
    transform var(--tr);
  font-family: var(--font-b);
}
.btn-ghost:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-2px);
}
.btn-primary.full,
.btn-ghost.full {
  width: 100%;
  justify-content: center;
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
}
.section-header p {
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* HERO */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 3rem;
  background: var(--white);
  overflow: hidden;
}
.hero-left {
  padding: 4rem 3rem 4rem 5%;
  max-width: 620px;
}
.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  background: rgba(196, 132, 122, 0.1);
  border: 1px solid rgba(196, 132, 122, 0.3);
  padding: 0.35rem 1.1rem;
  border-radius: 20px;
  margin-bottom: 1.75rem;
}
.hero-left h1 {
  font-family: var(--font-d);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--dark);
  font-weight: 600;
}
.hero-left h1 em {
  color: var(--rose);
  font-style: italic;
}
.hero-left p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 420px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.trust-item strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.trust-item span {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 500;
  display: block;
}
.trust-div {
  width: 1px;
  height: 35px;
  background: rgba(44, 35, 32, 0.12);
}
.hero-right {
  background: var(--light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 4rem 2rem;
}
.circle-bg {
  position: absolute;
  border-radius: 50%;
}
.c1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(232, 196, 187, 0.4) 0%,
    transparent 70%
  );
  top: 10%;
  left: 10%;
}
.c2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(196, 132, 122, 0.2) 0%,
    transparent 70%
  );
  bottom: 10%;
  right: 10%;
}
.hero-img-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 60px rgba(44, 35, 32, 0.1);
  text-align: center;
  z-index: 2;
  position: relative;
}
.hi-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
  color: var(--rose);
}
.hi-title {
  font-family: var(--font-d);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark);
}
.hi-sub {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-top: 0.25rem;
}
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 8px 25px rgba(44, 35, 32, 0.1);
  z-index: 3;
  white-space: nowrap;
}
.fc1 {
  top: 20%;
  left: 5%;
  animation: floatCard 3s ease-in-out infinite;
}
.fc2 {
  bottom: 30%;
  right: 5%;
  animation: floatCard 3s ease-in-out infinite 1s;
}
.fc3 {
  bottom: 15%;
  left: 10%;
  animation: floatCard 3s ease-in-out infinite 2s;
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* TICKER */
.ticker-wrap {
  background: var(--rose);
  overflow: hidden;
  padding: 0.85rem 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  font-family: var(--font-d);
  font-size: 1rem;
  color: var(--white);
  font-style: italic;
}
.ticker-track .sep {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* SERVICES */
#services {
  padding: 6rem 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--light);
  border: 1px solid rgba(196, 132, 122, 0.15);
  border-radius: 12px;
  padding: 2.25rem 2rem;
  position: relative;
  transition:
    transform var(--tr),
    box-shadow var(--tr),
    border-color var(--tr);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(196, 132, 122, 0.15);
  border-color: rgba(196, 132, 122, 0.4);
}
.service-card.featured {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.service-card.featured h3 {
  color: var(--white);
}
.service-card.featured p {
  color: rgba(255, 255, 255, 0.65);
}
.feat-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--rose);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
}
.sc-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 {
  font-family: var(--font-d);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.service-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.sc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price {
  font-family: var(--font-d);
  font-size: 1.4rem;
  color: var(--rose);
  font-weight: 600;
}
.service-card.featured .price {
  color: var(--blush);
}
.duration {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 500;
}

/* ABOUT */
#about {
  padding: 6rem 0;
  background: var(--light);
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-img {
  position: relative;
}
.ai-wrapper {
  position: relative;
  padding: 1.5rem;
}
.ai-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(232, 196, 187, 0.3) 0%,
    transparent 70%
  );
  border-radius: 16px;
  border: 1px solid rgba(196, 132, 122, 0.2);
}
.ai-frame {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 20px 60px rgba(44, 35, 32, 0.1);
}
.ai-icon {
  font-size: 5rem;
  color: var(--rose);
}
.ai-name {
  font-family: var(--font-d);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
}
.ai-title {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
}
.cert-card {
  position: absolute;
  bottom: 0;
  right: -1rem;
  background: var(--rose);
  color: var(--white);
  padding: 1.1rem 1.4rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(196, 132, 122, 0.4);
}
.cert-card span {
  font-size: 1.1rem;
}
.cert-card strong {
  display: block;
  font-size: 0.85rem;
}
.cert-card p {
  font-size: 0.75rem;
  margin: 0;
  opacity: 0.85;
}
.about-text .label {
  display: block;
  margin-bottom: 0.75rem;
}
.about-text h2 {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.about-text h2 em {
  color: var(--rose);
}
.about-text .lead {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  color: var(--dark);
}
.about-text p {
  color: var(--gray);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.al-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.al-item span {
  color: var(--rose);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.al-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.al-item p {
  color: var(--gray);
  font-size: 0.85rem;
  margin: 0;
}

/* PROCESS */
#process {
  padding: 6rem 0;
  background: var(--white);
}
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  background: var(--light);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(196, 132, 122, 0.12);
}
.step-num {
  font-family: var(--font-d);
  font-size: 3rem;
  color: rgba(196, 132, 122, 0.2);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.step-content h3 {
  font-family: var(--font-d);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.step-content p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}
.step-arrow {
  color: var(--rose);
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* TESTIMONIALS */
#testimonials {
  padding: 6rem 0;
  background: var(--light);
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.test-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(196, 132, 122, 0.12);
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(196, 132, 122, 0.12);
}
.test-card.featured {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.test-card.featured p {
  color: rgba(255, 255, 255, 0.75);
}
.stars {
  color: #e8c44a;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.test-card p {
  font-family: var(--font-d);
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.tc-client {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.tc-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.a1 {
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
}
.a2 {
  background: linear-gradient(135deg, #b0747a, #8a4a52);
}
.a3 {
  background: linear-gradient(135deg, #9a7490, #7a5470);
}
.tc-client strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
}
.tc-client span {
  font-size: 0.78rem;
  color: var(--gray);
}
.test-card.featured .tc-client strong {
  color: var(--white);
}

/* BOOKING */
#booking {
  padding: 6rem 0;
  background: var(--white);
}
.booking-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.booking-text .label {
  display: block;
  margin-bottom: 0.75rem;
}
.booking-text h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
  font-weight: 600;
}
.booking-text > p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 3rem;
}
.bk-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.bkd {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.bkd > span {
  width: 40px;
  height: 40px;
  background: rgba(196, 132, 122, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.bkd strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.bkd p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}
.booking-form {
  background: var(--light);
  border-radius: 16px;
  padding: 2.5rem;
}
#bookForm {
  display: grid;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.fg label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.fg input,
.fg select,
.fg textarea {
  background: var(--white);
  border: 1px solid rgba(44, 35, 32, 0.12);
  color: var(--dark);
  padding: 0.85rem 1rem;
  font-family: var(--font-b);
  font-size: 0.9rem;
  border-radius: 8px;
  outline: none;
  transition: border-color var(--tr);
  resize: vertical;
}
.fg input::placeholder,
.fg textarea::placeholder {
  color: rgba(44, 35, 32, 0.3);
}
.fg select option {
  background: var(--white);
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--rose);
}
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.success-icon {
  width: 70px;
  height: 70px;
  background: rgba(196, 132, 122, 0.12);
  border: 2px solid var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--rose);
  margin: 0 auto 1.5rem;
}
.form-success h3 {
  font-family: var(--font-d);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.form-success p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

/* FOOTER */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(196, 132, 122, 0.15);
  padding: 5rem 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem 4rem;
}
.fb .logo {
  margin-bottom: 1rem;
}
.fb .logo-name {
  color: var(--white);
}
.fb > p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.socials {
  display: flex;
  gap: 0.75rem;
}
.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray);
  transition:
    border-color var(--tr),
    color var(--tr);
}
.socials a:hover {
  border-color: var(--rose);
  color: var(--rose);
}
.fc h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.25rem;
}
.fc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.fc a {
  color: var(--gray);
  font-size: 0.88rem;
  transition: color var(--tr);
}
.fc a:hover {
  color: var(--white);
}
.hrs li {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.88rem;
  color: var(--gray);
}
.fc p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 0.4rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
}

@media (max-width: 1024px) {
  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-right {
    min-height: 50vh;
  }
  .about-inner,
  .booking-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .test-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    flex-direction: column;
  }
  .step-arrow {
    transform: rotate(90deg);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hero-left {
    padding: 6rem 2rem 2rem;
  }
}

.lang-toggle {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  padding: 2px;
  margin-left: 1rem;
}
.lang-btn {
  border: none;
  background: transparent;
  color: rgba(0, 0, 0, 0.3);
  padding: 3px 7px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  font-family: Jost, sans-serif;
  transition: all 0.2s;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.lang-btn.active {
  background: #d4a0a0;
  color: #fff;
}
.lang-toggle-dark .lang-btn {
  color: rgba(255, 255, 255, 0.4);
}
.lang-toggle-dark .lang-btn.active {
  background: #d4a0a0;
  color: #fff;
}
