/* =============================================
   NAF AUTOSPA — PREMIUM CSS DESIGN SYSTEM
   Theme: White & Gold | Passion for Detail
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ───────────────── CSS VARIABLES ───────────────── */
:root {
  --white:       #FFFFFF;
  --off-white:   #FAFAF8;
  --light-gray:  #F4F4F0;
  --border:      #E8E5DC;
  --gold:        #F5A000;
  --gold-light:  #FFB733;
  --gold-dark:   #C47D00;
  --gold-pale:   #FFF4DC;
  --text-dark:   #111111;
  --text-mid:    #444444;
  --text-soft:   #777777;
  --shadow-sm:   0 2px 12px rgba(245,160,0,0.10);
  --shadow-md:   0 8px 32px rgba(245,160,0,0.15);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.10);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

::selection {
  background: var(--gold);
  color: var(--white);
}

/* ───────────────── SCROLLBAR ───────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

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

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 560px;
  line-height: 1.7;
}

.gold-line {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 20px 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(245,160,0,0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,160,0,0.50);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--text-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ───────────────── ANIMATIONS ───────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse-ring {
  0%   { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes particle-drift {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0.6; }
  100% { transform: translateY(-120vh) translateX(30px) scale(0.3); opacity: 0; }
}

@keyframes count-up {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes border-dance {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes wave {
  0%   { transform: scaleX(1); }
  50%  { transform: scaleX(1.05); }
  100% { transform: scaleX(1); }
}

@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,160,0,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(245,160,0,0); }
}

/* Scroll reveal states */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ───────────────── NAVIGATION ───────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s ease;
  background: transparent;
}

#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(245,160,0,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 56px;
  width: auto;
  transition: height var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}

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

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

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white) !important;
  padding: 11px 24px;
  border-radius: 50px;
  transition: all var(--transition) !important;
  box-shadow: 0 4px 15px rgba(245,160,0,0.30);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 25px rgba(245,160,0,0.50) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.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); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

/* ───────────────── HERO ───────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 50%, rgba(245,160,0,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 20%, rgba(245,160,0,0.04) 0%, transparent 60%),
    linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
}

/* Geometric decorative rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,160,0,0.12);
  pointer-events: none;
}
.hero-ring-1 {
  width: 600px; height: 600px;
  top: 50%; right: -100px;
  transform: translateY(-50%);
  animation: spin-slow 30s linear infinite;
}
.hero-ring-2 {
  width: 420px; height: 420px;
  top: 50%; right: 40px;
  transform: translateY(-50%);
  border-color: rgba(245,160,0,0.18);
  animation: spin-slow 20s linear infinite reverse;
}
.hero-ring-3 {
  width: 240px; height: 240px;
  top: 50%; right: 180px;
  transform: translateY(-50%);
  border-color: rgba(245,160,0,0.25);
}

/* Floating particles */
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  animation: particle-drift linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1px solid rgba(245,160,0,0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: goldPulse 2s ease infinite;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.15s ease both;
}

.hero-title .gold-word {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.25s ease both;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s 0.35s ease both;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.45s ease both;
}

.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 28px 0;
  z-index: 2;
}

.hero-stats-inner {
  display: flex;
  justify-content: center;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 48px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-soft);
  display: block;
  margin-top: 6px;
}

/* ───────────────── ABOUT ───────────────── */
#about {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,160,0,0.07) 0%, transparent 70%);
}

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

.about-visual {
  position: relative;
}

.about-logo-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.about-logo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,160,0,0.03) 0%, transparent 60%);
}

.about-logo-wrap img {
  max-width: 260px;
  margin: 0 auto;
}

.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge span {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-text { }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
}

.feature-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.feature-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ───────────────── SERVICES ───────────────── */
#services {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.services-header .gold-line { margin: 20px auto; }

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(245,160,0,0.35);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  border-color: rgba(245,160,0,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

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

.service-card.hidden { display: none; }

.service-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ───────────────── WHY CHOOSE US ───────────────── */
#why-us {
  padding: 120px 0;
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.why-header {
  text-align: center;
  margin-bottom: 72px;
}
.why-header .gold-line { margin: 20px auto; }
.why-header .section-subtitle { margin: 0 auto; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,160,0,0.04), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.why-card:hover {
  border-color: rgba(245,160,0,0.4);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

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

.why-icon-wrap {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  position: relative;
}

.why-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 0;
}

.why-card:hover .why-icon-wrap::before { opacity: 1; }

.why-icon-inner {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.why-card:hover .why-icon-inner {
  background: var(--white);
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ───────────────── INSTAGRAM ───────────────── */
#instagram {
  padding: 120px 0;
  background: var(--white);
}

.instagram-header {
  text-align: center;
  margin-bottom: 56px;
}
.instagram-header .gold-line { margin: 20px auto; }

.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid rgba(245,160,0,0.25);
  margin-bottom: 20px;
  text-decoration: none;
  transition: var(--transition);
}
.instagram-handle:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.instagram-handle i { font-size: 18px; }

.instagram-embed-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.instagram-embed-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.insta-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
}

.insta-name {
  flex: 1;
}
.insta-name strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  display: block;
  color: var(--text-dark);
}
.insta-name span {
  font-size: 13px;
  color: var(--text-soft);
}

.insta-follow-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border: none;
  padding: 9px 20px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 3px 12px rgba(245,160,0,0.3);
}
.insta-follow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,160,0,0.5);
}

.instagram-feed-area {
  padding: 24px;
}

/* Elfsight / LightWidget container */
.elfsight-app-wrapper {
  min-height: 300px;
}

.instagram-fallback {
  text-align: center;
  padding: 60px 40px;
}
.instagram-fallback .ig-icon {
  font-size: 72px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.instagram-fallback h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.instagram-fallback p {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 28px;
}

/* ───────────────── CONTACT ───────────────── */
#contact {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

#contact::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,160,0,0.05) 0%, transparent 70%);
}

.contact-header {
  text-align: center;
  margin-bottom: 64px;
}
.contact-header .gold-line { margin: 20px auto; }

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

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

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.contact-card-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.contact-card-text p,
.contact-card-text a {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.5;
  font-weight: 500;
  transition: color var(--transition);
}

.contact-card-text a:hover { color: var(--gold); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* WhatsApp float button */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: goldPulse 3s ease infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 64px;
  margin-bottom: 20px;
  /* Invert dark logo on dark bg or show as-is if transparent */
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

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

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-col address {
  font-style: normal;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--gold-light); }

/* ───────────────── PRIVACY POLICY PAGE ───────────────── */
.policy-hero {
  background: linear-gradient(135deg, var(--light-gray), var(--off-white));
  padding: 160px 0 80px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.policy-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 20px;
}
.policy-hero .breadcrumb a { color: var(--gold-dark); }
.policy-hero .breadcrumb a:hover { color: var(--gold); }

.policy-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}

.policy-toc {
  background: var(--gold-pale);
  border: 1px solid rgba(245,160,0,0.25);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 56px;
}

.policy-toc h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.policy-toc ol {
  list-style: decimal;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-toc ol li a {
  font-size: 14px;
  color: var(--text-mid);
  transition: color var(--transition);
}

.policy-toc ol li a:hover { color: var(--gold-dark); }

.policy-section {
  margin-bottom: 56px;
  scroll-margin-top: 100px;
}

.policy-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.policy-section p,
.policy-section li {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 12px;
}

.policy-section ul,
.policy-section ol {
  padding-left: 24px;
  margin: 12px 0;
}

.policy-section ul li { list-style: disc; }
.policy-section ol li { list-style: decimal; }

.policy-highlight {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 20px 0;
}

.policy-highlight p {
  margin: 0;
  font-weight: 500;
  color: var(--text-dark);
}

.grievance-box {
  background: var(--text-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-top: 32px;
}

.grievance-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.grievance-box p { color: rgba(255,255,255,0.75); margin-bottom: 8px; }
.grievance-box a { color: var(--gold-light); }
.grievance-box strong { color: var(--white); }

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

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

  #hero { padding: 0; }
  .hero-content { padding-top: 120px; padding-bottom: 140px; }
  .hero-ring { display: none; }

  .hero-stats-inner {
    flex-wrap: wrap;
    gap: 20px;
  }
  .stat-item {
    padding: 0 24px;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    flex: 1 1 calc(50% - 20px);
  }
  .stat-item:last-child { border-bottom: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: 2; }
  .about-badge { bottom: -15px; right: 0; }

  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-container { height: 280px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .services-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
}
