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

:root {
  --deep:      #061a0e;
  --forest:    #0a2e16;
  --emerald:   #0f4423;
  --jade:      #1a6b38;
  --mint:      #2d9b57;
  --gold:      #c8a84b;
  --gold-lt:   #e8c96a;
  --gold-dim:  rgba(200,168,75,.18);
  --gold-glow: rgba(200,168,75,.35);
  --white:     #ffffff;
  --ivory:     #faf7f0;
  --glass:     rgba(255,255,255,.045);
  --glass-b:   rgba(255,255,255,.08);
  --text-dim:  rgba(255,255,255,.58);
  --text-sub:  #5a7a62;
  --shadow-lg: 0 32px 80px rgba(0,0,0,.55);
  --shadow-md: 0 16px 48px rgba(0,0,0,.35);
  --r-xl:      24px;
  --r-lg:      18px;
  --r-md:      12px;
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --ease-out:    cubic-bezier(.22,1,.36,1);
}

html { scroll-behavior: smooth; }

body, p, li, span, a {
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════ GLOBAL UTILITIES ═══════════════════════════ */

.cursor-glow {
  position: fixed; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,.12) 0%, transparent 70%);
  pointer-events: none; z-index: 9999; transform: translate(-50%,-50%);
  transition: opacity .3s; mix-blend-mode: screen;
}

.sr { opacity: 0; transform: translateY(48px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.sr.sr-left  { transform: translateX(-56px); }
.sr.sr-right { transform: translateX(56px); }
.sr.sr-scale { transform: scale(.92); }
.sr.in { opacity: 1 !important; transform: none !important; }
.sr.d1 { transition-delay: .1s; }
.sr.d2 { transition-delay: .2s; }
.sr.d3 { transition-delay: .3s; }
.sr.d4 { transition-delay: .4s; }
.sr.d5 { transition-delay: .5s; }

.sec-sup {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 600; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.sec-sup::before, .sec-sup::after {
  content: ''; width: 24px; height: 1px; background: var(--gold); flex-shrink: 0;
}

.sec-title-dark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px,4vw,48px);
  font-weight: 700; color: var(--forest);
  line-height: 1.12; letter-spacing: -.5px;
}

.sec-title-light {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px,4vw,52px);
  font-weight: 700; color: var(--white);
  line-height: 1.1; letter-spacing: -.5px;
}

.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 18px 0;
}
.ornament .line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament .line.r { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament .gem { color: var(--gold); font-size: 12px; letter-spacing: 3px; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 50%, var(--gold) 100%);
  background-size: 200%; color: var(--forest) !important;
  font-size: 11px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; text-decoration: none;
  padding: 14px 36px; border-radius: 60px;
  box-shadow: 0 8px 28px var(--gold-glow);
  transition: all .4s var(--ease-spring);
  position: relative; overflow: hidden;
  border: none; cursor: pointer;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.2); transform: translateX(-110%) skewX(-20deg);
  transition: transform .5s var(--ease-out);
}
.btn-gold:hover { transform: translateY(-4px); background-position: right; box-shadow: 0 16px 40px var(--gold-glow); color: var(--forest) !important; }
.btn-gold:hover::before { transform: translateX(110%) skewX(-20deg); }

.btn-glass {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--glass-b); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white) !important;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; text-decoration: none;
  padding: 14px 36px; border-radius: 60px;
  transition: all .35s var(--ease-out);
  cursor: pointer;
}
.btn-glass:hover {
  background: rgba(255,255,255,.14); border-color: var(--gold-glow);
  transform: translateY(-3px); color: var(--white) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}

.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; border: 1.5px solid var(--gold);
  color: var(--forest) !important;
  font-size: 11px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; text-decoration: none;
  padding: 13px 34px; border-radius: 60px;
  transition: all .35s var(--ease-spring);
  cursor: pointer;
}
.btn-outline-gold:hover {
  background: var(--gold); box-shadow: 0 10px 28px var(--gold-glow);
  transform: translateY(-3px); color: var(--forest) !important;
}


/* ═══════════════════════════════════════════════════════════
   1. HERO SECTION
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--deep);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}

.hero-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(15,68,35,.85) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(26,107,56,.4) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(200,168,75,.08) 0%, transparent 50%);
}

.hero-stars {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.star {
  position: absolute; background: var(--gold-lt); border-radius: 50%;
  animation: twinkle var(--dur, 3s) var(--del, 0s) ease-in-out infinite;
}
@keyframes twinkle {
  0%,100% { opacity: .08; transform: scale(1); }
  50% { opacity: .55; transform: scale(1.4); }
}

.hero-pattern {
  position: absolute; inset: 0; z-index: 0; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23c8a84b' d='M50 5L61 38H95L67 56L78 90L50 72L22 90L33 56L5 38H39Z'/%3E%3Ccircle cx='50' cy='50' r='45' stroke='%23c8a84b' stroke-width='.8' fill='none'/%3E%3C/svg%3E");
  animation: patternDrift 40s linear infinite;
}
@keyframes patternDrift { from { background-position: 0 0; } to { background-position: 100px 100px; } }

.orb {
  position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none;
  animation: orbFloat var(--dur, 8s) var(--del, 0s) ease-in-out infinite alternate;
}
@keyframes orbFloat {
  from { transform: translateY(0) translateX(0) scale(1); }
  to   { transform: translateY(-30px) translateX(15px) scale(1.08); }
}
.orb-1 { width: 500px; height: 500px; background: rgba(15,68,35,.6); top: -150px; left: -100px; --dur: 9s; }
.orb-2 { width: 350px; height: 350px; background: rgba(200,168,75,.06); top: 40%; right: -80px; --dur: 7s; --del: 2s; }
.orb-3 { width: 250px; height: 250px; background: rgba(26,107,56,.35); bottom: -80px; left: 30%; --dur: 11s; --del: 4s; }

.hero-content-col {
  position: relative; z-index: 4; padding: 80px 60px;
}
@media (max-width: 991px) { .hero-content-col { padding: 60px 24px; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold-lt);
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp .7s .2s var(--ease-out) forwards;
}
.hero-eyebrow .pip {
  width: 32px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-lt));
}
.hero-eyebrow .pip.r { background: linear-gradient(90deg, var(--gold-lt), transparent); }

.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px,5.5vw,72px);
  font-weight: 700; color: var(--white);
  line-height: 1.06; letter-spacing: -1px;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp .8s .35s var(--ease-out) forwards;
}
.hero-heading .accent {
  font-style: italic; color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text; background-clip: text;
}

.hero-desc {
  font-size: 15px; line-height: 1.9;
  color: var(--text-dim); max-width: 480px;
  margin-bottom: 36px;
  opacity: 0; animation: fadeUp .8s .5s var(--ease-out) forwards;
}
.hero-desc * { color: var(--text-dim) !important; background: transparent !important; font-size: 15px !important; line-height: 1.9 !important; }

.hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px;
  opacity: 0; animation: fadeUp .8s .65s var(--ease-out) forwards;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(200,168,75,.2);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.72);
  font-size: 11px; font-weight: 500; letter-spacing: .5px;
  padding: 8px 18px; border-radius: 60px;
  transition: all .3s;
}
.hero-pill:hover { background: rgba(200,168,75,.12); border-color: var(--gold); color: var(--gold-lt); }
.hero-pill .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s .8s var(--ease-out) forwards;
}

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

.hero-img-col {
  position: relative; z-index: 4;
  display: flex; align-items: center; justify-content: center;
  padding: 60px 40px;
  opacity: 0; animation: slideInRight .9s .3s var(--ease-out) forwards;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

.tilt-wrap {
  perspective: 1000px;
  width: 100%; max-width: 480px;
}

.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(200,168,75,.12);
  pointer-events: none; z-index: -1;
}
.hero-ring-1 { width: 560px; height: 560px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: ringPulse 6s ease-in-out infinite; }
.hero-ring-2 { width: 440px; height: 440px; top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(45deg); animation: ringPulse 6s 2s ease-in-out infinite; border-style: dashed; }
@keyframes ringPulse { 0%,100% { opacity: .3; } 50% { opacity: .8; } }

.hero-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(200,168,75,.25);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(200,168,75,.08), inset 0 1px 0 rgba(255,255,255,.06);
  transform-style: preserve-3d;
  transition: box-shadow .4s;
  background: var(--emerald);
}
.hero-card::before {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(6,26,14,.8) 100%);
}
.hero-card::after {
  content: ''; position: absolute; inset: -1px; z-index: 3; pointer-events: none;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(200,168,75,.15) 0%, transparent 40%, transparent 60%, rgba(200,168,75,.07) 100%);
}

.hero-img { display: block; width: 100%; height: 440px; object-fit: cover; object-position: center top; transition: transform .7s var(--ease-out); }
.hero-card:hover .hero-img { transform: scale(1.05); }

@keyframes borderShimmer {
  0%   { border-color: rgba(200,168,75,.2); box-shadow: var(--shadow-lg), 0 0 30px rgba(200,168,75,.1); }
  50%  { border-color: rgba(200,168,75,.55); box-shadow: var(--shadow-lg), 0 0 60px rgba(200,168,75,.25); }
  100% { border-color: rgba(200,168,75,.2); box-shadow: var(--shadow-lg), 0 0 30px rgba(200,168,75,.1); }
}
.hero-card { animation: borderShimmer 4s ease-in-out infinite; }

.hero-badge {
  position: absolute; top: 20px; left: 20px; z-index: 5;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--forest); font-size: 9px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 60px;
  box-shadow: 0 4px 18px var(--gold-glow);
}

.hero-counter {
  position: absolute; bottom: 20px; right: 20px; z-index: 5;
  background: rgba(6,26,14,.75); backdrop-filter: blur(12px);
  border: 1px solid rgba(200,168,75,.28);
  border-radius: 60px; padding: 6px 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 600; color: var(--gold-lt); letter-spacing: .5px;
}

.hero-slide-title {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  padding: 28px 22px 22px;
  background: linear-gradient(0deg, rgba(6,26,14,.9) 0%, transparent 100%);
}
.hero-slide-title span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 600; color: var(--white); letter-spacing: .3px;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}

.h-corner { position: absolute; width: 44px; height: 44px; pointer-events: none; z-index: 10; }
.h-corner-tl { top: -6px; left: -6px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); border-radius: 6px 0 0 0; }
.h-corner-tr { top: -6px; right: -6px; border-top: 2px solid var(--gold-lt); border-right: 2px solid var(--gold-lt); border-radius: 0 6px 0 0; }
.h-corner-bl { bottom: -6px; left: -6px; border-bottom: 2px solid var(--gold-lt); border-left: 2px solid var(--gold-lt); border-radius: 0 0 0 6px; }
.h-corner-br { bottom: -6px; right: -6px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); border-radius: 0 0 6px 0; }

.h-dot { position: absolute; border-radius: 50%; pointer-events: none; }
.h-dot-1 { width: 8px; height: 8px; background: var(--gold); top: 20%; left: -24px; opacity: .6; animation: dotBob 3.5s ease-in-out infinite; }
.h-dot-2 { width: 5px; height: 5px; background: var(--gold-lt); top: 60%; left: -18px; opacity: .4; animation: dotBob 4.2s 1s ease-in-out infinite; }
.h-dot-3 { width: 6px; height: 6px; background: var(--gold); bottom: 22%; right: -22px; opacity: .55; animation: dotBob 3.8s 2s ease-in-out infinite; }
@keyframes dotBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.h-img-carousel .owl-dots {
  position: absolute; bottom: 58px; left: 50%; transform: translateX(-50%);
  z-index: 6; display: flex !important; gap: 5px; align-items: center;
}
.h-img-carousel .owl-dot span {
  width: 16px !important; height: 2.5px !important; border-radius: 2px !important;
  background: rgba(255,255,255,.3) !important; transition: all .35s !important; margin: 0 !important;
}
.h-img-carousel .owl-dot.active span { width: 28px !important; background: var(--gold-lt) !important; }
.h-img-carousel .owl-nav { display: none !important; }

.hero-gold-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px; z-index: 10;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-lt), var(--gold), transparent);
  background-size: 300%; animation: barMove 3.5s linear infinite;
}
@keyframes barMove { from { background-position: -100%; } to { background-position: 200%; } }

.hero .main-slider-carousel > .owl-nav button {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(200,168,75,.1) !important; backdrop-filter: blur(12px);
  border: 1px solid rgba(200,168,75,.3) !important;
  color: var(--gold-lt) !important; font-size: 18px !important;
  transition: all .25s; z-index: 20;
}
.hero .main-slider-carousel > .owl-nav button:hover { background: var(--gold) !important; color: var(--forest) !important; box-shadow: 0 0 20px var(--gold-glow); }
.hero .main-slider-carousel > .owl-prev { left: 18px; }
.hero .main-slider-carousel > .owl-next { right: 18px; }
.hero .main-slider-carousel > .owl-dots { display: none; }

@media (max-width: 767px) {
  .hero-img-col { display: none; }
  .hero-content-col { padding: 100px 24px 60px; }
}



 /* ═══════════════════════════════════════════════════════════
   2. ABOUT SECTION — Split glass card + 3D image frame
═══════════════════════════════════════════════════════════  */

.about-section {
  padding: 120px 0; background: var(--ivory);
  position: relative; overflow: hidden;
}
.about-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 90% 10%, rgba(200,168,75,.08) 0%, transparent 50%),
                    radial-gradient(circle at 5% 80%,  rgba(15,68,35,.06) 0%, transparent 50%);
}

/* Text side */
.about-text {
  position: relative; padding-left: 32px;
}
.about-text::before {
  content: ''; position: absolute; left: 0; top: 8%; bottom: 8%;
  width: 3px; border-radius: 3px;
  background: linear-gradient(180deg, transparent, var(--gold), var(--gold-lt), var(--gold), transparent);
}
.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px,3.5vw,46px);
  font-weight: 700; color: var(--forest); line-height: 1.12;
  margin: 0 0 22px; letter-spacing: -.5px;
}
.about-text p {
  font-size: 15px; color: var(--text-sub); line-height: 1.9; margin-bottom: 34px;
}
.about-text p * { color: var(--text-sub) !important; }

/* Image frame — 3D perspective card */
.about-img-wrap {
  perspective: 1000px;
}
.about-img-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(200,168,75,.12);
  border: 1px solid rgba(200,168,75,.2);
  transition: transform .6s var(--ease-out), box-shadow .6s;
}
.about-img-card:hover {
  transform: rotateY(-4deg) rotateX(2deg) translateZ(10px);
  box-shadow: 0 40px 90px rgba(0,0,0,.35), 0 0 0 1px rgba(200,168,75,.3);
}
.about-img-card img { width: 100%; display: block; transition: transform .7s var(--ease-out); }
.about-img-card:hover img { transform: scale(1.04); }
.about-img-card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(200,168,75,.12) 0%, transparent 40%);
  z-index: 2;
}

/* Play button */
.play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); z-index: 4;
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,.1); backdrop-filter: blur(16px);
  border: 1.5px solid rgba(200,168,75,.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-lt); font-size: 24px; text-decoration: none;
  transition: all .35s var(--ease-spring);
}
.play-btn:hover {
  transform: translate(-50%,-50%) scale(1.15);
  background: var(--gold); color: var(--forest);
  box-shadow: 0 8px 30px var(--gold-glow);
}
.play-btn::after {
  content: ''; position: absolute;
  width: 100%; height: 100%; border-radius: 50%;
  border: 1.5px solid rgba(200,168,75,.35);
  animation: playPulse 2s ease-in-out infinite;
}
@keyframes playPulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }

/* Floating stat cards */
.about-stat {
  position: absolute; z-index: 5;
  background: rgba(255,255,255,.92); backdrop-filter: blur(20px);
  border: 1px solid rgba(200,168,75,.2);
  border-radius: var(--r-md);
  padding: 14px 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  animation: statFloat 4s ease-in-out infinite alternate;
}
.about-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 700; color: var(--forest); line-height: 1;
}
.about-stat .lbl { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-sub); margin-top: 2px; }
.about-stat-1 { bottom: -18px; left: -18px; animation-delay: 0s; }
.about-stat-2 { top: -18px; right: -18px; animation-delay: 1.5s; }
@keyframes statFloat { from { transform: translateY(0); } to { transform: translateY(-8px); } }

@media (max-width: 991px) {
  .about-text { padding-left: 20px; }
  .about-stat { display: none; }
}


 /* ═══════════════════════════════════════════════════════════
   3. PRODUCT / SERVICE SECTIONS — 3D cards, alternating layout
═══════════════════════════════════════════════════════════ */

.service-section {
  padding: 110px 0; position: relative; overflow: hidden;
}
.service-section:nth-child(odd)  { background: #f7f4ed; }
.service-section:nth-child(even) { background: var(--ivory); }

/* Decorative circle bg */
.service-section::before {
  content: ''; position: absolute; width: 400px; height: 400px;
  border-radius: 50%; border: 1px solid rgba(200,168,75,.08);
  bottom: -120px; right: -120px; pointer-events: none;
}
.service-section:nth-child(odd)::before { right: auto; left: -120px; }

/* Image carousel wrapper */
.svc-img-wrap { position: relative; }

.svc-num-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 700; color: var(--forest);
  box-shadow: 0 8px 24px var(--gold-glow);
  margin-bottom: 20px;
}

/* Image card 3D */
.svc-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(200,168,75,.1);
  border: 1px solid rgba(200,168,75,.12);
  transition: transform .45s var(--ease-out), box-shadow .45s;
  cursor: pointer;
}
.svc-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: 0 32px 72px rgba(0,0,0,.2), 0 0 0 1px rgba(200,168,75,.28);
}
.svc-card img { width: 100%; height: 420px; object-fit: cover; display: block; transition: transform .6s var(--ease-out); }
.svc-card:hover img { transform: scale(1.06); }
.svc-card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(6,26,14,.4) 100%);
}

/* Carousel arrows — inside image */
.svc-img-wrap .owl-nav {
  position: absolute !important; top: 50% !important;
  left: 0 !important; right: 0 !important;
  transform: translateY(-50%) !important;
  display: flex !important; justify-content: space-between !important;
  pointer-events: none !important; z-index: 10 !important;
  margin: 0 !important; padding: 0 12px !important;
}
.svc-img-wrap .owl-nav button {
  pointer-events: all !important;
  width: 42px !important; height: 42px !important; border-radius: 50% !important;
  background: rgba(6,26,14,.7) !important; backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(200,168,75,.4) !important;
  color: var(--gold-lt) !important; font-size: 16px !important;
  display: inline-flex !important; align-items: center !important; justify-content: center !important;
  transition: all .25s !important; margin: 0 !important;
}
.svc-img-wrap .owl-nav button:hover { background: var(--gold) !important; color: var(--forest) !important; }
.svc-img-wrap .owl-dots {
  display: flex !important; align-items: center; justify-content: center; gap: 6px;
  margin-top: 16px !important;
}
.svc-img-wrap .owl-dot span {
  width: 20px !important; height: 2.5px !important; border-radius: 2px !important;
  background: rgba(200,168,75,.25) !important; display: block;
  transition: all .3s !important; margin: 0 !important;
}
.svc-img-wrap .owl-dot.active span { background: var(--gold) !important; width: 36px !important; }

/* Text side */
.svc-text-wrap {
  position: relative; padding: 10px 10px 10px 30px;
}
.svc-text-wrap::before {
  content: ''; position: absolute; left: 0; top: 10%; bottom: 10%;
  width: 3px; border-radius: 3px;
  background: linear-gradient(180deg, transparent, var(--gold), var(--gold-lt), var(--gold), transparent);
}
.svc-text-wrap.flip { padding-left: 10px; padding-right: 30px; }
.svc-text-wrap.flip::before { left: auto; right: 0; }
.svc-text-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px,3vw,38px);
  font-weight: 700; color: var(--forest); line-height: 1.15; margin: 0 0 20px;
}
.svc-text-wrap p { font-size: 15px; color: var(--text-sub); line-height: 1.9; margin-bottom: 30px; }
.svc-text-wrap p * { color: var(--text-sub) !important; }

@media (max-width: 991px) {
  .svc-text-wrap, .svc-text-wrap.flip { padding: 0; }
  .svc-text-wrap::before, .svc-text-wrap.flip::before { display: none; }
  .svc-card img { height: 280px; }
}

  /* ═══════════════════════════════════════════════════════════
   4. WHY CHOOSE US — Premium dark emerald grid
═══════════════════════════════════════════════════════════ */

.why-section {
  padding: 110px 0;
  background: var(--forest);
  position: relative; overflow: hidden;
}
.why-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='46' stroke='%23c8a84b' stroke-opacity='.04' stroke-width='.8' fill='none'/%3E%3C/svg%3E");
}
.why-section::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(200,168,75,.06) 0%, transparent 60%);
}

/* Grid of cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  position: relative; z-index: 1;
}

.why-card {
  position: relative;
  padding: 52px 48px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(200,168,75,.07);
  transition: background .4s, border-color .4s, transform .4s var(--ease-out);
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, rgba(200,168,75,.06) 0%, transparent 55%);
  opacity: 0; transition: opacity .4s;
}
.why-card:hover {
  background: rgba(200,168,75,.06);
  border-color: rgba(200,168,75,.2);
  transform: translateY(-4px);
  z-index: 2;
}
.why-card:hover::before { opacity: 1; }

/* Gold line accent — top */
.why-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transform-origin: center;
  transition: transform .45s var(--ease-out);
}
.why-card:hover::after { transform: scaleX(1); }

/* Number watermark */
.why-num {
  position: absolute; top: 20px; right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 90px; font-weight: 700; line-height: 1;
  color: rgba(200,168,75,.06); pointer-events: none; user-select: none;
  transition: color .4s;
}
.why-card:hover .why-num { color: rgba(200,168,75,.12); }

/* Icon ring */
.why-icon-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1.5px solid rgba(200,168,75,.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; position: relative; z-index: 1;
  background: rgba(200,168,75,.06);
  transition: border-color .35s, background .35s, box-shadow .35s;
}
.why-card:hover .why-icon-wrap {
  border-color: var(--gold);
  background: rgba(200,168,75,.12);
  box-shadow: 0 0 24px rgba(200,168,75,.2);
}
.why-icon-wrap .wi {
  font-size: 26px; line-height: 1;
}

/* Gold dot */
.why-dot {
  position: absolute; bottom: -4px; right: -4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  box-shadow: 0 3px 10px var(--gold-glow);
}

/* Text */
.why-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700; color: var(--white);
  line-height: 1.2; margin: 0 0 14px;
  position: relative; z-index: 1;
  transition: color .3s;
}
.why-card:hover h4 { color: var(--gold-lt); }

.why-card p {
  font-size: 14px; color: rgba(255,255,255,.5);
  line-height: 1.9; margin: 0;
  position: relative; z-index: 1;
}
.why-card p * { color: rgba(255,255,255,.5) !important; background: transparent !important; }

/* Divider lines between cards */
.why-grid-divider-h {
  grid-column: 1 / -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,168,75,.1), transparent);
}

/* Icons list for each card */
.why-icons-row {
  display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.why-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 600; letter-spacing: 1px;
  color: var(--gold); border: 1px solid rgba(200,168,75,.2);
  padding: 4px 12px; border-radius: 60px;
  background: rgba(200,168,75,.05);
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 40px 28px; }
  .why-num { font-size: 60px; }
}


 /* ═══════════════════════════════════════════════════════════
   5. ASK SCHOLAR — Q&A SECTION (Premium redesign)
═══════════════════════════════════════════════════════════  */

.qa-section {
  padding: 110px 0;
  background: var(--deep);
  position: relative; overflow: hidden;
}

.qa-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='36' stroke='%23c8a84b' stroke-opacity='.04' stroke-width='.8' fill='none'/%3E%3C/svg%3E");
}
.qa-section::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(200,168,75,.07) 0%, transparent 60%),
              radial-gradient(ellipse 40% 40% at 90% 90%, rgba(15,68,35,.5) 0%, transparent 50%);
}

.qa-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
  width: 400px; height: 400px;
  background: rgba(15,68,35,.55);
  bottom: -100px; right: -80px; z-index: 0;
}
.qa-orb-2 {
  position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none;
  width: 300px; height: 300px;
  background: rgba(200,168,75,.04);
  top: -60px; left: -60px; z-index: 0;
}

/* Cards grid */
.qa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative; z-index: 1;
}

/* Single Q&A card */
.qa-card {
  position: relative;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(200,168,75,.1);
  border-radius: var(--r-xl);
  padding: 38px 36px 32px;
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .4s, background .4s;
  display: flex; flex-direction: column; gap: 20px;
}

/* Gradient shimmer overlay */
.qa-card::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, rgba(200,168,75,.07) 0%, transparent 55%);
  opacity: 0; transition: opacity .4s;
}

/* Top gold line reveal */
.qa-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-lt), var(--gold), transparent);
  transform: scaleX(0); transform-origin: center;
  transition: transform .5s var(--ease-out);
}
.qa-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(200,168,75,.2);
  border-color: rgba(200,168,75,.3);
  background: rgba(255,255,255,.065);
}
.qa-card:hover::before { opacity: 1; }
.qa-card:hover::after  { transform: scaleX(1); }

/* Large watermark number */
.qa-num {
  position: absolute; top: 12px; right: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px; font-weight: 700; line-height: 1;
  color: rgba(200,168,75,.045); pointer-events: none; user-select: none;
  transition: color .4s; z-index: 0;
}
.qa-card:hover .qa-num { color: rgba(200,168,75,.1); }

/* ── Question block ── */
.qa-q { position: relative; z-index: 1; }

.qa-q-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 9px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.qa-q-label .ql-pip {
  width: 20px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.qa-q h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 600; color: var(--white); line-height: 1.45;
  margin: 0; letter-spacing: -.2px;
}

/* ── Gold ornament divider ── */
.qa-divider {
  display: flex; align-items: center; gap: 10px;
  position: relative; z-index: 1;
}
.qa-divider .dline {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(200,168,75,.22), transparent);
}
.qa-divider .dline.r {
  background: linear-gradient(90deg, transparent, rgba(200,168,75,.22));
}
.qa-divider .dgem {
  font-size: 9px; color: rgba(200,168,75,.4); letter-spacing: 3px;
}

/* ── Answer block ── */
.qa-a { position: relative; z-index: 1; flex: 1; }

.qa-a-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 9px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  margin-bottom: 10px;
}
.qa-a-label::before {
  content: ''; display: block;
  width: 14px; height: 1.5px;
  background: rgba(255,255,255,.2);
}

.qa-a-inner {
  padding-left: 18px;
  border-left: 2px solid rgba(200,168,75,.18);
  transition: border-color .35s;
}
.qa-card:hover .qa-a-inner { border-color: rgba(200,168,75,.45); }

.qa-a p {
  font-size: 14px; color: rgba(255,255,255,.52);
  line-height: 1.88; margin: 0;
}

/* ── Meta row ── */
.qa-meta {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(200,168,75,.08);
  transition: border-color .35s;
}
.qa-card:hover .qa-meta { border-color: rgba(200,168,75,.18); }

.qa-date {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: rgba(255,255,255,.28); letter-spacing: .5px;
}
.qa-date::before {
  content: ''; display: block;
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(200,168,75,.35);
}

.qa-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,168,75,.07);
  border: 1px solid rgba(200,168,75,.16);
  border-radius: 60px; padding: 5px 16px;
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.qa-badge .badge-icon { font-size: 11px; }
.qa-card:hover .qa-badge {
  background: rgba(200,168,75,.14);
  border-color: rgba(200,168,75,.38);
  box-shadow: 0 4px 16px rgba(200,168,75,.12);
}

/* ── CTA row ── */
.qa-cta {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center;
  position: relative; z-index: 1;
  margin-top: 16px;
}

/* ── Empty state ── */
.qa-empty {
  grid-column: 1 / -1;
  text-align: center; padding: 80px 20px;
  color: rgba(255,255,255,.25);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-style: italic;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .qa-grid { grid-template-columns: 1fr; gap: 16px; }
  .qa-card { padding: 28px 22px 24px; }
  .qa-num  { font-size: 64px; }
}


 /* ═══════════════════════════════════════════════════════════
   6. BLOG SECTION — Premium cards with depth
═══════════════════════════════════════════════════════════  */

.blog-section {
  padding: 110px 0;
  background: var(--forest);
  position: relative; overflow: hidden;
}
.blog-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='36' stroke='%23c8a84b' stroke-opacity='.045' stroke-width='.8' fill='none'/%3E%3C/svg%3E");
}
.blog-section::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(200,168,75,.07) 0%, transparent 60%);
}

.blog-section .sec-title-light { text-align: center; }

/* Blog card */
.blog-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(200,168,75,.1);
  border-radius: var(--r-xl); overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .4s;
}
.blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 70px rgba(0,0,0,.4);
  border-color: rgba(200,168,75,.3);
}

.blog-thumb { position: relative; overflow: hidden; height: 230px; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.blog-card:hover .blog-thumb img { transform: scale(1.1); }
.blog-thumb::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(10,46,22,.7) 100%);
}

.blog-date-badge {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  background: rgba(6,26,14,.8); backdrop-filter: blur(12px);
  border: 1px solid rgba(200,168,75,.25);
  border-radius: var(--r-md); padding: 10px 16px; text-align: center;
}
.blog-date-badge .day   { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: var(--gold-lt); display: block; line-height: 1; }
.blog-date-badge .month { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; color: rgba(255,255,255,.6); text-transform: uppercase; display: block; margin-top: 3px; }

.blog-tag {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--forest); font-size: 9px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 60px;
}

.blog-body { padding: 28px; }
.blog-body h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600; color: var(--white); line-height: 1.4;
  margin: 0 0 12px; transition: color .25s;
}
.blog-body h5:hover { color: var(--gold-lt); }
.blog-body p { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 20px; }

.blog-read-more {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold) !important; text-decoration: none;
  transition: gap .25s, color .25s;
}
.blog-read-more:hover { color: var(--gold-lt) !important; gap: 12px; }

/* Blog carousel */
.blog-section .owl-nav button {
  width: 46px !important; height: 46px !important; border-radius: 50% !important;
  background: rgba(200,168,75,.1) !important; border: 1px solid rgba(200,168,75,.2) !important;
  color: var(--gold-lt) !important; font-size: 18px !important;
  transition: all .25s !important;
}
.blog-section .owl-nav button:hover { background: var(--gold) !important; color: var(--forest) !important; }
.blog-section .owl-dots { margin-top: 32px !important; text-align: center; }
.blog-section .owl-dot span {
  width: 26px !important; height: 2.5px !important; border-radius: 2px !important;
  background: rgba(200,168,75,.2) !important; margin: 0 4px !important; transition: all .3s !important;
}
.blog-section .owl-dot.active span { background: var(--gold) !important; width: 44px !important; }

 /* ═══════════════════════════════════════════════════════════
   7. SERVICE AREA — Cinematic parallax + glass stats
═══════════════════════════════════════════════════════════  */

.delivery-section {
  position: relative; padding: 140px 0; overflow: hidden;
  isolation: isolate;
}
.delivery-bg {
  position: absolute; inset: -60px; z-index: 0;
  background-size: cover; background-position: center;
  filter: brightness(.28) saturate(.75);
  will-change: transform;
}
.delivery-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(6,26,14,.92) 0%, rgba(15,68,35,.7) 50%, rgba(6,26,14,.92) 100%);
}

/* Concentric ring animation */
.dring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(200,168,75,.1); pointer-events: none; z-index: 2;
  top: 50%; right: 8%;
}
.dring-1 { width: 560px; height: 560px; transform: translateY(-50%); }
.dring-2 { width: 420px; height: 420px; transform: translateY(-50%) rotate(30deg); animation: dringRot 25s linear infinite; }
.dring-3 { width: 280px; height: 280px; transform: translateY(-50%) rotate(15deg); animation: dringRot 18s linear infinite reverse; }
@keyframes dringRot { from { transform: translateY(-50%) rotate(0deg); } to { transform: translateY(-50%) rotate(360deg); } }

/* Content */
.delivery-inner { position: relative; z-index: 5; }
.delivery-pretag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold-lt); margin-bottom: 22px;
}
.delivery-pretag::before { content: ''; width: 36px; height: 1.5px; background: var(--gold); }

.delivery-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px,4vw,52px);
  font-weight: 700; color: var(--white); line-height: 1.1;
  margin: 0 0 28px; letter-spacing: -.5px;
}
.delivery-inner p { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.9; max-width: 540px; margin-bottom: 40px; }
.delivery-inner p * { color: rgba(255,255,255,.65) !important; }

/* Stats row */
.d-stats { display: flex; gap: 0; margin-bottom: 44px; flex-wrap: wrap; }
.d-stat {
  text-align: center; padding: 22px 36px;
  background: rgba(255,255,255,.04); backdrop-filter: blur(12px);
  border: 1px solid rgba(200,168,75,.12);
  transition: background .3s, border-color .3s;
}
.d-stat:first-child { border-radius: var(--r-md) 0 0 var(--r-md); }
.d-stat:last-child  { border-radius: 0 var(--r-md) var(--r-md) 0; }
.d-stat:hover { background: rgba(200,168,75,.1); border-color: rgba(200,168,75,.3); }
.d-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 700; color: var(--gold-lt); line-height: 1;
  display: block;
}
.d-stat .lbl {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.45);
  display: block; margin-top: 6px;
}

/* ═══════════ ISLAMIC PREMIUM BACK TO TOP ═══════════ */
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.9);
    transition: all 0.4s ease;
}

/* Show button */
.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Circle progress */
.back-to-top svg {
    position: absolute;
    width: 60px;
    height: 60px;
    transform: rotate(-90deg);
}

.back-to-top circle {
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
}

/* Background circle */
.back-to-top .bg {
    stroke: rgba(255,255,255,0.1);
}

/* Progress circle */
.back-to-top .progress {
    stroke: #c8a84b; /* GOLD */
    stroke-dasharray: 188;
    stroke-dashoffset: 188;
    transition: stroke-dashoffset 0.2s linear;
    filter: drop-shadow(0 0 6px rgba(200,168,75,0.6));
}

/* Center button */
.back-to-top .inner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f4423, #1a6b38);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8a84b;
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Hover */
.back-to-top:hover .inner {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(200,168,75,0.4);
}

/* Arrow animation */
.back-to-top:hover i {
    transform: translateY(-3px);
}

/* Glow pulse */
.back-to-top::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(200,168,75,0.2);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    70% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}



/* ══ Kids Section ══ */
.kids-section {
  background: linear-gradient(135deg, #0a1f0f 0%, #0e2e18 50%, #0a1a0f 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.kids-mesh {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(184,142,48,.09) 0%, transparent 55%),
    radial-gradient(circle at 85% 75%, rgba(184,142,48,.07) 0%, transparent 55%);
  pointer-events: none;
}
.kids-pattern {
  position: absolute; inset: 0; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23c9a84c'/%3E%3Ccircle cx='0' cy='0' r='1.5' fill='%23c9a84c'/%3E%3Ccircle cx='60' cy='0' r='1.5' fill='%23c9a84c'/%3E%3Ccircle cx='0' cy='60' r='1.5' fill='%23c9a84c'/%3E%3Ccircle cx='60' cy='60' r='1.5' fill='%23c9a84c'/%3E%3C/svg%3E");
  pointer-events: none;
}
.kids-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.kids-orb-1 { top: -80px; left: -80px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(16,82,42,.5), transparent 70%); }
.kids-orb-2 { bottom: -60px; right: -60px; width: 240px; height: 240px; background: radial-gradient(circle, rgba(184,142,48,.12), transparent 70%); }

.kids-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-bottom: 48px;
}
.kids-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 18px;
  padding: 36px 26px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .35s, border-color .35s, background .35s;
}
.kids-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,.55);
  background: rgba(201,168,76,.07);
}
.kids-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  opacity: 0; transition: opacity .35s;
}
.kids-card:hover::before { opacity: 1; }
.kids-card-num {
  position: absolute; top: 16px; right: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 700;
  color: rgba(201,168,76,.08); line-height: 1;
}
.kids-icon-wrap {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,.15), rgba(201,168,76,.05));
  border: 1px solid rgba(201,168,76,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; position: relative;
}
.kids-icon-ring {
  position: absolute; inset: -5px; border-radius: 50%;
  border: 1px dashed rgba(201,168,76,.2);
}
.ki { font-size: 28px; line-height: 1; }
.kids-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700;
  color: #f5e7c1; margin: 0 0 10px;
}
.kids-card p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.8; margin: 0 0 20px; }
.kids-tags { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; }
.kids-tag {
  font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: #c9a84c; background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 20px; padding: 3px 11px;
}



