/* ============================================================
   MINSI MAKEUP STUDIO — STYLESHEET  (White & Green Theme)
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Backgrounds */
  --white:      #ffffff;
  --off-white:  #f7f9f5;
  --surface:    #eef3ea;
  --surface2:   #e2ecdc;

  /* Greens (from logo) */
  --green:      #4a7a52;
  --green-dark: #37603e;
  --green-mid:  #6a9d72;
  --green-pale: #c8dfc9;
  --green-faint:#e8f2e9;

  /* Accent — sun yellow from logo */
  --sun:        #f5c040;
  --sun-light:  #fde9a2;

  /* Text */
  --text:       #1e2e20;
  --text-muted: #5a7560;
  --text-faint: #9ab89f;

  /* Borders */
  --border:     rgba(74, 122, 82, 0.15);
  --border-mid: rgba(74, 122, 82, 0.25);

  --nav-h:      72px;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  24px;

  --shadow-sm:  0 2px 12px rgba(74, 122, 82, 0.10);
  --shadow:     0 4px 24px rgba(74, 122, 82, 0.15);
  --shadow-lg:  0 16px 56px rgba(74, 122, 82, 0.18);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

.container {
  width: min(90%, 1200px);
  margin-inline: auto;
}

.hidden { display: none !important; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.2;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  color: var(--green);
}

.center { text-align: center; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(74, 122, 82, 0.35);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74, 122, 82, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(92%, 1280px);
  margin-inline: auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.06em;
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-tab, .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s, background 0.25s;
  position: relative;
}
.nav-tab:hover, .nav-link:hover {
  color: var(--green);
  background: var(--green-faint);
}
.nav-tab.active {
  color: var(--green-dark);
  background: var(--green-faint);
  font-weight: 600;
}

.arrow { font-size: 1.1rem; transition: transform 0.25s var(--ease); display: inline-block; }
.nav-dropdown.open .arrow { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 190px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 100;
  box-shadow: var(--shadow);
}
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}
.dropdown-item:hover {
  color: var(--green-dark);
  background: var(--green-faint);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.05);
  animation: heroZoom 12s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(30, 46, 32, 0.82) 0%,
    rgba(30, 46, 32, 0.45) 40%,
    rgba(30, 46, 32, 0.22) 70%,
    rgba(30, 46, 32, 0.12) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  padding: 0 24px;
  animation: fadeUp 1s 0.3s var(--ease) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sun-light);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--green-pale);
}

.hero-desc {
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  justify-content: center;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--green-pale), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.6); }
}

/* ============================================================
   CATEGORY PILLS
   ============================================================ */
.category-pills-section {
  padding: 64px 0 0;
  background: var(--white);
}

.category-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.pill {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface);
  border: 1.5px solid var(--border);
  transition: all 0.25s var(--ease);
}
.pill:hover {
  color: var(--green-dark);
  border-color: var(--green-pale);
  background: var(--green-faint);
  transform: translateY(-1px);
}
.pill.active {
  background: var(--green);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(74, 122, 82, 0.3);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  padding: 40px 0 100px;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  grid-auto-flow: dense;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.3s;
}
.gallery-item.wide  { grid-column: span 2; }
.gallery-item.tall  { grid-row:    span 2; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.gallery-item.hidden-item {
  display: none;
}

.gallery-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
  background: var(--surface);
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  min-height: 260px;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(30,46,32,0.80) 0%, rgba(30,46,32,0.15) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-cat {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sun-light);
  margin-bottom: 4px;
}
.gallery-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
}

.gallery-item {
  animation: galleryFadeIn 0.5s var(--ease) both;
}
@keyframes galleryFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gallery-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-faint);
  font-style: italic;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 35, 22, 0.92);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  backdrop-filter: blur(8px);
}
.lightbox-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img-wrap {
  width: 100%;
  max-width: 800px;
  max-height: 75vh;
  display: flex;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: opacity 0.2s;
}

.lightbox-caption {
  margin-top: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--green-pale);
  font-style: italic;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.lightbox-close:hover { color: #fff; }

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 3rem;
  color: rgba(255,255,255,0.5);
  padding: 16px;
  transition: color 0.2s, transform 0.2s;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover { color: #fff; transform: translateY(-50%) translateX(-3px); }
.lightbox-next:hover { color: #fff; transform: translateY(-50%) translateX(3px); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  padding: 120px 0;
  background: var(--off-white);
}

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

.about-img-col { position: relative; }

.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  border: 4px solid var(--green-pale);
}
.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--green);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.badge-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.badge-text {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

.about-bio {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin: 36px 0;
}

.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding: 100px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.service-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.35s var(--ease-spring), border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,122,82,0.07), rgba(74,122,82,0.02));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-pale);
  box-shadow: var(--shadow);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--green-dark);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 100px 0 120px;
  background: var(--off-white);
}

.contact-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.contact-desc {
  color: var(--text-muted);
  margin-top: 16px;
}

/* ── Contact cards ── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-decoration: none;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}
.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.contact-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.contact-card__icon--zalo { background: #e5f0fb; color: #0068ff; }
.contact-card__icon--ig   { background: #fce8f3; color: #c13584; }
.contact-card__icon--fb   { background: #e8eefa; color: #1877f2; }

.contact-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.contact-card__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  font-weight: 600;
}
.contact-card__value {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-card__arrow {
  color: var(--green-pale);
  font-size: 1.3rem;
  transition: transform 0.2s var(--ease), color 0.2s;
  flex-shrink: 0;
}
.contact-card:hover .contact-card__arrow {
  transform: translateX(5px);
  color: var(--green);
}

/* ── Info chips ── */
.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
a.contact-chip:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-faint);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 0 48px;
}

/* Footer logo image */
.footer-logo-wrap {
  display: inline-block;
  background: #fff;
  border-radius: 14px;
  padding: 8px 12px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  font-style: italic;
}

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--sun-light); }

.footer-social h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65);
  transition: all 0.25s var(--ease);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover {
  background: var(--sun);
  color: var(--green-dark);
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   DIVIDER LEAF DECORATION
   ============================================================ */
.section-divider {
  text-align: center;
  font-size: 1.4rem;
  color: var(--green-pale);
  margin: 8px 0;
  letter-spacing: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid   { gap: 48px; }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 32px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
    z-index: 999;
    border-bottom: 1px solid var(--border-mid);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }

  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    background: var(--surface);
    box-shadow: none;
    display: none;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }

  /* Layout */
  .about-grid    { grid-template-columns: 1fr; gap: 60px; }
  .about-badge   { right: 0; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }

  .gallery-item.wide { grid-column: span 1; }

  .hero-cta { flex-direction: column; align-items: center; }

  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .about-stats  { flex-direction: column; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
  padding: 100px 0;
  background: var(--off-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pricing-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px dashed var(--green-pale);
}
.pricing-icon { font-size: 2rem; }
.pricing-card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-dark);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-list li {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.item-name {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
}

.item-dots {
  flex: 1;
  border-bottom: 2px dotted var(--green-pale);
  margin: 0 8px;
  min-width: 20px;
  position: relative;
  top: -4px;
}

.item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 0.9rem;
  background: var(--green-faint);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius);
  padding: 16px 24px;
  max-width: 600px;
  margin-inline: auto;
  margin-top: 40px;
}

/* Add pricing to nav */
.nav-link[href="#bang-gia"] { color: var(--green); font-weight: 600; }

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
