/* ========================================
   Madhumita's Makeover Studio & Academy
   Main Stylesheet
   ======================================== */

:root {
  --gold:       #c9a96e;
  --gold-light: #e8d5b0;
  --gold-pale:  #f5edd8;
  --dark:       #1a1208;
  --dark2:      #2a1e10;
  --cream:      #faf6f0;
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: #0e0a04;
  color: #fff;
  overflow-x: hidden;
  cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.25s ease;
  opacity: 0.6;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; background: var(--gold);
  z-index: 10000; transition: width 0.1s;
  width: 0%;
}

/* ===== LANGUAGE BAR ===== */
.lang-bar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; justify-content: flex-end; align-items: center;
  padding: 10px 40px;
  background: rgba(14,10,4,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  font-size: 11px;
  letter-spacing: 0.12em;
  gap: 6px;
}
.lang-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  margin-right: 8px;
}
.lang-btn {
  background: none;
  border: 1px solid rgba(201,169,110,0.3);
  color: rgba(255,255,255,0.5);
  padding: 4px 12px;
  font-family: 'Jost', sans-serif;
  font-size: 10px; letter-spacing: 0.1em;
  cursor: pointer; border-radius: 2px;
  transition: all 0.3s;
}
.lang-btn.active,
.lang-btn:hover {
  background: var(--gold);
  color: #1a1208;
  border-color: var(--gold);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 40px; left: 0; right: 0;
  z-index: 999;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 40px;
  background: rgba(14,10,4,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  transition: all 0.4s;
}
.nav.scrolled {
  padding: 12px 40px;
  background: rgba(14,10,4,0.97);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.logo span {
  display: block;
  font-size: 10px;
  color: rgba(201,169,110,0.6);
  letter-spacing: 0.25em;
  font-family: 'Jost', sans-serif;
}
.nav-links {
  display: flex; gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold); color: #1a1208;
  border: none; padding: 10px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
}
.nav-cta:hover { background: #e8c97a; transform: translateY(-1px); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; bottom: 32px; right: 32px;
  z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  cursor: pointer; transition: all 0.3s;
  text-decoration: none;
  animation: waPulse 3s infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}

/* ===== SHARED SECTION STYLES ===== */
.sec-label {
  font-size: 9px; letter-spacing: 0.45em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.sec-label::before {
  content: '';
  width: 24px; height: 1px; background: var(--gold);
}
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300; color: #fff;
  line-height: 1.15; margin-bottom: 16px;
}
.sec-title em { color: var(--gold); font-style: italic; }
.sec-desc {
  font-size: 14px; color: rgba(255,255,255,0.55);
  line-height: 1.9; max-width: 560px;
  letter-spacing: 0.03em;
}
.gold-line {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 24px 0; opacity: 0.6;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--gold); color: #1a1208;
  border: none; padding: 14px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,169,110,0.35); }

.btn-ghost {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 14px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-wa {
  background: #25D366; color: #fff;
  border: none; padding: 14px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.btn-wa:hover { background: #1ebe5c; transform: translateY(-2px); }

/* ===== HERO ===== */
.hero {
  height: 100vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../assets/hero.jpeg') center/cover no-repeat;
  transform: scale(1.08);
  transition: transform 8s ease-out;
  filter: brightness(0.45);
}
.hero-bg.loaded { transform: scale(1); }
.hero-blur {
  position: absolute; inset: 0;
  backdrop-filter: blur(2px);
  background: linear-gradient(180deg, rgba(14,10,4,0.3) 0%, rgba(14,10,4,0.1) 40%, rgba(14,10,4,0.7) 100%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute; width: 2px; height: 2px;
  background: var(--gold); border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}
@keyframes float-particle {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-120vh) scale(0.3); }
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 780px; padding: 0 20px;
}
.hero-eyebrow {
  font-size: 10px; letter-spacing: 0.4em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 1s 0.5s forwards;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: ''; width: 40px; height: 1px;
  background: var(--gold); opacity: 0.5;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 8vw, 88px);
  font-weight: 300; line-height: 1.1; color: #fff;
  opacity: 0; animation: fadeUp 1s 0.8s forwards;
  margin-bottom: 8px;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 300; font-style: italic;
  color: var(--gold-light);
  opacity: 0; animation: fadeUp 1s 1.1s forwards;
  margin-bottom: 28px;
}
.hero-desc {
  font-size: 13px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  max-width: 480px; margin: 0 auto 40px;
  line-height: 1.9;
  opacity: 0; animation: fadeUp 1s 1.3s forwards;
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s 1.5s forwards;
}
.hero-stats {
  position: absolute; bottom: 80px; right: 40px;
  z-index: 2; text-align: right;
  opacity: 0; animation: fadeRight 1s 1.8s forwards;
}
.stat-item { margin-bottom: 16px; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; color: var(--gold);
  font-weight: 300; line-height: 1;
}
.stat-label {
  font-size: 9px; letter-spacing: 0.25em;
  color: rgba(255,255,255,0.45);
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp 1s 2s forwards;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
.scroll-text { font-size: 9px; letter-spacing: 0.3em; color: rgba(255,255,255,0.4); }
@keyframes scrollPulse { 0%,100%{opacity:0.3;} 50%{opacity:1;} }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeRight { from{opacity:0;transform:translateX(30px);} to{opacity:1;transform:translateX(0);} }

/* ===== ABOUT ===== */
.about-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; min-height: 80vh;
}
.about-img-side { position: relative; overflow: hidden; min-height: 600px; }
.about-img {
  width: 100%; height: 100%;
  background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=900&q=80') center/cover;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.about-img.anim { transform: scale(1); }
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, #0e0a04 100%);
}
.about-img-badge {
  position: absolute; bottom: 40px; left: 40px;
  background: var(--gold); color: #1a1208;
  padding: 20px 28px;
  font-family: 'Cormorant Garamond', serif;
}
.badge-num { font-size: 44px; font-weight: 300; line-height: 1; }
.badge-text { font-size: 10px; letter-spacing: 0.2em; opacity: 0.8; }
.about-content {
  padding: 80px 60px 80px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.tag {
  border: 1px solid rgba(201,169,110,0.35);
  color: var(--gold-light);
  padding: 5px 14px; font-size: 10px; letter-spacing: 0.12em;
}
.about-philosophy {
  border-left: 1px solid var(--gold);
  padding-left: 20px; margin: 28px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic;
  color: rgba(255,255,255,0.75); line-height: 1.6;
}
.brands-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.brand-pill {
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.25);
  color: var(--gold-light);
  padding: 6px 14px; font-size: 10px; letter-spacing: 0.1em;
}

/* ===== PORTFOLIO ===== */
.portfolio-section { background: #080603; padding: 100px 40px; }
.filter-tabs { display: flex; gap: 4px; margin: 40px 0 48px; flex-wrap: wrap; }
.ftab {
  background: none;
  border: 1px solid rgba(201,169,110,0.25);
  color: rgba(255,255,255,0.45);
  padding: 9px 22px;
  font-family: 'Jost', sans-serif;
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
}
.ftab.active, .ftab:hover {
  background: var(--gold); color: #1a1208; border-color: var(--gold);
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px; gap: 8px;
}
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 1; }
.gallery-item:nth-child(4) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 3; grid-row: span 1; }
.gallery-item:nth-child(6) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(7) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(8) { grid-column: span 4; grid-row: span 1; }
.gallery-item {
  position: relative; overflow: hidden;
  cursor: pointer; background: #1a1208;
}
.gi-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease; filter: brightness(0.85);
}
.gallery-item:hover .gi-img { transform: scale(1.08); filter: brightness(1); }
.gi-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,10,4,0.85) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover .gi-overlay { opacity: 1; }
.gi-label {
  position: absolute; bottom: 16px; left: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-style: italic; color: var(--gold-light);
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s 0.1s;
}
.gallery-item:hover .gi-label { opacity: 1; transform: translateY(0); }

/* ===== SERVICES ===== */
.services-section {
  background: url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?w=1600&q=80') center/cover fixed;
  position: relative; padding: 100px 40px;
}
.services-section::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(8,5,2,0.88);
}
.services-inner { position: relative; z-index: 1; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 1px; margin-top: 60px;
  border: 1px solid rgba(201,169,110,0.15);
}
.service-card {
  padding: 40px 32px;
  background: rgba(14,10,4,0.7);
  transition: background 0.4s;
  border-right: 1px solid rgba(201,169,110,0.1);
  border-bottom: 1px solid rgba(201,169,110,0.1);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.5s;
}
.service-card:hover { background: rgba(201,169,110,0.06); }
.service-card:hover::before { width: 100%; }
.sc-icon { font-size: 28px; margin-bottom: 20px; display: block; }
.sc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; color: rgba(201,169,110,0.1);
  position: absolute; top: 16px; right: 24px;
  font-weight: 300; line-height: 1;
}
.sc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: #fff; margin-bottom: 10px;
}
.sc-desc { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.8; }
.sc-duration {
  margin-top: 20px; font-size: 9px; letter-spacing: 0.2em;
  color: var(--gold); border-top: 1px solid rgba(201,169,110,0.2);
  padding-top: 14px;
}

/* ===== PRICING ===== */
.pricing-section { background: #080603; padding: 100px 40px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 24px; margin-top: 60px;
}
.price-card {
  border: 1px solid rgba(201,169,110,0.2);
  padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: transform 0.4s, border-color 0.4s;
  background: rgba(201,169,110,0.03);
}
.price-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,169,110,0.08) 0%, rgba(14,10,4,0) 100%);
}
.price-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold); color: #1a1208;
  font-size: 9px; letter-spacing: 0.2em; padding: 5px 12px;
}
.pc-name { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: #fff; margin-bottom: 6px; }
.pc-tagline { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 28px; }
.pc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; color: var(--gold); font-weight: 300; line-height: 1;
  margin-bottom: 4px;
}
.pc-price span { font-size: 18px; vertical-align: super; }
.pc-from { font-size: 9px; letter-spacing: 0.2em; color: rgba(255,255,255,0.35); margin-bottom: 28px; }
.pc-divider { height: 1px; background: rgba(201,169,110,0.2); margin-bottom: 24px; }
.pc-features { list-style: none; margin-bottom: 32px; }
.pc-features li {
  font-size: 12px; color: rgba(255,255,255,0.6);
  padding: 7px 0; letter-spacing: 0.03em;
  display: flex; align-items: center; gap: 10px;
}
.pc-features li::before { content: ''; width: 5px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testi-section {
  background: url('https://images.unsplash.com/photo-1607748862156-7c548e7e98f4?w=1600&q=80') center/cover fixed;
  padding: 100px 40px; position: relative;
}
.testi-section::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(8,5,2,0.9);
}
.testi-inner { position: relative; z-index: 1; }
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr));
  gap: 24px; margin-top: 60px;
}
.testi-card {
  border: 1px solid rgba(201,169,110,0.15);
  padding: 36px 32px;
  background: rgba(14,10,4,0.7);
  position: relative; transition: border-color 0.3s;
}
.testi-card:hover { border-color: rgba(201,169,110,0.5); }
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; color: var(--gold); opacity: 0.15;
  position: absolute; top: -8px; left: 24px; line-height: 1;
}
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-style: italic;
  color: rgba(255,255,255,0.8); line-height: 1.7;
  margin-bottom: 24px; padding-top: 16px;
}
.testi-stars { color: var(--gold); font-size: 11px; letter-spacing: 4px; margin-bottom: 16px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.4);
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #1a1208; font-weight: 500;
}
.author-name { font-size: 13px; color: #fff; font-weight: 500; }
.author-event { font-size: 10px; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); }

/* ===== WHY CHOOSE ===== */
.why-section { background: #0e0a04; padding: 100px 40px; }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: 0; margin-top: 60px;
}
.why-item {
  padding: 36px 28px;
  border: 1px solid rgba(201,169,110,0.1);
  text-align: center;
  transition: background 0.4s, border-color 0.4s;
  position: relative; overflow: hidden;
}
.why-item::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,169,110,0.08) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}
.why-item:hover { border-color: rgba(201,169,110,0.4); }
.why-item:hover::after { opacity: 1; }
.why-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.why-title { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: #fff; margin-bottom: 8px; }
.why-desc { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.8; }

/* ===== HYGIENE ===== */
.hygiene-section {
  background: linear-gradient(135deg, rgba(201,169,110,0.08) 0%, rgba(8,5,2,1) 60%);
  border-top: 1px solid rgba(201,169,110,0.15);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  padding: 80px 40px;
}
.hygiene-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.hygiene-list { display: flex; flex-direction: column; gap: 16px; }
.hygiene-item { display: flex; gap: 14px; align-items: flex-start; }
.hi-check { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.hi-text h4 { font-size: 14px; color: #fff; margin-bottom: 4px; }
.hi-text p { font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.7; }

/* ===== LOCATIONS ===== */
.locations-section { background: #0e0a04; padding: 100px 40px; }
.locations-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; margin-top: 60px; align-items: center;
}
.location-map {
  border: 1px solid rgba(201,169,110,0.2);
  height: 400px; position: relative; overflow: hidden;
}
.location-map iframe {
  width: 100%; height: 100%; border: none;
  filter: grayscale(100%) invert(90%) sepia(20%);
}
.location-list { display: flex; flex-direction: column; gap: 0; }
.location-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(201,169,110,0.1);
  display: flex; align-items: center; gap: 16px;
  transition: padding-left 0.3s; cursor: default;
}
.location-item:hover { padding-left: 8px; }
.loc-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.loc-name { font-size: 14px; color: rgba(255,255,255,0.7); }
.loc-tag { margin-left: auto; font-size: 9px; letter-spacing: 0.15em; color: var(--gold); }
.loc-note { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 24px; line-height: 1.8; }

/* ===== ACADEMY ===== */
.academy-section {
  background: url('https://images.unsplash.com/photo-1516975080664-ed2fc6a32937?w=1600&q=80') center/cover fixed;
  position: relative; padding: 100px 40px;
}
.academy-section::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(8,5,2,0.88);
}
.academy-inner { position: relative; z-index: 1; }
.academy-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; margin-top: 60px; align-items: start;
}
.course-list { display: flex; flex-direction: column; gap: 16px; }
.course-item {
  border: 1px solid rgba(201,169,110,0.15);
  padding: 24px 28px; background: rgba(14,10,4,0.6);
  transition: border-color 0.3s, background 0.3s;
}
.course-item:hover { border-color: var(--gold); background: rgba(201,169,110,0.05); }
.ci-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: #fff; margin-bottom: 6px; }
.ci-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.ci-tag {
  font-size: 9px; letter-spacing: 0.15em; color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3); padding: 3px 10px;
}
.awards-grid { display: flex; flex-direction: column; gap: 16px; }
.award-item {
  display: flex; gap: 16px; align-items: center;
  padding: 16px; border: 1px solid rgba(201,169,110,0.12);
}
.award-icon { font-size: 24px; flex-shrink: 0; }
.award-name { font-size: 14px; color: #fff; margin-bottom: 3px; }
.award-from { font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; }

/* ===== FAQ ===== */
.faq-section { background: #080603; padding: 100px 40px; }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px 60px; margin-top: 60px;
}
.faq-item { border-bottom: 1px solid rgba(201,169,110,0.15); padding-bottom: 24px; }
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; color: #fff; margin-bottom: 10px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
}
.faq-q span { color: var(--gold); flex-shrink: 0; font-size: 20px; }
.faq-a { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.9; }

/* ===== BLOG ===== */
.blog-section { background: #0e0a04; padding: 100px 40px; }
.blog-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 60px;
}
.blog-card {
  border: 1px solid rgba(201,169,110,0.12);
  overflow: hidden; transition: border-color 0.3s;
}
.blog-card:hover { border-color: rgba(201,169,110,0.5); }
.blog-img {
  height: 200px; background: center/cover no-repeat;
  transition: transform 0.7s; overflow: hidden;
}
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-body { padding: 24px; }
.blog-tag { font-size: 9px; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 10px; }
.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; color: #fff; margin-bottom: 8px; line-height: 1.4;
}
.blog-excerpt { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.8; }

/* ===== SOCIAL ===== */
.social-section { background: #080603; padding: 80px 40px; text-align: center; }
.social-links { display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.soc-link {
  border: 1px solid rgba(201,169,110,0.25);
  color: rgba(255,255,255,0.6);
  padding: 14px 28px; font-size: 11px; letter-spacing: 0.15em;
  text-decoration: none; text-transform: uppercase;
  transition: all 0.3s;
  display: flex; align-items: center; gap: 10px;
}
.soc-link:hover { background: var(--gold); color: #1a1208; border-color: var(--gold); }

/* ===== CONTACT ===== */
.contact-section {
  background: url('https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?w=1600&q=80') center/cover fixed;
  position: relative; padding: 100px 40px;
}
.contact-section::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(8,5,2,0.87);
}
.contact-inner { position: relative; z-index: 1; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; margin-top: 60px;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.ci-item { display: flex; gap: 18px; align-items: flex-start; }
.ci-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; color: var(--gold);
}
.ci-label { font-size: 9px; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 6px; }
.ci-val { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.7; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 9px; letter-spacing: 0.2em; color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.2);
  color: #fff; padding: 13px 16px;
  font-family: 'Jost', sans-serif; font-size: 13px;
  outline: none; transition: border-color 0.3s; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: #1a1208; color: #fff; }
.form-group textarea { height: 120px; resize: vertical; }
.submit-btn {
  background: var(--gold); color: #1a1208;
  border: none; padding: 15px 40px;
  font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; align-self: flex-start;
  margin-top: 8px;
}
.submit-btn:hover { background: #e8c97a; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,169,110,0.3); }

/* ===== FOOTER ===== */
.footer {
  background: #060402;
  border-top: 1px solid rgba(201,169,110,0.2);
  padding: 60px 40px 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300;
  color: var(--gold); margin-bottom: 12px;
}
.footer-desc { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.8; max-width: 240px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { color: var(--gold); font-size: 16px; text-decoration: none; }
.footer-col h4 { font-size: 9px; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 20px; text-transform: uppercase; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 12px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201,169,110,0.12);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; color: rgba(255,255,255,0.25); letter-spacing: 0.08em;
  flex-wrap: wrap; gap: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-section,
  .contact-grid,
  .locations-grid,
  .hygiene-inner,
  .faq-grid,
  .academy-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .gallery-item:nth-child(n) { grid-column: span 12; grid-row: span 1; }
  .blog-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav { padding: 14px 20px; }
  .lang-bar { padding: 8px 20px; }

  .portfolio-section,
  .services-section,
  .pricing-section,
  .testi-section,
  .locations-section,
  .faq-section,
  .contact-section,
  .why-section,
  .blog-section,
  .academy-section,
  .hygiene-section,
  .about-content { padding: 70px 20px; }

  .hero-stats { display: none; }
}
