/* ═══════════════════════════════════════════════════════════
   SHREE LAMBODAR CREDIT — STYLES.CSS
   Theme: #1e3a2f (Deep Forest Green) + White + Gold Accent
═══════════════════════════════════════════════════════════ */

:root {
  --green-dark:   #1e3a2f;
  --green-mid:    #2a5240;
  --green-light:  #3a7a5a;
  --gold:         #c8a84b;
  --gold-light:   #e8c76a;
  --gold-pale:    #f5e9c8;
  --white:        #ffffff;
  --off-white:    #f8faf9;
  --text-primary: #1a2e25;
  --text-body:    #3d5a4a;
  --text-muted:   #6b8c7a;
  --border:       rgba(30, 58, 47, 0.1);

  --header-h:     80px;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 12px rgba(30,58,47,0.08);
  --shadow-md:    0 8px 32px rgba(30,58,47,0.14);
  --shadow-lg:    0 20px 60px rgba(30,58,47,0.18);

  --transition:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(30, 58, 47, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(30,58,47,0.25);
}
.header.scrolled .nav-link { color: rgba(255,255,255,0.92); }
.header.scrolled .nav-link:hover { color: var(--gold-light); background: rgba(255,255,255,0.07); }

/* ── FIX: white bars when scrolled (dark green header) ── */
.header.scrolled .ham-bar { background: #ffffff; }

.header-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: auto;
  background: rgba(255,255,255,0.96);
  padding: 6px 20px 6px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.20);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.5);
}
.logo:hover { background: #ffffff; box-shadow: 0 4px 24px rgba(0,0,0,0.26); transform: translateY(-1px); }
.logo-img { height: 50px; width: auto; object-fit: contain; transition: var(--transition); display: block; }

.nav { display: flex; }
.nav-list { display: flex; align-items: center; gap: 0.25rem; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 0.55rem 0.85rem;
  font-size: 0.875rem; font-weight: 500;
  color: rgba(0,0,0,0.85);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--green-dark); background: rgba(30,58,47,0.07); }
.chevron { width: 14px; height: 14px; stroke: currentColor; transition: transform 0.25s ease; flex-shrink: 0; }
.nav-item.has-dropdown:hover .chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 12px); left: 0;
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  overflow: visible; z-index: 100;
}
.dropdown::before {
  content: ''; position: absolute; top: -6px; left: 20px;
  width: 12px; height: 12px;
  background: var(--white);
  border-left: 1px solid var(--border); border-top: 1px solid var(--border);
  transform: rotate(45deg); border-radius: 2px;
}
.nav-item.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item { position: relative; border-bottom: 1px solid rgba(30,58,47,0.06); }
.dropdown-item:last-child { border-bottom: none; }
.dropdown-link {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 0.85rem 1.1rem;
  font-size: 0.86rem; font-weight: 500; color: var(--text-body);
  transition: var(--transition-fast); line-height: 1.4;
}
.dropdown-link:hover { color: var(--green-dark); background: var(--off-white); }
.chevron-right { width: 14px; height: 14px; stroke: currentColor; flex-shrink: 0; opacity: 0.5; transition: opacity 0.2s, transform 0.2s; }
.dropdown-item.has-subdropdown:hover .chevron-right { opacity: 1; transform: translateX(3px); }

.subdropdown {
  position: absolute; left: 100%; top: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0; visibility: hidden;
  transform: translateX(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 101;
}
.dropdown-item.has-subdropdown:hover .subdropdown { opacity: 1; visibility: visible; transform: translateX(0); }
.subdropdown li { border-bottom: 1px solid rgba(30,58,47,0.06); }
.subdropdown li:last-child { border-bottom: none; }
.subdropdown-link {
  display: flex; align-items: center;
  padding: 0.8rem 1.1rem;
  font-size: 0.84rem; font-weight: 400; color: var(--text-body);
  transition: var(--transition-fast); gap: 8px;
}
.subdropdown-link::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; opacity: 0; transition: opacity 0.2s; }
.subdropdown-link:hover { color: var(--green-dark); background: var(--off-white); padding-left: 1.3rem; }
.subdropdown-link:hover::before { opacity: 1; }

.header-cta {
  flex-shrink: 0;
  display: inline-flex; align-items: center;
  padding: 0.55rem 1.25rem;
  background: var(--gold); color: var(--green-dark);
  font-size: 0.875rem; font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.02em;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.header-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,168,75,0.4); }

/* ── Hamburger ─────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px; height: 42px;
  gap: 5px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  flex-shrink: 0;
}
/* ── FIX: dark tint hover — visible on light transparent header ── */
.hamburger:hover { background: rgba(30,58,47,0.08); }

/* ── FIX: bars are dark green by default — visible on transparent/white bg ── */
.ham-bar {
  display: block; width: 24px; height: 2px;
  background: var(--green-dark);          /* was var(--white) — now dark and visible */
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease, width 0.3s ease, background 0.3s ease;
  transform-origin: center;
}

/* X animation — driven by .active class set in JS */
.hamburger.active .ham-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .ham-bar:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active .ham-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; max-height: 0; overflow: hidden;
  background: rgba(20,44,35,0.99);
  backdrop-filter: blur(20px);
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
  opacity: 0; border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { max-height: 1000px; opacity: 1; }
.mobile-nav-list { padding: 1rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-link { display: block; padding: 0.85rem 1rem; font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.88); border-radius: var(--radius-sm); transition: var(--transition-fast); }
.mobile-nav-link:hover { color: var(--gold-light); background: rgba(255,255,255,0.06); }
.mobile-accordion-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1rem; font-size: 0.95rem; font-weight: 500;
  color: rgba(255,255,255,0.88); border-radius: var(--radius-sm);
  transition: var(--transition-fast); text-align: left;
}
.mobile-sub-btn { font-size: 0.875rem; color: rgba(255,255,255,0.7); padding-left: 1.5rem; }
.mobile-accordion-btn:hover { color: var(--gold-light); background: rgba(255,255,255,0.06); }
.mobile-accordion-btn.active .chevron { transform: rotate(180deg); }
.mobile-accordion-list { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1); }
.mobile-accordion-list.open { max-height: 600px; }
.mobile-sub-link { display: flex; align-items: center; gap: 8px; padding: 0.7rem 1rem 0.7rem 2.5rem; font-size: 0.85rem; font-weight: 400; color: rgba(255,255,255,0.6); transition: var(--transition-fast); border-radius: var(--radius-sm); }
.mobile-sub-link::before { content: '›'; color: var(--gold); font-size: 1.1rem; line-height: 1; }
.mobile-sub-link:hover { color: var(--gold-light); background: rgba(255,255,255,0.05); }
.mobile-cta { display: block; margin-top: 0.5rem; padding: 0.85rem 1.5rem; background: var(--gold); color: var(--green-dark); font-weight: 700; border-radius: 50px; text-align: center; font-size: 0.95rem; transition: var(--transition-fast); }
.mobile-cta:hover { background: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  background: var(--white);
  display: flex; align-items: center;
  overflow: hidden; padding-top: var(--header-h);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 75% 50%, rgba(30,58,47,0.04) 0%, transparent 70%),
              radial-gradient(ellipse 40% 60% at 10% 30%, rgba(200,168,75,0.05) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(30,58,47,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(30,58,47,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0; opacity: 0.6;
}
.hero-container {
  position: relative; z-index: 2;
  max-width: 1320px; margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem; width: 100%;
}
.coins-bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.coin { position: absolute; font-weight: 800; color: var(--green-dark); opacity: 0; border-radius: 50%; display: flex; align-items: center; justify-content: center; animation: floatCoin linear infinite; user-select: none; }
.coin-1  { font-size: 1.4rem; left: 5%;   animation-duration: 14s; animation-delay: 0s;    opacity: 0.07; }
.coin-2  { font-size: 2rem;   left: 12%;  animation-duration: 18s; animation-delay: 2s;    opacity: 0.05; }
.coin-3  { font-size: 1.1rem; left: 20%;  animation-duration: 12s; animation-delay: 4s;    opacity: 0.08; }
.coin-4  { font-size: 1.8rem; left: 30%;  animation-duration: 20s; animation-delay: 1s;    opacity: 0.05; }
.coin-5  { font-size: 1.3rem; left: 40%;  animation-duration: 16s; animation-delay: 6s;    opacity: 0.07; }
.coin-6  { font-size: 2.2rem; left: 50%;  animation-duration: 22s; animation-delay: 3s;    opacity: 0.04; }
.coin-7  { font-size: 1rem;   left: 62%;  animation-duration: 13s; animation-delay: 7s;    opacity: 0.06; }
.coin-8  { font-size: 1.6rem; left: 72%;  animation-duration: 19s; animation-delay: 0.5s;  opacity: 0.05; }
.coin-9  { font-size: 1.5rem; left: 80%;  animation-duration: 15s; animation-delay: 5s;    opacity: 0.07; }
.coin-10 { font-size: 1.2rem; left: 88%;  animation-duration: 17s; animation-delay: 2.5s;  opacity: 0.06; }
.coin-11 { font-size: 2rem;   left: 93%;  animation-duration: 21s; animation-delay: 8s;    opacity: 0.04; }
.coin-12 { font-size: 1.4rem; left: 25%;  animation-duration: 11s; animation-delay: 9s;    opacity: 0.06; }
@keyframes floatCoin {
  0%   { transform: translateY(110vh) rotate(0deg);   opacity: 0; }
  8%   { opacity: 1; }
  88%  { opacity: 0.9; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

.hero-text { display: flex; flex-direction: column; gap: 1.25rem; animation: slideInLeft 0.8s cubic-bezier(0.4,0,0.2,1) both; }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; padding: 0.35rem 0.9rem; background: rgba(200,168,75,0.1); color: #8a6a1a; border: 1px solid rgba(200,168,75,0.3); border-radius: 50px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; width: fit-content; }
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }
.hero-subtitle { font-size: 0.9rem; font-weight: 600; color: var(--green-light); letter-spacing: 0.1em; text-transform: uppercase; }
.hero-title { font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 800; line-height: 1.1; color: var(--text-primary); letter-spacing: -0.02em; }
.hero-title-accent { color: var(--green-dark); position: relative; display: inline-block; }
.hero-title-accent::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; transform: scaleX(0); transform-origin: left; animation: underlineGrow 0.8s 0.6s cubic-bezier(0.4,0,0.2,1) forwards; }
@keyframes underlineGrow { to { transform: scaleX(1); } }
.hero-body { font-size: 1rem; line-height: 1.75; color: var(--text-body); max-width: 520px; }
.hero-body-second { margin-top: -0.5rem; }
.hero-body strong { color: var(--green-dark); font-weight: 700; }

.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 0.85rem 1.75rem; background: var(--green-dark); color: var(--white); font-size: 0.95rem; font-weight: 600; border-radius: 50px; transition: var(--transition-fast); letter-spacing: 0.01em; box-shadow: 0 4px 20px rgba(30,58,47,0.25); }
.btn-primary:hover { background: #c8a84b; color: rgba(0,0,0,1); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(30,58,47,0.35); }
.btn-icon { width: 18px; height: 18px; transition: transform 0.2s ease; }
.btn-primary:hover .btn-icon { transform: translateX(4px); }
.btn-outline { display: inline-flex; align-items: center; padding: 0.85rem 1.75rem; border: 2px solid var(--green-dark); color: var(--green-dark); font-size: 0.95rem; font-weight: 600; border-radius: 50px; transition: var(--transition-fast); }
.btn-outline:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); }

.hero-stats { display: flex; align-items: center; gap: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border); margin-top: 0.5rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-number { font-size: 1.5rem; font-weight: 800; color: var(--green-dark); line-height: 1; letter-spacing: -0.02em; }
.stat-label { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.02em; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

.hero-image-wrap { position: relative; display: flex; align-items: center; justify-content: center; animation: slideInRight 0.8s 0.2s cubic-bezier(0.4,0,0.2,1) both; }
@keyframes slideInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
.hero-image-glow { position: absolute; width: 75%; height: 75%; background: radial-gradient(ellipse, rgba(30,58,47,0.12) 0%, transparent 70%); border-radius: 50%; filter: blur(40px); animation: glowPulse 4s ease-in-out infinite; }
@keyframes glowPulse { 0%, 100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.1); opacity: 1; } }
.hero-image-frame { position: relative; z-index: 1; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 25px 60px rgba(30,58,47,0.15), 0 0 0 1px rgba(30,58,47,0.06); transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.hero-image-frame:hover { transform: translateY(-6px); }
.hero-img { width: 100%; max-width: 560px; display: block; border-radius: var(--radius-lg); }
.hero-badge-float { position: absolute; bottom: 24px; left: -20px; z-index: 2; display: flex; align-items: center; gap: 8px; padding: 0.65rem 1rem; background: var(--white); border-radius: 50px; box-shadow: var(--shadow-md); font-size: 0.8rem; font-weight: 600; color: var(--text-primary); border: 1px solid var(--border); animation: floatBadge 3s ease-in-out infinite; }
.hero-badge-float svg { color: var(--gold); flex-shrink: 0; }
@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — HEADER / HERO
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .header-cta { display: none; }
  .nav-list { gap: 0; }
  .nav-link { font-size: 0.82rem; padding: 0.5rem 0.65rem; }
  .hero-container { gap: 2.5rem; padding: 4rem 1.5rem 3rem; }
  .hero-title { font-size: clamp(2rem, 3.5vw, 3rem); }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .header-container { gap: 1rem; }
  .hero-container { grid-template-columns: 1fr; text-align: center; padding: 5rem 1.5rem 3rem; gap: 3rem; }
  .hero-text { align-items: center; }
  .hero-body { max-width: 100%; }
  .hero-stats { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-img { max-width: 380px; margin: 0 auto; }
  .hero-badge-float { left: 50%; transform: translateX(-50%); bottom: -16px; }
  .hero-badge-float:hover { transform: translateX(-50%) translateY(-6px); }
}
@media (max-width: 480px) {
  :root { --header-h: 68px; }
  .logo { padding: 4px 14px 4px 8px; }
  .logo-img { height: 38px; }
  .hero-container { padding: 4rem 1rem 2.5rem; gap: 2.5rem; }
  .hero-title { font-size: 2rem; }
  .hero-img { max-width: 300px; }
  .hero-actions { justify-content: center; flex-direction: column; width: 100%; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .hero-stats { gap: 1rem; }
  .stat-number { font-size: 1.2rem; }
  .stat-label { font-size: 0.7rem; }
  .mobile-nav-list { padding: 0.75rem 1rem 1.25rem; }
}
@media (max-width: 360px) {
  .hero-title { font-size: 1.75rem; }
  .logo-img { height: 38px; }
}

/* ═══════════════════════════════════════════════════════════
   OUR SERVICES SECTION
═══════════════════════════════════════════════════════════ */
.services-section { position: relative; padding: 7rem 0 7rem; background: #f5f8f6; overflow: hidden; }
.services-bg-icons { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.svc-bg-icon { position: absolute; font-family: 'Inter', sans-serif; font-weight: 900; color: var(--green-dark); opacity: 0.04; user-select: none; animation: svcBgFloat linear infinite; }
.sbi-1 { font-size: 6rem;  left: 3%;   top: 10%; animation-duration: 18s; animation-delay: 0s; }
.sbi-2 { font-size: 9rem;  left: 85%;  top: 5%;  animation-duration: 22s; animation-delay: 4s; }
.sbi-3 { font-size: 5rem;  left: 50%;  top: 70%; animation-duration: 16s; animation-delay: 2s; }
.sbi-4 { font-size: 7rem;  left: 70%;  top: 40%; animation-duration: 20s; animation-delay: 6s; }
.sbi-5 { font-size: 4rem;  left: 20%;  top: 60%; animation-duration: 14s; animation-delay: 1s; }
.sbi-6 { font-size: 8rem;  left: 40%;  top: 15%; animation-duration: 24s; animation-delay: 8s; }
@keyframes svcBgFloat { 0% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-30px) rotate(6deg); } 100% { transform: translateY(0px) rotate(0deg); } }

.services-container { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; padding: 0 2rem; }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-light); margin-bottom: 0.75rem; }
.services-eyebrow::before, .services-eyebrow::after { content: ''; width: 28px; height: 1.5px; background: var(--green-light); border-radius: 2px; }
.services-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; color: var(--text-primary); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 0.4rem; }
.services-subtitle { font-size: 1.05rem; font-weight: 400; color: var(--text-muted); margin-bottom: 0.6rem; }
.services-subtitle-brand { font-weight: 700; color: var(--green-dark); }
.services-desc { font-size: 0.95rem; color: var(--text-muted); max-width: 460px; margin: 0 auto 1.5rem; line-height: 1.7; }
.services-title-bar { width: 60px; height: 4px; background: linear-gradient(90deg, var(--green-dark), var(--gold)); border-radius: 4px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; align-items: stretch; }
.svc-card { position: relative; border-radius: 20px; background: var(--white); box-shadow: 0 4px 24px rgba(30,58,47,0.08); border: 1px solid rgba(30,58,47,0.07); overflow: hidden; transition: transform 0.38s cubic-bezier(0.4,0,0.2,1), box-shadow 0.38s cubic-bezier(0.4,0,0.2,1); cursor: default; }
.svc-card:hover { transform: translateY(-10px); box-shadow: 0 24px 56px rgba(30,58,47,0.18); }
.svc-card--featured { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-8px); box-shadow: 0 20px 50px rgba(30,58,47,0.28); }
.svc-card--featured:hover { transform: translateY(-18px); box-shadow: 0 32px 64px rgba(30,58,47,0.35); }
.svc-card-inner { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; }
.card-float-icons { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; opacity: 0; transition: opacity 0.3s ease; }
.svc-card:hover .card-float-icons { opacity: 1; }
.cfi { position: absolute; font-family: 'Inter', sans-serif; font-weight: 900; color: var(--gold); opacity: 0; animation: none; user-select: none; }
.svc-card:hover .cfi { animation: cardFloatUp 1.8s ease-in-out infinite; }
.cfi-1 { font-size: 1.2rem; left: 8%;  animation-delay: 0s;    animation-duration: 2.0s; }
.cfi-2 { font-size: 1.6rem; left: 25%; animation-delay: 0.3s;  animation-duration: 2.4s; }
.cfi-3 { font-size: 1rem;   left: 55%; animation-delay: 0.6s;  animation-duration: 1.8s; }
.cfi-4 { font-size: 1.4rem; left: 72%; animation-delay: 0.9s;  animation-duration: 2.2s; }
.cfi-5 { font-size: 1.1rem; left: 88%; animation-delay: 0.15s; animation-duration: 2.0s; }
@keyframes cardFloatUp { 0% { transform: translateY(120%); opacity: 0; } 15% { opacity: 0.55; } 85% { opacity: 0.4; } 100% { transform: translateY(-20px); opacity: 0; } }
.svc-card--featured .cfi { color: rgba(255,255,255,0.5); }
.svc-img-wrap { position: relative; width: 100%; height: 200px; overflow: hidden; flex-shrink: 0; }
.svc-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); display: block; }
.svc-card:hover .svc-img { transform: scale(1.07); }
.svc-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(30,58,47,0.08) 0%, rgba(30,58,47,0.55) 100%); transition: opacity 0.3s ease; }
.svc-card--featured .svc-img-overlay { background: linear-gradient(to bottom, rgba(30,58,47,0.2) 0%, rgba(30,58,47,0.7) 100%); }
.svc-tag { position: absolute; top: 14px; right: 14px; padding: 0.3rem 0.8rem; background: rgba(255,255,255,0.92); color: var(--green-dark); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 50px; backdrop-filter: blur(6px); }
.svc-card--featured .svc-tag { background: var(--gold); color: var(--green-dark); }
.svc-content { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; gap: 0.9rem; position: relative; z-index: 2; }
.svc-icon-wrap { width: 50px; height: 50px; border-radius: 14px; background: rgba(30,58,47,0.07); display: flex; align-items: center; justify-content: center; color: var(--green-dark); flex-shrink: 0; transition: background 0.25s ease, transform 0.25s ease; }
.svc-card:hover .svc-icon-wrap { background: rgba(30,58,47,0.12); transform: scale(1.08); }
.svc-card--featured .svc-icon-wrap { background: rgba(255,255,255,0.12); color: var(--gold-light); }
.svc-card--featured:hover .svc-icon-wrap { background: rgba(255,255,255,0.2); }
.svc-title { font-size: 1.15rem; font-weight: 800; color: var(--text-primary); line-height: 1.25; letter-spacing: -0.01em; }
.svc-card--featured .svc-title { color: #ffffff; }
.svc-body { font-size: 0.88rem; line-height: 1.75; color: var(--text-body); flex: 1; }
.svc-card--featured .svc-body { color: rgba(255,255,255,0.72); }
.svc-btn { display: inline-flex; align-items: center; gap: 7px; margin-top: 0.4rem; padding: 0.65rem 1.3rem; background: var(--green-dark); color: #ffffff; font-size: 0.84rem; font-weight: 600; border-radius: 50px; letter-spacing: 0.02em; transition: all 0.22s cubic-bezier(0.4,0,0.2,1); width: fit-content; }
.svc-btn svg { transition: transform 0.2s ease; flex-shrink: 0; }
.svc-btn:hover { background: var(--green-mid); transform: translateX(3px); box-shadow: 0 6px 20px rgba(30,58,47,0.3); }
.svc-btn:hover svg { transform: translateX(4px); }
.svc-card--featured .svc-btn { background: var(--gold); color: var(--green-dark); }
.svc-card--featured .svc-btn:hover { background: var(--gold-light); box-shadow: 0 6px 20px rgba(200,168,75,0.4); }

@media (max-width: 1024px) { .services-grid { gap: 1.25rem; } .svc-img-wrap { height: 180px; } .svc-content { padding: 1.3rem 1.3rem 1.5rem; } }
@media (max-width: 768px) {
  .services-section { padding: 5rem 0; }
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; gap: 1.5rem; }
  .svc-card--featured { transform: none; }
  .svc-card--featured:hover { transform: translateY(-10px); }
  .svc-img-wrap { height: 220px; }
}
@media (max-width: 480px) {
  .services-section { padding: 4rem 0; }
  .services-container { padding: 0 1rem; }
  .services-header { margin-bottom: 2.5rem; }
  .services-grid { max-width: 100%; }
  .svc-img-wrap { height: 190px; }
  .svc-content { padding: 1.2rem 1.2rem 1.4rem; }
}

/* ═══════════════════════════════════════════════════════════
   MEMBERSHIP SECTION
═══════════════════════════════════════════════════════════ */
.membership-section { position: relative; padding: 7rem 0 6rem; background: var(--green-dark); overflow: hidden; }
.mem-bg-layer { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.mem-bg-circle { position: absolute; border-radius: 50%; }
.mem-bg-circle--1 { width: 700px; height: 700px; top: -250px; right: -200px; background: radial-gradient(ellipse, rgba(200,168,75,0.07) 0%, transparent 70%); animation: memCirclePulse 9s ease-in-out infinite; }
.mem-bg-circle--2 { width: 500px; height: 500px; bottom: -180px; left: -180px; background: radial-gradient(ellipse, rgba(58,122,90,0.18) 0%, transparent 70%); animation: memCirclePulse 12s ease-in-out infinite reverse; }
@keyframes memCirclePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.09); } }
.mem-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px); background-size: 60px 60px; }
.mem-bg-icon { position: absolute; font-family: 'Inter', sans-serif; font-weight: 900; color: var(--gold); opacity: 0.04; user-select: none; animation: memBgFloat ease-in-out infinite; }
.mbi-1 { font-size: 7rem;  top: 6%;    left: 3%;   animation-duration: 14s; animation-delay: 0s; }
.mbi-2 { font-size: 5rem;  top: 18%;   right: 5%;  animation-duration: 18s; animation-delay: 3s; }
.mbi-3 { font-size: 4.5rem;bottom: 14%;left: 28%;  animation-duration: 11s; animation-delay: 6s; }
.mbi-4 { font-size: 6rem;  bottom: 8%; right: 18%; animation-duration: 16s; animation-delay: 2s; }
@keyframes memBgFloat { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-22px); } }

.membership-container { position: relative; z-index: 2; max-width: 1260px; margin: 0 auto; padding: 0 2.5rem; }
.mem-header { text-align: center; margin-bottom: 3.5rem; }
.mem-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.85rem; }
.mem-eyebrow::before, .mem-eyebrow::after { content: ''; width: 30px; height: 1.5px; background: var(--gold); opacity: 0.55; border-radius: 2px; }
.mem-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; color: #ffffff; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 0.75rem; }
.mem-title-accent { color: var(--gold); }
.mem-subtitle { font-size: 0.95rem; color: rgba(255,255,255,0.5); max-width: 460px; margin: 0 auto 1.25rem; line-height: 1.7; }
.mem-title-bar { width: 56px; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 4px; margin: 0 auto; }

.mem-slider-wrapper { position: relative; border-radius: 22px; overflow: visible; margin: 0 52px; }
.mem-slides-container { position: relative; border-radius: 22px; overflow: hidden; min-height: 420px; }
.mem-slide { position: absolute; inset: 0; display: grid; grid-template-columns: 52% 48%; opacity: 0; pointer-events: none; transform: scale(0.94); transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1), transform 0.55s cubic-bezier(0.4,0,0.2,1); will-change: opacity, transform; min-height: 420px; }
.mem-slide--active { position: relative; opacity: 1; transform: scale(1); pointer-events: auto; z-index: 2; }
.mem-slide--exit-left { opacity: 0; transform: scale(0.92) translateX(-48px); transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1); z-index: 1; }
.mem-slide--exit-right { opacity: 0; transform: scale(0.92) translateX(48px); transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1); z-index: 1; }
.mem-slide-image-side { position: relative; overflow: hidden; border-radius: 22px 0 0 22px; min-height: 420px; }
.mem-slide-img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.06); transition: transform 1.1s cubic-bezier(0.4,0,0.2,1); }
.mem-slide--active .mem-slide-img { transform: scale(1); }
.mem-slide-img-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(30,58,47,0.1) 0%, rgba(30,58,47,0.55) 100%); }
.mem-slide-num { position: absolute; bottom: 16px; left: 18px; font-size: 4.5rem; font-weight: 900; color: rgba(255,255,255,0.09); line-height: 1; letter-spacing: -0.05em; user-select: none; pointer-events: none; }
.mem-slide-content-side { display: flex; flex-direction: column; justify-content: center; gap: 1.1rem; padding: 2.8rem 2.8rem 2.8rem 3rem; background: rgba(255,255,255,0.03); border-radius: 0 22px 22px 0; border-left: 1px solid rgba(255,255,255,0.06); }
.mem-slide--active .mem-slide-tag   { animation: memContentIn 0.5s 0.12s both; }
.mem-slide--active .mem-slide-title { animation: memContentIn 0.5s 0.22s both; }
.mem-slide--active .mem-slide-body  { animation: memContentIn 0.5s 0.32s both; }
.mem-slide--active .mem-slide-points { animation: memContentIn 0.5s 0.42s both; }
@keyframes memContentIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.mem-slide-tag { display: inline-flex; align-items: center; gap: 6px; padding: 0.32rem 0.8rem; background: rgba(200,168,75,0.12); color: var(--gold-light); border: 1px solid rgba(200,168,75,0.22); border-radius: 50px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; width: fit-content; }
.mem-slide-title { font-size: clamp(1.2rem, 2vw, 1.65rem); font-weight: 800; color: #ffffff; line-height: 1.28; letter-spacing: -0.02em; }
.mem-slide-body { font-size: 0.9rem; line-height: 1.78; color: rgba(255,255,255,0.6); }
.mem-slide-points { display: flex; flex-direction: column; gap: 0.55rem; margin-top: 0.2rem; }
.mem-point { display: flex; align-items: center; gap: 9px; font-size: 0.84rem; font-weight: 500; color: rgba(255,255,255,0.72); }
.mem-point-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 5px rgba(200,168,75,0.45); }

.mem-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); color: #ffffff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s cubic-bezier(0.4,0,0.2,1), box-shadow 0.22s ease; backdrop-filter: blur(8px); }
.mem-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--green-dark); box-shadow: 0 6px 22px rgba(200,168,75,0.4); transform: translateY(-50%) scale(1.1); }
.mem-arrow:active { transform: translateY(-50%) scale(0.95); }
.mem-arrow--prev { left: -52px; }
.mem-arrow--next { right: -52px; }

.mem-slider-footer { display: flex; align-items: center; justify-content: center; gap: 1.4rem; margin-top: 2rem; flex-wrap: wrap; }
.mem-dots { display: flex; align-items: center; gap: 8px; }
.mem-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.2); border: none; cursor: pointer; padding: 0; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); }
.mem-dot:hover { background: rgba(255,255,255,0.5); transform: scale(1.2); }
.mem-dot--active { background: var(--gold); width: 26px; border-radius: 5px; box-shadow: 0 0 8px rgba(200,168,75,0.45); }
.mem-progress-bar { width: 140px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.mem-progress-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 3px; transition: width 0.5s cubic-bezier(0.4,0,0.2,1); width: 25%; }
.mem-slide-counter { display: flex; align-items: center; gap: 3px; font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.45); font-variant-numeric: tabular-nums; min-width: 52px; }
#memCurrentSlide { color: var(--gold); font-size: 0.95rem; }
.mem-counter-sep { opacity: 0.4; margin: 0 1px; }

.mem-cta-wrap { text-align: center; margin-top: 3rem; display: flex; flex-direction: column; align-items: center; gap: 0.85rem; }
.mem-cta-btn { display: inline-flex; align-items: center; gap: 10px; padding: 0.95rem 2.2rem; background: var(--gold); color: var(--green-dark); font-size: 0.97rem; font-weight: 800; border-radius: 50px; letter-spacing: 0.02em; transition: background 0.22s ease, transform 0.28s cubic-bezier(0.4,0,0.2,1), box-shadow 0.28s ease; box-shadow: 0 5px 24px rgba(200,168,75,0.32); }
.mem-cta-btn:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(200,168,75,0.48); }
.mem-cta-btn:hover svg:last-child { transform: translateX(4px); }
.mem-cta-btn svg:last-child { transition: transform 0.2s ease; }
.mem-cta-note { font-size: 0.78rem; color: rgba(255,255,255,0.3); letter-spacing: 0.03em; }

@media (max-width: 1080px) { .membership-container { padding: 0 2rem; } .mem-slider-wrapper { margin: 0 44px; } .mem-arrow--prev { left: -44px; } .mem-arrow--next { right: -44px; } .mem-slide-content-side { padding: 2.2rem 2rem 2.2rem 2.4rem; gap: 0.95rem; } }
@media (max-width: 820px) {
  .membership-section { padding: 5.5rem 0 5rem; }
  .membership-container { padding: 0 1.5rem; }
  .mem-slider-wrapper { margin: 0 0; }
  .mem-arrow { display: none; }
  .mem-slide { grid-template-columns: 1fr; grid-template-rows: auto 1fr; min-height: unset; }
  .mem-slide--active { min-height: unset; }
  .mem-slide-image-side { border-radius: 22px 22px 0 0; min-height: 260px; max-height: 300px; height: 280px; }
  .mem-slide-content-side { border-radius: 0 0 22px 22px; border-left: none; border-top: 1px solid rgba(255,255,255,0.06); padding: 2rem 1.8rem 2.2rem; gap: 0.9rem; }
  .mem-mobile-arrows { display: flex !important; }
}
@media (max-width: 540px) {
  .membership-section { padding: 4.5rem 0 4rem; }
  .membership-container { padding: 0 1rem; }
  .mem-title { font-size: 1.85rem; }
  .mem-header { margin-bottom: 2.5rem; }
  .mem-slides-container { border-radius: 16px; }
  .mem-slide-image-side { border-radius: 16px 16px 0 0; height: 230px; max-height: 240px; }
  .mem-slide-content-side { border-radius: 0 0 16px 16px; padding: 1.6rem 1.4rem 1.8rem; }
  .mem-slide-title { font-size: 1.15rem; }
  .mem-slide-body { font-size: 0.865rem; line-height: 1.72; }
  .mem-point { font-size: 0.82rem; }
  .mem-progress-bar { width: 90px; }
  .mem-cta-btn { padding: 0.88rem 1.8rem; font-size: 0.92rem; }
}
@media (max-width: 380px) { .mem-slide-content-side { padding: 1.3rem 1.1rem 1.5rem; } .mem-slide-title { font-size: 1.05rem; } }
.mem-mobile-arrows { display: none; justify-content: center; gap: 1rem; margin-top: 1.4rem; }
.mem-mobile-arrow { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); color: #ffffff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.22s, transform 0.22s; }
.mem-mobile-arrow:hover { background: var(--gold); color: var(--green-dark); transform: scale(1.1); }
@media (max-width: 820px) { .mem-mobile-arrows { display: flex; } }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════════════════════════════════ */
.testi-section { position: relative; padding: 7rem 0 6rem; background: #ffffff; overflow: hidden; }
.testi-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.testi-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(30,58,47,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(30,58,47,0.03) 1px, transparent 1px); background-size: 60px 60px; }
.testi-bg-quote { position: absolute; font-family: Georgia, serif; font-size: 22rem; font-weight: 900; line-height: 1; color: var(--gold); opacity: 0.05; user-select: none; pointer-events: none; }
.testi-bq-1 { top: -4rem; left: -2rem; animation: testiQuoteFloat 14s ease-in-out infinite; }
.testi-bq-2 { top: 10%; right: -3rem; opacity: 0.03; animation: testiQuoteFloat 18s ease-in-out infinite reverse; }
.testi-bq-3 { bottom: 5%; left: 40%; opacity: 0.025; font-size: 14rem; animation: testiQuoteFloat 12s ease-in-out infinite 3s; }
@keyframes testiQuoteFloat { 0%, 100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-20px) rotate(-1deg); } }
.testi-coin { position: absolute; font-family: 'Inter', sans-serif; font-weight: 900; color: var(--green-dark); opacity: 0; user-select: none; pointer-events: none; animation: testiCoinFloat linear infinite; }
.tc-1 { font-size: 1.3rem; left: 8%;  animation-duration: 16s; animation-delay: 0s;   opacity: 0.04; }
.tc-2 { font-size: 1.8rem; left: 22%; animation-duration: 20s; animation-delay: 3s;   opacity: 0.03; }
.tc-3 { font-size: 1.1rem; left: 78%; animation-duration: 14s; animation-delay: 6s;   opacity: 0.04; }
.tc-4 { font-size: 1.6rem; left: 90%; animation-duration: 18s; animation-delay: 1.5s; opacity: 0.03; }
@keyframes testiCoinFloat { 0% { transform: translateY(100vh) rotate(0deg); opacity: 0; } 8% { opacity: 1; } 90% { opacity: 0.8; } 100% { transform: translateY(-5vh) rotate(360deg); opacity: 0; } }
.testi-container { position: relative; z-index: 2; max-width: 1260px; margin: 0 auto; padding: 0 2rem; }
.testi-header { text-align: center; margin-bottom: 3.5rem; }
.testi-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--green-light); margin-bottom: 0.85rem; }
.testi-eyebrow::before, .testi-eyebrow::after { content: ''; width: 30px; height: 1.5px; background: var(--green-light); opacity: 0.6; border-radius: 2px; }
.testi-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; color: var(--text-primary); letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 0.75rem; }
.testi-title-accent { color: var(--green-dark); }
.testi-subtitle { font-size: 0.95rem; color: var(--text-muted); max-width: 500px; margin: 0 auto 1.25rem; line-height: 1.75; }
.testi-title-bar { width: 56px; height: 4px; background: linear-gradient(90deg, var(--green-dark), var(--gold)); border-radius: 4px; margin: 0 auto; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; align-items: stretch; margin-bottom: 4rem; }
.testi-card { position: relative; border-radius: 22px; background: #ffffff; border: 1.5px solid rgba(30,58,47,0.10); box-shadow: 0 4px 24px rgba(30,58,47,0.07); overflow: hidden; cursor: default; outline: none; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s cubic-bezier(0.4,0,0.2,1), border-color 0.3s ease; }
.testi-card:hover, .testi-card:focus-visible { transform: translateY(-10px); box-shadow: 0 22px 56px rgba(30,58,47,0.13); border-color: rgba(200,168,75,0.4); }
.testi-card--featured { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-8px); box-shadow: 0 20px 50px rgba(30,58,47,0.28); }
.testi-card--featured:hover, .testi-card--featured:focus-visible { transform: translateY(-18px); box-shadow: 0 36px 70px rgba(30,58,47,0.35); border-color: var(--gold); }
.testi-card-inner { position: relative; height: 100%; display: flex; flex-direction: column; }
.testi-reveal { position: absolute; inset: 0; z-index: 10; border-radius: 22px; background: linear-gradient(135deg, #1e3a2f 0%, #2a5240 50%, #1a3028 100%); transform: translateX(-105%); transition: transform 0.52s cubic-bezier(0.77, 0, 0.175, 1); overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 2.4rem 2rem; pointer-events: none; }
.testi-reveal-shine { position: absolute; top: -50%; left: -60%; width: 60%; height: 200%; background: linear-gradient(105deg, transparent 30%, rgba(200,168,75,0.08) 50%, transparent 70%); transform: skewX(-15deg); animation: testiShine 3.5s ease-in-out infinite; pointer-events: none; }
@keyframes testiShine { 0% { transform: skewX(-15deg) translateX(0); } 60% { transform: skewX(-15deg) translateX(400%); } 100% { transform: skewX(-15deg) translateX(400%); } }
.testi-card:hover .testi-reveal, .testi-card:focus-visible .testi-reveal { transform: translateX(0%); pointer-events: auto; }
.testi-reveal-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.1rem; }
.testi-reveal-icon-wrap { width: 62px; height: 62px; border-radius: 50%; background: rgba(200,168,75,0.12); border: 1px solid rgba(200,168,75,0.25); display: flex; align-items: center; justify-content: center; color: var(--gold-light); flex-shrink: 0; animation: testiIconPulse 2.4s ease-in-out infinite; }
@keyframes testiIconPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(200,168,75,0.3); } 50% { box-shadow: 0 0 0 8px rgba(200,168,75,0); } }
.testi-reveal-heading { font-size: 1.1rem; font-weight: 800; color: #ffffff; letter-spacing: -0.01em; }
.testi-reveal-text { font-size: 0.875rem; line-height: 1.8; color: rgba(255,255,255,0.65); max-width: 280px; }
.testi-reveal-dots { display: flex; gap: 6px; align-items: center; margin-top: 0.3rem; }
.testi-reveal-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); opacity: 0.5; animation: testiDotBounce 1.4s ease-in-out infinite; }
.testi-reveal-dots span:nth-child(1) { animation-delay: 0s; }
.testi-reveal-dots span:nth-child(2) { animation-delay: 0.18s; }
.testi-reveal-dots span:nth-child(3) { animation-delay: 0.36s; }
@keyframes testiDotBounce { 0%, 80%, 100% { transform: translateY(0); opacity: 0.5; } 40% { transform: translateY(-5px); opacity: 1; } }
.testi-front { position: relative; z-index: 1; padding: 1.8rem 1.8rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.testi-featured-label { display: inline-flex; align-items: center; gap: 5px; padding: 0.28rem 0.75rem; background: rgba(200,168,75,0.15); color: var(--gold-light); border: 1px solid rgba(200,168,75,0.28); border-radius: 50px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; width: fit-content; }
.testi-quote-mark { color: rgba(30,58,47,0.10); line-height: 1; margin-bottom: -0.4rem; }
.testi-card--featured .testi-quote-mark { color: rgba(200,168,75,0.25); }
.testi-stars { display: flex; gap: 3px; color: var(--gold); }
.testi-body { font-size: 0.9rem; line-height: 1.8; color: var(--text-body); flex: 1; }
.testi-card--featured .testi-body { color: rgba(255,255,255,0.75); }
.testi-author { display: flex; align-items: center; gap: 10px; padding-top: 1rem; border-top: 1px solid rgba(30,58,47,0.08); margin-top: auto; }
.testi-card--featured .testi-author { border-top-color: rgba(255,255,255,0.1); }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi-avatar--green { background: rgba(30,58,47,0.08); border: 1.5px solid rgba(30,58,47,0.18); color: var(--green-dark); }
.testi-avatar--gold { background: rgba(200,168,75,0.12); border: 1.5px solid rgba(200,168,75,0.35); color: #a07820; }
.testi-card--featured .testi-avatar--green { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.85); }
.testi-card--featured .testi-avatar--gold { background: rgba(200,168,75,0.18); border-color: rgba(200,168,75,0.4); color: var(--gold-light); }
.testi-author-info { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.testi-name { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.testi-card--featured .testi-name { color: #ffffff; }
.testi-role { display: inline-flex; align-items: center; gap: 4px; font-size: 0.74rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.02em; }
.testi-card--featured .testi-role { color: rgba(255,255,255,0.45); }
.testi-badge { display: inline-flex; align-items: center; gap: 4px; padding: 0.22rem 0.6rem; background: rgba(30,58,47,0.07); color: var(--green-dark); border: 1px solid rgba(30,58,47,0.15); border-radius: 50px; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; }
.testi-badge--gold { background: rgba(200,168,75,0.1); color: #a07820; border-color: rgba(200,168,75,0.3); }
.testi-card--featured .testi-badge { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.15); }
.testi-card--featured .testi-badge--gold { background: rgba(200,168,75,0.15); color: var(--gold-light); border-color: rgba(200,168,75,0.3); }
.testi-hover-hint { display: flex; align-items: center; justify-content: center; gap: 5px; padding: 0.6rem; font-size: 0.68rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; transition: opacity 0.3s ease; border-top: 1px solid rgba(30,58,47,0.06); opacity: 0.7; }
.testi-card--featured .testi-hover-hint { color: rgba(255,255,255,0.3); border-top-color: rgba(255,255,255,0.06); }
.testi-card:hover .testi-hover-hint { opacity: 0; }
.testi-stats-strip { display: flex; align-items: center; justify-content: center; padding: 2.2rem 2.5rem; background: #f5f8f6; border: 1.5px solid rgba(30,58,47,0.08); border-radius: 20px; flex-wrap: wrap; gap: 1rem; }
.testi-stat-item { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; flex: 1; min-width: 130px; }
.testi-stat-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(30,58,47,0.07); border: 1px solid rgba(30,58,47,0.10); display: flex; align-items: center; justify-content: center; color: var(--green-dark); margin-bottom: 0.2rem; transition: background 0.25s ease, transform 0.25s ease; }
.testi-stat-item:hover .testi-stat-icon { background: rgba(30,58,47,0.12); transform: scale(1.08); }
.testi-stat-num { font-size: 1.35rem; font-weight: 800; color: var(--text-primary); letter-spacing: -0.02em; line-height: 1; }
.testi-stat-lbl { font-size: 0.72rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.04em; }
.testi-stat-divider { width: 1px; height: 60px; background: rgba(30,58,47,0.08); flex-shrink: 0; align-self: center; }
.testi-card.testi-reveal-init { opacity: 0; transform: translateY(40px); }
.testi-card--featured.testi-reveal-init { transform: translateY(24px); }

@media (max-width: 1024px) { .testi-grid { gap: 1.25rem; } .testi-front { padding: 1.5rem 1.5rem 1.3rem; } }
@media (max-width: 900px) {
  .testi-section { padding: 5.5rem 0 4rem; }
  .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto 3rem; }
  .testi-card--featured { transform: none; }
  .testi-card--featured:hover { transform: translateY(-10px); }
  .testi-stats-strip { flex-direction: column; gap: 1.5rem; padding: 2rem 1.5rem; }
  .testi-stat-divider { width: 60%; height: 1px; }
  .testi-stat-item { min-width: auto; flex-direction: row; gap: 1rem; align-items: center; width: 100%; justify-content: center; }
  .testi-stat-icon { flex-shrink: 0; }
  .testi-stat-num { font-size: 1.15rem; }
}
@media (max-width: 600px) {
  .testi-section { padding: 4.5rem 0 3.5rem; }
  .testi-container { padding: 0 1rem; }
  .testi-title { font-size: 1.9rem; }
  .testi-header { margin-bottom: 2.5rem; }
  .testi-front { padding: 1.4rem 1.4rem 1.2rem; gap: 0.85rem; }
  .testi-body { font-size: 0.865rem; }
  .testi-reveal { padding: 1.8rem 1.5rem; }
  .testi-reveal-text { font-size: 0.845rem; }
  .testi-stats-strip { border-radius: 16px; padding: 1.6rem 1.2rem; }
}
@media (max-width: 420px) { .testi-front { padding: 1.2rem 1.2rem 1rem; } .testi-author { gap: 8px; } .testi-avatar { width: 38px; height: 38px; } .testi-name { font-size: 0.82rem; } }
@media (hover: none) {
  .testi-card { transform: none !important; }
  .testi-card--featured { transform: none !important; }
  .testi-reveal { transform: translateX(0) !important; pointer-events: auto !important; position: relative; inset: auto; border-radius: 22px 22px 0 0; height: auto; min-height: 160px; }
  .testi-card-inner { flex-direction: column; }
  .testi-front { flex: 1; }
  .testi-hover-hint { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   CLIENTS SECTION
═══════════════════════════════════════════════════════════ */
:root {
  --client-card-w:  220px;
  --client-card-h:  140px;
  --client-logo-h:   64px;
  --client-gap:      28px;
  --marquee-set-w: 1240px;
  --marquee-dur:     40s;
}
.clients-section { position: relative; padding: 7rem 0 6rem; background: var(--off-white); overflow: hidden; }
.clients-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.clients-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(30,58,47,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(30,58,47,0.03) 1px, transparent 1px); background-size: 60px 60px; }
.clients-bg-orb { position: absolute; border-radius: 50%; filter: blur(60px); }
.clients-bg-orb--1 { width: 500px; height: 500px; top: -200px; left: -150px; background: radial-gradient(ellipse, rgba(30,58,47,0.05) 0%, transparent 70%); animation: clientsOrbFloat 16s ease-in-out infinite; }
.clients-bg-orb--2 { width: 400px; height: 400px; bottom: -180px; right: -100px; background: radial-gradient(ellipse, rgba(200,168,75,0.06) 0%, transparent 70%); animation: clientsOrbFloat 20s ease-in-out infinite reverse; }
@keyframes clientsOrbFloat { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-30px); } }
.clients-bg-icon { position: absolute; font-family: 'Inter', sans-serif; font-weight: 900; color: var(--green-dark); opacity: 0.03; user-select: none; animation: clientsBgFloat ease-in-out infinite; }
.cbi-1 { font-size: 8rem; top: 8%;    left: 4%;   animation-duration: 17s; animation-delay: 0s; }
.cbi-2 { font-size: 5rem; bottom: 10%;right: 6%;  animation-duration: 13s; animation-delay: 5s; }
.cbi-3 { font-size: 6rem; top: 50%;   left: 48%;  animation-duration: 20s; animation-delay: 2s; }
@keyframes clientsBgFloat { 0%, 100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-18px) rotate(5deg); } }
.clients-container { position: relative; z-index: 2; max-width: 1260px; margin: 0 auto; padding: 0 2rem; }
.clients-header { text-align: center; margin-bottom: 3.5rem; }
.clients-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--green-light); margin-bottom: 0.85rem; }
.clients-eyebrow::before, .clients-eyebrow::after { content: ''; width: 30px; height: 1.5px; background: var(--green-light); opacity: 0.6; border-radius: 2px; }
.clients-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; color: var(--text-primary); letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 0.75rem; }
.clients-title-accent { color: var(--green-dark); }
.clients-subtitle { font-size: 0.95rem; color: var(--text-muted); max-width: 480px; margin: 0 auto 1.25rem; line-height: 1.75; }
.clients-title-bar { width: 56px; height: 4px; background: linear-gradient(90deg, var(--green-dark), var(--gold)); border-radius: 4px; margin: 0 auto; }
.clients-marquee-wrap { position: relative; overflow: hidden; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); padding: 1.5rem 0 1.75rem; }
.clients-fade-left, .clients-fade-right { position: absolute; top: 0; bottom: 0; width: 160px; z-index: 3; pointer-events: none; }
.clients-fade-left  { left: 0;  background: linear-gradient(to right, var(--off-white) 0%, transparent 100%); }
.clients-fade-right { right: 0; background: linear-gradient(to left,  var(--off-white) 0%, transparent 100%); }
.clients-track-outer { overflow: hidden; width: 100%; }
.clients-track { display: flex; align-items: stretch; gap: var(--client-gap); width: max-content; animation: clientsMarquee var(--marquee-dur) linear infinite; will-change: transform; }
.clients-track-outer:hover .clients-track, .clients-track-outer:focus-within .clients-track { animation-play-state: paused; }
@keyframes clientsMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-1 * var(--marquee-set-w) - var(--client-gap) * 5)); } }
.client-card { flex-shrink: 0; width: var(--client-card-w); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; padding: 1.6rem 1.5rem; background: #ffffff; border: 1.5px solid rgba(30,58,47,0.09); border-radius: 18px; box-shadow: 0 4px 20px rgba(30,58,47,0.07); transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease, border-color 0.25s ease; cursor: default; position: relative; overflow: hidden; }
.client-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transition: left 0.55s ease; border-radius: 18px 18px 0 0; }
.client-card:hover::before { left: 100%; }
.client-card:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 18px 44px rgba(30,58,47,0.15); border-color: rgba(200,168,75,0.45); }
.client-img-wrap { width: 100%; height: var(--client-logo-h); display: flex; align-items: center; justify-content: center; border-radius: 10px; overflow: hidden; background: rgba(30,58,47,0.03); padding: 6px 10px; transition: background 0.25s ease; }
.client-img-wrap--white { background: #ffffff; border: 1px solid rgba(30,58,47,0.08); }
.client-card:hover .client-img-wrap { background: rgba(30,58,47,0.05); }
.client-card:hover .client-img-wrap--white { background: #ffffff; }
.client-logo { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; filter: grayscale(35%) brightness(0.95); transition: filter 0.35s ease, transform 0.35s ease; }
.client-card:hover .client-logo { filter: grayscale(0%) brightness(1); transform: scale(1.06); }
.client-name { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); transition: color 0.25s ease; text-align: center; line-height: 1; }
.client-card:hover .client-name { color: var(--green-dark); }
.clients-trust-strip { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.75rem 1.5rem; margin-top: 3.5rem; padding: 1.8rem 2rem; background: #ffffff; border: 1.5px solid rgba(30,58,47,0.08); border-radius: 18px; box-shadow: 0 4px 20px rgba(30,58,47,0.06); }
.clients-trust-item { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; font-weight: 600; color: var(--text-body); letter-spacing: 0.01em; }
.clients-trust-item svg { color: var(--green-dark); flex-shrink: 0; }
.clients-trust-divider { width: 1px; height: 28px; background: rgba(30,58,47,0.10); flex-shrink: 0; }
.clients-header.clients-reveal-init, .clients-trust-strip.clients-reveal-init { opacity: 0; transform: translateY(30px); }

@media (max-width: 1024px) { :root { --client-card-w: 200px; --client-card-h: 130px; --client-logo-h: 56px; --client-gap: 22px; --marquee-set-w: 1110px; } .clients-fade-left, .clients-fade-right { width: 100px; } }
@media (max-width: 768px) { .clients-section { padding: 5rem 0 4.5rem; } :root { --client-card-w: 180px; --client-card-h: 120px; --client-logo-h: 52px; --client-gap: 18px; --marquee-set-w: 990px; --marquee-dur: 34s; } .clients-fade-left, .clients-fade-right { width: 60px; } .clients-trust-strip { gap: 0.6rem 1rem; padding: 1.4rem 1.25rem; } .clients-trust-divider { display: none; } .clients-trust-item { justify-content: center; } }
@media (max-width: 540px) { .clients-section { padding: 4rem 0 3.5rem; } .clients-container { padding: 0 1rem; } .clients-header { margin-bottom: 2.5rem; } .clients-title { font-size: 1.85rem; } :root { --client-card-w: 155px; --client-card-h: 110px; --client-logo-h: 46px; --client-gap: 14px; --marquee-set-w: 845px; --marquee-dur: 28s; } .clients-fade-left, .clients-fade-right { width: 40px; } .clients-trust-strip { flex-direction: column; gap: 0.6rem; } .clients-trust-item { font-size: 0.82rem; } }
@media (max-width: 360px) { :root { --client-card-w: 138px; --client-card-h: 102px; --client-logo-h: 42px; --client-gap: 12px; --marquee-set-w: 750px; --marquee-dur: 25s; } }
@media (prefers-reduced-motion: reduce) { .clients-track { animation: none !important; } }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer { position: relative; background: var(--green-dark); overflow: hidden; }
.footer-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.footer-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px); background-size: 56px 56px; }
.footer-bg-orb { position: absolute; border-radius: 50%; filter: blur(70px); }
.footer-bg-orb--1 { width: 600px; height: 600px; top: -260px; right: -200px; background: radial-gradient(ellipse, rgba(200,168,75,0.07) 0%, transparent 70%); animation: footerOrbFloat 18s ease-in-out infinite; }
.footer-bg-orb--2 { width: 450px; height: 450px; bottom: -180px; left: -160px; background: radial-gradient(ellipse, rgba(58,122,90,0.14) 0%, transparent 70%); animation: footerOrbFloat 22s ease-in-out infinite reverse; }
@keyframes footerOrbFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-24px); } }
.footer-bg-icon { position: absolute; font-family: 'Inter', sans-serif; font-weight: 900; color: var(--gold); opacity: 0.04; user-select: none; animation: footerBgFloat ease-in-out infinite; }
.fbi-1 { font-size: 8rem; top: 6%;    left: 3%;   animation-duration: 15s; animation-delay: 0s; }
.fbi-2 { font-size: 5rem; top: 40%;   right: 4%;  animation-duration: 19s; animation-delay: 4s; }
.fbi-3 { font-size: 6rem; bottom: 16%;left: 38%;  animation-duration: 13s; animation-delay: 7s; }
.fbi-4 { font-size: 4rem; bottom: 6%; right: 22%; animation-duration: 17s; animation-delay: 2s; }
@keyframes footerBgFloat { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-16px); } }
.footer-info-bar { position: relative; z-index: 2; background: var(--gold); }
.footer-info-inner { max-width: 1260px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; }
.footer-info-item { display: flex; align-items: center; gap: 1.1rem; padding: 1.5rem 1.5rem; text-decoration: none; color: var(--green-dark); transition: background 0.22s ease; }
.footer-info-item:hover { background: rgba(0,0,0,0.06); }
.footer-info-icon-wrap { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: rgba(30,58,47,0.14); display: flex; align-items: center; justify-content: center; color: var(--green-dark); transition: background 0.22s ease, transform 0.22s ease; }
.footer-info-item:hover .footer-info-icon-wrap { background: rgba(30,58,47,0.22); transform: scale(1.08); }
.footer-info-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.footer-info-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(30,58,47,0.6); line-height: 1; }
.footer-info-value { font-size: 0.88rem; font-weight: 700; color: var(--green-dark); line-height: 1.5; }
.footer-info-sep { width: 1px; background: rgba(30,58,47,0.18); align-self: stretch; margin: 0.75rem 0; }
.footer-body { position: relative; z-index: 2; padding: 4rem 0 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-body-inner { max-width: 1260px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1.5fr 1fr 1.3fr; gap: 4rem; align-items: start; }
.footer-col { display: flex; flex-direction: column; gap: 1.1rem; }
.footer-logo-wrap { display: inline-flex; align-items: center; width: fit-content; background: rgba(255,255,255,0.96); padding: 7px 18px 7px 10px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.3); transition: background 0.22s ease, transform 0.22s ease; text-decoration: none; }
.footer-logo-wrap:hover { background: #ffffff; transform: translateY(-2px); }
.footer-logo-img { height: 46px; width: auto; object-fit: contain; display: block; }
.footer-brand-desc { font-size: 0.875rem; line-height: 1.82; color: rgba(255,255,255,0.52); max-width: 320px; }
.footer-social { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 0.15rem; }
.footer-social-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); text-decoration: none; transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease; flex-shrink: 0; }
.footer-social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--green-dark); transform: translateY(-3px); }
.footer-col-title { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #ffffff; margin-bottom: 0.2rem; }
.footer-col-title-bar { display: block; width: 20px; height: 3px; background: var(--gold); border-radius: 2px; flex-shrink: 0; }
.footer-links-list { display: flex; flex-direction: column; gap: 0; list-style: none; margin: 0; padding: 0; }
.footer-links-list li { margin: 0; padding: 0; }
.footer-link { display: flex; align-items: center; gap: 7px; padding: 0.44rem 0; font-size: 0.875rem; font-weight: 400; color: rgba(255,255,255,0.52); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.04); transition: color 0.2s ease, gap 0.2s ease; line-height: 1.5; }
.footer-links-list li:last-child .footer-link { border-bottom: none; }
.footer-link svg { flex-shrink: 0; color: var(--gold); opacity: 0; transition: opacity 0.2s ease, transform 0.2s ease; }
.footer-link:hover { color: rgba(255,255,255,0.92); gap: 11px; }
.footer-link:hover svg { opacity: 1; transform: translateX(2px); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 11px; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-contact-item:last-child { border-bottom: none; }
.footer-contact-icon { flex-shrink: 0; margin-top: 2px; width: 32px; height: 32px; border-radius: 8px; background: rgba(200,168,75,0.10); border: 1px solid rgba(200,168,75,0.18); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.footer-contact-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.footer-contact-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); line-height: 1; opacity: 0.75; }
.footer-contact-value { font-size: 0.875rem; font-weight: 400; color: rgba(255,255,255,0.65); line-height: 1.6; display: block; }
.footer-contact-link { text-decoration: none; transition: color 0.18s ease; }
.footer-contact-link:hover { color: var(--gold-light); }
.footer-compliance { display: flex; align-items: center; gap: 10px; margin-top: 0.5rem; padding: 0.85rem 1rem; background: rgba(200,168,75,0.08); border: 1px solid rgba(200,168,75,0.2); border-radius: 12px; }
.footer-compliance-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(200,168,75,0.12); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.footer-compliance-text { display: flex; flex-direction: column; gap: 2px; }
.footer-compliance-title { font-size: 0.78rem; font-weight: 700; color: var(--gold-light); line-height: 1.2; }
.footer-compliance-sub { font-size: 0.7rem; color: rgba(255,255,255,0.38); letter-spacing: 0.02em; }
.footer-bottom { position: relative; z-index: 2; padding: 1.15rem 0; background: rgba(0,0,0,0.18); }
.footer-bottom-inner { max-width: 1260px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.32); line-height: 1.5; }
.footer-bottom-nav { display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap; }
.footer-bottom-link { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.18s ease; white-space: nowrap; }
.footer-bottom-link:hover { color: var(--gold-light); }
.footer-bottom-sep { display: block; width: 1px; height: 12px; background: rgba(255,255,255,0.16); flex-shrink: 0; }

@media (max-width: 1080px) { .footer-body-inner { grid-template-columns: 1.3fr 1fr 1.2fr; gap: 2.5rem; } }
@media (max-width: 820px) {
  .footer-info-inner { grid-template-columns: 1fr; padding: 0 1.5rem; }
  .footer-info-item { padding: 1rem 0.75rem; border-bottom: 1px solid rgba(30,58,47,0.14); }
  .footer-info-item:last-child { border-bottom: none; }
  .footer-info-sep { display: none; }
  .footer-body { padding: 3rem 0 2.5rem; }
  .footer-body-inner { grid-template-columns: 1fr 1fr; gap: 2rem 2.5rem; padding: 0 1.5rem; }
  .footer-col--brand { grid-column: 1 / -1; }
  .footer-brand-desc { max-width: 100%; }
}
@media (max-width: 580px) {
  .footer-body { padding: 2.5rem 0 2rem; }
  .footer-body-inner { grid-template-columns: 1fr; gap: 1.75rem; padding: 0 1.25rem; }
  .footer-col--brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; gap: 0.65rem; padding: 0 1.25rem; }
  .footer-bottom-nav { justify-content: center; }
}
@media (max-width: 400px) {
  .footer-info-icon-wrap { width: 40px; height: 40px; }
  .footer-info-value { font-size: 0.83rem; }
  .footer-logo-img { height: 38px; }
  .footer-bottom-sep { display: none; }
  .footer-bottom-link { font-size: 0.72rem; }
}