@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- CUSTOM PROPERTIES --- */
:root {
  --primary-gold: #D8C28A;
  --light-gold: #E6D6A8;
  --soft-gold: #F5EFD9;
  --dark-gold: #BCA468;
  --text-dark: #2C2A29;
  --text-muted: #6B6866;
  --bg-warm: #FAF8F5;
  --bg-white: #FFFFFF;
  --accent-brown: #8C7853;
  --hero-dark: #1A1512;
  --shadow-sm: 0 4px 6px -1px rgba(140, 120, 83, 0.05);
  --shadow-md: 0 10px 20px -3px rgba(140, 120, 83, 0.08);
  --shadow-lg: 0 20px 40px -4px rgba(140, 120, 83, 0.12);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-warm);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.25;
}

h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1rem; }

.section-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-brown);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

p { font-size: 1rem; color: var(--text-muted); }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
img { max-width: 100%; height: auto; display: block; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  gap: 0.5rem;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: #1a1918;
}
.btn-primary:hover {
  background-color: var(--dark-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(216, 194, 138, 0.3);
}

.btn-secondary {
  background-color: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background-color: rgba(255,255,255,0.22);
  border-color: white;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
}
.btn-whatsapp:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

header.scrolled .nav-container {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: white;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

header.scrolled .logo { color: var(--text-dark); }
.logo span { color: var(--primary-gold); }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 0.4rem 0;
  transition: var(--transition-fast);
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-gold);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: white; }
header.scrolled .nav-link:hover { color: var(--accent-brown); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1010;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: white;
  transition: var(--transition);
  border-radius: 2px;
}

header.scrolled .nav-toggle span { background-color: var(--text-dark); }

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

/* Hero background — local business photo */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/anasehife.png');
  background-size: cover;
  background-position: center center;
  transform: scale(1.04);
  transition: transform 8s ease-out;
  /* Subtle blur only to soften any pixelation */
  filter: blur(0.5px) brightness(0.95);
}

.hero-bg.loaded { transform: scale(1); }

/* Dark overlay — lighter so image shows through */
.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 4, 0.42);
  z-index: 1;
}

/* Gradient: soft vignette, image visible at centre */
.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at 50% 45%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%),
    linear-gradient(to top, rgba(8,6,4,0.75) 0%, rgba(8,6,4,0) 55%);
  z-index: 2;
}

/* Decorative vertical gold lines on sides */
.hero-line {
  position: absolute;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(216,194,138,0.4) 30%, rgba(216,194,138,0.4) 70%, transparent 100%);
  z-index: 3;
}
.hero-line-left { left: 3.5rem; }
.hero-line-right { right: 3.5rem; }

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 780px;
  width: 100%;
  padding: 0 2rem;
  text-align: center;
  color: white;
}

.hero-badge-top {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--primary-gold);
  margin-bottom: 1.75rem;
  font-weight: 600;
  animation: fadeInDown 0.9s ease both;
  background: rgba(216,194,138,0.08);
  border: 1px solid rgba(216,194,138,0.25);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
}

.hero-title {
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 0.04em;
  animation: fadeInUp 0.9s ease both 0.1s;
  color: white;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
  line-height: 1.1;
}

/* Gold decorative divider */
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto 1.5rem;
  animation: fadeInUp 0.9s ease both 0.15s;
}

.hero-divider span {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(216,194,138,0.8));
}

.hero-divider span:last-child {
  background: linear-gradient(to left, transparent, rgba(216,194,138,0.8));
}

.hero-slogan {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 3vw, 1.7rem);
  font-style: italic;
  margin-bottom: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  animation: fadeInUp 0.9s ease both 0.2s;
  letter-spacing: 0.02em;
}

.hero-desc {
  font-size: clamp(0.88rem, 2vw, 1rem);
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 2.75rem;
  line-height: 1.9;
  animation: fadeInUp 0.9s ease both 0.25s;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease both 0.3s;
  margin-bottom: 3.5rem;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  animation: fadeInUp 0.9s ease both 0.4s;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(216,194,138,0.2);
  border-radius: 60px;
  padding: 0.9rem 2.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: fit-content;
  margin: 0 auto;
}

.hero-stat {
  text-align: center;
  padding: 0 1.75rem;
}

.hero-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary-gold);
  line-height: 1;
}

.hero-stat-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  margin-top: 0.3rem;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(216,194,138,0.3);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeInUp 1s ease both 0.8s;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(216,194,138,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}


/* --- SECTIONS --- */
.section { padding: clamp(4rem, 8vw, 8rem) 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.bg-soft { background-color: var(--bg-white); }

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

/* --- ABOUT --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

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

.about-img-frame {
  border: 1px solid var(--primary-gold);
  padding: 1.25rem;
  border-radius: 24px;
}

.about-img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--bg-white);
  border: 1px solid var(--soft-gold);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-badge .number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-brown);
  display: block;
}

.about-badge .text {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.about-title { margin-bottom: 2rem; }
.about-text { margin-bottom: 1.5rem; }

.about-features {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.about-feat-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.about-feat-item svg { color: var(--accent-brown); flex-shrink: 0; }

/* --- SERVICES --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--bg-warm);
  border: 1px solid rgba(216, 194, 138, 0.15);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), var(--light-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background-color: var(--bg-white);
  border-color: rgba(216, 194, 138, 0.4);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--soft-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-brown);
  margin-bottom: 1.75rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--primary-gold);
  color: var(--text-dark);
}

.service-name { font-size: 1.4rem; margin-bottom: 0.85rem; }
.service-desc { font-size: 0.95rem; }

/* --- WHY CHOOSE US --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background-color: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(140, 120, 83, 0.05);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-gold);
}

.why-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.5rem;
  color: var(--accent-brown);
}

.why-title { font-size: 1.2rem; margin-bottom: 0.75rem; }
.why-desc { font-size: 0.9rem; }

/* --- GALLERY --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 42, 41, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay svg {
  color: white;
  width: 30px;
  height: 30px;
  transform: scale(0.8);
  transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay svg { transform: scale(1); }

/* --- LOCATION --- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.map-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--soft-gold);
  height: 450px;
}

.map-wrapper iframe { width: 100%; height: 100%; border: none; }

.location-info { display: flex; flex-direction: column; gap: 2rem; }

.location-item { display: flex; gap: 1.25rem; align-items: flex-start; }

.location-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--soft-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-brown);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-details h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.location-details p { font-size: 0.95rem; }
.location-details a:hover { color: var(--accent-brown); }

/* --- CONTACT --- */
.contact-card {
  background-color: var(--bg-white);
  border-radius: 30px;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(216, 194, 138, 0.2);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-left h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.contact-left p { font-size: 1.05rem; margin-bottom: 2.5rem; }

.contact-info-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }

.c-info-item h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.c-info-item h4 svg { color: var(--accent-brown); }
.c-info-item p { font-size: 0.9rem; }
.c-info-item a:hover { color: var(--accent-brown); }

/* --- FOOTER --- */
footer {
  background-color: #1A1918;
  color: rgba(255, 255, 255, 0.65);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: white;
  margin-bottom: 1.25rem;
}

.footer-logo span { color: var(--primary-gold); }
.footer-col h3 { color: white; font-size: 1.1rem; margin-bottom: 1.5rem; }

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* --- LIGHTBOX --- */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(26, 25, 24, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.lightbox.active { display: flex; opacity: 1; }

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}

.lightbox-close:hover { color: var(--primary-gold); }

/* --- KEYFRAMES --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  33% { transform: translateY(-20px) scale(1.03); }
  66% { transform: translateY(10px) scale(0.98); }
}

/* ============================================================
   GALLERY — wide item spans 2 columns on desktop
   ============================================================ */
.gallery-item--wide {
  grid-column: span 2;
}

/* ============================================================
   RESPONSIVE — TABLET  ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img { height: 380px; }
  .about-badge { bottom: -15px; right: 0; }

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

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

  .location-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .map-wrapper { height: 380px; }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col:last-child { grid-column: span 2; }
}

/* ============================================================
   RESPONSIVE — MOBILE  ≤ 768px
   ============================================================ */
@media (max-width: 768px) {

  /* ---- NAV ---- */
  .nav-container {
    padding: 0.9rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  /* Logo stays left */
  .logo { font-size: 1.2rem; }

  /* Hamburger: top-right, NOT centered */
  .nav-toggle {
    display: flex;
    position: static;       /* stay in flow, flex pushes it to the right */
    margin-left: auto;
    order: 3;
  }

  /* Nav panel slides in from right */
  nav { order: 2; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -110%;
    width: 75vw;
    max-width: 300px;
    height: 100%;
    height: 100svh;
    background-color: #1a1810;
    flex-direction: column;
    padding: 5rem 2rem 3rem;
    gap: 0;
    box-shadow: -8px 0 30px rgba(0,0,0,0.35);
    transition: right 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    z-index: 1005;
    list-style: none;
  }
  .nav-menu.active { right: 0; }

  .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-size: 1.05rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(216,194,138,0.12);
    display: block;
    letter-spacing: 0.03em;
  }
  .nav-link:last-child { border-bottom: none; }
  .nav-link.active { color: var(--primary-gold) !important; }

  /* Dark backdrop when menu open */
  .nav-menu.active::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: -1;
  }

  /* Hamburger lines stay white always on mobile */
  .nav-toggle span { background-color: white !important; }
  header.scrolled .nav-toggle span { background-color: var(--text-dark) !important; }

  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; width: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* ---- HERO ---- */
  .hero-section {
    min-height: 100svh;
    min-height: 100vh;
    align-items: center;
    padding: 0;
  }
  .hero-line { display: none; }
  .hero-scroll { display: none; }

  .hero-content {
    padding: 6rem 1.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-badge-top {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    padding: 0.4rem 1rem;
    margin-bottom: 1.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90vw;
  }

  .hero-title {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
    line-height: 1.1;
    text-align: center;
  }

  .hero-divider {
    margin: 1rem auto;
  }
  .hero-divider span { width: 35px; }

  .hero-slogan {
    font-size: clamp(1rem, 4.5vw, 1.3rem);
    margin-bottom: 0.75rem;
    text-align: center;
  }

  .hero-desc {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.58);
  }
  .hero-desc br { display: none; }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 300px;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }
  .hero-btns .btn { width: 100%; justify-content: center; font-size: 0.9rem; }

  .hero-stats {
    width: calc(100% - 2rem);
    max-width: 340px;
    padding: 1rem 1rem;
    border-radius: 16px;
    gap: 0;
    justify-content: space-around;
  }
  .hero-stat { padding: 0 0.5rem; flex: 1; }
  .hero-stat-num { font-size: 1.2rem; }
  .hero-stat-label { font-size: 0.58rem; letter-spacing: 0.06em; }
  .hero-stat-divider {
    display: block;
    width: 1px;
    height: 28px;
    background: rgba(216,194,138,0.25);
    flex-shrink: 0;
  }

  /* ---- SECTIONS ---- */
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }

  .section-header { margin-bottom: 2.5rem; }
  .section-header h2 { font-size: 1.8rem; }

  /* ---- ABOUT ---- */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-frame { padding: 0.75rem; border-radius: 18px; }
  .about-img { height: 280px; }
  .about-features { grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-top: 1.5rem; }
  .about-feat-item { font-size: 0.82rem; }
  .about-badge {
    position: static;
    margin: 1.25rem 0 0 0;
    display: inline-flex;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
  }

  /* ---- SERVICES ---- */
  .services-grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .service-card { padding: 1.75rem 1.5rem; }
  .service-name { font-size: 1.2rem; }

  /* ---- WHY CHOOSE ---- */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .why-card { padding: 1.75rem 1.25rem; }
  .why-title { font-size: 1rem; }
  .why-desc { font-size: 0.82rem; }
  .why-icon { width: 40px; height: 40px; margin-bottom: 1.1rem; }

  /* ---- GALLERY ---- */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .gallery-item { border-radius: 12px; }
  .gallery-item--wide { grid-column: span 2; }

  /* ---- LOCATION ---- */
  .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .map-wrapper { height: 280px; border-radius: 18px; order: -1; }
  .location-info { gap: 1.5rem; }
  .location-item { gap: 1rem; }
  .location-icon-box { width: 38px; height: 38px; flex-shrink: 0; }

  /* ---- CONTACT ---- */
  .contact-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.25rem;
    border-radius: 20px;
  }
  .contact-left h2 { font-size: 1.7rem; margin-bottom: 0.75rem; }
  .contact-left p { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .contact-info-list { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  /* ---- FOOTER ---- */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-col:last-child { grid-column: span 1; }
  .footer-logo { font-size: 1.4rem; }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.8rem;
  }
}

/* ============================================================
   RESPONSIVE — SMALL PHONES  ≤ 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-badge-top { font-size: 0.6rem; letter-spacing: 0.15em; padding: 0.35rem 0.85rem; }
  .hero-title { font-size: clamp(2rem, 11vw, 2.8rem); }
  .hero-slogan { font-size: 1rem; }

  /* Stack why-cards to 1 column on tiny screens */
  .why-grid { grid-template-columns: 1fr; }

  /* Stack contact info to 1 column */
  .contact-info-list { grid-template-columns: 1fr; gap: 1rem; }

  .btn { padding: 0.8rem 1.4rem; font-size: 0.85rem; }

  .about-features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .gallery-item--wide { grid-column: span 1; }
}




