/* =====================================================
   ACE Accounting Solutions — style.css
   Shared stylesheet for all pages
   =====================================================
   TABLE OF CONTENTS
   1.  Reset & CSS Variables
   2.  Base Typography & Body
   3.  Layout Utilities (.container, .section)
   4.  Eyebrow Labels
   5.  Headings
   6.  Buttons
   7.  Sticky Header (shrinks on scroll)
   8.  Logo (image + text, auto-shrinks with header)
   9.  Desktop Navigation
   10. Hamburger Button
   11. Mobile Menu
   12. Scroll Reveal Animations
   13. Hero Section
   14. Trust Bar
   15. Problem Cards
   16. Services Overview (homepage)
   17. Why ACE Cards
   18. Testimonials Slider
   19. FAQ Accordion
   20. CTA Banner
   21. Footer (logo, grid, social icons, legal links, badges)
   22. Floating WhatsApp Button
   23. Page Hero (inner pages)
   24. Stats Ticker
   25. Contact Page
   26. About Page
   27. Team Section
   28. Services Full Page
   29. Process Steps
   30. Feature Grid
   31. Blog (filters, grid, cards, newsletter, preview)
   32. Social Icons
   33. Legal Pages (privacy policy, terms)
   34. Responsive Breakpoints (1100px, 960px, 680px, 420px)
   35. Services Page — Premium Upgrade (srv- classes)
   36. Service Card — Click to Dark Toggle
   ===================================================== */


/* =====================================================
   1. RESET & CSS VARIABLES
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }

:root {
  /* Brand colours */
  --navy:       #0E1B2E;
  --navy-light: #1A2F4A;
  --navy-mid:   #152540;
  --gold:       #B8922A;
  --gold-light: #D4A843;
  --gold-pale:  #F5EDD6;
  --gold-faint: #FBF6EC;
  --cream:      #FAF7F2;
  --cream-dark: #f0ebe0;
  --white:      #FFFFFF;
  --text:       #1A1A1A;
  --text-muted: #5C5C5C;

  /* Borders */
  --border:      rgba(184,146,42,0.2);
  --border-dark: rgba(184,146,42,0.12);

  /* Shadows — original set */
  --shadow-sm: 0 2px 12px rgba(14,27,46,0.08);
  --shadow-md: 0 8px 32px rgba(14,27,46,0.12);
  --shadow-lg: 0 20px 60px rgba(14,27,46,0.18);

  /* Shadows — services page cards */
  --shadow-card:  0 4px 32px rgba(13,27,42,0.13), 0 1px 4px rgba(13,27,42,0.07);
  --shadow-hover: 0 16px 56px rgba(13,27,42,0.22), 0 4px 16px rgba(184,146,42,0.12);

  /* Layout */
  --radius:    10px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --max-w:     clamp(960px, 90vw, 1440px);

  /* Transition — updated to premium cubic-bezier (benefits all pages) */
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Navbar heights */
  --nav-h:          82px;
  --nav-h-scrolled: 62px;
}


/* =====================================================
   2. BASE TYPOGRAPHY & BODY
   ===================================================== */

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; }
em { font-style: italic; color: var(--gold-light); }
p  { font-size: 1rem; }


/* =====================================================
   3. LAYOUT UTILITIES
   ===================================================== */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.section       { padding: 96px 0; }
.section-dark  { background: var(--navy); }
.section-pale  { background: var(--gold-pale); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }


/* =====================================================
   4. EYEBROW LABELS
   ===================================================== */

.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.eyebrow-light { color: var(--gold-light); }
.eyebrow-light::before { background: var(--gold-light); }


/* =====================================================
   5. HEADINGS
   ===================================================== */

.section-title       { font-size: clamp(32px, 3.6vw, 48px); line-height: 1.12; color: var(--navy); margin-bottom: 16px; }
.section-title-light { color: #fff; }
.section-sub         { font-size: 1.0625rem; color: var(--text-muted); max-width: 580px; line-height: 1.8; }
.section-sub-light   { color: rgba(255,255,255,0.62); }


/* =====================================================
   6. BUTTONS
   ===================================================== */

.btn              { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.3px; transition: all var(--transition); border-radius: 5px; padding: 14px 30px; }
.btn-gold         { background: var(--gold); color: var(--navy); }
.btn-gold:hover   { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,146,42,0.38); }
.btn-outline-light       { background: transparent; color: rgba(255,255,255,0.88); border: 1px solid rgba(255,255,255,0.32); }
.btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.btn-whatsapp       { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(37,211,102,0.32); }
.btn-navy       { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.wa-svg { width: 19px; height: 19px; flex-shrink: 0; }


/* =====================================================
   7. STICKY HEADER
   ===================================================== */

#site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(184,146,42,0.18);
  height: var(--nav-h);
  transition: height 0.35s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.35s ease,
              background 0.35s ease,
              border-color 0.35s ease;
  will-change: height;
}
#site-header.scrolled {
  height: var(--nav-h-scrolled);
  box-shadow: 0 3px 28px rgba(0,0,0,0.36);
  background: rgba(14,27,46,0.97);
  border-color: rgba(184,146,42,0.12);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}


/* =====================================================
   8. LOGO
   ===================================================== */

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  transition: height 0.35s cubic-bezier(0.4,0,0.2,1);
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
}
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: font-size 0.35s ease;
}
.logo-city {
  font-size: 0.625rem;
  color: var(--gold-light);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 3px;
  white-space: nowrap;
  transition: font-size 0.35s ease, letter-spacing 0.35s ease;
}

#site-header.scrolled .logo-mark img { height: 38px; }
#site-header.scrolled .logo-name     { font-size: 1.0625rem; }
#site-header.scrolled .logo-city     { font-size: 0.5625rem; letter-spacing: 2px; }

.logo-mark-text {
  width: 44px; height: 44px;
  border: 1.5px solid var(--gold);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 600;
  color: var(--gold); letter-spacing: 1px;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.footer-brand .logo      { gap: 12px; margin-bottom: 18px; }
.footer-brand .logo-mark img { height: 44px; }
.footer-brand .logo-name { font-size: 1.0625rem; color: #fff; }
.footer-brand .logo-city { font-size: 0.5625rem; letter-spacing: 2px; }


/* =====================================================
   9. DESKTOP NAVIGATION
   ===================================================== */

#desktop-nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  color: rgba(255,255,255,0.74);
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.25px;
  padding: 8px 15px;
  border-radius: 5px;
  transition: color var(--transition), background var(--transition), font-size 0.35s ease;
  cursor: pointer; background: transparent; border: none;
  font-family: 'DM Sans', sans-serif; font-weight: 400; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold-light); background: rgba(184,146,42,0.1); }
#site-header.scrolled .nav-link  { font-size: 0.84rem; padding: 7px 13px; }

.header-cta {
  background: var(--gold); color: var(--navy);
  padding: 10px 22px; border-radius: 5px;
  font-size: 0.875rem; font-weight: 500;
  text-decoration: none; letter-spacing: 0.2px;
  transition: all var(--transition);
  white-space: nowrap; cursor: pointer; border: none;
  font-family: 'DM Sans', sans-serif; flex-shrink: 0;
}
.header-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(184,146,42,0.35); }
#site-header.scrolled .header-cta { padding: 8px 18px; font-size: 0.83rem; }


/* =====================================================
   10. HAMBURGER BUTTON
   ===================================================== */

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: rgba(255,255,255,0.82); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* =====================================================
   11. MOBILE MENU
   ===================================================== */

.mobile-menu {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 199;
  padding: 32px 28px;
  flex-direction: column; gap: 4px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  color: rgba(255,255,255,0.84); text-decoration: none;
  font-size: 26px; font-family: 'Cormorant Garamond', serif;
  padding: 16px 0; border-bottom: 1px solid rgba(184,146,42,0.1);
  cursor: pointer; background: none;
  border-top: none; border-left: none; border-right: none;
  text-align: left; transition: color var(--transition);
  width: 100%; display: block;
}
.mobile-nav-link:hover { color: var(--gold-light); }
.mobile-cta { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }


/* =====================================================
   12. SCROLL REVEAL ANIMATIONS
   ===================================================== */

.reveal         { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* =====================================================
   13. HERO SECTION
   ===================================================== */

.hero { background: var(--navy); padding: 104px 0 120px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 65% 80% at 78% 50%, rgba(184,146,42,0.07) 0%, transparent 60%); pointer-events: none; }
.hero::after  { content: ''; position: absolute; top: 0; right: 0; width: 38%; height: 100%; border-left: 1px solid rgba(184,146,42,0.09); background: linear-gradient(180deg, rgba(184,146,42,0.03) 0%, transparent 100%); pointer-events: none; }
.hero-inner   { display: grid; grid-template-columns: 1fr 380px; gap: 88px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.hero h1      { font-size: clamp(42px, 5vw, 64px); font-weight: 500; line-height: 1.2; color: #fff; margin-bottom: 24px; }
.hero-sub     { font-size: 1.0625rem; color: rgba(255,255,255,0.62); line-height: 1.8; max-width: 480px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-card    { background: rgba(255,255,255,0.04); border: 1px solid rgba(184,146,42,0.22); border-radius: var(--radius); padding: 36px; backdrop-filter: blur(4px); }
.hero-stat              { padding: 22px 0; border-bottom: 1px solid rgba(184,146,42,0.1); }
.hero-stat:first-child  { padding-top: 0; }
.hero-stat:last-child   { padding-bottom: 0; border-bottom: none; }
.stat-num   { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 500; color: var(--gold-light); line-height: 1; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 6px; letter-spacing: 0.3px; }


/* =====================================================
   14. TRUST BAR
   ===================================================== */

.trust-bar    { background: var(--gold-pale); border-bottom: 1px solid var(--border); padding: 15px 0; }
.trust-inner  { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.trust-item   { display: flex; align-items: center; gap: 9px; font-size: 0.78rem; color: var(--navy); letter-spacing: 0.3px; font-weight: 500; padding: 5px 22px; }
.trust-divider{ width: 1px; height: 20px; background: var(--border); flex-shrink: 0; }


/* =====================================================
   15. PROBLEM CARDS
   ===================================================== */

.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.problem-card { background: var(--white); border: 1px solid rgba(0,0,0,0.07); border-radius: var(--radius); padding: 32px; position: relative; transition: box-shadow var(--transition), transform var(--transition); }
.problem-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--gold); border-radius: var(--radius) 0 0 var(--radius); }
.problem-card:hover   { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.problem-q { font-size: 0.9375rem; font-weight: 600; color: var(--navy); margin-bottom: 12px; line-height: 1.4; }
.problem-a { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }


/* =====================================================
   16. SERVICES OVERVIEW (homepage dark section)
   ===================================================== */

.services-dark { background: var(--navy); padding: 96px 0; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 52px; }
.service-card  { background: rgba(255,255,255,0.04); border: 1px solid rgba(184,146,42,0.15); border-radius: var(--radius); padding: 36px; transition: border-color var(--transition), background var(--transition), transform var(--transition); cursor: pointer; }
.service-card:hover { border-color: rgba(184,146,42,0.48); background: rgba(255,255,255,0.07); transform: translateY(-3px); }
.service-icon { font-size: 26px; margin-bottom: 18px; }
.service-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 500; color: #fff; margin-bottom: 12px; }
.service-desc { font-size: 0.875rem; color: rgba(255,255,255,0.52); line-height: 1.75; margin-bottom: 18px; }
.service-items { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-items li { font-size: 0.8125rem; color: rgba(255,255,255,0.42); display: flex; align-items: flex-start; gap: 9px; }
.service-items li::before { content: '→'; color: var(--gold); font-size: 11px; flex-shrink: 0; margin-top: 3px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 22px; font-size: 0.8125rem; color: var(--gold-light); cursor: pointer; background: none; border: none; font-family: 'DM Sans', sans-serif; border-bottom: 1px solid rgba(212,168,67,0.3); padding-bottom: 1px; transition: all var(--transition); }
.service-link:hover { color: #fff; border-color: rgba(255,255,255,0.45); }


/* =====================================================
   17. WHY ACE CARDS
   ===================================================== */

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.why-card  { background: var(--white); border: 1px solid rgba(0,0,0,0.07); border-radius: var(--radius); padding: 38px 28px; text-align: center; transition: box-shadow var(--transition), transform var(--transition); }
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-num   { font-family: 'Cormorant Garamond', serif; font-size: 58px; font-weight: 400; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.why-title { font-family: 'Cormorant Garamond', serif; font-size: 1.375rem; color: var(--navy); margin-bottom: 12px; }
.why-desc  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }


/* =====================================================
   18. TESTIMONIALS SLIDER
   ===================================================== */

.testi-section      { background: var(--navy); padding: 96px 0; overflow: hidden; }
.testi-slider-wrap { position: relative; overflow: hidden; margin-top: 52px; max-width: 100%; }
.testi-slider { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); will-change: transform; width: 100%; }
.testi-card         { min-width: 100%; max-width: 100%; box-sizing: border-box; background: rgba(255,255,255,0.05); border: 1px solid rgba(184,146,42,0.18); border-radius: var(--radius); padding: 48px 56px; display: flex; flex-direction: column; gap: 22px; }
.testi-stars        { color: var(--gold-light); font-size: 16px; letter-spacing: 3px; }
.testi-quote        { font-family: 'Cormorant Garamond', serif; font-size: clamp(20px,2.5vw,26px); color: #fff; line-height: 1.55; font-style: italic; }
.testi-author       { display: flex; align-items: center; gap: 16px; border-top: 1px solid rgba(184,146,42,0.12); padding-top: 22px; }
.testi-avatar       { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-light), var(--gold)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.testi-avatar img   { width: 100%; height: 100%; object-fit: cover; display: block; }
.testi-name         { font-size: 0.9rem; font-weight: 500; color: #fff; }
.testi-role         { font-size: 0.78rem; color: rgba(255,255,255,0.42); margin-top: 2px; }
.testi-controls     { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.testi-dot          { width: 8px; height: 8px; border-radius: 50%; background: rgba(184,146,42,0.28); border: none; cursor: pointer; transition: all var(--transition); padding: 0; }
.testi-dot.active   { background: var(--gold-light); transform: scale(1.3); }
.testi-btn          { background: rgba(255,255,255,0.07); border: 1px solid rgba(184,146,42,0.2); color: rgba(255,255,255,0.6); width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--transition); font-size: 16px; }
.testi-btn:hover    { background: rgba(184,146,42,0.14); color: #fff; }


/* =====================================================
   19. FAQ ACCORDION
   ===================================================== */

.faq-list { margin-top: 44px; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border-dark); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 0; cursor: pointer; font-size: 1rem; font-weight: 500;
  color: var(--navy); transition: color var(--transition);
  user-select: none; background: none; border: none;
  width: 100%; text-align: left; font-family: 'DM Sans', sans-serif;
}
.faq-q:hover            { color: var(--gold); }
.faq-chevron            { color: var(--gold); font-size: 12px; flex-shrink: 0; transition: transform 0.32s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a                  { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-item.open .faq-a   { max-height: 450px; }
.faq-a-inner            { padding: 0 0 22px; font-size: 0.9375rem; color: var(--text-muted); line-height: 1.8; }


/* =====================================================
   20. CTA BANNER
   ===================================================== */

.cta-banner  { background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%); border-top: 1px solid rgba(184,146,42,0.15); padding: 88px 0; text-align: center; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }


/* =====================================================
   21. FOOTER
   ===================================================== */

footer { background: #080F1A; border-top: 1px solid rgba(184,146,42,0.12); padding: 72px 0 0; }

.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 56px; }

.footer-desc { font-size: 0.8375rem; color: rgba(255,255,255,0.38); line-height: 1.75; margin-bottom: 22px; max-width: 280px; }

.footer-contact-link       { display: flex; align-items: center; gap: 9px; font-size: 0.8375rem; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 9px; transition: color var(--transition); }
.footer-contact-link:hover { color: var(--gold-light); }

.footer-col h4 { font-size: 10.5px; font-weight: 600; letter-spacing: 2.2px; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: 22px; }

.footer-col a       { display: block; font-size: 0.8375rem; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 11px; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-light); }

.footer-social { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,146,42,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: all var(--transition);
  flex-shrink: 0;
}
.social-icon svg        { width: 15px; height: 15px; }
.social-icon:hover      { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(184,146,42,0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-left { display: flex; flex-direction: column; gap: 6px; }

.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.22); }

.footer-legal-links { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.footer-legal-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--gold-light); }
.footer-legal-links span    { color: rgba(255,255,255,0.15); font-size: 0.75rem; }

.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge  { font-size: 10px; padding: 3px 11px; border-radius: 20px; border: 1px solid rgba(184,146,42,0.18); color: rgba(184,146,42,0.55); letter-spacing: 0.8px; text-transform: uppercase; }


/* =====================================================
   22. FLOATING WHATSAPP BUTTON
   ===================================================== */

.wa-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(37,211,102,0.20);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  animation: wa-pulse 3s ease-in-out infinite;
}

.wa-float:hover { transform: scale(1.05); box-shadow: 0 4px 16px rgba(37,211,102,0.55); }
.wa-float svg   { width: 30px; height: 30px; }

@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.18); }
  70%  { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}


/* =====================================================
   23. PAGE HERO (About, Services, Contact, Blog pages)
   ===================================================== */

.page-hero { background: var(--navy); padding: 72px 0 88px; }
.page-hero .section-title { color: #fff; font-size: clamp(36px, 4.5vw, 54px); }

.breadcrumb     { font-size: 0.78rem; color: rgba(255,255,255,0.38); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a   { color: rgba(255,255,255,0.38); text-decoration: none; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: rgba(255,255,255,0.18); }


/* =====================================================
   24. STATS TICKER (About page)
   ===================================================== */

.ticker-grid  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(184,146,42,0.18); border: 1px solid rgba(184,146,42,0.18); border-radius: var(--radius); overflow: hidden; }
.ticker-item  { background: var(--navy); padding: 40px 28px; text-align: center; }
.ticker-num   { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 400; color: var(--gold-light); line-height: 1; margin-bottom: 10px; }
.ticker-label { font-size: 0.78rem; color: rgba(255,255,255,0.42); letter-spacing: 0.5px; }


/* =====================================================
   25. CONTACT PAGE
   ===================================================== */

.contact-layout    { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; }
.contact-info-block{ padding: 22px 0; border-bottom: 1px solid var(--border-dark); }
.contact-info-label{ font-size: 10.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.contact-info-val  { font-size: 1rem; color: var(--navy); font-weight: 500; }
.contact-info-sub  { font-size: 0.8125rem; color: var(--text-muted); margin-top: 4px; }

.tally-wrapper        { background: var(--white); border: 0px solid var(--border); border-radius: var(--radius); overflow: hidden; padding: 0px; }
.tally-wrapper iframe { display: block; width: 100%; border: none; }


/* =====================================================
   26. ABOUT PAGE
   ===================================================== */

.about-story  { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.value-card         { background: rgba(255,255,255,0.05); border: 1px solid rgba(184,146,42,0.14); border-radius: var(--radius); padding: 32px; text-align: center; transition: all var(--transition); }
.value-card:hover   { background: rgba(255,255,255,0.09); border-color: rgba(184,146,42,0.3); transform: translateY(-3px); }
.value-icon  { margin-bottom: 14px; }
.value-title { font-family: 'Cormorant Garamond', serif; font-size: 1.375rem; color: #fff; margin-bottom: 10px; }
.value-desc  { font-size: 0.875rem; color: rgba(255,255,255,0.46); line-height: 1.7; }


/* =====================================================
   27. TEAM SECTION
   ===================================================== */

.team-section         { padding: 96px 0; background: var(--cream); }
.team-grid-3          { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.team-top             { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.team-bottom          { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-backbone-title  { text-align: center; margin: 60px 0 30px; font-family: 'Cormorant Garamond', serif; font-size: 13px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; justify-content: center; gap: 18px; }
.team-backbone-title::before, .team-backbone-title::after { content: ''; flex: 1; height: 1px; background: var(--border); max-width: 130px; }
.team-card            { background: var(--white); border: 1px solid rgba(0,0,0,0.07); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); }
.team-card:hover      { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-avatar          { height: 500px; background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.team-avatar img      { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.team-info            { padding: 24px; }
.team-name            { font-family: 'Cormorant Garamond', serif; font-size: 1.375rem; color: var(--navy); margin-bottom: 4px; }
.team-role            { font-size: 10.5px; color: var(--gold); text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 10px; }
.team-bio             { font-size: 0.8375rem; color: var(--text-muted); line-height: 1.65; }
.team-specs           { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.team-specs span      { font-size: 10px; color: var(--gold); background: var(--gold-pale); padding: 4px 10px; border-radius: 20px; letter-spacing: 0.5px; }


/* =====================================================
   28. SERVICES FULL PAGE
   ===================================================== */

.services-full-page { padding: 88px 0; }
.service-category   { margin-bottom: 72px; }
.category-header    { margin-bottom: 36px; border-bottom: 2px solid var(--gold-pale); padding-bottom: 22px; }
.category-title     { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--navy); margin-bottom: 8px; }
.category-sub       { font-size: 0.9rem; color: var(--text-muted); }
.services-list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-list-item         { background: var(--white); border: 1px solid rgba(0,0,0,0.07); border-radius: var(--radius); padding: 24px 28px; transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition); }
.service-list-item:hover   { box-shadow: var(--shadow-sm); transform: translateY(-2px); border-color: rgba(184,146,42,0.25); }
.sli-num  { font-family: 'Cormorant Garamond', serif; font-size: 13px; color: var(--gold); margin-bottom: 7px; letter-spacing: 1px; }
.sli-name { font-size: 0.9375rem; font-weight: 600; color: var(--navy); margin-bottom: 9px; }
.sli-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }


/* =====================================================
   29. PROCESS STEPS
   ===================================================== */

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 52px; }
.process-steps::before { content: ''; position: absolute; top: 26px; left: 12%; right: 12%; height: 1px; background: var(--border); z-index: 0; }
.process-step  { text-align: center; position: relative; z-index: 1; padding: 0 18px; }
.process-num   { width: 54px; height: 54px; border-radius: 50%; background: var(--gold-pale); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--gold); margin: 0 auto 18px; }
.process-title { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.process-desc  { font-size: 0.8375rem; color: var(--text-muted); line-height: 1.65; }


/* =====================================================
   30. FEATURE GRID
   ===================================================== */

.feature-grid        { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 52px; }
.feature-item        { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: var(--white); border: 1px solid rgba(0,0,0,0.07); border-radius: var(--radius); transition: all var(--transition); }
.feature-item:hover  { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.feature-icon  { flex-shrink: 0; margin-top: 2px; }
.feature-title { font-size: 0.9375rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.feature-desc  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }


/* =====================================================
   31. BLOG
   ===================================================== */

.blog-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.blog-filter-btn {
  font-family: 'DM Sans', sans-serif; font-size: 0.8125rem; font-weight: 500;
  padding: 8px 18px; border-radius: 20px; cursor: pointer;
  border: 1px solid var(--border); background: var(--white);
  color: var(--text-muted); transition: all var(--transition);
  white-space: nowrap;
}
.blog-filter-btn:hover  { border-color: var(--gold); color: var(--gold); }
.blog-filter-btn.active { background: var(--navy); color: var(--gold-light); border-color: var(--navy); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 56px; }

.blog-card       { background: var(--white); border: 1px solid rgba(0,0,0,0.07); border-radius: var(--radius); overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.blog-card-img-link { display: block; flex-shrink: 0; }
.blog-card-img      { height: 196px; background-size: cover; background-position: center; position: relative; }

.blog-cat { position: absolute; top: 14px; left: 14px; font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy); background: var(--gold-light); padding: 4px 10px; border-radius: 20px; }

.blog-card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-meta      { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.blog-date      { font-size: 0.78rem; color: var(--text-muted); }
.blog-read      { font-size: 0.75rem; color: var(--gold); background: var(--gold-pale); padding: 2px 9px; border-radius: 20px; }
.blog-title     { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 500; line-height: 1.3; color: var(--navy); margin-bottom: 10px; }
.blog-title a         { color: inherit; text-decoration: none; }
.blog-title a:hover   { color: var(--gold); }
.blog-excerpt         { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 16px; }
.blog-read-more       { font-size: 0.8125rem; font-weight: 500; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; margin-top: auto; transition: color var(--transition); border-bottom: 1px solid rgba(184,146,42,0.3); padding-bottom: 1px; align-self: flex-start; }
.blog-read-more:hover { color: var(--navy); border-color: var(--navy); }

.blog-newsletter       { background: var(--gold-pale); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px 48px; margin-top: 16px; }
.blog-newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }

.blog-preview-section { background: var(--cream); padding: 96px 0; }
.blog-preview-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }


/* =====================================================
   32. SOCIAL ICONS — see section 21
   ===================================================== */


/* =====================================================
   33. LEGAL PAGES
   ===================================================== */

.legal-doc        { max-width: 760px; }
.legal-doc h2     { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--navy); margin: 36px 0 12px; font-weight: 500; }
.legal-doc p      { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.legal-doc ul     { margin: 0 0 16px 20px; }
.legal-doc ul li  { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 6px; }
.legal-doc a      { color: var(--gold); text-decoration: none; }
.legal-doc a:hover{ color: var(--navy); text-decoration: underline; }
.legal-doc strong { color: var(--navy); }


/* =====================================================
   34. RESPONSIVE BREAKPOINTS
   ===================================================== */

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 960px) {
  html { font-size: 16px; }

  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card  { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-stat  { padding: 18px; border-bottom: none; border-right: 1px solid rgba(184,146,42,0.1); }
  .hero-stat:last-child { border-right: none; }
  .hero::after { display: none; }

  .problem-grid       { grid-template-columns: 1fr 1fr; }
  .services-grid      { grid-template-columns: 1fr; }
  .why-grid           { grid-template-columns: 1fr 1fr; }
  .about-values       { grid-template-columns: 1fr 1fr; }
  .team-grid-3        { grid-template-columns: repeat(2, 1fr); }
  .team-top           { grid-template-columns: repeat(2, 1fr); }
  .team-bottom        { grid-template-columns: repeat(2, 1fr); }
  .services-list-grid { grid-template-columns: 1fr; }
  .feature-grid       { grid-template-columns: 1fr; }
  .ticker-grid        { grid-template-columns: 1fr 1fr; }
  .blog-grid          { grid-template-columns: repeat(2, 1fr); }
  .blog-preview-grid  { grid-template-columns: repeat(2, 1fr); }
  .blog-newsletter    { padding: 32px; }

  .process-steps         { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-steps::before { display: none; }

  .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  .about-story    { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 680px) {
  html { font-size: 15.5px; }

  :root { --nav-h: 64px; --nav-h-scrolled: 56px; }

  .section { padding: 60px 0; }

  #desktop-nav { display: none; }
  .header-cta  { display: none; }
  .hamburger   { display: flex; }

  .mobile-menu { top: var(--nav-h); }

  .logo            { gap: 10px; }
  .logo-mark img   { height: 42px; }
  .logo-name       { font-size: 1.0625rem; }
  .logo-city       { font-size: 0.5625rem; letter-spacing: 2px; }
  #site-header.scrolled .logo-mark img { height: 32px; }

  .hero       { padding: 68px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-card  { display: flex; flex-direction: column; }
  .hero-stat  { border-right: none; border-bottom: 1px solid rgba(184,146,42,0.1); }
  .hero-stat:last-child { border-bottom: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .problem-grid       { grid-template-columns: 1fr; }
  .why-grid           { grid-template-columns: 1fr; }
  .team-grid-3        { grid-template-columns: 1fr; }
  .team-top           { grid-template-columns: 1fr; }
  .team-bottom        { grid-template-columns: 1fr; }
  .services-list-grid { grid-template-columns: 1fr; }
  .process-steps      { grid-template-columns: 1fr; }
  .about-values       { grid-template-columns: 1fr; }
  .blog-grid          { grid-template-columns: 1fr; }
  .blog-preview-grid  { grid-template-columns: 1fr; }
  .ticker-grid        { grid-template-columns: 1fr 1fr; }

  .footer-grid  { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }

  .trust-inner   { justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .trust-divider { display: none; }
  .trust-item    { padding: 5px 14px; white-space: nowrap; }

  .cta-actions           { flex-direction: column; align-items: center; }
  .testi-card            { padding: 30px 22px; }
  .about-story           { gap: 32px; }
  .contact-layout        { gap: 32px; }
  .blog-newsletter-inner { flex-direction: column; align-items: flex-start; }
  .blog-newsletter       { padding: 28px 20px; }
  .blog-filters          { gap: 6px; }
  .blog-filter-btn       { padding: 7px 14px; font-size: 0.75rem; }
}

@media (max-width: 420px) {
  .logo          { gap: 8px; }
  .logo-mark img { height: 36px; }
  .logo-name     { font-size: 0.9375rem; }
  .logo-city     { display: none; }

  .hero h1    { font-size: clamp(32px, 9vw, 44px); }
  .testi-card { padding: 26px 16px; }
  .btn        { padding: 12px 22px; font-size: 0.875rem; }
  .team-grid-3{ grid-template-columns: 1fr; }
}


/* =====================================================
   35. SERVICES PAGE — PREMIUM UPGRADE
   All classes prefixed srv- — zero conflicts above
   ===================================================== */

/* ---- HERO ---- */
.srv-hero {
  background: linear-gradient(135deg, #0a1520 0%, #0d1b2a 45%, #112236 100%);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.srv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 80% 20%, rgba(184,146,42,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 10% 80%, rgba(184,146,42,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.srv-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,146,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,146,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.srv-hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.srv-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,146,42,0.12); border: 1px solid rgba(184,146,42,0.25);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 28px;
  font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 500;
  color: var(--gold-light); letter-spacing: 0.12em; text-transform: uppercase;
}
.srv-hero-badge::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light);
  animation: srv-pulse 2s ease infinite;
}
@keyframes srv-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}
.srv-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 500; color: #fff; line-height: 1.15;
  margin: 0 0 24px; letter-spacing: -0.01em;
}
.srv-hero h1 em { color: var(--gold-light); font-style: italic; }
.srv-hero-sub {
  font-family: 'DM Sans', sans-serif; font-size: 1rem;
  color: rgba(255,255,255,0.58); line-height: 1.75;
  max-width: 540px; margin: 0 0 44px;
}
.srv-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.srv-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0d1b2a; font-family: 'DM Sans', sans-serif; font-size: 0.875rem;
  font-weight: 600; padding: 14px 28px; border-radius: 8px;
  text-decoration: none; letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  box-shadow: 0 4px 20px rgba(184,146,42,0.35);
}
.srv-btn-primary:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 8px 32px rgba(184,146,42,0.45); }
.srv-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.8);
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 400;
  padding: 13px 24px; border-radius: 8px; text-decoration: none;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.srv-btn-ghost:hover { border-color: rgba(184,146,42,0.5); color: var(--gold-light); background: rgba(184,146,42,0.06); }

.srv-hero-stats {
  display: flex;
  justify-content: center;   /* center the whole row */
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 40px;
  flex-wrap: wrap;
}

.srv-stat {
  flex: 0 0 auto;            /* stop stretching */
  min-width: 130px;
  padding-right: 40px;
  margin-right: 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.srv-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.srv-stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 600;
  color: var(--gold-light); line-height: 1;
}
.srv-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 6px; line-height: 1.4; }

/* ---- CATEGORY TABS NAV ---- */
.srv-tabs-section {
  background: var(--cream); padding: 0; position: sticky; top: 72px; z-index: 90;
  border-bottom: 1px solid rgba(13,27,42,0.1);
  box-shadow: 0 4px 24px rgba(13,27,42,0.06);
}
.srv-tabs {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; gap: 0; overflow-x: auto;
  scrollbar-width: none;
}
.srv-tabs::-webkit-scrollbar { display: none; }
.srv-tab {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 24px; font-family: 'DM Sans', sans-serif;
  font-size: 0.825rem; font-weight: 500; color: rgba(13,27,42,0.5);
  border-bottom: 2px solid transparent; white-space: nowrap;
  cursor: pointer; transition: color var(--transition), border-color var(--transition);
  background: none; border-top: none; border-left: none; border-right: none;
  text-decoration: none;
}
.srv-tab:hover { color: var(--navy); border-bottom-color: rgba(184,146,42,0.3); }
.srv-tab.active { color: var(--navy); border-bottom-color: var(--gold); font-weight: 600; }
.srv-tab-icon { font-size: 1rem; }
.srv-tab-count {
  background: rgba(184,146,42,0.12); color: var(--gold);
  font-size: 0.68rem; font-weight: 600; padding: 2px 7px;
  border-radius: 100px; letter-spacing: 0.04em;
}

/* ---- TRUST METRICS BAND ---- */
.srv-trust-band { background: var(--navy-mid); padding: 56px 0; }
.srv-trust-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.srv-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.srv-trust-item {
  padding: 32px 28px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.srv-trust-item:last-child { border-right: none; }
.srv-trust-icon {
  width: 44px; height: 44px; margin: 0 auto 16px;
  background: rgba(184,146,42,0.12); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.srv-trust-icon svg { width: 22px; height: 22px; stroke: var(--gold-light); fill: none; stroke-width: 1.8; }
.srv-trust-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 600;
  color: #fff; line-height: 1;
}
.srv-trust-num span { color: var(--gold-light); }
.srv-trust-label { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 8px; line-height: 1.5; }

/* ---- SERVICES MAIN AREA ---- */
.srv-main { background: var(--cream); padding: 80px 0; }
.srv-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.srv-category-section {
  margin-bottom: 96px;
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.srv-category-section.visible { opacity: 1; transform: translateY(0); }

.srv-cat-header {
  display: grid; grid-template-columns: auto 1fr; gap: 28px;
  align-items: flex-start; margin-bottom: 48px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(13,27,42,0.1);
}
.srv-cat-number {
  width: 52px; height: 52px; background: var(--navy);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 600;
  color: var(--gold-light); letter-spacing: 0.08em; flex-shrink: 0;
}
.srv-cat-label { font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 600; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }
.srv-cat-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 500; color: var(--navy); line-height: 1.2; margin: 0 0 10px;
}
.srv-cat-sub { font-size: 0.9rem; color: rgba(13,27,42,0.55); line-height: 1.7; max-width: 560px; margin: 0; }

/* ---- SERVICE CARDS GRID ---- */
.srv-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.srv-card {
  background: #fff;
  border: 1px solid rgba(13,27,42,0.08);
  border-radius: var(--radius);
  padding: 30px 28px 26px;

  position: relative;
  overflow: hidden;
  z-index: 1;

  transition: transform .45s ease,box-shadow .45s ease,border-color .45s ease;
  cursor: pointer;
}

.srv-card::after{
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    180deg,
    #0f2a50 0%,
    #183863 100%
);

  transition: top .6s ease;
  z-index: -1;
}

.srv-card:hover::after{
  top: 0;
}

.srv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}


.srv-card-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 18px;
}
.srv-card-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(184,146,42,0.1), rgba(184,146,42,0.05));
  border: 1px solid rgba(184,146,42,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}
.srv-card-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.srv-card-num {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400;
  color: rgba(13, 27, 42, 0.836); line-height: 1;
  transition: color var(--transition);
}
.srv-card-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600;
  color: var(--navy); line-height: 1.3; margin: 0 0 10px;
  transition: color var(--transition);
}
.srv-card-desc {
  font-size: 0.82rem; color: rgba(13,27,42,0.58); line-height: 1.72;
  margin: 0;
  transition: color var(--transition);
}
.srv-card-footer {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid rgba(13,27,42,0.06);
  display: flex; align-items: center; justify-content: space-between;
  transition: border-color var(--transition);
}
.srv-card-tag {
  font-size: 0.68rem; font-weight: 600; color: var(--gold);
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(184,146,42,0.08); padding: 3px 10px; border-radius: 100px;
  transition: background var(--transition), color var(--transition);
}
.srv-card-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(13,27,42,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.srv-card:hover .srv-card-arrow { background: var(--gold); border-color: var(--gold); }
.srv-card-arrow svg { width: 12px; height: 12px; stroke: rgba(13,27,42,0.4); transition: stroke var(--transition); }
.srv-card:hover .srv-card-arrow svg { stroke: #fff; }

.srv-card:hover .srv-card-name{
  color: #fff;
}

.srv-card:hover .srv-card-desc{
  color: rgba(255,255,255,0.85);
}

.srv-card:hover .srv-card-num{
  color: var(--gold-light);
}

.srv-card:hover .srv-card-footer{
  border-color: rgba(255,255,255,0.12);
}

.srv-card:hover .srv-card-tag{
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.srv-card:hover .srv-card-icon{
  background: rgba(184,146,42,0.12);
  border-color: rgba(184,146,42,0.25);
}

.srv-card:hover .srv-card-icon svg{
  stroke: var(--gold-light);
}

/* ---- PROCESS SECTION ---- */
.srv-process {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.srv-process::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 500px at 90% 50%, rgba(184,146,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.srv-process-inner { position: relative; z-index: 2; }
.srv-section-eyebrow {
  font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 12px; display: block;
}
.srv-section-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 500; line-height: 1.2; margin: 0 0 16px;
}
.srv-section-title.light { color: #fff; }
.srv-section-title.dark  { color: var(--navy); }
.srv-section-title em    { color: var(--gold-light); font-style: italic; }
.srv-section-sub { font-size: 0.92rem; line-height: 1.75; margin: 0 0 60px; max-width: 500px; }
.srv-section-sub.light { color: rgba(255,255,255,0.52); }
.srv-section-sub.dark  { color: rgba(13,27,42,0.55); }

.srv-process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.srv-process-steps::before {
  content: '';
  position: absolute; top: 28px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 1px; background: linear-gradient(90deg, rgba(184,146,42,0.3), rgba(184,146,42,0.6), rgba(184,146,42,0.3));
  z-index: 0;
}
.srv-step { padding: 0 24px; text-align: center; position: relative; z-index: 1; }
.srv-step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;

  background: var(--navy); /* solid background */
  border: 1px solid rgba(184,146,42,0.3);

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 24px;

  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--gold-light);
  font-weight: 600;

  position: relative;
  z-index: 2; /* place above line */

  transition: background var(--transition),border-color var(--transition),transform var(--transition);
}

.srv-step:hover .srv-step-circle { background: rgba(184,146,42,0.22); border-color: var(--gold-light); transform: scale(1.1); }
.srv-step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: #fff; margin: 0 0 10px; line-height: 1.3; }
.srv-step-desc  { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ---- SOCIAL PROOF ---- */
.srv-proof { background: var(--cream-dark); padding: 72px 0; }
.srv-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.srv-proof-card {
  background: #fff; border-radius: var(--radius); padding: 32px 28px;
  border: 1px solid rgba(13,27,42,0.07);
  box-shadow: 0 2px 16px rgba(13,27,42,0.06);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow var(--transition);
}
.srv-proof-card.visible { opacity: 1; transform: translateY(0); }
.srv-proof-card:hover   { box-shadow: var(--shadow-hover); }
.srv-proof-stars  { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 16px; }
.srv-proof-quote  { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; color: var(--navy); line-height: 1.65; margin: 0 0 20px; }
.srv-proof-author { display: flex; align-items: center; gap: 12px; }
.srv-proof-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--gold-light); font-weight: 600;
}
.srv-proof-name { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.srv-proof-role { font-size: 0.75rem; color: rgba(13,27,42,0.45); }

/* ---- JUMP PILLS ---- */
.srv-jump-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 52px; }
.srv-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 100px;
  background: rgba(13,27,42,0.05); border: 1px solid rgba(13,27,42,0.1);
  font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 500;
  color: rgba(13,27,42,0.65); text-decoration: none;
  transition: all var(--transition); cursor: pointer;
}
.srv-pill:hover, .srv-pill.active { background: var(--navy); border-color: var(--navy); color: var(--gold-light); }
.srv-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ---- CTA SECTION ---- */
.srv-cta {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #f0ecdb 100%);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.srv-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 20% 50%, rgba(184,146,42,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 500px 400px at 85% 20%, rgba(184,146,42,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.srv-cta::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 320px; height: 320px;
  border-top: 1px solid rgba(184,146,42,0.12);
  border-right: 1px solid rgba(184,146,42,0.12);
  border-radius: 0 0 0 100%;
  pointer-events: none;
}
.srv-cta-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr auto; gap: 64px;
  align-items: center;
}
.srv-cta-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500; color: rgb(15, 32, 48); line-height: 1.2; margin: 0 0 16px;
}
.srv-cta-title em { color: var(--gold-light); font-style: italic; }
.srv-cta-sub { font-size: 0.95rem; color: rgb(15, 32, 48); line-height: 1.7; margin: 0; max-width: 500px; }
.srv-cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; min-width: 220px; }
.srv-btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: #25D366; color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 600;
  padding: 14px 24px; border-radius: 8px; text-decoration: none;
  transition: transform var(--transition), filter var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.srv-btn-wa:hover { transform: translateY(-2px); filter: brightness(1.08); }
.srv-cta-note { font-size: 0.72rem; color: rgb(15, 32, 48); text-align: center; letter-spacing: 0.04em; }

/* ---- BREADCRUMB ---- */
.srv-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.srv-breadcrumb a { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color var(--transition); }
.srv-breadcrumb a:hover { color: var(--gold-light); }
.srv-breadcrumb-sep     { color: rgba(255,255,255,0.2); font-size: 0.75rem; }
.srv-breadcrumb-current { font-size: 0.78rem; color: rgb(15, 32, 48); }

/* ---- SCROLL REVEAL ---- */
.srv-reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.srv-reveal.visible      { opacity: 1; transform: translateY(0); }
.srv-reveal-delay-1      { transition-delay: 0.1s; }
.srv-reveal-delay-2      { transition-delay: 0.2s; }
.srv-reveal-delay-3      { transition-delay: 0.3s; }

/* Suppress original page-hero breadcrumb on services page */
.srv-hero .breadcrumb { display: none; }

/* ---- SERVICES PAGE RESPONSIVE ---- */
@media (max-width: 1024px) {
  .srv-cards-grid     { grid-template-columns: repeat(2, 1fr); }
  .srv-trust-grid     { grid-template-columns: repeat(2, 1fr); }
  .srv-trust-item     { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .srv-trust-item:last-child { border-bottom: none; }
  .srv-process-steps  { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .srv-process-steps::before { display: none; }
  .srv-cta-inner      { grid-template-columns: 1fr; gap: 40px; }
  .srv-cta-actions    { flex-direction: row; }
}
@media (max-width: 768px) {
  .srv-hero           { padding: 110px 0 72px; }
  .srv-hero h1        { font-size: 2.1rem; }
  .srv-stat           { min-width: 100px; padding-right: 20px; margin-right: 20px; }
  .srv-cards-grid     { grid-template-columns: 1fr; }
  .srv-proof-grid     { grid-template-columns: 1fr; }
  .srv-process-steps  { grid-template-columns: 1fr; gap: 28px; }
  .srv-trust-grid     { grid-template-columns: repeat(2, 1fr); }
  .srv-cat-header     { grid-template-columns: 1fr; gap: 16px; }
  .srv-cta-actions    { flex-direction: column; }
  .srv-tabs-section   { top: 60px; }
  .srv-tab            { padding: 15px 16px; font-size: 0.75rem; }
  .srv-hero-inner     { padding: 0 20px; }
  .srv-container      { padding: 0 20px; }
  .srv-main           { padding: 56px 0; }
  .srv-category-section { margin-bottom: 64px; }
  .srv-hero-stats     { flex-wrap: wrap; }
  .srv-stat           { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 20px; margin-bottom: 20px; padding-right: 0; margin-right: 0; flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 480px) {
  .srv-trust-grid { grid-template-columns: 1fr; }
  .srv-trust-item { border-bottom: 1px solid rgba(255,255,255,0.06); border-right: none; }
  .srv-trust-item:last-child { border-bottom: none; }
}


/* =====================================================
   36. SERVICE CARD — CLICK TO DARK TOGGLE
   ===================================================== */

/* Dark skin applied when JS adds .is-flipped */
.srv-card.is-flipped {
  background: linear-gradient(135deg, rgba(13,27,42,0.97), rgba(17,34,54,0.97));
  border-color: rgba(184,146,42,0.35);
}
.srv-card.is-flipped::before         { transform: scaleX(1); } 
.srv-card.is-flipped .srv-card-name  { color: #fff; }
.srv-card.is-flipped .srv-card-desc  { color: rgba(255,255,255,0.52); }
.srv-card.is-flipped .srv-card-num   { color: rgba(255,255,255,0.1); }
.srv-card.is-flipped .srv-card-footer{ border-top-color: rgba(255,255,255,0.08); }
.srv-card.is-flipped .srv-card-tag   { background: rgba(184,146,42,0.18); color: var(--gold-light); }
.srv-card.is-flipped .srv-card-arrow { border-color: rgba(255,255,255,0.15); }
.srv-card.is-flipped .srv-card-arrow svg { stroke: rgba(255,255,255,0.5); }
.srv-card.is-flipped .srv-card-icon  { background: rgba(184,146,42,0.18); border-color: rgba(184,146,42,0.3); }
.srv-card.is-flipped:hover           { border-color: rgba(184,146,42,0.55); }
.srv-card.is-flipped:hover .srv-card-arrow     { background: var(--gold); border-color: var(--gold); }
.srv-card.is-flipped:hover .srv-card-arrow svg { stroke: #fff; }

/* Hint dot — pulsing gold signal that card is interactive */
.srv-card-hint {
  position: absolute;
  top: 14px; right: 14px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  animation: hint-pulse 2.4s ease infinite;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
/* Dot disappears when card is in dark state */
.srv-card.is-flipped .srv-card-hint { opacity: 0; animation: none; }

@keyframes hint-pulse {
  0%, 100% { transform: scale(1);   opacity: 0.5; }
  50%       { transform: scale(1.7); opacity: 0.15; }
}
