/* Getso Consultants SEO Hub — style.min.css
   Design System: Clean, Light, Brand-forward
   Brand: #00A8CC (Navy) | #00A8CC (Orange)
   Target: PageSpeed 90+ | WCAG 2.1 AA
   ============================================ */
/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --c-navy: #00A8CC;
    --c-navy-d: #00A8CC;
    --c-navy-l: #00A8CC;
    --c-gold: #b3b3b3;
    --c-gold-d: #b3b3b3;
    --c-gold-l: #b3b3b3;
    --c-white: #fff;
    --c-surface: #f8f9fb;
    --c-surface2: #f0f1f6;
    --c-text: #1a1a2e;
    --c-text-2: #3a3a5a;
    --c-text-3: #5a5a7a;
    --c-border: #e0e0ef;
    --c-green: #00A8CC;
    --c-red: #c0392b;
    --shadow-sm: 0 1px 3px rgba(0,65,121,.08);
    --shadow-md: 0 4px 16px rgba(0,65,121,.12);
    --shadow-lg: 0 8px 32px rgba(0,65,121,.16);
    --shadow-xl: 0 16px 48px rgba(0,65,121,.2);
    --r-sm: 4px;
    --r-md: 5px;
    --r-lg: 5px;
    --r-xl: 20px;
    --r-full: 999px;
    --font-sans: -apple-system,"Segoe UI",Roboto,Arial,Helvetica,sans-serif;
    --font-size-xs: .75rem;
    --font-size-sm: .875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --lh-tight: 1.25;
    --lh-snug: 1.4;
    --lh-normal: 1.6;
    --lh-relaxed: 1.75;
    --space-1: .25rem;
    --space-2: .5rem;
    --space-3: .75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --container-max: 1280px;
    --container-narrow: 800px;
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease
}

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

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

body {
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    line-height: var(--lh-relaxed);
    color: var(--c-text);
    background: var(--c-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden
}

img,video,svg {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: var(--c-navy);
    text-decoration: none;
    transition: color var(--transition-fast)
}

a:hover {
    color: var(--c-gold-d)
}

a:focus-visible {
    outline: 2px solid var(--c-gold);
    outline-offset: 3px;
    border-radius: var(--r-sm)
}

ul,ol {
    list-style: none
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none
}

input,textarea,select {
    font-family: inherit;
    font-size: inherit
}

h1,h2,h3,h4,h5,h6 {
    font-weight: 600;
    line-height: var(--lh-tight);
    color: var(--c-text)
}

p {
    margin-bottom: var(--space-4)
}

p:last-child {
    margin-bottom: 0
}

/* ===== SKIP LINK (ACCESSIBILITY) ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-4);
    z-index: 9999;
    padding: var(--space-2) var(--space-4);
    background: var(--c-navy);
    color: var(--c-white);
    border-radius: var(--r-md);
    font-weight: 600;
    transition: top var(--transition-fast)
}

.skip-link:focus {
    top: var(--space-4);
    color: var(--c-white)
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-4);
    padding-right: var(--space-4)
}

@media(min-width: 768px) {
    .container {
        padding-left:var(--space-8);
        padding-right: var(--space-8)
    }
}

.container-narrow {
    max-width: var(--container-narrow)
}

/* ===== TYPOGRAPHY ===== */
h1 {
    font-size: clamp(1.75rem,4vw,2.75rem);
    margin-bottom: var(--space-6);
    letter-spacing: -.02em
}

h2 {
    font-size: clamp(1.375rem,3vw,2rem);
    margin-bottom: var(--space-5);
    letter-spacing: -.01em
}

h3 {
    font-size: clamp(1.125rem,2.5vw,1.5rem);
    margin-bottom: var(--space-4)
}

h4 {
    font-size: clamp(1rem,2vw,1.25rem);
    margin-bottom: var(--space-3)
}

h5 {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-2);
    font-weight: 600
}

h6 {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--c-text-2)
}

.text-xs {
    font-size: var(--font-size-xs)
}

.text-sm {
    font-size: var(--font-size-sm)
}

.text-lg {
    font-size: var(--font-size-lg)
}

.text-xl {
    font-size: var(--font-size-xl)
}

.text-muted {
    color: var(--c-text-2)
}

.text-gold {
    color: var(--c-gold-d)
}

.text-navy {
    color: var(--c-navy)
}

.text-center {
    text-align: center
}

.font-bold {
    font-weight: 700
}

.font-semibold {
    font-weight: 600
}

.lead {
    font-size: var(--font-size-lg);
    line-height: var(--lh-relaxed);
    color: var(--c-text-2)
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--c-white);
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base)
}

.site-header.scrolled {
    box-shadow: var(--shadow-md)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: var(--space-4)
}

.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
    flex-shrink: 0
}

.site-logo img {
    height: 29px;
    width: auto;
    margin-top: 3px;
    max-width: 110px;
    height: 52px !important;
    width: auto !important;
    max-width: unset !important;
}

.site-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    display: none;
}

.site-logo-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-navy);
    letter-spacing: -.02em;
}

.site-logo-tag {
    font-size: var(--font-size-xs);
    color: var(--c-text-2);
    font-weight: 400;
}

/* ===== NAVIGATION ===== */
.site-nav {
    display: none
}

@media(min-width: 1024px) {
    .site-nav {
        display:flex;
        align-items: center;
        gap: var(--space-1)
    }
}

.site-nav a {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--c-text);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--r-sm);
    transition: background var(--transition-fast),color var(--transition-fast);
    white-space: nowrap
}

.site-nav a:hover,.site-nav a.active {
    background: var(--c-surface);
    color: var(--c-navy)
}

.header-cta {
    display: none
}

@media(min-width: 768px) {
    .header-cta {
        display:inline-flex
    }
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 36px;
    border-radius: var(--r-sm);
    padding: var(--space-2);
    cursor: pointer;
    border: 2px solid var(--c-navy);
}

@media(min-width: 1024px) {
    .hamburger {
        display:none
    }
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--c-text);
    border-radius: var(--r-full);
    transition: transform var(--transition-base),opacity var(--transition-base)
}

.mobile-menu {position: fixed;top: 68px;right: -100%;bottom: 0;width: 50%;background: var(--c-white);z-index: 199;padding: 1rem;overflow-y: auto;transition: right 0.3s ease;box-shadow: -4px 0 16px rgba(0,0,0,0.1);} .mobile-menu.open { right: 0; } .mobile-menu.open { right: 0; }

.mobile-menu.open {
    display: block
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    gap: 0 !important;!i;!;
}

.mobile-menu nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--c-text);
    padding: var(--space-3);
    border-radius: 0;
    border-bottom: 1px solid #d9d9d9;
    padding: 4px 2px 3px !important;!i;!;
    display: block
}

.mobile-menu nav a:hover {
    background: var(--c-surface);
    border-color: var(--c-border);
    color: var(--c-navy)
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 6px 25px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    letter-spacing: .01em
}

.btn-primary {
    background: var(--c-navy);
    color: var(--c-white);
    border-color: var(--c-navy)
}

.btn-primary:hover {
    background: var(--c-navy-l);
    color: var(--c-white);
    border-color: var(--c-navy-l);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md)
}

.btn-gold {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-gold:hover {
    background: var(--c-gold-d);
    color: var(--c-navy-d);
    border-color: var(--c-gold-d);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md)
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline:hover {
    background: var(--c-navy);
    color: var(--c-white);
    transform: translateY(-1px)
}

.btn-outline-white {
    background: transparent;
    color: var(--c-white);
    border-color: rgba(255,255,255,.5)
}

.btn-outline-white:hover {
    background: rgba(255,255,255,.1);
    color: var(--c-white);
    border-color: var(--c-white)
}

.btn-sm {
    padding: 4px 23px 6px;
    font-size: 14px;
}

.btn-lg {
    padding: 5px 30px 6px;
    font-size: var(--font-size-base)
}

.btn-full {
    width: 100%
}

.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--c-navy)
}

.hero-image-wrap {
    position: relative;
    height: clamp(280px,50vw,500px)
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(0,65,121,.85) 0%,rgba(0,65,121,.4) 100%)
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center
}

.hero-inner {
    padding: var(--space-8) 0
}

.hero h1 {
    color: var(--c-white);
    max-width: 700px;
    text-shadow: 0 2px 8px rgba(0,0,0,.2)
}

.hero-lead {
    color: rgba(255,255,255,.85);
    font-size: var(--font-size-lg);
    max-width: 560px;
    margin-bottom: var(--space-8);
    line-height: var(--lh-relaxed)
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(236,114,28,.15);
    border: 1px solid #fff;););
    padding: 3px 20px;
    border-radius: 4px;
    margin-bottom: var(--space-4);
}

.hero-badge span {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .03em;
    text-transform: uppercase
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding: 6px 0;
    border-bottom: 1px solid var(--c-border)
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-1);
    font-size: var(--font-size-sm);
    color: var(--c-text-2)
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: var(--space-1)
}

.breadcrumb-list li::after {
    content: "›";
    color: var(--c-text-3)
}

.breadcrumb-list li:last-child::after {
    content: none
}

.breadcrumb-list a {
    color: var(--c-text-2);
    transition: color var(--transition-fast)
}

.breadcrumb-list a:hover {
    color: var(--c-navy)
}

.breadcrumb-list .current {
    color: var(--c-text);
    font-weight: 500
}

/* ===== ARTICLE LAYOUT ===== */
.article-wrap {
    padding: 10px 0;
}

.article-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8)
}

@media(min-width: 1024px) {
    .article-grid {
        grid-template-columns:1fr 340px;
        gap: var(--space-10)
    }
}

.article-main {
}

.article-header {
    margin-bottom: var(--space-8)
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4)
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--font-size-sm);
    color: var(--c-text-2)
}

.article-meta-item svg {
    width: 14px;
    height: 14px;
    color: var(--c-gold)
}

.article-meta-sep {
    color: var(--c-border);
    font-size: var(--font-size-xs)
}

.article-cat-badge {
    display: inline-flex;
    align-items: center;
    padding: .25rem .75rem;
    background: rgba(0,65,121,.12);
    color: var(--c-navy-d);
    border-radius: var(--r-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: var(--space-3)
}

.article-cat-badge:hover {
    background: var(--c-navy);
    color: var(--c-white)
}

.article-reading-time {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--font-size-xs);
    color: var(--c-text-3);
    background: var(--c-surface);
    padding: 2px 13px;
    border-radius: 3px;
    border: 1px solid var(--c-border)
}

/* ===== ARTICLE BODY ===== */
.article-body {
    font-size: var(--font-size-base);
    line-height: var(--lh-relaxed);
    color: var(--c-text)
}

.article-body h2 {
    color: var(--c-navy);
    margin-top: 25px;
    margin-bottom: 12px;
    padding-bottom: 7px;
    border-bottom: 2px solid var(--c-surface2);
    position: relative
}

.article-body h2::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 48px;
    height: 2px;
    background: var(--c-gold)
}

.article-body h3 {
    color: var(--c-navy-d);
    margin-top: var(--space-8);
    margin-bottom: var(--space-4)
}

.article-body h4 {
    margin-top: var(--space-6)
}

.article-body p {
    margin-bottom: var(--space-5);
    color: var(--c-text-2)
}

.article-body ul,.article-body ol {
    margin: var(--space-5) 0;
    padding-left: var(--space-6)
}

.article-body ul {
    list-style: disc
}

.article-body ol {
    list-style: decimal
}

.article-body li {
    margin-bottom: var(--space-2);
    color: var(--c-text-2)
}

.article-body ul li::marker {
    color: var(--c-gold)
}

.article-body a {
    color: var(--c-navy);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(0,65,121,.3)
}

.article-body a:hover {
    color: var(--c-gold-d);
    text-decoration-color: var(--c-gold-d)
}

.article-body blockquote {
    border-left: 4px solid var(--c-gold);
    margin: var(--space-8) 0;
    padding: var(--space-5) var(--space-6);
    background: rgba(236,114,28,.06);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    font-style: italic;
    color: var(--c-navy)
}

.article-body strong {
    font-weight: 700;
    color: var(--c-text)
}

.article-body em {
    font-style: italic
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-6) 0;
    font-size: var(--font-size-sm)
}

.article-body th {
    background: var(--c-navy);
    color: var(--c-white);
    padding: var(--space-3) var(--space-4);
    text-align: left;
    font-weight: 600
}

.article-body td {
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--c-border)
}

.article-body tr:nth-child(even) td {
    background: var(--c-surface)
}

/* ===== ARTICLE IMAGES ===== */
.article-hero-image {
    margin-bottom: var(--space-8);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 1220px;
    margin: auto;
    border: 1px solid #ececec;
}

.article-hero-image img {
    max-width: 1230px;
    height: clamp(420px,40vw,520px);
    object-fit: cover;
    margin: auto;
    max-height: 520px !important;!i;!;
}

.article-figure {
    margin: var(--space-8) 0
}

.article-figure img {
    width: 100%;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm)
}

.article-figure figcaption {
    font-size: var(--font-size-sm);
    color: var(--c-text-3);
    text-align: center;
    margin-top: var(--space-2);
    font-style: italic
}

.article-image-half {
    float: right;
    width: 45%;
    margin: 0 0 var(--space-6) var(--space-6)
}

.article-image-half img {
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm)
}

@media(max-width: 767px) {
    .article-image-half {
        float:none;
        width: 100%;
        margin: var(--space-6) 0
    }
}

/* ===== TWO COLUMN CONTENT SECTIONS ===== */
.content-split {
    display: grid;
    gap: 0.;
    margin: var(--space-10) 0 8px;
}

@media(min-width: 768px) {
    .content-split {
        grid-template-columns:3fr 2fr;
        align-items: start
    }
}

.content-split.reverse {
    direction: rtl
}

.content-split.reverse>* {
    direction: ltr
}

.content-split-image {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md)
}

.content-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 220px
}

/* ===== STATS BAR ===== */
.stats-bar {
    position: relative;
    background: linear-gradient(135deg, var(--c-navy-d) 0%, var(--c-navy) 50%, var(--c-navy-l) 100%);
    padding: var(--space-12) 0;
    overflow: hidden
}

.stats-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(236,114,28,.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 80% 50%, rgba(236,114,28,.05) 0%, transparent 60%);
    pointer-events: none
}

.stats-bar-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--c-gold) 20%,
        var(--c-gold-l) 50%,
        var(--c-gold) 80%,
        transparent 100%);
    animation: shimmer-slide 3s ease-in-out infinite alternate
}

@keyframes shimmer-slide {
    from { opacity: .6; transform: scaleX(.8); }
    to   { opacity: 1;  transform: scaleX(1); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.06);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 8px 40px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.08)
}

@media(min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

.stat-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-8) var(--space-6);
    background: rgba(255,255,255,.04);
    transition: background var(--transition-base), transform var(--transition-base);
    position: relative;
    cursor: default
}

.stat-card:hover {
    background: rgba(255,255,255,.09)
}

/* Vertical divider on desktop (after every card except the last) */
@media(min-width: 768px) {
    .stat-card:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 20%;
        bottom: 20%;
        width: 1px;
        background: rgba(255,255,255,.1)
    }
}

.stat-icon-wrap {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgb(255 255 255 / 18%);
    /* border: 1px solid rgba(236,114,28,.3); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background var(--transition-base), box-shadow var(--transition-base)
}

.stat-card:hover .stat-icon-wrap {
    background: #000;
    box-shadow: 0 0 20px rgba(236,114,28,.25)
}

.stat-body {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.stat-number {
    display: block;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -.03em;
    font-variant-numeric: tabular-nums
}

.stat-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--c-gold-l);
    font-weight: 600;
    letter-spacing: .02em
}

.stat-sublabel {
    display: block;
    font-size: var(--font-size-xs);
    color: rgba(255,255,255,.45);
    font-weight: 400;
    margin-top: 1px
}

/* ===== FAQ ACCORDION ===== */
.faq-section {
    margin: var(--space-10) 0
}

.faq-title {
    margin-bottom: var(--space-6)
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2)
}

.faq-item {
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--c-white);
    transition: box-shadow var(--transition-base)
}

.faq-item:hover {
    box-shadow: var(--shadow-sm)
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px var(--space-5);
    cursor: pointer;
    font-weight: 600;
    font-size: var(--font-size-base);
    color: var(--c-navy);
    list-style: none;
    -webkit-appearance: none;
    gap: var(--space-4)
}

.faq-item summary::-webkit-details-marker {
    display: none
}

.faq-item summary::after {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23004179' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-size: cover;
    flex-shrink: 0;
    transition: transform var(--transition-base)
}

.faq-item[open] summary {
    background: rgba(0,65,121,.04);
    border-bottom: 1px solid var(--c-border)
}

.faq-item[open] summary::after {
    transform: rotate(180deg)
}

.faq-body {
    padding: 8px 20px;
    background: var(--c-surface);
    font-size: var(--font-size-sm);
    color: var(--c-text-2);
    line-height: var(--lh-relaxed)
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg,var(--c-navy) 0%,var(--c-navy-l) 50%,var(--c-navy-d) 100%);
    padding: var(--space-12) 0;
    position: relative;
    overflow: hidden
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(236,114,28,.06);
    pointer-events: none
}

.cta-banner::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(236,114,28,.04);
    pointer-events: none
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1
}

.cta-inner h2 {
    color: var(--c-white);
    margin-bottom: var(--space-4)
}

.cta-inner p {
    color: rgba(255,255,255,.8);
    font-size: var(--font-size-lg);
    max-width: 560px;
    margin: 0 auto var(--space-8)
}

.cta-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap
}

.cta-contact-strip {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 5px;
    padding: 6px 25px;
    margin-top: var(--space-8);
    display: inline-flex;
    gap: var(--space-8);
    flex-wrap: wrap;
    justify-content: center
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255,255,255,.9);
    font-size: var(--font-size-sm)
}

.cta-contact-item svg {
    color: var(--c-gold);
    width: 16px;
    height: 16px
}

.cta-contact-item a {
    color: #fff;
    font-weight: 600
}

.cta-contact-item a:hover {
    color: var(--c-white)
}

/* ===== SIDEBAR ===== */
.sidebar {
    position: relative
}

@media(min-width: 1024px) {
    .sidebar {
        position:sticky;
        top: 88px
    }
}

.sidebar-widget {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: 4px;
    padding: 18px 9px;
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-sm);
}

.sidebar-widget:last-child {
    margin-bottom: 0
}

.sidebar-widget-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--c-navy);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--c-surface2);
    position: relative
}

.sidebar-widget-title::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--c-gold)
}

.sidebar-cta-widget {
    background: linear-gradient(135deg,var(--c-navy) 0%,var(--c-navy-l) 100%);
    color: var(--c-white);
    border: none
}

.sidebar-cta-widget .sidebar-widget-title {
    color: rgba(255,255,255,.8);
    border-bottom-color: rgba(255,255,255,.1)
}

.sidebar-cta-widget .sidebar-widget-title::before {
    background: var(--c-gold)
}

.sidebar-cta-widget h3 {
    color: var(--c-white);
    font-size: var(--font-size-lg);
    margin-bottom: 9px;
}

.sidebar-cta-widget p {
    color: rgba(255,255,255,.8);
    font-size: 16px;
    margin-bottom: var(--space-5);
    line-height: 25px;
}

.sidebar-contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3)
}

.sidebar-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--font-size-sm)
}

.sidebar-contact-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: var(--r-sm);
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center
}

.sidebar-contact-icon svg {
    width: 14px;
    height: 14px;
    color: var(--c-gold-l)
}

.sidebar-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.sidebar-contact-label {
    font-size: var(--font-size-xs);
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600
}

.sidebar-contact-value a,.sidebar-contact-value {
    color: rgba(255,255,255,.9);
    font-weight: 500
}

.sidebar-contact-value a:hover {
    color: var(--c-gold-l)
}

.related-articles-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4)
}

.related-article-item {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
    padding-bottom: 11px;
    border-bottom: 1px solid var(--c-border)
}

.related-article-item:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.related-article-num {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: var(--r-sm);
    background: rgba(0,65,121,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--c-navy);
    margin-top: 2px
}

.related-article-title {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--c-text);
    line-height: var(--lh-snug)
}

.related-article-title:hover {
    color: var(--c-gold-d)
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.services-list a {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    color: var(--c-text-2);
    padding: 6px;
    border-radius: var(--r-sm);
    border-bottom: 1px solid #d9d9d9;
    transition: all var(--transition-fast);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.services-list a::before {
    content: "›";
    color: var(--c-gold);
    font-weight: 700;
    flex-shrink: 0
}

.services-list a:hover {
    color: var(--c-navy);
    background: var(--c-surface);
}

/* ===== PAGE SPLIT LAYOUT (LEFT SIDEBAR) ===== */
.page-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8)
}

@media(min-width: 1024px) {
    .page-split {
        grid-template-columns:280px 1fr;
        gap: 30px;
        align-items: start
    }
}

/* ===== CATEGORY PAGE ===== */
.category-hero {
    background: linear-gradient(135deg,var(--c-navy) 0%,var(--c-navy-l) 100%);
    padding: var(--space-16) 0;
    color: var(--c-white);
    padding-top: 250px;
}

.category-hero h1 {
    color: var(--c-white);
    margin-bottom: var(--space-4)
}

.category-hero p {
    color: rgba(255,255,255,.8);
    font-size: var(--font-size-lg);
    max-width: 640px
}

.category-body {
    padding: var(--space-12) 0
}

.sorting-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--c-border);
    flex-wrap: wrap;
    gap: var(--space-4)
}

.sorting-select {
    padding: var(--space-2) var(--space-4);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    font-family: inherit;
    font-size: var(--font-size-sm);
    color: var(--c-text);
    background: var(--c-surface)
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6)
}

@media(min-width: 640px) {
    .articles-grid {
        grid-template-columns:repeat(2,1fr)
    }
}

@media(min-width: 1024px) {
    .articles-grid {
        grid-template-columns:repeat(3,1fr)
    }
}

.article-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column
}

.article-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: transparent
}

.article-card-image {
    /* height: 200px; */
    overflow: hidden;
    background: var(--c-surface2)
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow)
}

.article-card:hover .article-card-image img {
    transform: scale(1.04)
}

.article-card-body {
    padding: var(--space-5);
    flex: 1;
    display: flex;
    flex-direction: column
}

.article-card-category {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--c-gold-d);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: var(--space-2)
}

.article-card-title {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--c-navy);
    line-height: normal;
    margin-bottom: 5px;
    flex: 1
}

.article-card-title a {
    color: inherit
}

.article-card-title a:hover {
    color: var(--c-gold-d)
}

.article-card-excerpt {
    font-size: var(--font-size-sm);
    color: var(--c-text-2);
    line-height: var(--lh-normal);
    margin-bottom: var(--space-4);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.article-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--font-size-xs);
    color: var(--c-text-3);
    border-top: 1px solid var(--c-border);
    padding-top: var(--space-3);
    margin-top: auto
}

.article-card-read-more {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--c-navy);
    display: flex;
    align-items: center;
    gap: var(--space-1)
}

.article-card-read-more::after {
    content: "→";
    transition: transform var(--transition-fast)
}

.article-card:hover .article-card-read-more::after {
    transform: translateX(4px)
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-12);
    flex-wrap: wrap
}

.pagination a,.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    font-size: var(--font-size-sm);
    font-weight: 500;
    border: 1px solid var(--c-border);
    color: var(--c-text-2);
    transition: all var(--transition-fast)
}

.pagination a:hover {
    border-color: var(--c-navy);
    color: var(--c-navy);
    background: rgba(0,65,121,.05)
}

.pagination .current {
    background: var(--c-navy);
    color: var(--c-white);
    border-color: var(--c-navy)
}

.pagination .prev,.pagination .next {
    width: auto;
    padding: 0 var(--space-4);
    gap: var(--space-1)
}

/* ===== HOME PAGE ===== */
.home-hero {
    padding: clamp(var(--space-12),8vw,var(--space-24)) 0;
    background: linear-gradient(160deg,var(--c-surface) 0%,var(--c-white) 60%);
    position: relative;
    overflow: hidden
}

.home-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23004179' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .5;
    pointer-events: none
}

.home-hero-content {
    max-width: 680px
}

.home-hero h1 {
    color: #ffffff;
    margin-bottom: var(--space-5);
    text-shadow: 0 2px 12px rgba(0,0,0,.35)
}

.home-hero .lead {
    margin-bottom: var(--space-8);
    color: rgba(255,255,255,.9)
}

.home-hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap
}

.home-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--space-10);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255,255,255,.2)
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2)
}

.trust-icon {
    width: 20px;
    height: 20px;
    color: var(--c-gold-l);
    flex-shrink: 0
}

.trust-text {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,.85);
    font-weight: 500
}

/* ===== CATEGORY CARDS (HOME) ===== */
.categories-section {
    padding: 25px 0 !important;!i;!;
    background: var(--c-white)
}

.section-header {
    text-align: center;!i;!;
    /* max-width: 640px; */
    margin: 0 auto 20px;
    /* margin-bottom: 25px; */!i;!;
}

.section-header h2 {
    color: var(--c-navy);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--c-text-2);
    font-size: var(--font-size-lg)
}

.section-label {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--c-navy);
    margin-bottom: var(--space-3)
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5)
}

@media(min-width: 640px) {
    .categories-grid {
        grid-template-columns:repeat(2,1fr)
    }
}

@media(min-width: 1024px) {
    .categories-grid {
        grid-template-columns:repeat(4,1fr)
    }
}

.category-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--space-6);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: var(--space-4)
}

.category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,var(--c-navy) 0%,var(--c-gold) 100%);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: left
}

.category-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: transparent
}

.category-card:hover::before {
    transform: scaleX(1)
}

.category-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    background: rgba(0,65,121,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.category-icon svg {
    width: 24px;
    height: 24px;
    color: var(--c-navy)
}

.category-card h3 {
    font-size: var(--font-size-base);
    color: var(--c-navy);
    margin-bottom: var(--space-2)
}

.category-card p {
    font-size: var(--font-size-sm);
    color: var(--c-text-2);
    line-height: var(--lh-normal);
    flex: 1;
    margin: 0
}

.category-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto
}

.category-card-count {
    font-size: var(--font-size-xs);
    color: var(--c-text-3);
    background: var(--c-surface);
    padding: 0px 4px;
    border-radius: 2px;
    border: 1px solid var(--c-border)
}

.category-card-link {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--c-navy);
    display: flex;
    align-items: center;
    gap: var(--space-1)
}

.category-card-link::after {
    content: "→";
    transition: transform var(--transition-fast)
}

.category-card:hover .category-card-link::after {
    transform: translateX(4px)
}

/* ===== FEATURED ARTICLES (HOME) ===== */
.featured-section {
    padding: var(--space-16) 0;
    background: var(--c-surface)
}

/* ===== FOOTER ===== */
.site-footer {
    background: #002b35;
    color: rgba(255,255,255,.8)
}

.footer-top {
    padding: var(--space-16) 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    border-top: 7px solid #00A8CC;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 29px;
}

@media(min-width: 480px) {
    .footer-grid {
        grid-template-columns:repeat(2,1fr)
    }
}

@media(min-width: 1024px) {
    .footer-grid {
        grid-template-columns:2fr 1fr 1fr 1fr
    }
}

.footer-brand .site-logo-name {
    color: var(--c-white)
}

.footer-brand .site-logo-tag {
    color: rgba(255,255,255,.5)
}

.footer-brand p {
    font-size: 15px;
    line-height: var(--lh-relaxed);
    margin-top: var(--space-4);
    color: rgba(255,255,255,.6)
}

.footer-col h3 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--c-white);
    margin-bottom: var(--space-5)
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-links a {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,.8);
    transition: color var(--transition-fast)
}

.footer-links a:hover {
    color: var(--c-gold-l)
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: 5px;
    font-size: var(--font-size-sm)
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--c-gold);
    flex-shrink: 0;
    margin-top: 2px
}

.footer-contact-item a {
    color: rgba(255,255,255,.9);
    transition: color var(--transition-fast)
}

.footer-contact-item a:hover {
    color: var(--c-gold-l)
}

.footer-bottom {
    padding: 14px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: space-between;
}

.footer-copy {
    font-size: var(--font-size-xs);
    color: rgba(255,255,255,.7)
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap
}

.footer-bottom-links a {
    font-size: var(--font-size-xs);
    color: rgba(255,255,255,.7);
    transition: color var(--transition-fast)
}

.footer-bottom-links a:hover {
    color: rgba(255,255,255,.7)
}

.footer-social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-5)
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast)
}

.footer-social a:hover {
    background: var(--c-gold);
    color: var(--c-white)
}

.footer-social svg {
    width: 16px;
    height: 16px;
    color: rgba(255,255,255,.6)
}

.footer-social a:hover svg {
    color: var(--c-white)
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-sm);
    padding: var(--space-2) var(--space-3);
    margin-top: var(--space-3);
    font-size: var(--font-size-xs);
    color: rgba(255,255,255,.9)
}

.footer-badge svg {
    width: 12px;
    height: 12px;
    color: var(--c-gold)
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 44px;
    height: 44px;
    border-radius: var(--r-full);
    background: var(--c-navy);
    color: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 100;
    border: 2px solid rgba(255,255,255,.1);
    display: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible
}

.back-to-top:hover {
    background: var(--c-gold);
    color: var(--c-white);
    transform: translateY(-3px)
}

.back-to-top svg {
    width: 18px;
    height: 18px
}

/* ===== 404 PAGE ===== */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-16) 0;
    text-align: center
}

.error-number {
    font-size: clamp(6rem,15vw,10rem);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px var(--c-border);
    line-height: 1;
    margin-bottom: var(--space-4)
}

.error-title {
    font-size: var(--font-size-3xl);
    color: var(--c-navy);
    margin-bottom: var(--space-4)
}

.error-text {
    color: var(--c-text-2);
    max-width: 480px;
    margin: 0 auto var(--space-8)
}

/* ===== UTILITY CLASSES ===== */
.mt-0 {
    margin-top: 0
}

.mt-4 {
    margin-top: var(--space-4)
}

.mt-8 {
    margin-top: var(--space-8)
}

.mt-12 {
    margin-top: var(--space-12)
}

.mb-0 {
    margin-bottom: 0
}

.mb-4 {
    margin-bottom: var(--space-4)
}

.mb-8 {
    margin-bottom: var(--space-8)
}

.pt-0 {
    padding-top: 0
}

.pt-8 {
    padding-top: var(--space-8)
}

.pt-12 {
    padding-top: var(--space-12)
}

.pt-16 {
    padding-top: var(--space-16)
}

.pb-0 {
    padding-bottom: 0
}

.pb-8 {
    padding-bottom: var(--space-8)
}

.pb-12 {
    padding-bottom: var(--space-12)
}

.hidden {
    display: none
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0
}

.divider {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: var(--space-8) 0
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: .2rem .6rem;
    background: rgba(0,65,121,.07);
    color: var(--c-navy);
    border-radius: var(--r-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: .04em
}

.clearfix::after {
    content: "";
    display: table;
    clear: both
}

/* ===== READING PROGRESS BAR ===== */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg,var(--c-gold) 0%,var(--c-navy) 100%);
    z-index: 201;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 50ms linear
}

/* ===== PRINT STYLES ===== */
@media print {
    .site-header,.sidebar,.cta-banner,.footer-top,.footer-bottom,.back-to-top,.reading-progress {
        display: none
    }

    .article-grid {
        grid-template-columns: 1fr
    }

    .article-body a::after {
        content: " ("attr(href)")"
    }
}

/* ===== ANIMATION HELPERS ===== */
@media(prefers-reduced-motion:reduce) {
    * {
        animation-duration: .01ms!important;
        animation-iteration-count: 1!important;
        transition-duration: .01ms!important;
        scroll-behavior: auto!important
    }
}


/* Added btn-quote */
.btn-quote {background-color: #00A8CC;color: #fff;border: 1px solid #fff;}
.btn-quote:hover {background-color: #00A8CC;color: #fff;}


/* Added hide-mobile */
@media (max-width: 639px) { .hide-mobile { display: none !important; } }


/* Article Typography Adjustments */
.article-main h1 { font-size: 2rem !important; }
.article-body h2 { font-size: 1.5rem !important; margin-top: 2rem; }
.article-body h3 { font-size: 1.25rem !important; }

/* Improved Stats Bar UI */
.stats-bar {
    background: #00A8CC;
    padding: 60px 0 !important;
    color: #fff;
    margin: 40px auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 65, 121, 0.15);
    max-width: 1200px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}
.stat-item {
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--c-gold);
    background: rgba(255, 255, 255, 0.08);
}
.stat-number {
    display: block;
    font-size: 34px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 7px;
    line-height: normal;
    text-shadow: 0 2px 10px rgba(236, 114, 28, 0.3);
}
.stat-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.95);
}
@media (max-width: 768px) {
    .stats-bar { border-radius: 0; margin: 0; padding: 40px 0 !important; max-width: 100%; }
    .stat-number { font-size: 2.5rem; }
    .stat-item { padding: 20px 15px; }
}

/* Figcaption */
figcaption {
    font-size: 0.875rem;
    color: var(--c-text-3);
    text-align: left;
    margin-top: 0;
    font-style: normal;
    line-height: 27px;
    padding-left: 10px;
}

/* Article Layout Extracted Inline CSS */
.service-areas-box { background:var(--c-surface); border:1px solid var(--c-border); border-radius:12px; padding:1.5rem; margin:2rem 0; }
.service-areas-title { color:var(--c-navy); margin-bottom:1rem; }
.service-areas-icon { display:inline; vertical-align:middle; margin-right:.5rem; }
.service-areas-desc { font-size:.9375rem; color:var(--c-text-2); margin-bottom:1rem; }
.service-areas-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(140px,1fr)); gap:.5rem; }
.service-area-item { display:flex; align-items:center; gap:.375rem; font-size:.8125rem; color:var(--c-text-2); }

.features-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:1rem; margin:2rem 0; padding:1.5rem; background:var(--c-surface); border-radius:12px; border:1px solid var(--c-border); }
.feature-item { text-align:center; padding:1rem; background:#fff; border-radius:8px; border:1px solid var(--c-border); }
.feature-icon { font-size:1.75rem; margin-bottom:.5rem; }
.feature-title { font-size:.875rem; color:var(--c-navy); margin-bottom:.25rem; }
.feature-desc { font-size:.75rem; color:var(--c-text-3); margin:0; }

.article-footer { margin-top:3rem; padding-top:1.5rem; border-top:2px solid var(--c-surface2); }
.article-footer-inner { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem; }
.article-footer .tag + .tag { margin-left:.5rem; }
.article-footer-meta { font-size:.875rem; color:var(--c-text-2); }

.article-back-box { margin-top:2rem; padding:1.25rem; background:var(--c-surface); border-radius:8px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem; }
.article-back-text { font-size:.875rem; color:var(--c-text-2); margin:0; }

/* ===== FOOTER MENU LINKS (gold chevron + faint border) ===== */
.footer-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-menu-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,.8);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
    text-decoration: none;
}

.footer-menu-links a::before {
    content: "›";
    color: var(--c-gold);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.1em;
    line-height: 1;
}

.footer-menu-links a:hover {
    color: var(--c-gold-l);
    padding-left: 4px;
}

.footer-menu-links a:last-child {
    border-bottom: none;
}

/* ===== MOBILE MENU — light colour overrides ===== */
.mobile-menu nav a {
    color: var(--c-text) !important;
    border-bottom: 1px solid var(--c-border) !important;
}

.mobile-menu nav a:hover {
    color: var(--c-navy) !important;
    background: var(--c-surface) !important;
}


/* Chat Trigger */
.chat-trigger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 260px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
    display: none;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    border: 1px solid var(--c-navy);
}
.chat-trigger.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}
.chat-header {
    background: var(--c-navy);
    color: #fff;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--c-gold);
}
.chat-header h3 {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.close-btn {
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    background: transparent;
    padding: 0;
    border: none;
    line-height: 1;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}
.close-btn:hover {
    background: rgba(255,255,255,0.2);
}
.chat-body {
    padding: 10px;
    color: #333;
    font-family: 'Roboto', sans-serif;
}
.chat-body p {
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 8px;
}
.chat-body ul {
    margin: 0 0 8px 0;
    padding-left: 15px;
    font-size: 12px;
}
.whatsapp-link, .whatsapp-link2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 6px;
    transition: all 0.2s ease;
    font-size: 13px;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.whatsapp-link2 {
    background: #25D366;
    color: #fff !important;
    border: 1px solid #20bd5a;
}
.whatsapp-link2:hover {
    background: #128C7E;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}
.whatsapp-link {
    background: var(--c-navy);
    color: #fff !important;
    border: 1px solid var(--c-navy-d);
}
.whatsapp-link:hover {
    background: var(--c-gold);
    color: var(--c-navy) !important;
    border-color: var(--c-gold);
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}
.whatsapp-container {
    cursor: pointer;
    background-color: var(--c-gold);
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    padding: 8px 16px;
    display: flex;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}
.whatsapp-container:hover {
    transform: scale(1);
}
.whatsapp-text {
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: var(--c-navy);
    font-weight: 700;
    letter-spacing: 0.2px;
    margin-left: 8px;
}
@media (max-width: 480px) {
    .chat-trigger {
        width: calc(100% - 40px);
        bottom: 70px;
    }
    .whatsapp-container {
        bottom: 20px;
    }
}
/* Chat Trigger */
.chat-trigger {
    position: fixed;
    bottom: 36px;
    right: 0px;
    width: 260px;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
    display: none;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    border: 1px solid var(--c-navy);
}
.chat-trigger.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}
.chat-header {
    background: var(--c-navy);
    color: #fff;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--c-gold);
}
.chat-header h3 {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.close-btn {
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    background: transparent;
    padding: 0;
    border: none;
    line-height: 1;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    background: rgba(255, 255, 255, 0.2);
}
.close-btn:hover {
    background: rgba(255,255,255,0.2);
}
.chat-body {
    padding: 10px;
    color: #333;
    font-family: 'Roboto', sans-serif;
}
.chat-body p {
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 8px;
}
.chat-body ul {
    margin: 0 0 8px 0;
    padding-left: 15px;
    font-size: 12px;
}
.whatsapp-link, .whatsapp-link2 {
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 4px 12px 2px;
    border-radius: 3px;
    font-weight: 600;
    margin-top: 6px;
    transition: all 0.2s ease;
    font-size: 13px;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.whatsapp-link2 {
    background: #25D366;
    color: #fff !important;
    border: 1px solid #20bd5a;
}
.whatsapp-link2:hover {
    background: #128C7E;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}
.whatsapp-link {
    background: var(--c-navy);
    color: #fff !important;
    border: 1px solid var(--c-navy-d);
}
.whatsapp-link:hover {
    background: var(--c-gold);
    color: var(--c-navy) !important;
    border-color: var(--c-gold);
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}
.whatsapp-container {
    cursor: pointer;
    background-color: #00A8CC;
    align-items: center;
    position: fixed;
    bottom: 00px;
    right: -1px;
    z-index: 999;
    padding: 8px 16px 5px;
    display: flex;
    border-radius: 4px;
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.15); */
    transition: transform 0.2s;
    width: 261px;
}
.whatsapp-container:hover {
}

.whatsapp-container svg {color:#fff !important;height: 17px;margin-top: -2px;}
.whatsapp-text {
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.2px;
    margin-left: 8px;
}
@media (max-width: 480px) {
    .chat-trigger {
        width: calc(100% - 40px);
        bottom: 70px;
    }
    .whatsapp-container {
        bottom: 20px;
    }
}