/* ===================================================
   Dr.CO-COCO LUXE Beauty — Main Stylesheet
   =================================================== */

/* ---- CSS Custom Properties ---- */
:root {
  --pink: #f72585;
  --pink-light: #ff6ba8;
  --pink-dark: #c5006e;
  --gold: #d4a843;
  --gold-light: #e8c96a;
  --gold-dark: #a67c20;
  --cream: #fdf8f2;
  --cream-dark: #f5ead8;
  --dark: #1a1a2e;
  --dark-mid: #2d2d44;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --white: #ffffff;

  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;

  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-pink: 0 8px 30px rgba(247, 37, 133, 0.3);
  --shadow-gold: 0 8px 30px rgba(212, 168, 67, 0.3);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ---- Utility ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.text-gold {
  color: var(--gold);
}
.text-pink {
  color: var(--pink);
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-pink {
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  color: var(--white);
  box-shadow: var(--shadow-pink);
}
.btn-pink:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(247, 37, 133, 0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 168, 67, 0.5);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ---- Scroll Reveal ---- */
@keyframes revealFallback {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  /* Fallback: if JS never fires, show after 1.5s */
  animation: revealFallback 0.7s ease 1.5s forwards;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(253, 248, 242, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: 80px;
  object-fit: contain;
  transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--pink);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.navbar.scrolled .nav-link {
  color: var(--dark);
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.88rem;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.lang-switcher a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.lang-switcher a:hover {
  color: var(--pink);
}

.lang-switcher a.active {
  color: var(--gold-light);
  font-weight: 700;
}

.navbar.scrolled .lang-switcher {
  color: var(--gray);
}

.navbar.scrolled .lang-switcher a {
  color: var(--gray);
}

.navbar.scrolled .lang-switcher a.active {
  color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span {
  background: var(--dark);
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #1a0d1a 0%,
    #2d1a3e 25%,
    #1a1a2e 50%,
    #2d1323 75%,
    #1a0d0d 100%
  );
  z-index: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(247, 37, 133, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(212, 168, 67, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 60% 80%,
      rgba(247, 37, 133, 0.12) 0%,
      transparent 50%
    );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(26, 13, 26, 0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 120px 24px 80px;
}

.hero-logo-wrap {
  margin-bottom: 32px;
  animation: fadeInDown 1s ease 0.1s both;
}

.hero-center-logo {
  height: 400px;
  width: auto;
  max-width: 90vw;
  object-fit: contain;
  margin: 0 auto;
}

.hero-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  animation: fadeInDown 1s ease 0.2s both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 40px;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 2s infinite;
  box-shadow: 0 0 12px var(--gold);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(12px);
    opacity: 0.4;
  }
}

/* ===================================================
   ABOUT
   =================================================== */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
}

.about-image-frame::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  border-radius: calc(var(--radius) + 2px);
  z-index: -1;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
}

.about-image-frame.img-placeholder {
  background: linear-gradient(135deg, #f8d7e8 0%, #fef3db 50%, #f8d7e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.about-image-frame.img-placeholder::after {
  content: "🌸";
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.badge-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-text {
  padding-right: 20px;
}

.about-desc {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 36px 0;
  padding: 28px;
  background: var(--cream);
  border-radius: var(--radius);
}

.stat-item {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--gold-light),
    transparent
  );
}

/* ===================================================
   SERVICES
   =================================================== */
/* ===================================================
   DETAILED TREATMENT MENU
   =================================================== */
.menu {
  background: var(--cream);
}

.menu-container {
  display: flex;
  gap: 40px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(212, 168, 67, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

/* Sidebar Tabs */
.menu-tabs {
  width: 320px;
  flex-shrink: 0;
  background: var(--cream-dark);
  padding: 32px 0;
  border-right: 1px solid rgba(212, 168, 67, 0.1);
}

.tab-btn {
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  border-left: 3px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tab-btn:hover {
  color: var(--pink);
  background: rgba(255, 255, 255, 0.4);
}

.tab-btn.active {
  color: var(--dark);
  font-weight: 600;
  background: var(--white);
  border-left-color: var(--pink);
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.02);
}

/* Content Area */
.menu-content {
  flex-grow: 1;
  padding: 40px;
  position: relative;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pane-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(212, 168, 67, 0.3);
}

/* Menu List */
.menu-list {
  display: flex;
  flex-direction: column;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  gap: 20px;
}

.menu-item:last-child {
  border-bottom: none;
}

.m-info h4 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 4px;
}
.m-info small {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
}

.m-price {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: right;
  flex-shrink: 0;
}

.price-old {
  font-size: 0.9rem;
  color: var(--gray);
  text-decoration: line-through;
  opacity: 0.7;
}

.price-new {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  font-variant-numeric: tabular-nums;
}
.price-new::after {
  content: " Ks";
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
}

.discount-badge {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 40px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.new-badge {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 40px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  vertical-align: middle;
  margin-left: 6px;
}

/* ===================================================
   WHY CHOOSE US
   =================================================== */
.why-us {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.why-us-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    #2d1a3e 50%,
    var(--dark-mid) 100%
  );
}

.why-us .container {
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  color: var(--white);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.why-card:hover {
  background: rgba(212, 168, 67, 0.1);
  border-color: var(--gold);
  transform: translateY(-6px);
}

.why-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--gold-light);
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ===================================================
   GALLERY
   =================================================== */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f8d7e8, #fef3db);
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(247, 37, 133, 0.7),
    rgba(212, 168, 67, 0.7)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-placeholder {
  background: linear-gradient(135deg, #f8d7e8 0%, #fef3db 50%, #f0e6f8 100%);
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.gallery-placeholder::after {
  content: "🌸";
  font-size: 3rem;
  position: absolute;
}
.gallery-placeholder img {
  display: none;
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover {
  background: var(--pink);
  border-color: var(--pink);
}

/* ---- Carousel ---- */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  background: var(--dark);
  max-width: 860px;
  margin: 0 auto;
  aspect-ratio: 4/3;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s ease;
  background: var(--dark);
}

.carousel-slide:hover img {
  transform: scale(1.04);
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
}

.carousel-slide:hover .carousel-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.carousel-placeholder {
  background: linear-gradient(135deg, #f8d7e8 0%, #fef3db 100%) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-placeholder img {
  display: none;
}
.carousel-placeholder::after {
  content: "🌸";
  font-size: 4rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 16px;
}
.carousel-next {
  right: 16px;
}

.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    width 0.3s ease;
}

.carousel-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials {
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: center;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(212, 168, 67, 0.15);
  transition: var(--transition);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, var(--dark), #2d1a3e);
  color: var(--white);
  border-color: var(--gold);
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.testimonial-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 24px;
}
.testimonial-card.featured .testimonial-text {
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 2px;
}
.testimonial-card.featured .testimonial-author strong {
  color: var(--white);
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================================
   CONTACT
   =================================================== */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    rgba(247, 37, 133, 0.1),
    rgba(212, 168, 67, 0.1)
  );
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.social-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pink);
  padding: 6px 14px;
  border: 1px solid rgba(247, 37, 133, 0.3);
  border-radius: 20px;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--pink);
  color: var(--white);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(212, 168, 67, 0.2);
  border-radius: 12px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #adb5bd;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(247, 37, 133, 0.08);
}

.form-group textarea {
  resize: vertical;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 4px;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--dark);
  padding: 72px 0 32px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.footer-logo {
  height: 64px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  /* Navbar */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
    padding: 100px 32px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
    z-index: 999;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-link {
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid var(--cream-dark);
    width: 100%;
  }
  .lang-switcher {
    margin: 20px 0;
    justify-content: center;
    width: 100%;
  }

  .nav-cta {
    display: inline-block;
    margin-bottom: 20px;
  }
  .hamburger {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-text {
    padding-right: 0;
  }
  .about-badge {
    right: 12px;
  }

  /* Menu Tabs Responsive */
  .menu-container {
    flex-direction: column;
    gap: 0;
  }
  .menu-tabs {
    width: 100%;
    display: flex;
    overflow-x: auto;
    padding: 16px;
    border-right: none;
    border-bottom: 1px solid rgba(212, 168, 67, 0.2);
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
  }
  .menu-tabs::-webkit-scrollbar {
    display: none;
  }
  .tab-btn {
    padding: 10px 20px;
    border-left: none;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    scroll-snap-align: start;
  }
  .tab-btn.active {
    border-left-color: transparent;
    border-bottom-color: var(--pink);
    box-shadow: none;
  }
  .menu-content {
    padding: 24px 20px;
  }
  .menu-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .m-price {
    width: 100%;
    justify-content: space-between;
  }

  /* Why */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.tall {
    grid-row: span 1;
  }
  .gallery-item.wide {
    grid-column: span 1;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card.featured {
    transform: scale(1);
  }
  .testimonial-card.featured:hover {
    transform: translateY(-6px);
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    flex-direction: column;
    gap: 20px;
  }
  .stat-divider {
    width: 80px;
    height: 1px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .contact-form-wrap {
    padding: 24px;
  }
}
