/*
Theme Name: TaxWise GST Solutions
Theme URI: https://taxwisegst.com
Author: Mohit Kumar Saha
Author URI: https://taxwisegst.com
Description: A professional WordPress theme for TaxWise GST Solutions — expert GST filing, tax consulting, and compliance services. Fully responsive across all devices.
Version: 2.1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: taxwise-gst
Tags: business, professional, tax, gst, consulting, responsive
*/

/* =============================================
   CSS VARIABLES & RESET
   ============================================= */
:root {
  --primary:       #0F2D52;
  --primary-dark:  #091e38;
  --primary-mid:   #1a4880;
  --accent:        #D9A441;
  --accent-light:  #f0c060;
  --accent-pale:   rgba(217,164,65,0.12);
  --bg:            #F5F7FA;
  --bg-section:    #EEF1F7;
  --white:         #FFFFFF;
  --text:          #1c2a3a;
  --text-light:    #5a6a7a;
  --border:        #dde3ed;
  --card-bg:       #FFFFFF;
  --shadow-sm:     0 2px 12px rgba(15,45,82,0.07);
  --shadow:        0 6px 28px rgba(15,45,82,0.11);
  --shadow-lg:     0 16px 56px rgba(15,45,82,0.18);
  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     20px;
  --font-head:     'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', Arial, sans-serif;
  --nav-h:         72px;
  --container:     1200px;
  --gap:           28px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p  { color: var(--text-light); line-height: 1.75; }

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  width: 100%;
}

.section-pad { padding: clamp(56px, 8vw, 96px) 0; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-pale);
  border-radius: 30px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

.section-title {
  color: var(--primary);
  margin-bottom: 14px;
}

.section-sub {
  max-width: 560px;
  font-size: 1.02rem;
  color: var(--text-light);
  margin-bottom: 44px;
  line-height: 1.75;
}

.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  font-family: var(--font-body);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,164,65,0.38);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--white);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--primary-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,45,82,0.30);
}
.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
}
.btn-whatsapp:hover {
  background: #20bc5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.42);
}

/* =============================================
   HEADER / NAVIGATION  —  "Ledger" header v3.9
   ============================================= */

/* ── Top info bar ─────────────────────────── */
/* =============================================
   NAVIGATION v3 — "Navy Masthead" redesign
   Unified dark masthead, gold pill highlights,
   dark gold-railed dropdown, ghost-gold CTA,
   full-screen mobile menu with serif links.
   ============================================= */

/* ── Top info bar ─────────────────────────── */
.topbar {
  background: var(--primary-dark);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.72);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 36px;
  padding-left: clamp(16px, 3vw, 32px);
  padding-right: clamp(16px, 3vw, 32px);
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.topbar-item,
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.topbar-item svg,
.topbar-link svg {
  width: 13px;
  height: 13px;
  color: var(--accent);
  flex-shrink: 0;
}
.topbar-link {
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
}
.topbar-link:hover { color: var(--accent-light); }
.topbar-phone { font-weight: 600; color: #ffffff; }
.topbar-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.16);
  flex-shrink: 0;
}

/* ── Sticky header wrapper (topbar + masthead) ── */
.header-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}
.header-wrap.scrolled {
  box-shadow: 0 12px 36px rgba(9,30,56,0.45);
}

/* ── Main masthead ────────────────────────── */
.site-header {
  position: relative;
  top: auto;
  z-index: auto;
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-bottom: 1px solid rgba(217,164,65,0.30);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.header-wrap.scrolled .site-header {
  background: rgba(9,30,56,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 36px rgba(9,30,56,0.45);
}

.site-header .container {
  padding-left: clamp(16px, 3vw, 32px);
  padding-right: clamp(16px, 3vw, 32px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

/* ── Logo ─────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.35rem;
  font-weight: 900;
  font-family: var(--font-head);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(217,164,65,0.35);
}
.logo-text { line-height: 1.15; }
.logo-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}
.logo-sub {
  font-size: 0.64rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── Desktop nav menu (gold pill highlight) ── */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  list-style: none;
}
.nav-menu li { position: relative; }
.nav-menu > li > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 15px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
.nav-menu > li > a:hover,
.nav-menu > li:hover > a {
  color: var(--accent-light);
  background: rgba(217,164,65,0.10);
}
.nav-menu > li > a.active,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current_page_item > a {
  color: var(--accent-light);
  background: rgba(217,164,65,0.14);
  border-color: rgba(217,164,65,0.55);
}
.nav-menu > li > a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Dropdown caret */
.nav-menu li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 2px;
  opacity: 0.6;
  transition: transform 0.2s;
}
.nav-menu li.menu-item-has-children:hover > a::after {
  transform: rotate(225deg) translateY(-2px);
}

/* ── Dropdown panel (dark, gold rail) ─────── */
.nav-menu li.menu-item-has-children > .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  background: linear-gradient(180deg, #0B2240 0%, var(--primary-dark) 100%);
  border: 1px solid rgba(217,164,65,0.32);
  border-top: 2px solid var(--accent);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 24px 56px rgba(4,15,30,0.55);
  min-width: 240px;
  list-style: none;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 500;
}
/* hover bridge */
.nav-menu li.menu-item-has-children > .sub-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}
.nav-menu li.menu-item-has-children:hover > .sub-menu,
.nav-menu li.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translate(-50%, 0);
}
.nav-menu li.menu-item-has-children > .sub-menu li a {
  position: relative;
  display: block;
  padding: 10px 14px 10px 20px;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  border-radius: 8px;
  transition: all 0.18s;
}
.nav-menu li.menu-item-has-children > .sub-menu li a::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 16px;
  border-radius: 3px;
  background: var(--accent);
  transition: transform 0.18s ease;
}
.nav-menu li.menu-item-has-children > .sub-menu li a:hover {
  background: rgba(217,164,65,0.12);
  color: var(--accent-light);
  padding-left: 24px;
}
.nav-menu li.menu-item-has-children > .sub-menu li a:hover::before {
  transform: translateY(-50%) scaleY(1);
}

/* ── CTA button (ghost gold → solid gold) ──── */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 10px 19px;
  border-radius: 999px;
  background: transparent;
  color: var(--accent-light);
  border: 1.5px solid var(--accent);
  box-shadow: none;
  transition: all 0.25s ease;
}
.nav-cta svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s ease;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--primary-dark);
  box-shadow: 0 8px 24px rgba(217,164,65,0.4);
  transform: translateY(-1px);
}
.nav-cta:hover svg { transform: translateX(3px); }
.nav-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ── Hamburger (on navy) ──────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(217,164,65,0.5);
  border-radius: 10px;
  transition: all 0.25s;
}
.hamburger:hover {
  border-color: var(--accent);
  background: rgba(217,164,65,0.14);
}
.hamburger span {
  height: 2px;
  background: var(--accent-light);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}
.hamburger span:nth-child(1) { width: 22px; }
.hamburger span:nth-child(2) { width: 15px; }
.hamburger span:nth-child(3) { width: 22px; }
.hamburger.active span:nth-child(1) {
  width: 22px;
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  width: 22px;
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile backdrop ──────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,15,30,0.65);
  z-index: 1090;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.mobile-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* ── Mobile menu (full-screen masthead) ───── */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100vw);
  background:
    radial-gradient(120% 60% at 100% 0%, rgba(217,164,65,0.10) 0%, rgba(217,164,65,0) 55%),
    linear-gradient(180deg, var(--primary-dark) 0%, #0B2240 60%, var(--primary) 100%);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.42s cubic-bezier(0.22, 0.8, 0.3, 1);
  box-shadow: -20px 0 60px rgba(4,15,30,0.5);
  overscroll-behavior: contain;
}
.mobile-drawer.open { transform: translateX(0); }

/* Drawer head */
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(217,164,65,0.22);
}
.drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.drawer-brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(217,164,65,0.3);
}
.drawer-brand-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}
.drawer-brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.drawer-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(217,164,65,0.4);
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: all 0.25s;
}
.drawer-close svg { width: 18px; height: 18px; }
.drawer-close:hover {
  background: rgba(217,164,65,0.16);
  color: var(--accent-light);
  border-color: var(--accent);
  transform: rotate(90deg);
}

/* Drawer nav — large serif links, staggered reveal */
.drawer-nav {
  flex: 1;
  overflow-y: auto;
  padding: 14px 26px 10px;
}
.drawer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.drawer-menu > li {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.mobile-drawer.open .drawer-menu > li {
  opacity: 1;
  transform: translateY(0);
}
.mobile-drawer.open .drawer-menu > li:nth-child(1) { transition-delay: 0.10s; }
.mobile-drawer.open .drawer-menu > li:nth-child(2) { transition-delay: 0.16s; }
.mobile-drawer.open .drawer-menu > li:nth-child(3) { transition-delay: 0.22s; }
.mobile-drawer.open .drawer-menu > li:nth-child(4) { transition-delay: 0.28s; }
.mobile-drawer.open .drawer-menu > li:nth-child(5) { transition-delay: 0.34s; }
.mobile-drawer.open .drawer-menu > li:nth-child(6) { transition-delay: 0.40s; }
.mobile-drawer.open .drawer-menu > li:nth-child(7) { transition-delay: 0.46s; }
.mobile-drawer.open .drawer-menu > li:nth-child(8) { transition-delay: 0.52s; }
.drawer-menu > li:last-child { border-bottom: none; }
.drawer-menu > li > a,
.drawer-menu > li > .drawer-row > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 4px;
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s, padding-left 0.25s;
}
.drawer-menu > li > a::before,
.drawer-menu > li > .drawer-row > a::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 26px;
  border-radius: 3px;
  background: var(--accent);
  transition: transform 0.22s ease;
}
.drawer-menu > li > a:hover,
.drawer-menu > li > a.active,
.drawer-menu > li > .drawer-row > a:hover,
.drawer-menu > li > .drawer-row > a.active,
.drawer-menu > li.current-menu-item > a,
.drawer-menu > li.current-menu-item > .drawer-row > a,
.drawer-menu > li.current_page_item > a,
.drawer-menu > li.current_page_item > .drawer-row > a {
  color: var(--accent-light);
  padding-left: 8px;
}
.drawer-menu > li > a:hover::before,
.drawer-menu > li > a.active::before,
.drawer-menu > li > .drawer-row > a:hover::before,
.drawer-menu > li > .drawer-row > a.active::before,
.drawer-menu > li.current-menu-item > a::before,
.drawer-menu > li.current-menu-item > .drawer-row > a::before,
.drawer-menu > li.current_page_item > a::before,
.drawer-menu > li.current_page_item > .drawer-row > a::before {
  transform: translateY(-50%) scaleY(1);
}

/* Drawer submenu toggle (added by JS) — gold branded, high visibility */
.drawer-sub-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: auto;
  flex-shrink: 0;
  background: rgba(212,175,55,0.12);
  border: 1.5px solid #D4AF37;
  border-radius: 999px;
  color: #D4AF37;
  cursor: pointer;
  transition: all 0.25s;
}
.drawer-sub-toggle:active {
  background: rgba(212,175,55,0.28);
  transform: scale(0.96);
}
.drawer-sub-toggle svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.4;
  transition: transform 0.3s ease;
}
.drawer-menu li.sub-open > .drawer-row .drawer-sub-toggle,
.drawer-menu li.sub-open > .drawer-sub-toggle {
  background: rgba(217,164,65,0.16);
  border-color: var(--accent);
  color: var(--accent-light);
}
.drawer-menu li.sub-open .drawer-sub-toggle svg {
  transform: rotate(180deg);
}

/* Row wrapper so link + toggle sit side by side */
.drawer-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 2px;
}
.drawer-row > a { flex: 1; }

/* ── Bulletproof visibility for dropdown-parent links (e.g. Service) ──
   Works no matter how the JS wraps the anchor. Matches the styling of
   Home / GST / Pricing / Contact Us, with a subtle gold brand accent. */
.mobile-drawer .drawer-row > a,
.mobile-drawer .drawer-menu li.menu-item-has-children > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 4px;
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.92);
  opacity: 1;
  visibility: visible;
  transition: color 0.2s, padding-left 0.25s;
}
/* Subtle gold underline accent under the Service label */
.mobile-drawer .drawer-row > a::after {
  content: '';
  position: absolute;
  left: 4px;
  bottom: 10px;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #D4AF37, rgba(212,175,55,0));
  opacity: 0.85;
}
.mobile-drawer .drawer-row > a:hover,
.mobile-drawer .drawer-row > a:active,
.drawer-menu li.sub-open > .drawer-row > a {
  color: var(--accent-light);
  padding-left: 8px;
}

/* Drawer submenu (accordion) */
.drawer-menu .sub-menu {
  list-style: none;
  margin: 0 0 0 10px;
  padding: 0;
  border-left: 1px solid rgba(217,164,65,0.4);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}
.drawer-menu li.sub-open > .sub-menu {
  max-height: 600px;
  opacity: 1;
  margin-bottom: 10px;
}
.drawer-menu .sub-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  transition: all 0.18s;
}
.drawer-menu .sub-menu li a:hover {
  color: var(--accent-light);
  padding-left: 20px;
}

/* Drawer footer */
.drawer-foot {
  padding: 16px 22px 22px;
  border-top: 1px solid rgba(217,164,65,0.22);
  background: rgba(0,0,0,0.18);
}
.drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--primary-dark);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 24px rgba(217,164,65,0.35);
  transition: all 0.25s;
}
.drawer-cta svg { width: 15px; height: 15px; }
.drawer-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(217,164,65,0.45);
  color: var(--primary-dark);
}
.drawer-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.drawer-quick-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 11px 4px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.78);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.drawer-quick-btn svg { width: 17px; height: 17px; color: var(--accent); }
.drawer-quick-btn:hover {
  background: rgba(217,164,65,0.12);
  border-color: var(--accent);
  color: #ffffff;
}
.drawer-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 14px;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.03em;
}

/* Reduced motion: skip stagger + slides */
@media (prefers-reduced-motion: reduce) {
  .mobile-drawer,
  .drawer-menu > li,
  .nav-menu li.menu-item-has-children > .sub-menu {
    transition: none !important;
  }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  background: linear-gradient(135deg, #0f2d52 0%, #1a4880 55%, #0d2444 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 10vw, 110px) 0 clamp(60px, 8vw, 90px);
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -120px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,164,65,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217,164,65,0.16);
  border: 1px solid rgba(217,164,65,0.3);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 span {
  color: var(--accent);
  display: block;
}

.hero p {
  color: rgba(255,255,255,0.70);
  font-size: 1.05rem;
  margin-bottom: 34px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: clamp(20px, 4vw, 36px);
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}

.stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-head);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-main {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  width: 100%;
  max-width: 370px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.32);
  position: relative;
  z-index: 2;
}
.hero-card-main h3 {
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.gst-progress { margin-bottom: 16px; }
.gst-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.gst-bar-track {
  background: var(--border);
  border-radius: 99px;
  height: 7px;
  overflow: hidden;
}
.gst-bar-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 13px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  z-index: 3;
}
.card-float-top { top: -24px; right: -24px; }
.card-float-bot { bottom: -24px; left: -24px; }
.float-icon { font-size: 1.4rem; margin-bottom: 3px; }
.float-label { font-size: 0.72rem; color: var(--text-light); }
.float-val { font-size: 1rem; font-weight: 800; color: var(--primary); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.hero-card-float { animation: float 3.5s ease-in-out infinite; }
.card-float-top  { animation-delay: 0.5s; }

/* =============================================
   SERVICES SECTION — PREMIUM REDESIGN
   ============================================= */

/* ── Section background & decorative blobs ── */
.services-section {
  background: linear-gradient(160deg, #f2f6fb 0%, #eaeff7 55%, #f5f3ee 100%);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(217,164,65,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.services-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(15,45,82,0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Section header ── */
.services-header {
  display: flex;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.services-badge {
  background: linear-gradient(135deg, rgba(217,164,65,0.16), rgba(217,164,65,0.07));
  color: #b8860b;
  border: 1.5px solid rgba(217,164,65,0.35);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  display: block !important;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px auto !important;
  order: -1 !important;
  float: none !important;
  position: static !important;
}
.services-title {
  display: block;
  position: relative;
  margin-bottom: 0;
  order: 0 !important;
  width: 100%;
  text-align: center;
}
.services-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  border-radius: 4px;
  margin: 14px auto 18px;
}
.services-header .section-sub {
  margin-bottom: 40px;
}

/* ── Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 278px), 1fr));
  gap: 22px;
}

/* ── Card base ── */
.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: clamp(26px, 3vw, 36px) clamp(22px, 2.5vw, 30px);
  border: 1.5px solid rgba(220,228,242,0.9);
  box-shadow: 0 2px 14px rgba(15,45,82,0.055);
  transition: all 0.38s cubic-bezier(0.34, 1.1, 0.64, 1);
  position: relative;
  overflow: hidden;
}

/* Gold left-border accent line */
.service-card::before {
  content: '';
  position: absolute;
  top: 18px; left: 0;
  width: 4px;
  height: calc(100% - 36px);
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
  border-radius: 0 4px 4px 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s cubic-bezier(0.34, 1.1, 0.64, 1);
}

/* Bottom shimmer bar */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s ease;
  animation: none;
}

.service-card:hover {
  transform: translateY(-9px) scale(1.015);
  box-shadow: 0 18px 48px rgba(15,45,82,0.13), 0 4px 16px rgba(217,164,65,0.1);
  border-color: rgba(217,164,65,0.35);
}
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover::after  { transform: scaleX(1); }

/* ── Icon box ── */
.service-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(15,45,82,0.07) 0%, rgba(217,164,65,0.13) 100%);
  border: 1.5px solid rgba(217,164,65,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
  transition: all 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
  position: relative;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-color: var(--primary);
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 6px 20px rgba(15,45,82,0.22);
}

/* ── Card typography ── */
.service-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: clamp(1rem, 2vw, 1.18rem);
  transition: color 0.2s;
}
.service-card:hover h3 { color: var(--primary-dark); }
.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.72;
}

/* ── CTA link ── */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding: 9px 18px;
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 8px;
  letter-spacing: 0.35px;
  transition: all 0.25s ease;
  border: 1.5px solid rgba(15,45,82,0.28);
  position: relative;
  z-index: 1;
}
.service-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  gap: 10px;
  box-shadow: 0 4px 14px rgba(15,45,82,0.25);
  transform: translateX(2px);
}

/* Service Sub-list (TDS & Licence cards) */
.service-sub-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-sub-list li {
  font-size: 0.84rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1.4;
}
.service-sub-list li::before { content: none; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section { background: var(--primary); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.why-content .section-title { color: var(--white); }
.why-content .section-sub   { color: rgba(255,255,255,0.62); }

.features-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 11px;
  background: rgba(217,164,65,0.16);
  border: 1px solid rgba(217,164,65,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.feature-text h4 { color: var(--white); font-size: 0.97rem; margin-bottom: 3px; }
.feature-text p  { color: rgba(255,255,255,0.58); font-size: 0.88rem; }

.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.why-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  transition: background 0.2s;
}
.why-stat-card:hover { background: rgba(255,255,255,0.10); }
.why-stat-card:first-child {
  grid-column: 1 / -1;
  background: rgba(217,164,65,0.16);
  border-color: rgba(217,164,65,0.28);
}
.why-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-head);
  line-height: 1;
}
.why-label { color: rgba(255,255,255,0.58); font-size: 0.88rem; margin-top: 5px; }

/* =============================================
   PROCESS STEPS
   ============================================= */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 35px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-head);
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.step-item:hover .step-num {
  background: var(--primary);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(15,45,82,0.25);
}
.step-item h3 { color: var(--primary); margin-bottom: 8px; font-size: 1rem; }
.step-item p  { font-size: 0.86rem; }

/* =============================================
   PRICING
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 38px) clamp(24px, 2.5vw, 32px) clamp(32px, 3.5vw, 40px);
  border: 1.5px solid var(--border);
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 14px rgba(15,45,82,0.06);
}
.price-card.featured {
  background: #0f2d52;
  border-color: #0f2d52;
  box-shadow: 0 14px 50px rgba(15,45,82,0.28);
}
.price-card:not(.featured):hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(15,45,82,0.12);
}
.price-badge {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 30px;
  white-space: nowrap;
}
.price-plan {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 18px;
}
.price-amount {
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}
.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.7;
  margin-top: 4px;
}
.price-num {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--primary);
  font-family: var(--font-head);
  line-height: 1;
  letter-spacing: -1px;
}
.price-period { font-size: 0.85rem; color: var(--text-light); margin-bottom: 12px; }
.price-card.featured .price-currency,
.price-card.featured .price-num { color: var(--white); }
.price-card.featured .price-period { color: rgba(255,255,255,0.42); }
.price-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 26px;
  line-height: 1.65;
}
.price-card.featured .price-desc { color: rgba(255,255,255,0.52); }
.price-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 22px;
}
.price-card.featured .price-divider { border-color: rgba(255,255,255,0.12); }
.price-features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 32px;
  flex-grow: 1;
}
.price-feature {
  display: flex;
  gap: 11px;
  font-size: 0.92rem;
  color: var(--text);
  align-items: center;
  font-weight: 500;
}
.price-card.featured .price-feature { color: rgba(255,255,255,0.86); }
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  color: #22c55e;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}
.price-card.featured .check {
  background: rgba(34,197,94,0.18);
  color: #4ade80;
}
.price-card .btn {
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 0.95rem;
  width: 100%;
  justify-content: center;
  font-weight: 700;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-section) 100%); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 22px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  border: 1.5px solid var(--border);
  transition: 0.3s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testi-stars { color: var(--accent); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text  { font-size: 0.94rem; color: var(--text); margin-bottom: 20px; font-style: italic; line-height: 1.75; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-head);
}
.testi-name { font-weight: 700; color: var(--primary); font-size: 0.92rem; }
.testi-role { font-size: 0.78rem; color: var(--text-light); }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #c8920e 100%);
  padding: clamp(52px, 7vw, 80px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}
.cta-banner h2   { color: var(--primary); margin-bottom: 12px; }
.cta-banner p    { color: rgba(15,45,82,0.72); font-size: 1.02rem; margin-bottom: 32px; }
.cta-buttons     { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: #081b32; padding: clamp(52px, 7vw, 72px) 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 52px);
  margin-bottom: 48px;
}
.footer-brand .logo-name { color: var(--white); font-size: 1rem; }
.footer-brand .logo-sub  { color: rgba(255,255,255,0.38); }
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  margin-top: 16px;
  line-height: 1.8;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.82rem; }
.footer-bottom a { color: var(--accent); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: clamp(52px, 7vw, 72px) 0 clamp(48px, 6vw, 64px);
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.62); font-size: 1.02rem; }
.breadcrumb {
  display: flex; gap: 8px; justify-content: center; align-items: center;
  margin-bottom: 16px;
}
.breadcrumb a       { color: rgba(255,255,255,0.48); font-size: 0.85rem; }
.breadcrumb span    { color: rgba(255,255,255,0.28); font-size: 0.78rem; }
.breadcrumb .current { color: var(--accent); font-size: 0.85rem; font-weight: 600; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.ct-hero { padding-bottom: 0; }
.ct-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
  padding-bottom: 56px;
}
.ct-hero-text h1 { margin-bottom: 18px; }
.ct-accent { color: var(--accent); }
.ct-hero-text p  { font-size: 1.02rem; margin-bottom: 26px; }
.ct-hero-badges  { display: flex; flex-wrap: wrap; gap: 10px; }
.ct-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.85);
  border: 1.5px solid var(--border);
  border-radius: 30px;
  padding: 6px 12px;
  font-size: 0.80rem; font-weight: 600; color: var(--primary);
}
.ct-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #16a34a; display: inline-block;
  animation: ctPulse 1.8s ease-in-out infinite;
}
@keyframes ctPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}
.ct-hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ct-stat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ct-stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.ct-stat-highlight { background: var(--primary); border-color: var(--primary); }
.ct-stat-highlight .ct-stat-num,
.ct-stat-highlight .ct-stat-label { color: var(--white); }
.ct-stat-num {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 900;
  color: var(--primary); line-height: 1; margin-bottom: 5px;
}
.ct-stat-num span { font-size: 1.1rem; color: var(--accent); }
.ct-stat-highlight .ct-stat-num span { color: var(--accent-light); }
.ct-stat-label { font-size: 0.76rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.04em; }

/* Contact strip */
.ct-strip-section { padding: 0; }
.ct-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ct-strip-item {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 20px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.09);
  transition: background 0.2s;
  cursor: pointer;
}
.ct-strip-item:last-child { border-right: none; }
.ct-strip-item:hover { background: rgba(255,255,255,0.07); }
.ct-strip-whatsapp:hover { background: rgba(37,211,102,0.14); }
.ct-strip-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,0.11);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--accent-light);
}
.ct-strip-text strong {
  display: block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55); margin-bottom: 1px;
}
.ct-strip-text span { font-size: 0.88rem; font-weight: 600; }
.ct-strip-arrow { margin-left: auto; color: rgba(255,255,255,0.28); }
.ct-strip-hours { cursor: default; }

/* Contact main grid */
.ct-main-section { padding-top: 68px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.contact-info h2 { color: var(--primary); margin-bottom: 14px; font-size: 1.9rem; }
.contact-info > p { margin-bottom: 32px; font-size: 1rem; }

.contact-items { display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
.contact-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px; border-radius: 11px;
  transition: background 0.2s;
}
.ct-item-link { text-decoration: none; }
.ct-item-link:hover { background: rgba(15,45,82,0.05); }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: rgba(15,45,82,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--primary);
  transition: background 0.2s, color 0.2s;
}
.ct-item-link:hover .contact-icon { background: var(--primary); color: var(--white); }
.contact-item-text strong { display: block; color: var(--primary); font-size: 0.82rem; font-weight: 700; margin-bottom: 2px; }
.contact-item-text span   { font-size: 0.92rem; color: var(--text-light); }

/* Expert card */
.ct-expert-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px; background: var(--white);
  border-radius: var(--radius); border: 1.5px solid var(--border);
  box-shadow: var(--shadow); margin-bottom: 22px; position: relative;
}
.ct-expert-avatar {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800;
  color: var(--white); font-family: var(--font-head);
  flex-shrink: 0; border: 3px solid var(--accent);
}
.ct-expert-name { font-weight: 800; color: var(--primary); font-size: 1rem; font-family: var(--font-head); }
.ct-expert-role { color: var(--accent); font-size: 0.80rem; font-weight: 700; margin-bottom: 5px; }
.ct-expert-info p { font-size: 0.86rem; margin: 0; color: var(--text-light); }
.ct-expert-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--accent); color: var(--primary);
  font-size: 0.72rem; font-weight: 800;
  padding: 3px 9px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.04em;
}

.ct-whatsapp-btn {
  display: flex; align-items: center; gap: 10px;
  background: #25d366; color: var(--white);
  font-weight: 700; font-size: 0.97rem;
  padding: 14px 20px; border-radius: 13px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.30);
}
.ct-whatsapp-btn:hover { background: #1ebe5d; transform: translateY(-2px); }
.ct-wa-online {
  margin-left: auto;
  display: flex; align-items: center; gap: 4px;
  font-size: 0.75rem; font-weight: 600; opacity: 0.9;
}
.ct-wa-online span {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%; display: inline-block;
  animation: ctPulse 1.5s ease-in-out infinite;
}

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 22px;
  padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3vw, 40px);
  border: 1.5px solid var(--border);
  box-shadow: 0 8px 40px rgba(15,45,82,0.09);
  position: sticky;
  top: 88px;
}
.ct-form-header { margin-bottom: 24px; }
.ct-form-header h3 { color: var(--primary); font-size: 1.4rem; margin-bottom: 5px; }
.ct-form-header p  { color: var(--text-light); font-size: 0.9rem; }
.ct-form-header strong { color: var(--primary); }

.ct-alert {
  display: flex; align-items: flex-start; gap: 12px;
  border-radius: 11px; padding: 16px 18px;
  margin-bottom: 22px; font-size: 0.9rem; line-height: 1.55;
}
.ct-alert-success { background: #dcfce7; border: 1.5px solid #16a34a; color: #15803d; }
.ct-alert-error   { background: #fee2e2; border: 1.5px solid #dc2626; color: #dc2626; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.80rem; font-weight: 700;
  color: var(--primary); margin-bottom: 7px; letter-spacing: 0.01em;
}
.req { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-family: var(--font-body); font-size: 0.92rem;
  color: var(--text); background: var(--bg);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  outline: none; box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(15,45,82,0.07);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235a6a7a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
}
.ct-form-trust {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--text-light); margin-bottom: 16px;
}
.ct-form-trust svg { color: #16a34a; flex-shrink: 0; }
.ct-submit-btn { width: 100%; justify-content: center; font-size: 0.97rem; padding: 15px 22px; }
.ct-alt-ctas {
  display: flex; align-items: center; gap: 9px; margin-top: 18px; flex-wrap: wrap;
}
.ct-alt-ctas span { font-size: 0.80rem; color: var(--text-light); }
.ct-alt-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 14px; border-radius: 20px;
  border: 1.5px solid var(--border);
  font-size: 0.82rem; font-weight: 600;
  color: var(--primary); text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.ct-alt-btn:hover { border-color: var(--primary); background: var(--primary); color: var(--white); }
.ct-alt-wa:hover  { border-color: #25d366; background: #25d366; color: var(--white); }

/* Trust grid */
.ct-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.ct-trust-item {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 26px 22px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ct-trust-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ct-trust-icon {
  width: 52px; height: 52px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.ct-trust-item h4 { color: var(--primary); font-size: 0.97rem; margin-bottom: 7px; }
.ct-trust-item p  { font-size: 0.86rem; color: var(--text-light); margin: 0; line-height: 1.6; }

/* Map section */
.ct-map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: stretch; }
.ct-map-embed {
  border-radius: var(--radius-lg); overflow: hidden;
  height: 380px; border: 1.5px solid var(--border); box-shadow: var(--shadow);
}
.ct-map-embed iframe { display: block; }
.ct-address-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(28px, 3vw, 36px);
  box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.ct-address-icon {
  width: 56px; height: 56px;
  background: rgba(15,45,82,0.06); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); margin-bottom: 18px;
}
.ct-address-card h3  { color: var(--primary); font-size: 1.3rem; margin-bottom: 9px; }
.ct-address-text { font-size: 0.97rem; color: var(--text); line-height: 1.8; margin-bottom: 24px; }
.ct-address-hours {
  border-top: 1.5px solid var(--border); padding-top: 18px;
  display: flex; flex-direction: column; gap: 9px;
}
.ct-hours-row { display: flex; justify-content: space-between; font-size: 0.88rem; }
.ct-hours-row span:first-child { color: var(--text-light); }
.ct-hours-row span:last-child  { font-weight: 600; color: var(--primary); }
.ct-hours-closed span { color: #dc2626 !important; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white); border-radius: 11px;
  border: 1.5px solid var(--border); overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--primary); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 18px 22px; display: flex; justify-content: space-between;
  align-items: center; font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 700; color: var(--primary);
  text-align: left; gap: 14px; transition: background 0.15s;
}
.faq-question:hover { background: rgba(15,45,82,0.02); }
.faq-icon { font-size: 1.3rem; font-weight: 300; color: var(--accent); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-arrow { font-size: 1.1rem; transition: transform 0.3s; flex-shrink: 0; color: var(--accent); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s ease; }
.faq-item.open .faq-answer { max-height: 320px; }
.faq-answer p { padding: 0 22px 20px; margin: 0; font-size: 0.91rem; color: var(--text-light); line-height: 1.7; }
.faq-answer-inner { padding: 0 22px 20px; font-size: 0.93rem; color: var(--text-light); border-top: 1px solid var(--border); padding-top: 16px; }

/* Team */
.team-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1.5px solid var(--border); transition: 0.3s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-photo {
  height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem; color: rgba(255,255,255,0.2);
}
.team-info { padding: 22px; }
.team-info h3  { color: var(--primary); margin-bottom: 3px; font-size: 1.05rem; }
.team-info .role { color: var(--accent); font-size: 0.82rem; font-weight: 700; }
.team-info p   { font-size: 0.88rem; margin-top: 9px; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-18px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(18px); }  to { opacity: 1; transform: translateY(0); } }

/* =============================================
   RESPONSIVE — TABLET LARGE (≤1100px)
   ============================================= */
@media (max-width: 1100px) {
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .ct-trust-grid     { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid      { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .price-card        { padding: 28px 20px 32px; }

  /* Laptop: 3-col services */
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* =============================================
   RESPONSIVE — LAPTOP (≤960px)
   ============================================= */
@media (max-width: 960px) {
  :root { --nav-h: 66px; }

  /* Services: 2 columns on tablet/laptop */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .services-title { font-size: clamp(1.5rem, 3.5vw, 2rem); }
  .services-header .section-sub { font-size: 0.95rem; }
  .services-header { flex-direction: column !important; align-items: center !important; }
  .services-badge { display: block !important; width: fit-content; margin: 0 auto 16px auto !important; }

  /* Hide topbar + desktop nav, show hamburger */
  .topbar             { display: none; }
  .site-header .nav-menu, .site-header .nav-cta { display: none; }
  .hamburger          { display: flex; }

  /* Layout stacking */
  .hero-grid, .why-grid, .ct-hero-inner, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 72px 0 60px; }
  .hero p { max-width: 100%; }

  .why-visual { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 640px; margin: 0 auto;
  }
  .price-card.featured { grid-column: 1 / -1; max-width: 360px; margin: 0 auto; width: 100%; }

  .ct-hero-inner { grid-template-columns: 1fr; }
  .ct-strip { grid-template-columns: repeat(2, 1fr); }
  .ct-strip-item:nth-child(2) { border-right: none; }
  .ct-strip-item:nth-child(3) { border-right: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .ct-map-grid  { grid-template-columns: 1fr; }
  .ct-map-embed { height: 280px; }
  .contact-form-wrap { position: static; }
}

/* =============================================
   RESPONSIVE — MOBILE (≤640px)
   ============================================= */
@media (max-width: 640px) {
  .logo-text { display: none; }

  .hero { padding: 60px 0 52px; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.6rem; }
  .hero-btns .btn { font-size: 0.88rem; padding: 12px 20px; }

  /* Services: 2-col on larger phones, 1-col on small */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .service-card { padding: 20px 16px; }
  .service-icon { width: 50px; height: 50px; font-size: 1.4rem; }
  .service-card h3 { font-size: 0.92rem; }
  .service-card p { font-size: 0.82rem; }
  .service-link { padding: 8px 14px; font-size: 0.78rem; }

  .services-title::after { margin: 10px auto 14px; }
  .services-header .section-sub { font-size: 0.88rem; }
  .services-header { flex-direction: column !important; align-items: center !important; }
  .services-badge { display: block !important; width: fit-content; margin: 0 auto 14px auto !important; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .price-card.featured { grid-column: auto; max-width: 100%; }

  .process-steps { grid-template-columns: 1fr; }

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

  .ct-strip { grid-template-columns: 1fr; border-radius: var(--radius); }
  .ct-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .ct-strip-item:last-child { border-bottom: none; }

  .ct-hero-stats { grid-template-columns: 1fr 1fr; }
  .ct-trust-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }

  .ct-alt-ctas { flex-direction: column; align-items: flex-start; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }

  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  .section-pad { padding: 52px 0; }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤400px)
   ============================================= */
@media (max-width: 400px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 14px; }
  .section-pad { padding: 44px 0; }
  .hero { padding: 50px 0 44px; }

  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.55rem; }
  .hero h1 { font-size: 2rem; }

  .logo-icon { width: 36px; height: 36px; font-size: 1.1rem; }
  .logo-name { font-size: 0.9rem; }
  .logo-text { display: block; }
  .logo-sub  { display: none; }

  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: 0.72rem; }
  .hero-stats { gap: 12px; }

  /* 1-col on very small phones */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 22px 18px; }

  .price-num { font-size: 2.8rem; }
  .testi-card { padding: 20px 16px; }

  .btn { padding: 11px 18px; font-size: 0.86rem; }
  .nav-cta { display: none; }
}

/* =============================================
   PREVENT HORIZONTAL OVERFLOW (global safety)
   ============================================= */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
.hero::before,
.hero::after,
.cta-banner::before {
  max-width: 100vw;
}
