/* ===================================================================
   BERKELEY FINANCIAL — Accountants & Tax Advisors
   Brand: Navy #1A2B4A · Gold #B8972B · White
   Modern, Responsive, Accessible, SEO-Optimised
   =================================================================== */

/* --- CSS Custom Properties --- */
:root {
    /* Brand palette */
    --navy: #1a2b4a;
    --navy-dark: #122036;
    --navy-darker: #0d182a;
    --navy-light: #2a3f63;
    --navy-surface: #1f3050;
    --navy-tint: #eef1f7;

    --gold: #b8972b;
    --gold-light: #d4b04a;       /* on dark backgrounds */
    --gold-dark: #8a7220;        /* AA-safe gold text on white */
    --gold-soft: rgba(184, 151, 43, 0.12);

    /* Semantic aliases (gold = action/accent, navy = structure) */
    --primary: #b8972b;
    --primary-dark: #8a7220;
    --primary-light: #d4b04a;
    --secondary: #1a2b4a;
    --secondary-light: #2a3f63;
    --accent: #b8972b;

    /* Neutrals */
    --dark: #0d182a;
    --dark-card: #16223a;
    --dark-surface: #1c2b47;
    --text: #e7ecf3;
    --text-muted: #93a0b4;
    --text-dark: #20293a;
    --text-body: #4a5568;
    --bg-light: #f4f6fa;
    --bg-white: #ffffff;

    /* Glass */
    --glass: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.10);
    --glass-light: rgba(255, 255, 255, 0.92);
    --glass-light-border: rgba(0, 0, 0, 0.06);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(16, 32, 56, 0.08);
    --shadow-md: 0 4px 20px rgba(16, 32, 56, 0.12);
    --shadow-lg: 0 14px 44px rgba(16, 32, 56, 0.16);
    --shadow-glow: 0 0 44px rgba(184, 151, 43, 0.20);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;   /* keep anchored section titles below the fixed header */
    scrollbar-gutter: stable;    /* reserve scrollbar space so the fixed header never sits under it */
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
address { font-style: normal; }

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Accessibility: skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100000;
    background: var(--navy);
    color: #fff;
    padding: 12px 22px;
    border-radius: 0 0 var(--radius-sm) 0;
    font-weight: 600;
    font-size: 0.9rem;
}
.skip-link:focus {
    left: 0;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }

.loader { position: relative; width: 80px; height: 80px; }
.loader-ring {
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.loader-ring::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 3px solid transparent;
    border-top-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    animation: spin 0.6s linear reverse infinite;
}
.loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    object-fit: contain;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* --- Header / Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}
.header.scrolled {
    padding: 8px 0;
    background: var(--glass-light);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid var(--glass-light-border);
    box-shadow: 0 4px 30px rgba(16,32,56,0.07);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo swap: light (reversed) over dark hero, dark (navy) when scrolled */
.logo { display: inline-flex; align-items: center; line-height: 0; }
.logo img {
    height: 72px;
    width: auto;
    transition: height var(--transition);
}
.header.scrolled .logo img { height: 54px; }
.logo .logo-dark { display: none; }
.logo .logo-light { display: block; }
.header.scrolled .logo .logo-dark { display: block; }
.header.scrolled .logo .logo-light { display: none; }

.nav-list {
    display: flex;
    gap: 8px;
    align-items: center;
}
.nav-list > li > a {
    padding: 10px 18px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    color: rgba(255,255,255,0.92);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.header.scrolled .nav-list > li > a { color: var(--text-dark); }

.nav-list > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width var(--transition);
}
.nav-list > li > a:hover::after,
.nav-list > li > a.active::after { width: 22px; }
.nav-list > li > a:hover { color: var(--gold-light); }
.header.scrolled .nav-list > li > a:hover { color: var(--gold-dark); }
.nav-list > li > a.active { color: var(--gold-light); font-weight: 600; }
.header.scrolled .nav-list > li > a.active { color: var(--gold-dark); }

/* Mega Dropdown */
.has-dropdown { position: relative; }
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 680px;
    padding-top: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition);
}
.has-dropdown:hover .mega-dropdown,
.has-dropdown:focus-within .mega-dropdown,
.has-dropdown.active .mega-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.mega-dropdown-inner {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.04);
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.mega-col h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--navy);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold-soft);
}
.mega-col ul li a {
    display: block;
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--text-body);
    transition: all var(--transition);
}
.mega-col ul li a:hover {
    color: var(--gold-dark);
    padding-left: 8px;
}

/* Header CTA */
.header-cta {
    display: inline-flex;
    align-items: center;
    padding: 11px 26px;
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: 100px;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(184,151,43,0.35);
}
.header-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(184,151,43,0.45);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--bg-white);
    border-radius: 2px;
    transition: all var(--transition);
}
.header.scrolled .mobile-toggle span { background: var(--navy); }
.main-nav.open ~ .mobile-toggle span,
.mobile-toggle.active span { background: var(--navy); }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1s ease-in-out;
    will-change: opacity, transform;
}
.hero-slide.active { opacity: 0.72; }
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(13,24,42,0.80) 0%, rgba(20,34,58,0.42) 48%, rgba(26,43,74,0.10) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 170px 0 130px;
}
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease both;
}
.hero-label .dot {
    width: 6px;
    height: 6px;
    background: var(--gold-light);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--bg-white);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.15s both;
    text-shadow: 0 2px 26px rgba(8,14,26,0.55);
}
.hero h1 span { color: var(--gold-light); }

.hero p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
    margin-bottom: 40px;
    max-width: 560px;
    animation: fadeInUp 0.8s ease 0.3s both;
    text-shadow: 0 1px 18px rgba(8,14,26,0.5);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.45s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
    letter-spacing: 0.01em;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(184,151,43,0.35);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(184,151,43,0.45);
}
.btn-outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-3px);
}
.btn-dark {
    background: var(--navy);
    color: white;
    box-shadow: var(--shadow-md);
}
.btn-dark:hover {
    background: var(--navy-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.btn-light {
    background: #fff;
    color: var(--navy);
    box-shadow: var(--shadow-lg);
}
.btn-light:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

/* Hero decorative elements */
.hero-float {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
}
.hero-float-1 {
    width: 420px; height: 420px;
    background: var(--gold);
    top: 18%; right: 8%;
    animation: float 8s ease-in-out infinite;
}
.hero-float-2 {
    width: 320px; height: 320px;
    background: var(--navy-light);
    bottom: 8%; right: 28%;
    animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(13,24,42,0.55);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
}
.hero-stats-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
}
.hero-stat {
    padding: 32px;
    text-align: center;
    position: relative;
}
.hero-stat::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: var(--glass-border);
}
.hero-stat:last-child::after { display: none; }
.hero-stat .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1;
    margin-bottom: 6px;
}
.hero-stat .number span { color: var(--gold-light); }
.hero-stat .label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* --- Section Styles --- */
.section {
    padding: 100px 0;
    position: relative;
}
.section-dark {
    background: var(--navy);
    color: var(--text);
}
.section-light {
    background: var(--bg-light);
}
.section-accent {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
.section-accent::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 480px;
    height: 480px;
    background: var(--gold);
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.16;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}
.section-header .label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    margin-bottom: 16px;
}
.section-header .label .line {
    width: 30px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--navy);
}
.section-dark .section-header h2,
.section-accent .section-header h2 { color: var(--bg-white); }
.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.section-dark .section-header p { color: rgba(255,255,255,0.65); }

/* --- Welcome / About Section --- */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.welcome-images {
    position: relative;
}
.welcome-figure {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.welcome-figure img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.welcome-figure:hover img { transform: scale(1.04); }
/* decorative gold frame behind */
.welcome-images::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 62%;
    height: 62%;
    border: 2px solid var(--gold);
    border-radius: var(--radius-xl);
    z-index: 1;
}
.welcome-badge {
    position: absolute;
    left: -26px;
    bottom: 38px;
    z-index: 3;
    background: var(--navy);
    color: #fff;
    padding: 20px 26px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--gold);
    max-width: 230px;
}
.welcome-badge .big {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
}
.welcome-badge .sub {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.78);
    margin-top: 6px;
    line-height: 1.5;
}

.welcome-content .label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    margin-bottom: 16px;
}
.welcome-content .label .line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}
.welcome-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.2;
}
.welcome-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 16px;
}
.welcome-content .btn { margin-top: 12px; }

/* Feature list (added value content) */
.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin: 4px 0 28px;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.94rem;
    font-weight: 500;
    color: var(--navy);
}
.feature-list li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--gold);
    margin-top: 2px;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid rgba(16,32,56,0.07);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--gold));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(184,151,43,0.16), rgba(184,151,43,0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--transition);
    color: var(--gold-dark);
}
.service-icon svg { width: 28px; height: 28px; }
.service-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.service-card:hover .service-icon {
    background: var(--navy);
    color: var(--gold-light);
    transform: scale(1.08);
}
.service-card:hover .service-icon img { filter: brightness(0) invert(1); }

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.7;
    flex-grow: 1;
}
.service-card .arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold-dark);
}
.service-card:hover .arrow-link { color: var(--navy); gap: 10px; }

/* --- Counter Stats Section --- */
.stats-section { overflow: hidden; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--gold-light);
}
.stat-item .stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* --- CTA Info Block --- */
.cta-block {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}
.cta-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: var(--gold);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
}
.cta-block .cta-text { position: relative; z-index: 2; }
.cta-block .cta-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 8px;
}
.cta-block .cta-text p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}
.cta-block .phone-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg-white);
    white-space: nowrap;
    position: relative;
    z-index: 2;
}
.cta-block .phone-number a { color: #fff; }
.cta-block .phone-number a:hover { color: var(--gold-light); }
.cta-block .phone-number small {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 4px;
    letter-spacing: 0.04em;
}

/* --- Testimonials --- */
.testimonials-slider {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.testimonial-card {
    display: none;
    animation: fadeIn 0.5s ease;
}
.testimonial-card.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.testimonial-card .quote-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    color: var(--gold);
    opacity: 0.55;
}
.testimonial-card blockquote {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 24px;
}
.testimonial-card .author {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
}
.testimonial-card .author span {
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--gold-dark);
    margin-top: 2px;
}
.testimonial-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 32px;
}
.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(16,32,56,0.15);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}
.testimonial-dots .dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* --- FAQ Section --- */
.faq-wrap {
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    background: var(--bg-white);
    border: 1px solid rgba(16,32,56,0.08);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item.open {
    border-color: rgba(184,151,43,0.4);
    box-shadow: var(--shadow-md);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 26px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question .faq-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    position: relative;
    transition: transform var(--transition);
}
.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gold);
    border-radius: 2px;
    transition: all var(--transition);
}
.faq-question .faq-icon::before { top: 50%; left: 4px; right: 4px; height: 2.5px; transform: translateY(-50%); }
.faq-question .faq-icon::after { left: 50%; top: 4px; bottom: 4px; width: 2.5px; transform: translateX(-50%); }
.faq-item.open .faq-question .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer-inner {
    padding: 0 26px 24px;
    color: var(--text-body);
    font-size: 0.96rem;
    line-height: 1.8;
}

/* --- About Page Specific --- */
.about-hero {
    padding: 190px 0 100px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../images/about-us.jpg') center/cover;
    opacity: 0.4;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.5), transparent);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.5), transparent);
}
.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), transparent);
}
.about-hero .container { position: relative; z-index: 2; }
.about-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 16px;
}
.about-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 620px;
}
.breadcrumb {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold-light); }

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.mission-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.mission-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}
.mission-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
}
.mission-content p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.value-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid rgba(16,32,56,0.07);
    text-align: center;
    transition: all var(--transition);
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(184,151,43,0.3);
}
.value-card .icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
}
.value-card .icon svg { width: 28px; height: 28px; }
.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}
.value-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* --- Services Page Specific --- */
.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.service-detail-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid rgba(16,32,56,0.07);
    transition: all var(--transition);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(184,151,43,0.3);
}
.service-detail-card .svc-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
}
.service-detail-card .svc-icon svg { width: 26px; height: 26px; }
.service-detail-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.service-detail-card p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.7;
}
.service-detail-card p a { color: var(--gold-dark); font-weight: 600; }
.service-detail-card p a:hover { color: var(--navy); text-decoration: underline; }

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(16,32,56,0.05);
}
.contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}
.contact-form-wrapper .form-intro {
    color: var(--text-body);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #dde3ec;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all var(--transition);
    background: var(--bg-light);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,151,43,0.15);
    background: var(--bg-white);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Honeypot (anti-spam) — visually hidden */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px; height: 1px;
    overflow: hidden;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.5;
    margin-bottom: 20px;
}
.form-consent input { width: auto; margin-top: 3px; flex-shrink: 0; }
.form-consent a { color: var(--gold-dark); font-weight: 600; text-decoration: underline; }

.form-message {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-message.success { background: #e8f6ee; color: #176a3a; border: 1px solid #b6e0c6; }
.form-message.error { background: #fdeceb; color: #a3271f; border: 1px solid #f3c4c0; }

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 22px; }
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-info-item .info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(184,151,43,0.16), rgba(184,151,43,0.05));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
}
.contact-info-item h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 4px;
}
.contact-info-item p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}
.contact-info-item a { color: var(--gold-dark); font-weight: 500; }
.contact-info-item a:hover { color: var(--navy); text-decoration: underline; }

.contact-map {
    margin-top: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 280px;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Footer --- */
.footer { background: var(--navy-dark); color: var(--text); }

.footer-newsletter {
    background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}
.footer-newsletter::before {
    content: '';
    position: absolute;
    top: -60%; left: 10%;
    width: 300px; height: 300px;
    background: var(--gold);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
}
.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.newsletter-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: white;
    white-space: nowrap;
}
.newsletter-text svg { color: var(--gold-light); }
.newsletter-form {
    display: flex;
    gap: 0;
    flex: 1;
    max-width: 440px;
}
.newsletter-form input {
    flex: 1;
    padding: 13px 18px;
    border: none;
    border-radius: 100px 0 0 100px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    color: var(--text-dark);
}
.newsletter-form button {
    padding: 13px 28px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 0 100px 100px 0;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background var(--transition);
    white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-light); }
.newsletter-note {
    width: 100%;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    margin-top: -8px;
    position: relative;
    z-index: 2;
}

.footer-main { padding: 64px 0 50px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
    gap: 40px;
}
.footer-brand-logo {
    height: 72px;
    width: auto;
    margin-bottom: 22px;
}
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.footer-col p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links a::before {
    content: '';
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}
.footer-links a:hover { color: var(--bg-white); }
.footer-links a:hover::before { width: 14px; }

.footer-col address p {
    margin-bottom: 12px;
}
.footer-col address a { color: var(--gold-light); }
.footer-col address a:hover { color: var(--bg-white); }

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}
.social-links a {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.social-links a svg { width: 28px; height: 28px; }
.social-links a:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}
.footer-bottom .footer-legal {
    display: flex;
    gap: 20px;
}
.footer-bottom .footer-legal a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}
.footer-bottom .footer-legal a:hover { color: var(--gold-light); }

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--navy);
    color: var(--gold-light);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-4px);
}

/* --- Page / Legal content --- */
.page-content { padding: 150px 0 90px; }
.legal-content {
    max-width: 820px;
    margin: 0 auto;
}
.legal-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}
.legal-content .updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 36px;
}
.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin: 36px 0 14px;
}
.legal-content p,
.legal-content li {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 14px;
}
.legal-content ul { padding-left: 22px; list-style: disc; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--gold-dark); font-weight: 600; }
.legal-content a:hover { text-decoration: underline; }

/* --- 404 --- */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 0 90px;
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.error-page::before {
    content: '';
    position: absolute;
    top: 10%; right: 15%;
    width: 360px; height: 360px;
    background: var(--gold);
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.18;
}
.error-page .content { position: relative; z-index: 2; max-width: 560px; padding: 0 24px; }
.error-page .code {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 18vw, 9rem);
    font-weight: 800;
    line-height: 1;
    color: var(--gold-light);
}
.error-page h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 8px 0 14px;
}
.error-page p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
/* Vertical reveals (no horizontal translate) so they can never widen the page
   and push the fixed header / burger off-screen on any viewport. */
.reveal-left {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.revealed { opacity: 1; transform: translateY(0); }
.reveal-right {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.revealed { opacity: 1; transform: translateY(0); }

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .welcome-grid { grid-template-columns: 1fr; gap: 56px; }
    .mission-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .services-detailed-grid { grid-template-columns: 1fr; }
    .cta-block { flex-direction: column; text-align: center; align-items: flex-start; }
    .welcome-images { max-width: 560px; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .logo img { height: 54px; }
    .header.scrolled .logo img { height: 46px; }
    /* Solid (no blur) scrolled header — avoids backdrop-filter flicker on mobile */
    .header.scrolled {
        background: #ffffff;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }
    html { scroll-padding-top: 84px; }

    /* Slide-in reveals animate vertically on mobile so they never overflow
       horizontally (a horizontal slide would widen the page and the fixed header). */
    .reveal-left, .reveal-right { transform: translateY(40px); }
    .reveal-left.revealed, .reveal-right.revealed { transform: translateY(0); }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: var(--bg-white);
        padding: 90px 28px 32px;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.open { transform: translateX(0); }
    .nav-list {
        flex-direction: column;
        gap: 4px;
        width: 100%;
        align-items: stretch;
    }
    .nav-list > li > a {
        color: var(--navy) !important;
        padding: 13px 16px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        border-radius: var(--radius-sm);
    }
    .nav-list > li > a:hover { background: var(--bg-light); }
    .nav-list > li > a.active { background: var(--gold-soft); }
    .nav-list > li > a::after { display: none; }
    .mega-dropdown {
        position: static;
        transform: none;
        min-width: auto;
        padding-top: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
    }
    .has-dropdown.active .mega-dropdown { display: block; transform: none; }
    .mega-dropdown-inner {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 16px;
        box-shadow: none;
        border-radius: var(--radius-sm);
        background: var(--bg-light);
    }
    .header-cta { display: none; }

    .hero-content { padding: 130px 0 170px; }
    .hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
    .hero p { font-size: 1.02rem; }
    .hero-stats-inner { grid-template-columns: repeat(3, 1fr); }
    .hero-stat { padding: 20px 10px; }
    .hero-stat .number { font-size: 1.55rem; }
    .hero-stat .label { font-size: 0.65rem; }

    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .newsletter-inner { flex-direction: column; text-align: center; align-items: center; }
    .newsletter-text { white-space: normal; justify-content: center; }
    .newsletter-form { max-width: 100%; }
    .newsletter-note { text-align: center; }
    .values-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 28px 22px; }
    .footer-bottom .container { flex-direction: column; text-align: center; }

    .section { padding: 64px 0; }
    .section-header { margin-bottom: 40px; }

    /* Welcome image block */
    .welcome-images { max-width: 100%; margin-top: 10px; }
    .welcome-figure img { height: 360px; }
    .welcome-images::before { top: -12px; right: -12px; }
    .welcome-badge { left: 14px; bottom: 14px; padding: 16px 20px; max-width: 200px; }
    .welcome-badge .big { font-size: 1.55rem; }
    .feature-list { grid-template-columns: 1fr; }
    .about-hero { padding: 150px 0 70px; }
    .about-hero::before { width: 100%; opacity: 0.34; }
    .mission-image img { height: 340px; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-block { padding: 32px 24px; }
    .cta-block .phone-number { font-size: 1.6rem; }
    .welcome-figure img { height: 300px; }
    .faq-question { padding: 18px 18px; font-size: 0.98rem; }
    .faq-answer-inner { padding: 0 18px 20px; }
}
