/* =============================================
   CACampus — Landing Page Styles
   ============================================= */

/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

:root {
    --primary: #1a3c5e;
    --primary-light: #2557a7;
    --accent: #d4a017;
    --accent-light: #f0c040;
    --dark: #0d1f33;
    --light: #f8fafc;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --white: #ffffff;
    --gradient-hero: linear-gradient(135deg, #0d1f33 0%, #1a3c5e 50%, #2557a7 100%);
    --gradient-accent: linear-gradient(135deg, #d4a017 0%, #f0c040 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
    --radius: 12px;
    --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

/* ── NAVBAR ─────────────────────────────────── */
.ca-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
}
.ca-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.brand-icon {
    width: 42px; height: 42px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: var(--dark);
    letter-spacing: -0.5px;
    flex-shrink: 0;
}
.brand-name { font-size: 1.4rem; font-weight: 700; color: var(--white); }
.brand-name span { color: var(--accent-light); }
.ca-navbar .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.4rem 0.9rem !important;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.ca-navbar .nav-link:hover {
    color: var(--accent-light) !important;
    background: rgba(255,255,255,0.06);
}
.btn-nav-login {
    border: 1.5px solid rgba(255,255,255,0.4);
    color: var(--white) !important;
    border-radius: 8px !important;
    padding: 0.4rem 1.1rem !important;
    transition: all 0.25s;
}
.btn-nav-login:hover { border-color: var(--accent-light) !important; color: var(--accent-light) !important; }
.btn-nav-cta {
    background: var(--gradient-accent) !important;
    color: var(--dark) !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 0.45rem 1.3rem !important;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(212,160,23,0.45); }

/* ── HERO SECTION ───────────────────────────── */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(37,87,167,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212,160,23,0.15) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(37,87,167,0.2) 0%, transparent 40%);
    pointer-events: none;
}
.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; padding-top: 100px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,160,23,0.15);
    border: 1px solid rgba(212,160,23,0.4);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-badge .badge-dot {
    width: 7px; height: 7px;
    background: var(--accent-light);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.hero-title .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-hero-primary {
    background: var(--gradient-accent);
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius);
    padding: 0.85rem 2rem;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(212,160,23,0.4);
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(212,160,23,0.55); color: var(--dark); }
.btn-hero-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: var(--radius);
    padding: 0.85rem 2rem;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    backdrop-filter: blur(8px);
    transition: all 0.25s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.6); color: var(--white); }

.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-stat-item { text-align: left; }
.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
}
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* Hero visual card */
.hero-visual { position: relative; z-index: 2; padding-top: 100px; }
.hero-card-stack { position: relative; height: 480px; }
.hero-main-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: absolute;
    top: 40px; left: 20px; right: 20px;
    box-shadow: var(--shadow-lg);
}
.hcard-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.5rem;
}
.hcard-avatar-group { display: flex; }
.hcard-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    margin-left: -10px;
    background: var(--gradient-accent);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.8rem; color: var(--dark);
}
.hcard-avatar:first-child { margin-left: 0; background: #2557a7; color: white; }
.hcard-avatar:nth-child(2) { background: #1a3c5e; color: white; }
.hcard-status {
    background: rgba(34,197,94,0.2);
    color: #4ade80;
    font-size: 0.75rem; font-weight: 600;
    border-radius: 100px; padding: 4px 12px;
    border: 1px solid rgba(34,197,94,0.3);
}
.hcard-title { color: var(--white); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.4rem; }
.hcard-sub { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-bottom: 1.5rem; }
.hcard-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.hmetric {
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255,255,255,0.08);
}
.hmetric-val { color: var(--accent-light); font-weight: 700; font-size: 1.3rem; }
.hmetric-label { color: rgba(255,255,255,0.5); font-size: 0.75rem; margin-top: 2px; }
.hcard-bar-label { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin-bottom: 0.5rem; display: flex; justify-content: space-between; }
.hcard-bar-track { background: rgba(255,255,255,0.1); border-radius: 100px; height: 6px; }
.hcard-bar-fill { height: 6px; border-radius: 100px; background: var(--gradient-accent); width: 72%; }

/* Floating mini cards */
.float-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    border-radius: var(--radius);
    padding: 0.9rem 1.1rem;
    box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 10px;
    animation: float-up-down 4s ease-in-out infinite;
}
.float-card-1 { top: 0; right: 0; animation-delay: 0s; }
.float-card-2 { bottom: 60px; left: 0; animation-delay: 2s; }
@keyframes float-up-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.float-icon {
    width: 36px; height: 36px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.float-icon-gold { background: rgba(212,160,23,0.15); }
.float-icon-blue { background: rgba(37,87,167,0.12); }
.float-text-main { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.float-text-sub { font-size: 0.75rem; color: var(--gray); }

/* ── TRUST STRIP ────────────────────────────── */
.trust-strip {
    background: var(--light);
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--gray-light);
}
.trust-strip-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 3rem; flex-wrap: wrap;
}
.trust-label { font-size: 0.82rem; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.trust-logo {
    color: #9ca3af;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.trust-logo:hover { color: var(--primary-light); }

/* ── SECTION COMMON ─────────────────────────── */
section { padding: 3.5rem 0; }
.section-badge {
    display: inline-block;
    background: rgba(37,87,167,0.1);
    color: var(--primary-light);
    font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    border-radius: 100px; padding: 5px 16px;
    margin-bottom: 1rem;
    border: 1px solid rgba(37,87,167,0.2);
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-title span { color: var(--primary-light); }
.section-desc { color: var(--gray); font-size: 1.05rem; line-height: 1.7; max-width: 560px; }

/* ── HOW IT WORKS ───────────────────────────── */
.how-section { background: var(--white); }
.steps-wrapper { position: relative; }
.step-connector {
    position: absolute;
    top: 38px; left: calc(16.66% + 20px);
    width: calc(66.66% - 40px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    z-index: 0;
}
@media(max-width:767px){ .step-connector { display: none; } }
.step-card { text-align: center; position: relative; z-index: 1; }
.step-number {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--gradient-hero);
    color: var(--white);
    font-weight: 800; font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem;
    border: 3px solid var(--white);
    box-shadow: 0 4px 20px rgba(26,60,94,0.3);
}
.step-card:nth-child(even) .step-number { background: var(--gradient-accent); color: var(--dark); }
.step-card h5 { font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: 0.5rem; }
.step-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ── FEATURES ───────────────────────────────── */
.features-section { background: var(--light); }
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--gray-light);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}
.feature-icon-blue { background: rgba(37,87,167,0.1); }
.feature-icon-gold { background: rgba(212,160,23,0.12); }
.feature-icon-green { background: rgba(34,197,94,0.1); }
.feature-icon-purple { background: rgba(139,92,246,0.1); }
.feature-icon-red { background: rgba(239,68,68,0.1); }
.feature-icon-teal { background: rgba(20,184,166,0.1); }
.feature-card h5 { font-weight: 700; font-size: 1.05rem; color: var(--dark); margin-bottom: 0.6rem; }
.feature-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.65; }

/* ── PROFESSIONALS SECTION ──────────────────── */
.professionals-section { background: var(--white); }
.prof-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.prof-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.prof-card-header {
    background: var(--gradient-hero);
    padding: 1.5rem;
    position: relative;
}
.prof-avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 800;
    color: var(--dark);
    border: 3px solid rgba(255,255,255,0.3);
}
.prof-verified {
    position: absolute; top: 1rem; right: 1rem;
    background: rgba(34,197,94,0.2);
    border: 1px solid rgba(34,197,94,0.4);
    color: #4ade80;
    font-size: 0.72rem; font-weight: 700;
    border-radius: 100px; padding: 3px 10px;
    display: flex; align-items: center; gap: 4px;
}
.prof-name { color: var(--white); font-weight: 700; font-size: 1rem; margin-top: 0.8rem; margin-bottom: 0.2rem; }
.prof-designation { color: rgba(255,255,255,0.65); font-size: 0.82rem; }
.prof-card-body { padding: 1.2rem 1.5rem; }
.prof-tag {
    display: inline-block;
    background: rgba(37,87,167,0.08);
    color: var(--primary-light);
    font-size: 0.75rem; font-weight: 600;
    border-radius: 100px; padding: 3px 10px;
    margin: 2px;
    border: 1px solid rgba(37,87,167,0.15);
}
.prof-rating { color: var(--accent); font-size: 0.9rem; }
.prof-meta { font-size: 0.82rem; color: var(--gray); margin-top: 0.6rem; }
.btn-connect {
    background: var(--gradient-hero);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.88rem; font-weight: 600;
    padding: 0.5rem 1.2rem;
    width: 100%;
    margin-top: 1rem;
    transition: opacity 0.2s, transform 0.2s;
}
.btn-connect:hover { opacity: 0.9; transform: translateY(-1px); color: var(--white); }

/* ── TESTIMONIALS ───────────────────────────── */
.testimonials-section { background: var(--light); }
.testi-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-light);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-quote { font-size: 2rem; color: var(--accent); line-height: 1; margin-bottom: 1rem; }
.testi-text { color: #374151; font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--gradient-hero);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 700; font-size: 0.9rem;
    flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.92rem; color: var(--dark); }
.testi-role { font-size: 0.78rem; color: var(--gray); }
.testi-stars { color: var(--accent); font-size: 0.85rem; margin-top: 2px; }

/* ── PRICING ────────────────────────────────── */
.pricing-section { background: var(--white); }
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-light);
    padding: 2.2rem;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pricing-card.featured {
    border-color: var(--primary-light);
    background: var(--gradient-hero);
    color: var(--white);
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.popular-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: var(--dark);
    font-size: 0.75rem; font-weight: 800;
    border-radius: 100px; padding: 4px 16px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.pricing-tier { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary-light); margin-bottom: 0.5rem; }
.pricing-card.featured .pricing-tier { color: var(--accent-light); }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 0.3rem; }
.price-currency { font-size: 1.2rem; font-weight: 700; color: var(--dark); }
.price-amount { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800; color: var(--dark); line-height: 1; }
.price-period { font-size: 0.88rem; color: var(--gray); }
.pricing-card.featured .price-currency,
.pricing-card.featured .price-amount { color: var(--white); }
.pricing-card.featured .price-period { color: rgba(255,255,255,0.6); }
.pricing-desc { font-size: 0.88rem; color: var(--gray); margin-bottom: 1.5rem; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.65); }
.pricing-divider { border-color: var(--gray-light); margin-bottom: 1.5rem; }
.pricing-card.featured .pricing-divider { border-color: rgba(255,255,255,0.2); }
.pricing-feature {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem; color: #374151; margin-bottom: 0.7rem;
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.85); }
.pricing-check { color: #22c55e; font-size: 1rem; flex-shrink: 0; }
.pricing-card.featured .pricing-check { color: var(--accent-light); }
.pricing-cross { color: #9ca3af; font-size: 1rem; flex-shrink: 0; }
.btn-pricing-primary {
    background: var(--gradient-accent);
    color: var(--dark);
    border: none;
    border-radius: var(--radius);
    font-weight: 700; font-size: 0.95rem;
    padding: 0.8rem 1.5rem;
    width: 100%;
    margin-top: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none; display: block; text-align: center;
}
.btn-pricing-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,160,23,0.45); color: var(--dark); }
.btn-pricing-outline {
    background: transparent;
    color: var(--primary-light);
    border: 2px solid var(--primary-light);
    border-radius: var(--radius);
    font-weight: 600; font-size: 0.95rem;
    padding: 0.8rem 1.5rem;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.2s;
    text-decoration: none; display: block; text-align: center;
}
.btn-pricing-outline:hover { background: var(--primary-light); color: var(--white); }

/* ── CTA SECTION ────────────────────────────── */
.cta-section {
    background: var(--gradient-hero);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,160,23,0.18) 0%, transparent 70%);
    top: -200px; right: -150px;
    filter: blur(60px);
    pointer-events: none;
}
.cta-section::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,87,167,0.25) 0%, transparent 70%);
    bottom: -150px; left: -100px;
    filter: blur(60px);
    pointer-events: none;
}
.cta-content { position: relative; z-index: 1; text-align: center; }
.cta-section .section-title { color: var(--white); }
.cta-section .section-title span { color: var(--accent-light); }
.cta-section .section-desc { color: rgba(255,255,255,0.7); margin: 0 auto 2.5rem; }
.btn-cta-white {
    background: var(--white);
    color: var(--primary);
    font-weight: 700; font-size: 1rem;
    border: none; border-radius: var(--radius);
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); color: var(--primary); }
.btn-cta-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: var(--radius);
    font-weight: 600; font-size: 1rem;
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.25s;
}
.btn-cta-outline:hover { border-color: white; background: rgba(255,255,255,0.1); color: var(--white); }

/* ── FOOTER ─────────────────────────────────── */
.ca-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
}
.footer-brand-icon {
    width: 44px; height: 44px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1rem; color: var(--dark);
    margin-bottom: 1rem;
}
.footer-brand-name { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 0.7rem; }
.footer-brand-name span { color: var(--accent-light); }
.footer-tagline { font-size: 0.88rem; line-height: 1.6; max-width: 220px; }
.footer-heading { color: var(--white); font-weight: 700; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.2rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-light); }
.footer-social { display: flex; gap: 0.75rem; }
.social-btn {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    font-size: 0.95rem;
}
.social-btn:hover { background: var(--primary-light); color: var(--white); }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 2.5rem 0 1.5rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.82rem; }
.footer-cert { display: flex; align-items: center; gap: 0.5rem; }
.cert-badge {
    background: rgba(212,160,23,0.15);
    border: 1px solid rgba(212,160,23,0.3);
    color: var(--accent-light);
    font-size: 0.72rem; font-weight: 700;
    border-radius: 6px; padding: 3px 10px;
    text-transform: uppercase; letter-spacing: 0.5px;
}

/* ── SCROLL ANIMATIONS ──────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 991px) {
    .hero-visual { padding-top: 0; margin-top: 3rem; }
    .hero-card-stack { height: 380px; }
}
@media (max-width: 767px) {
    .hero-stats { gap: 1.5rem; }
    .hero-title { font-size: 2.2rem; }
    .pricing-card.featured { transform: none; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
    padding: 56px 0;
    background: var(--light);
}

.faq-accordion .faq-item {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s;
}

.faq-accordion .faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius) !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #f0f7ff, #e8f0fe);
    color: var(--primary-light);
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    filter: invert(0.5);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: none;
}

.faq-accordion .accordion-body {
    padding: 16px 24px 20px;
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    background: var(--white);
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features-section {
    padding: 56px 0;
    background: var(--white);
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.feature-icon-blue   { background: rgba(37,87,167,0.1); }
.feature-icon-gold   { background: rgba(212,160,23,0.1); }
.feature-icon-green  { background: rgba(34,197,94,0.1); }
.feature-icon-purple { background: rgba(139,92,246,0.1); }
.feature-icon-red    { background: rgba(239,68,68,0.1); }
.feature-icon-teal   { background: rgba(20,184,166,0.1); }

.feature-card h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1rem;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.875rem;
    line-height: 1.65;
    margin: 0;
}

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing-section {
    padding: 56px 0;
    background: var(--light);
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent), var(--shadow-lg);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-tier {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 12px;
}

.pricing-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 12px;
}

.price-currency { font-size: 1.4rem; font-weight: 700; color: var(--primary); line-height: 1.8; }
.price-amount   { font-size: 3rem;   font-weight: 800; color: var(--primary); line-height: 1; }
.price-period   { font-size: 0.85rem; color: var(--gray); margin-bottom: 6px; }

.pricing-desc    { color: var(--gray); font-size: 0.875rem; margin-bottom: 16px; }
.pricing-divider { border-color: var(--gray-light); margin: 16px 0; }

.pricing-feature {
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pricing-check { color: #22c55e; font-weight: 700; flex-shrink: 0; }
.pricing-cross  { color: #d1d5db; font-weight: 700; flex-shrink: 0; }

.btn-pricing-primary {
    display: block;
    text-align: center;
    margin-top: 24px;
    padding: 12px 24px;
    background: var(--gradient-accent);
    color: var(--dark);
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-pricing-primary:hover { opacity: 0.9; transform: translateY(-2px); }

.btn-pricing-outline {
    display: block;
    text-align: center;
    margin-top: 24px;
    padding: 12px 24px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-pricing-outline:hover { background: var(--primary); color: var(--white); }

/* =============================================
   FOOTER
   ============================================= */
.ca-footer {
    background: var(--gradient-hero);
    padding: 72px 0 0;
    color: rgba(255,255,255,0.85);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand-icon {
    width: 40px; height: 40px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.9rem;
    color: var(--dark);
    flex-shrink: 0;
}

.footer-brand-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.3px;
}

.footer-brand-name span { color: var(--accent-light); }

.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials { display: flex; gap: 10px; }

.social-link {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.social-link:hover {
    background: var(--gradient-accent);
    border-color: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
}

.footer-heading {
    color: var(--accent-light);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0; margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 0.875rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent-light); }

.footer-input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 6px;
    font-size: 0.8rem;
}

.footer-input::placeholder { color: rgba(255,255,255,0.4); }
.footer-input:focus { background: rgba(255,255,255,0.15); border-color: var(--accent); color: white; box-shadow: none; }

.footer-subscribe-btn {
    background: var(--gradient-accent);
    color: var(--dark);
    font-weight: 700;
    border: none;
    border-radius: 6px;
    padding: 0 14px;
    white-space: nowrap;
}

.footer-subscribe-btn:hover { opacity: 0.9; }

.footer-divider {
    border-color: rgba(255,255,255,0.12);
    margin: 48px 0 24px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 28px;
}

/* =============================================
   NAVBAR SCROLL EFFECT
   ============================================= */
.ca-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13,31,51,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 12px 0;
    transition: all 0.3s;
}


.navbar-brand { display:flex; align-items:center; gap:10px; text-decoration:none; }

.brand-icon {
    width: 36px; height: 36px;
    background: var(--gradient-accent);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.85rem;
    color: var(--dark);
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
}

.brand-name span { color: var(--accent-light); }

.ca-navbar .nav-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none;
}

.ca-navbar .nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.btn-nav-login {
    color: rgba(255,255,255,0.85) !important;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.btn-nav-login:hover { background: rgba(255,255,255,0.1) !important; border-color: rgba(255,255,255,0.5); }

.btn-nav-cta {
    background: var(--gradient-accent);
    color: var(--dark) !important;
    border: none;
    border-radius: 8px;
    padding: 8px 20px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(212,160,23,0.4); }

/* =============================================
   HERO V2 — Full-width dark gold
   ============================================= */
.hero-v2 {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, #0a1628 0%, #0d1f33 40%, #1a2a4a 70%, #0d1f33 100%);
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(212,160,23,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(37,87,167,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-v2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,160,23,0.4), transparent);
}

.hero-v2-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,160,23,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,160,23,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-v2-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212,160,23,0.12);
    border: 1px solid rgba(212,160,23,0.3);
    color: #f0c040;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero-v2-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-v2-gold {
    background: linear-gradient(135deg, #d4a017, #f0c040, #d4a017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-v2-sub {
    color: rgba(255,255,255,0.72);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 620px;
}

.hero-v2-sub strong { color: rgba(255,255,255,0.9); }

/* Search bar */
.hero-v2-search {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 8px;
    margin-bottom: 20px;
    max-width: 780px;
}

.hero-v2-search-inner {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.hero-v2-field {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
    padding: 10px 16px;
    color: rgba(255,255,255,0.5);
}

.hero-v2-field i { font-size: 0.9rem; flex-shrink: 0; }

.hero-v2-field input {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.9rem;
    width: 100%;
}

.hero-v2-field input::placeholder { color: rgba(255,255,255,0.45); }

.hero-v2-field-border {
    border-left: 1px solid rgba(255,255,255,0.12);
}

.hero-v2-search-btn {
    background: linear-gradient(135deg, #d4a017, #f0c040);
    color: #0d1f33;
    border: none;
    border-radius: 10px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.hero-v2-search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(212,160,23,0.4);
}

/* Tags */
.hero-v2-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.hero-v2-tag-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-v2-tag {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    font-size: 0.78rem;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s;
}

.hero-v2-tag:hover {
    background: rgba(212,160,23,0.15);
    border-color: rgba(212,160,23,0.4);
    color: #f0c040;
}

/* Stats */
.hero-v2-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 20px 32px;
    max-width: 700px;
}

.hero-v2-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 100px;
    padding: 8px 16px;
}

.hero-v2-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f0c040;
    line-height: 1;
}

.hero-v2-stat-lbl {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
    text-align: center;
}

.hero-v2-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* =============================================
   SERVICES GRID
   ============================================= */
.services-grid-section {
    padding: 48px 0;
    background: #fff;
}

.service-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #d4a017;
    box-shadow: 0 12px 40px rgba(212,160,23,0.15);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0d1f33, #2557a7);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.3rem;
    color: #f0c040;
    transition: all 0.3s;
}

/* When service icon contains an uploaded image — show full size, no background */
.service-icon:has(img) {
    width: 100%;
    height: 130px;
    background: none;
    border-radius: 0;
    display: block;
    margin: 0 auto 14px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s;
}

.service-card:hover .service-icon img {
    transform: scale(1.03);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #d4a017, #f0c040);
    color: #0d1f33;
}

.service-title {
    font-weight: 700;
    font-size: 0.88rem;
    color: #1a3c5e;
    margin-bottom: 6px;
}

.service-desc {
    font-size: 0.78rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Increase text sizes specifically for cards containing large images to match visual proportion */
.service-card:has(img) .service-title {
    font-size: 1.05rem !important;
    margin-top: 10px !important;
    margin-bottom: 8px !important;
}

.service-card:has(img) .service-desc {
    font-size: 0.84rem !important;
    line-height: 1.45 !important;
}

/* =============================================
   EXPERT CONNECT BAND
   ============================================= */
.expert-band {
    background: linear-gradient(135deg, #0d1f33, #1a3c5e);
    padding: 32px 0;
    border-top: 2px solid rgba(212,160,23,0.3);
    border-bottom: 2px solid rgba(212,160,23,0.3);
}

.expert-band-title {
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.expert-band-sub {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    margin: 0;
}

/* =============================================
   MAIN NAVBAR
   ============================================= */
.ca-navbar {
    background: #fff;
    border-bottom: 2px solid rgba(212,160,23,0.25);
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 0 !important;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    min-height: 56px;
    padding: 0 !important;
    gap: 16px;
    transition: all 0.3s;
}

/* Brand */
.ca-navbar .navbar-brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 76px;
    margin-top: 0;
    margin-bottom: -20px;
    padding: 4px 28px 6px 12px !important;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 1;
    z-index: 1060;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.18));
}

.ca-navbar .navbar-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100vw;
    right: 0;
    bottom: 0;
    background: #ffffff;
    clip-path: polygon(0 0, 100% 0, 100% 56px, calc(100% - 22px) 100%, 0 100%);
    z-index: -1;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0d1f33, #2557a7);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0c040;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.brand-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0d1f33;
    letter-spacing: -0.5px;
}

.brand-ca { color: #d4a017; }

.brand-tagline {
    font-size: 0.62rem;
    color: #6b7280;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-top: 1px;
}

/* Nav links */
.ca-navbar .nav-link {
    color: #1a3c5e;
    font-size: 0.87rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.ca-navbar .nav-link:hover {
    color: #d4a017;
    background: rgba(212,160,23,0.08);
}

/* Mega menu dropdown */
.nav-dropdown { position: static; }

.nav-link-dropdown { cursor: pointer; }

/* Base mega menu — for small dropdowns */
.nav-mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
    min-width: 360px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    z-index: 2000;
}

.nav-mega-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid #e5e7eb;
    border-top: 1px solid #e5e7eb;
    rotate: 45deg;
}

.nav-dropdown:hover .nav-mega-menu { display: block; }

/* ── Full-width 6-col Services mega menu ── */
.nav-mega-menu--full {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 96vw;
    max-width: 1200px;
    border-radius: 16px;
    padding: 32px 32px 24px;
    display: none !important;
    flex-direction: row !important;
    gap: 0;
    min-width: unset;
    background: #ffffff !important;
    border: 1px solid #ede8d8;
    box-shadow: 0 24px 80px rgba(0,0,0,0.18);
    z-index: 2001;
}

.nav-dropdown:hover .nav-mega-menu--full {
    display: flex !important;
}

.nav-mega-menu--full::before { display: none; }

/* Each column */
.mega-col {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 18px;
    border-right: 1px solid #f3f0e8;
}
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child  { border-right: none; padding-right: 0; }

/* Column header — icon box + gold title */
.mega-col-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f5edd0;
}

.mega-col-icon {
    width: 48px;
    height: 48px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a227;
    font-size: 1.6rem;
    line-height: 1;
}

.mega-col-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #c9a227;
    letter-spacing: 0;
    line-height: 1.2;
}

/* List items */
.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-list li a {
    display: flex;
    align-items: baseline;
    gap: 7px;
    padding: 4px 0;
    font-size: 0.83rem;
    font-weight: 400;
    color: #444;
    text-decoration: none;
    transition: color 0.15s;
    white-space: nowrap;
    line-height: 1.5;
}

.mega-list li a::before {
    content: '›';
    color: #c9a227;
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
    font-weight: 700;
}

.mega-list li a:hover { color: #c9a227; }

/* Bottom bar inside mega menu */
.mega-footer-bar {
    display: flex;
    gap: 16px;
    padding: 10px 0 0;
    margin-top: 12px;
    border-top: 1px solid #f3f4f6;
}

.mega-footer-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: #d4a017;
    text-decoration: none;
    transition: color 0.2s;
}

.mega-footer-link:hover { color: #b8870f; }

.mega-section-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d4a017;
    padding: 0 12px 8px;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 8px;
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    font-size: 0.83rem;
    font-weight: 500;
    color: #1a3c5e;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
}

.mega-item i {
    width: 16px;
    color: #d4a017;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.mega-item:hover {
    background: linear-gradient(135deg, #fef9ec, #fff8e1);
    color: #d4a017;
}

/* CTA buttons */
.btn-nav-login {
    color: #1a3c5e;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 18px;
    border: 2px solid #1a3c5e;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-nav-login:hover {
    background: #1a3c5e;
    color: #fff;
}

.btn-nav-cta {
    background: linear-gradient(135deg, #d4a017, #f0c040);
    color: #0d1f33 !important;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 9px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(212,160,23,0.3);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,160,23,0.4);
}

/* Phone link & separator in merged navbar */
.nav-phone {
    color: #d4a017 !important;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    padding: 6px 10px;
    border-radius: 6px;
    transition: color 0.2s;
}
.nav-phone:hover { color: #b8870f !important; }

.nav-sep {
    width: 1px;
    height: 18px;
    background: rgba(26,60,94,0.18);
    flex-shrink: 0;
}

/* Mobile */
.mobile-toggle {
    background: none;
    border: 1px solid rgba(26,60,94,0.3);
    color: #1a3c5e;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-menu {
    background: #0d1f33;
    border-radius: 12px;
    margin: 8px 0 12px;
    padding: 16px;
}

.mobile-menu .nav-link { color: rgba(255,255,255,0.85) !important; }
.mobile-menu .nav-link:hover { color: #f0c040 !important; }

.ca-navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 0 !important;
}

.ca-navbar.scrolled .navbar-inner {
    height: 56px;
    min-height: 56px;
    padding: 0 !important;
}

.ca-navbar .site-logo-main,
.ca-navbar.scrolled .site-logo-main,
.site-logo-main {
    height: 68px !important;
    max-height: 68px !important;
    width: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    z-index: 1;
}

/* =============================================
   NAVBAR OVERRIDE — fix invisible links
   ============================================= */
.ca-navbar {
    background: #ffffff !important;
}

.ca-navbar .nav-link,
.ca-navbar .navbar-nav .nav-link {
    color: #1a3c5e !important;
    font-size: 0.87rem !important;
    font-weight: 600 !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
    transition: all 0.2s !important;
}

.ca-navbar .nav-link:hover,
.ca-navbar .navbar-nav .nav-link:hover {
    color: #d4a017 !important;
    background: rgba(212,160,23,0.08) !important;
}

.btn-nav-login {
    color: #1a3c5e !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    padding: 8px 18px !important;
    border: 2px solid #1a3c5e !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
    background: transparent !important;
}

.btn-nav-login:hover {
    background: #1a3c5e !important;
    color: #fff !important;
}

.btn-nav-cta {
    background: linear-gradient(135deg, #d4a017, #f0c040) !important;
    color: #0d1f33 !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    padding: 9px 22px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: all 0.3s !important;
    box-shadow: 0 4px 14px rgba(212,160,23,0.3) !important;
    border: none !important;
}

.btn-nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(212,160,23,0.4) !important;
    color: #0d1f33 !important;
}

.brand-name {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: #0d1f33 !important;
}

.brand-ca { color: #d4a017 !important; }

.brand-tagline {
    font-size: 0.62rem !important;
    color: #6b7280 !important;
    font-weight: 500 !important;
}

/* =============================================
   EXPERT CONSULTATION POPUP
   ============================================= */

/* Overlay */
.consult-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 18, 40, 0.75);
    backdrop-filter: blur(6px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: overlayFadeIn 0.3s ease;
}

.consult-overlay.active {
    display: flex;
}

@keyframes overlayFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Popup box */
.consult-popup {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 36px;
    width: 100%;
    max-width: 480px;
    position: relative;
    border: 2px solid rgba(212,160,23,0.35);
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    animation: popupSlideIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes popupSlideIn {
    from { transform: translateY(40px) scale(0.95); opacity: 0; }
    to   { transform: translateY(0)    scale(1);    opacity: 1; }
}

/* Close button */
.consult-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f3f4f6;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6b7280;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.consult-close:hover {
    background: #fee2e2;
    color: #ef4444;
}

/* Header */
.consult-header {
    text-align: center;
    margin-bottom: 28px;
}

.consult-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d1f33, #2557a7);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: #f0c040;
}

.consult-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: #d4a017;
    margin-bottom: 8px;
}

.consult-sub {
    color: #6b7280;
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

/* Form fields */
.consult-field {
    margin-bottom: 18px;
}

.consult-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #d4a017;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.consult-input {
    width: 100%;
    background: #1e2a3a;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 14px 16px;
    color: #ffffff;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
}

.consult-input::placeholder { color: rgba(255,255,255,0.35); }

.consult-input:focus {
    border-color: #d4a017;
    box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
}

.consult-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.consult-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4a017' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.consult-select option {
    background: #1e2a3a;
    color: #fff;
}

.consult-error {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 5px;
    font-weight: 500;
}

.consult-error.visible { display: block; }

/* Submit button */
.consult-submit {
    width: 100%;
    background: linear-gradient(135deg, #b8860b, #d4a017, #f0c040);
    color: #0d1f33;
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(212,160,23,0.35);
}

.consult-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212,160,23,0.5);
}

.consult-submit:active { transform: translateY(0); }

/* Success message */
.consult-success {
    text-align: center;
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #16a34a;
    border-radius: 10px;
    padding: 14px;
    font-weight: 600;
    font-size: 0.88rem;
    margin-top: 12px;
}

/* Floating trigger button */
.consult-float-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: linear-gradient(135deg, #d4a017, #f0c040);
    color: #0d1f33;
    border: none;
    border-radius: 50px;
    padding: 14px 22px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(212,160,23,0.45);
    z-index: 9000;
    transition: all 0.3s;
    animation: floatPulse 2.5s infinite;
}

.consult-float-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 40px rgba(212,160,23,0.55);
}

@keyframes floatPulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(212,160,23,0.45); }
    50%       { box-shadow: 0 8px 40px rgba(212,160,23,0.7); }
}

/* Responsive */
@media (max-width: 480px) {
    .consult-popup { padding: 28px 20px; }
    .consult-title { font-size: 1.4rem; }
    .consult-float-btn span { display: none; }
    .consult-float-btn { padding: 14px; border-radius: 50%; }
}

/* =============================================
   FLOATING CONSULT WIDGET
/* =============================================
   UNIQUE FLOATING CONNECT US HUB (SPEED-DIAL & DRAWER)
   ============================================= */

.ca-connect-widget {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: 'Inter', sans-serif;
    pointer-events: none;
}

.ca-connect-widget > * {
    pointer-events: auto;
}

/* ── Mobile & Active Backdrop Overlay ── */
.ca-connect-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 22, 40, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ca-connect-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* ── Floating Trigger Button ── */
.ca-connect-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0d1f33 0%, #152e4d 50%, #0d1f33 100%);
    color: #ffffff;
    border: 2px solid rgba(212, 160, 23, 0.7);
    border-radius: 60px;
    padding: 10px 22px 10px 14px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35), 0 0 20px rgba(212, 160, 23, 0.35);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 9995;
    outline: none;
}

.ca-connect-trigger:hover {
    transform: translateY(-4px) scale(1.03);
    border-color: #f0c040;
    box-shadow: 0 12px 38px rgba(0, 0, 0, 0.45), 0 0 28px rgba(212, 160, 23, 0.6);
}

.ca-connect-trigger:active {
    transform: scale(0.97);
}

/* Radar pulse wave effect */
.ca-trigger-pulse {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 60px;
    border: 2px solid rgba(212, 160, 23, 0.6);
    animation: caRingPulse 2.4s cubic-bezier(0.25, 1, 0.5, 1) infinite;
    pointer-events: none;
}

@keyframes caRingPulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    100% {
        transform: scale(1.22, 1.4);
        opacity: 0;
    }
}

.ca-trigger-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a017 0%, #b8860b 100%);
    color: #0d1f33;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    position: relative;
    box-shadow: 0 4px 14px rgba(212, 160, 23, 0.5);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ca-icon-close {
    display: none;
    font-size: 1.3rem;
}

.ca-connect-trigger.active .ca-icon-main {
    display: none;
}

.ca-connect-trigger.active .ca-icon-close {
    display: block;
}

.ca-connect-trigger.active .ca-trigger-icon-box {
    transform: rotate(90deg);
    background: #ef4444;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.5);
}

.ca-trigger-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    text-align: left;
}

.ca-trigger-status {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ca-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    display: inline-block;
    animation: caBlinkDot 1.6s infinite;
}

@keyframes caBlinkDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.ca-trigger-label {
    font-size: 0.98rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.ca-notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0d1f33;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation: caBadgeBounce 2s ease-in-out infinite;
}

@keyframes caBadgeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* ── Speed Dial Menu ── */
.ca-connect-menu {
    width: 360px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 2px solid rgba(212, 160, 23, 0.35);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 30px rgba(212, 160, 23, 0.15);
    padding: 22px;
    margin-bottom: 16px;
    transform-origin: bottom right;
    transform: translateY(20px) scale(0.92);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 9994;
}

.ca-connect-menu.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.ca-connect-menu-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 14px;
    margin-bottom: 16px;
}

.ca-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 10px #22c55e;
    display: inline-block;
}

.ca-menu-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0d1f33;
}

.ca-online-badge {
    font-size: 0.72rem;
    font-weight: 700;
    background: #fef3c7;
    color: #92400e;
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid #fde68a;
}

.ca-menu-sub {
    font-size: 0.8rem;
    color: #64748b;
    margin: 4px 0 0;
    line-height: 1.4;
}

.ca-connect-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ca-connect-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    text-decoration: none !important;
    color: inherit;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.ca-connect-card:hover {
    transform: translateY(-2px) translateX(2px);
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.ca-card-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #ffffff;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.ca-connect-card:hover .ca-card-icon-wrap {
    transform: scale(1.1);
}

.bg-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.bg-call {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.35);
}

.bg-form {
    background: linear-gradient(135deg, #d4a017 0%, #b8860b 100%);
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.4);
}

.bg-email {
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
}

.ca-card-info {
    flex: 1;
    min-width: 0;
}

.ca-card-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.ca-card-sub {
    font-size: 0.76rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ca-card-num {
    font-size: 0.78rem;
    color: #0284c7;
    font-weight: 600;
}

.ca-card-pill {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    background: #dcfce7;
    color: #15803d;
    padding: 2px 6px;
    border-radius: 12px;
}

.pill-gold {
    background: #fef3c7;
    color: #b45309;
}

.ca-card-arrow {
    color: #94a3b8;
    font-size: 0.82rem;
    transition: transform 0.2s ease, color 0.2s ease;
}

.ca-connect-card:hover .ca-card-arrow {
    color: #d4a017;
    transform: translateX(3px);
}

/* ── Interactive Callback Form Drawer ── */
.ca-form-drawer {
    width: 360px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 2px solid rgba(212, 160, 23, 0.4);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 30px rgba(212, 160, 23, 0.15);
    padding: 22px;
    margin-bottom: 16px;
    transform-origin: bottom right;
    transform: translateY(20px) scale(0.92);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 9994;
}

.ca-form-drawer.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.ca-drawer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 14px;
    margin-bottom: 16px;
}

.ca-drawer-back, .ca-drawer-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.ca-drawer-back:hover, .ca-drawer-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.ca-drawer-title-wrap {
    flex: 1;
}

.ca-drawer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0d1f33;
    margin: 0;
}

.ca-drawer-sub {
    font-size: 0.75rem;
    color: #64748b;
    margin: 2px 0 0;
}

.ca-drawer-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ca-form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ca-form-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #d4a017;
    margin: 0;
}

.ca-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.ca-input-icon {
    position: absolute;
    left: 14px;
    color: #94a3b8;
    font-size: 0.85rem;
    pointer-events: none;
}

.ca-input {
    width: 100%;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 14px 10px 38px;
    font-size: 0.88rem;
    color: #0f172a;
    outline: none;
    transition: all 0.2s ease;
}

.ca-input:focus {
    background: #ffffff;
    border-color: #d4a017;
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}

.ca-input.error {
    border-color: #ef4444;
}

.ca-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4a017' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.ca-field-err {
    display: none;
    color: #ef4444;
    font-size: 0.72rem;
    font-weight: 500;
    margin-top: 2px;
}

.ca-field-err.show {
    display: block;
}

.ca-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #b8860b 0%, #d4a017 50%, #f0c040 100%);
    color: #0d1f33;
    border: none;
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(212, 160, 23, 0.35);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.ca-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.5);
}

.ca-form-success {
    text-align: center;
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: 14px;
    padding: 16px 12px;
    margin-top: 6px;
}

.ca-success-icon {
    font-size: 2.2rem;
    color: #22c55e;
    margin-bottom: 8px;
}

.ca-form-success h5 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 4px;
}

.ca-form-success p {
    font-size: 0.8rem;
    color: #15803d;
    margin: 0;
    line-height: 1.4;
}

/* ── Mobile Responsive Adaptations ── */
@media (max-width: 576px) {
    .ca-connect-widget {
        bottom: 18px;
        right: 18px;
    }

    .ca-connect-menu,
    .ca-form-drawer {
        position: fixed;
        bottom: 80px;
        left: 14px;
        right: 14px;
        width: auto;
        max-width: calc(100vw - 28px);
        margin: 0 auto;
        border-radius: 20px;
        padding: 18px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        transform-origin: bottom center;
    }

    .ca-connect-trigger {
        padding: 8px 18px 8px 12px;
        gap: 10px;
    }

    .ca-trigger-icon-box {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .ca-trigger-label {
        font-size: 0.88rem;
    }
}

/* =============================================
   SITE LOGO — uploaded via dashboard
   ============================================= */

/* Full-width logo bar (shown above nav links when logo is set) */
.navbar-logo-fullwidth {
    width: 100%;
    padding: 10px 0 0;
    border-bottom: 1px solid rgba(212,160,23,0.15);
}
.navbar-logo-fullwidth a {
    display: block;
    line-height: 0;
}
.navbar-logo-fullwidth .site-logo-main {
    max-height: 80px;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left center;
    display: block;
    padding: 0 0 10px;
}

/* When logo is present, navbar-inner only shows nav + CTA (no brand column) */
.navbar-inner--has-logo {
    justify-content: space-between;
}

.site-logo-main {
    height: 100%;
    max-height: 56px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.site-logo-footer {
    max-height: 56px;
    max-width: 200px;
    object-fit: contain;
    display: block;
    margin-bottom: 12px;
}

/* Logo preview box in settings */
.logo-preview-box {
    background: #1E1E1E;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 10px;
    padding: 12px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* =============================================
   MEGA MENU — hard overrides (beat dynamic CSS)
   ============================================= */
.nav-mega-menu--full,
.nav-mega-menu--full * {
    box-sizing: border-box;
}

.nav-mega-menu--full {
    background: #ffffff !important;
    color: #374151 !important;
}

.nav-mega-menu--full .mega-col {
    background: transparent !important;
    display: block !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
}

.nav-mega-menu--full .mega-col-icon {
    background: transparent !important;
    color: #c9a227 !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 1.8rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.nav-mega-menu--full .mega-col-title {
    color: #c9a227 !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    background: transparent !important;
}

.nav-mega-menu--full .mega-list {
    background: transparent !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.nav-mega-menu--full .mega-list li {
    background: transparent !important;
}

.nav-mega-menu--full .mega-list li a {
    color: #374151 !important;
    background: transparent !important;
    font-size: 0.83rem !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 6px !important;
    padding: 4px 0 !important;
    white-space: nowrap !important;
}

.nav-mega-menu--full .mega-list li a::before {
    content: '›' !important;
    color: #c9a227 !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    flex-shrink: 0 !important;
}

.nav-mega-menu--full .mega-list li a:hover {
    color: #c9a227 !important;
}

.nav-mega-menu--full .mega-col-header {
    border-bottom: 2px solid #f5edd0 !important;
    padding-bottom: 12px !important;
    margin-bottom: 14px !important;
    background: transparent !important;
}

/* =============================================
   MEGA MENU FINAL OVERRIDE — premium dark style
   ============================================= */
.nav-mega-menu--full {
    background: #ffffff !important;
    border: 1px solid #ede8d8 !important;
    border-radius: 0 0 16px 16px !important;
    box-shadow: 0 24px 60px rgba(13,31,51,0.12) !important;
    padding: 36px 40px 28px !important;
    position: absolute !important;
    display: none !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 96vw !important;
    max-width: 1260px !important;
}

.nav-dropdown:hover .nav-mega-menu--full {
    display: flex !important;
    flex-direction: row !important;
    gap: 0 !important;
}

/* Columns */
.nav-mega-menu--full .mega-col {
    flex: 1 1 0 !important;
    padding: 0 24px !important;
    border-right: 1px solid #ede8d8 !important;
    background: transparent !important;
    display: block !important;
}
.nav-mega-menu--full .mega-col:first-child { padding-left: 0 !important; }
.nav-mega-menu--full .mega-col:last-child  { border-right: none !important; padding-right: 0 !important; }

/* Icon */
.nav-mega-menu--full .mega-col-icon {
    width: 52px !important;
    height: 52px !important;
    background: rgba(212,175,55,0.08) !important;
    border: 1px solid rgba(212,175,55,0.2) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #c9a227 !important;
    font-size: 1.4rem !important;
    margin-bottom: 10px !important;
}

/* Title */
.nav-mega-menu--full .mega-col-title {
    color: #c9a227 !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.2px !important;
    margin-bottom: 14px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid #ede8d8 !important;
    display: block !important;
}

/* Header container */
.nav-mega-menu--full .mega-col-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    margin-bottom: 14px !important;
    padding-bottom: 14px !important;
    border-bottom: 1px solid #ede8d8 !important;
    background: transparent !important;
}

/* List */
.nav-mega-menu--full .mega-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.nav-mega-menu--full .mega-list li a {
    color: #4b5563 !important;
    font-size: 0.83rem !important;
    font-weight: 500 !important;
    padding: 5px 0 !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 7px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    background: transparent !important;
    transition: color 0.15s !important;
    line-height: 1.5 !important;
}

.nav-mega-menu--full .mega-list li a::before {
    content: '›' !important;
    color: #d4a017 !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    flex-shrink: 0 !important;
    line-height: 1.4 !important;
}

.nav-mega-menu--full .mega-list li a:hover {
    color: #d4a017 !important;
}

/* SVG icons inside mega menu */
.nav-mega-menu--full .mega-col-icon {
    width: 56px !important;
    height: 56px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    margin-bottom: 8px !important;
}

.nav-mega-menu--full .mega-col-icon svg {
    width: 44px !important;
    height: 44px !important;
    display: block !important;
}

/* Fix: remove double border under icon — keep only mega-col-header border */
.nav-mega-menu--full .mega-col-title {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.nav-mega-menu--full .mega-col-header {
    border-bottom: 1px solid rgba(212,175,55,0.3) !important;
    padding-bottom: 14px !important;
    margin-bottom: 14px !important;
}

/* ── Mega menu hover gap fix ── */

/* Bridge pseudo-element fills the gap between nav link and panel */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 20px; /* covers any gap */
    background: transparent;
    z-index: 1999;
}

/* Use JS-controlled class instead of pure CSS :hover for the full menu */
.nav-mega-menu--full {
    transition: opacity 0.15s ease, transform 0.15s ease !important;
    opacity: 0 !important;
    pointer-events: none !important;
    display: flex !important;
    flex-direction: row !important;
    visibility: hidden;
}

.nav-mega-menu--full.is-open {
    opacity: 1 !important;
    pointer-events: all !important;
    visibility: visible !important;
}

/* Keep pure CSS hover working as fallback for non-full menus */
.nav-dropdown:hover .nav-mega-menu:not(.nav-mega-menu--full) {
    display: block;
}

/* Disable old CSS-only hover triggers for the full mega menu (JS handles it now) */
.nav-dropdown:hover .nav-mega-menu--full {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

.nav-dropdown:hover .nav-mega-menu--full.is-open {
    opacity: 1 !important;
    pointer-events: all !important;
    visibility: visible !important;
}

/* =============================================
   MEGA MENU — POSITIONING FIX (final)
   ============================================= */

/* nav is the positioning context */
.ca-navbar { position: sticky; top: 0; }
.ca-navbar .container { position: relative !important; }
.ca-navbar .navbar-inner { position: static; }
.ca-navbar ul.navbar-nav { position: static; }

/* li must be relative so ::after bridge works,
   but the MENU itself anchors to the nav */
.nav-dropdown { position: relative; }

/* Services dropdown specifically should be static so it anchors to container */
#servicesNav {
    position: static !important;
}

/* Full mega menu: anchors to the container edges & forces white background design */
body .ca-navbar .nav-mega-menu--full {
    background: #ffffff !important;
    border: 1px solid #ede8d8 !important;
    border-radius: 0 0 16px 16px !important;
    box-shadow: 0 24px 60px rgba(13,31,51,0.12) !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    max-width: 100% !important;
    transform: none !important;
    margin-top: 0 !important;
}

body .ca-navbar .nav-mega-menu--full .mega-col {
    border-right: 1px solid #ede8d8 !important;
}

body .ca-navbar .nav-mega-menu--full .mega-col-header {
    border-bottom: 1px solid #ede8d8 !important;
}

body .ca-navbar .nav-mega-menu--full .mega-list li a {
    color: #4b5563 !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    background: transparent !important;
}

body .ca-navbar .nav-mega-menu--full .mega-list li a:hover {
    background: linear-gradient(135deg, #fef9ec, #fff8e1) !important;
    color: #d4a017 !important;
    padding-left: 12px !important;
}

body .ca-navbar .nav-mega-menu--full .mega-col-title {
    color: #c9a227 !important;
}

/* =============================================
   FOOTER REDESIGN — MATCH SCREENSHOT
   ============================================= */
body .ca-footer {
    background: #0d0d0d !important;
    color: #a3a3a3 !important;
    padding: 48px 0 0 !important;
}

body .ca-footer .footer-brand {
    margin-bottom: 20px !important;
}

body .ca-footer .footer-about {
    font-size: 0.88rem !important;
    line-height: 1.65 !important;
    color: #a3a3a3 !important;
    margin-top: 10px !important;
    margin-bottom: 18px !important;
}

body .ca-footer .footer-heading {
    color: #d4a017 !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 16px !important;
    position: relative !important;
    padding-bottom: 6px !important;
}

body .ca-footer .footer-heading::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 30px !important;
    height: 2px !important;
    background: #d4a017 !important;
}

body .ca-footer .footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

body .ca-footer .footer-links li {
    margin-bottom: 8px !important;
}

body .ca-footer .footer-links li a {
    color: #a3a3a3 !important;
    text-decoration: none !important;
    font-size: 0.88rem !important;
    transition: color 0.2s !important;
    display: inline-flex !important;
    align-items: center !important;
}

body .ca-footer .footer-links li a::before {
    content: '›' !important;
    color: #d4a017 !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    margin-right: 8px !important;
    line-height: 1 !important;
}

body .ca-footer .footer-links li a:hover {
    color: #ffffff !important;
}

/* Get In Touch details list */
body .ca-footer .footer-contact-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

body .ca-footer .footer-contact-list li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 10px !important;
    font-size: 0.88rem !important;
    color: #a3a3a3 !important;
    line-height: 1.5 !important;
}

body .ca-footer .footer-contact-list li i {
    color: #d4a017 !important;
    font-size: 1rem !important;
    margin-top: 4px !important;
    flex-shrink: 0 !important;
    width: 16px !important;
    text-align: center !important;
}

/* Social Outline Icons */
body .ca-footer .footer-socials {
    display: flex !important;
    gap: 10px !important;
    margin-top: 16px !important;
}

body .ca-footer .footer-socials a {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(212,160,23,0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #d4a017 !important;
    font-size: 0.85rem !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
}

body .ca-footer .footer-socials a:hover {
    background: #d4a017 !important;
    color: #0d0d0d !important;
    border-color: #d4a017 !important;
    transform: translateY(-2px) !important;
}

/* Newsletter Subscription Row */
body .ca-footer .footer-newsletter-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    padding: 24px 0 !important;
    margin-top: 32px !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
}

body .ca-footer .newsletter-left {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
}

body .ca-footer .newsletter-icon-circle {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    border: 1.5px solid #d4a017 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #d4a017 !important;
    font-size: 1.25rem !important;
    flex-shrink: 0 !important;
}

body .ca-footer .newsletter-text-wrap {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

body .ca-footer .newsletter-title {
    color: #d4a017 !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
    letter-spacing: 0.5px !important;
}

body .ca-footer .newsletter-desc {
    color: #7c7c7c !important;
    font-size: 0.85rem !important;
    margin: 0 !important;
}

body .ca-footer .newsletter-form {
    display: flex !important;
    align-items: center !important;
    background: #111111 !important;
    border: 1px solid #222222 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 480px !important;
    min-width: 320px !important;
}

body .ca-footer .newsletter-input {
    flex: 1 !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    padding: 10px 16px !important;
    color: #ffffff !important;
    font-size: 0.88rem !important;
}

body .ca-footer .newsletter-input::placeholder {
    color: #4b5563 !important;
}

body .ca-footer .newsletter-btn {
    background: linear-gradient(135deg, #d4a017, #f0c040) !important;
    color: #0d0d0d !important;
    border: none !important;
    padding: 10px 20px !important;
    font-weight: 800 !important;
    font-size: 0.88rem !important;
    cursor: pointer !important;
    transition: opacity 0.2s !important;
    display: flex !important;
    align-items: center !important;
    white-space: nowrap !important;
}

body .ca-footer .newsletter-btn:hover {
    opacity: 0.9 !important;
}

/* Compact Newsletter in Get In Touch column */
body .ca-footer .footer-compact-newsletter {
    max-width: 100%;
}
body .ca-footer .compact-news-input {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    font-size: 0.78rem !important;
    border-radius: 6px !important;
    padding: 6px 10px !important;
    height: 34px !important;
}
body .ca-footer .compact-news-input:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: var(--secondary, #d4a017) !important;
    box-shadow: 0 0 0 2px rgba(212, 160, 23, 0.25) !important;
    outline: none !important;
}
body .ca-footer .compact-news-input::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 0.76rem !important;
}
body .ca-footer .btn-gold-compact {
    background: linear-gradient(135deg, var(--secondary, #d4a017), var(--secondary, #f0c040)) !important;
    color: #0d1f33 !important;
    border: none !important;
    border-radius: 6px !important;
    height: 34px !important;
    width: 36px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease !important;
}
body .ca-footer .btn-gold-compact:hover {
    transform: translateY(-1px) !important;
    filter: brightness(1.15) !important;
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3) !important;
}

/* Bottom strip styles */
body .ca-footer .footer-bottom-strip {
    background: #050505 !important;
    border-top: 1px solid #141414 !important;
    padding: 16px 0 !important;
}

body .ca-footer .footer-bottom-links {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}

body .ca-footer .footer-bottom-links a {
    color: #6b7280 !important;
    font-size: 0.8rem !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
}

body .ca-footer .footer-bottom-links a:hover {
    color: #ffffff !important;
}

body .ca-footer .link-sep {
    color: #222222 !important;
    font-size: 0.8rem !important;
    user-select: none !important;
}

body .ca-footer .footer-copyright {
    color: #6b7280 !important;
    font-size: 0.8rem !important;
}

/* Disable hover bridge pseudo-element for Services dropdown to prevent accidental hover triggers below the navbar */
#servicesNav::after {
    display: none !important;
}

/* =============================================
   TAX & LEGAL DROPDOWN STYLING
   ============================================= */
#taxLegalNav {
    position: static !important;
}

#taxLegalNav::after {
    display: none !important;
}

body .ca-navbar #taxLegalNav .nav-mega-menu--full {
    flex-direction: column !important;
}

body .ca-navbar .mega-columns-wrap {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    gap: 0 !important;
}

/* Card inside column */
body .ca-navbar .mega-column-card {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: #fdfaf4 !important;
    border: 1px solid #f3ecd8 !important;
    border-radius: 8px !important;
    padding: 10px !important;
    margin-top: 16px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}

body .ca-navbar .mega-column-card:hover {
    background: #fcf4e4 !important;
    border-color: #e6d3a8 !important;
    transform: translateY(-2px) !important;
}

body .ca-navbar .mega-card-icon {
    width: 32px !important;
    height: 32px !important;
    background: rgba(212,160,23,0.1) !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #c9a227 !important;
    font-size: 0.95rem !important;
    flex-shrink: 0 !important;
}

body .ca-navbar .mega-card-text {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

body .ca-navbar .mega-card-title {
    color: #1a3c5e !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

body .ca-navbar .mega-card-sub {
    color: #7c7c7c !important;
    font-size: 0.68rem !important;
    line-height: 1.3 !important;
}

body .ca-navbar .mega-card-arrow {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    background: rgba(212,160,23,0.12) !important;
    color: #c9a227 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.7rem !important;
    transition: transform 0.2s ease !important;
    flex-shrink: 0 !important;
}

body .ca-navbar .mega-column-card:hover .mega-card-arrow {
    transform: translateX(3px) !important;
}

/* Mega Bottom bar */
body .ca-navbar .mega-bottom-bar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    background: #fcfaf4 !important;
    border: 1px solid #ede8d8 !important;
    border-radius: 12px !important;
    padding: 16px 24px !important;
    margin-top: 24px !important;
    width: 100% !important;
}

body .ca-navbar .mega-bar-left {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
}

body .ca-navbar .mega-bar-avatar {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #d4a017, #f0c040) !important;
    color: #0d0d0d !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    flex-shrink: 0 !important;
}

body .ca-navbar .mega-bar-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

body .ca-navbar .mega-bar-title {
    color: #1a3c5e !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

body .ca-navbar .mega-bar-sub {
    color: #6b7280 !important;
    font-size: 0.78rem !important;
    margin: 0 !important;
}

body .ca-navbar .mega-bar-center {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    flex-wrap: wrap !important;
}

body .ca-navbar .mega-badge-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

body .ca-navbar .mega-badge-item i {
    font-size: 1.1rem !important;
    color: #c9a227 !important;
    background: rgba(212,160,23,0.08) !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

body .ca-navbar .mega-badge-item div {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.2 !important;
}

body .ca-navbar .mega-badge-item .badge-lbl {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    color: #1a3c5e !important;
}

body .ca-navbar .mega-badge-item .badge-val {
    font-size: 0.68rem !important;
    color: #6b7280 !important;
}

body .ca-navbar .mega-bar-right {
    flex-shrink: 0 !important;
}

body .ca-navbar .mega-bar-btn {
    display: inline-flex !important;
    align-items: center !important;
    background: linear-gradient(135deg, #d4a017, #f0c040) !important;
    color: #0d0d0d !important;
    border-radius: 8px !important;
    padding: 10px 20px !important;
    font-weight: 700 !important;
    font-size: 0.82rem !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 12px rgba(212,160,23,0.2) !important;
}

body .ca-navbar .mega-bar-btn:hover {
    transform: translateY(-1.5px) !important;
    box-shadow: 0 6px 16px rgba(212,160,23,0.3) !important;
}

/* =============================================
   FINAL FIXES
   ============================================= */

/* 1. Mega menu list text — force visible regardless of dynamic CSS */
.nav-mega-menu--full .mega-list li,
.nav-mega-menu--full .mega-list li a,
.nav-mega-menu--full .mega-list li a * {
    color: #1a1a1a !important;
    background: transparent !important;
    -webkit-text-fill-color: #1a1a1a !important;
}

.nav-mega-menu--full .mega-list li a::before {
    color: #d4a017 !important;
    -webkit-text-fill-color: #d4a017 !important;
}

.nav-mega-menu--full .mega-list li a:hover,
.nav-mega-menu--full .mega-list li a:hover * {
    color: #d4a017 !important;
    -webkit-text-fill-color: #d4a017 !important;
}

/* 2. Service card with image — remove hover background flash */
.service-card:has(img):hover .service-icon,
.service-card:has(img) .service-icon:has(img) {
    background: none !important;
    box-shadow: none !important;
}

.service-card:has(img):hover {
    border-color: #d4a017;
    box-shadow: 0 12px 40px rgba(212,160,23,0.15);
}

/* Remove side yellow bars on image service cards */
.service-icon img {
    display: block;
    width: 100%;
    height: 140px;
    object-fit: contain;
    border-radius: 10px;
    background: transparent;
}

.service-icon:has(img) {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
}

/* =============================================
   FOOTER — MOBILE HORIZONTAL LINKS
   ============================================= */
@media (max-width: 767px) {

    /* Each footer column heading stays normal */
    body .ca-footer .footer-heading {
        font-size: 0.82rem !important;
        margin-bottom: 10px !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }

    /* Turn the <ul> into a wrapping flex row */
    body .ca-footer .footer-links {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 0 4px !important;
    }

    /* Each <li> inline, add | separator */
    body .ca-footer .footer-links li {
        display: inline-flex !important;
        align-items: center !important;
        margin-bottom: 6px !important;
    }

    /* Pipe separator after each li except last */
    body .ca-footer .footer-links li::after {
        content: '|' !important;
        color: rgba(255,255,255,0.25) !important;
        margin: 0 8px !important;
        font-size: 0.75rem !important;
    }

    body .ca-footer .footer-links li:last-child::after {
        display: none !important;
    }

    /* Link styling */
    body .ca-footer .footer-links li a {
        font-size: 0.8rem !important;
        padding: 0 !important;
        white-space: nowrap !important;
    }

    /* Hide › arrow on mobile horizontal layout */
    body .ca-footer .footer-links li a::before {
        display: none !important;
    }

    /* Reduce footer column spacing on mobile */
    .ca-footer .col-lg-2,
    .ca-footer .col-lg-3 {
        margin-bottom: 20px !important;
    }
}

/* =============================================
   MOBILE NAVBAR FIX
   ============================================= */

/* Toggle button — always dark visible icon */
.mobile-toggle {
    background: #fff !important;
    border: 1.5px solid #d4a017 !important;
    color: #1a3c5e !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    font-size: 1.1rem !important;
    flex-shrink: 0 !important;
}

.mobile-toggle i {
    color: #1a3c5e !important;
    font-size: 1.1rem !important;
    line-height: 1 !important;
}

.mobile-toggle:hover {
    background: #d4a017 !important;
    border-color: #d4a017 !important;
}

.mobile-toggle:hover i {
    color: #fff !important;
}

/* Mobile menu panel */
.mobile-menu {
    background: #0d1f33 !important;
    border-radius: 12px !important;
    margin: 4px 0 12px !important;
    padding: 20px 16px !important;
    border: 1px solid rgba(212,175,55,0.2) !important;
}

.mobile-menu .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-size: 0.92rem !important;
    font-weight: 500 !important;
    padding: 10px 12px !important;
    border-radius: 8px !important;
    display: block !important;
}

.mobile-menu .nav-link:hover {
    color: #d4a017 !important;
    background: rgba(212,175,55,0.08) !important;
}

/* Make sure collapse shows on mobile */
@media (max-width: 991px) {
    .ca-navbar .d-lg-flex { display: none !important; }
    .ca-navbar .d-lg-none { display: flex !important; }

    .navbar-inner {
        flex-wrap: wrap !important;
    }
}

/* =============================================
   MOBILE TOGGLE — SVG HAMBURGER FINAL FIX
   ============================================= */

/* Hide on desktop — Bootstrap d-lg-none handles this but force it */
@media (min-width: 992px) {
    .mobile-toggle { display: none !important; }
}

/* Show on mobile with proper styling */
@media (max-width: 991px) {
    .mobile-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px !important;
        height: 44px !important;
        background: #ffffff !important;
        border: 2px solid #d4a017 !important;
        border-radius: 10px !important;
        cursor: pointer !important;
        padding: 0 !important;
        flex-shrink: 0 !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    }

    .mobile-toggle svg rect {
        fill: #1a3c5e !important;
    }

    .mobile-toggle:hover {
        background: #d4a017 !important;
    }

    .mobile-toggle:hover svg rect {
        fill: #ffffff !important;
    }
}


/* ==========================================================================
   CACampus — Home Page Premium UI, Container & Structure Enhancements
   ========================================================================== */

/* Container & Global Spacing */
.container {
    max-width: 1320px;
    padding-left: 20px;
    padding-right: 20px;
}

section {
    padding: 90px 0;
    position: relative;
}

/* Typography & Badges */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(212,160,23,0.12), rgba(37,87,167,0.08));
    color: #b8860b;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(212,160,23,0.25);
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(212,160,23,0.08);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: #0d1f33;
    line-height: 1.25;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.section-title span {
    background: linear-gradient(135deg, #1a3c5e 0%, #2557a7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 640px;
}

/* 1. HERO V2 Section */
.hero-v2 {
    background: #050811 !important;
    border-bottom: 1px solid rgba(212,160,23,0.2);
}

/* 2. SERVICES GRID SECTION */
.services-grid-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 90px 0;
}

.services-grid-section .service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 22px;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 18px rgba(13, 31, 51, 0.04);
    position: relative;
    overflow: hidden;
}

.services-grid-section .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4a017, #f0c040);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.services-grid-section .service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,160,23,0.4);
    box-shadow: 0 16px 36px rgba(13, 31, 51, 0.1);
}

.services-grid-section .service-card:hover::before {
    opacity: 1;
}

.services-grid-section .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(26,60,94,0.06), rgba(37,87,167,0.12));
    border: 1px solid rgba(26,60,94,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1a3c5e;
    margin: 0 auto 18px;
    transition: all 0.35s ease;
}

.services-grid-section .service-card:hover .service-icon {
    background: linear-gradient(135deg, #1a3c5e, #2557a7);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.08);
}

/* Service Card Image Icons — Restore full size */
.services-grid-section .service-card:has(img):hover .service-icon,
.services-grid-section .service-card:has(img) .service-icon:has(img),
.services-grid-section .service-icon:has(img) {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    border-radius: 0 !important;
    margin: 0 auto 14px !important;
}

.services-grid-section .service-icon img {
    display: block !important;
    width: 100% !important;
    height: 140px !important;
    object-fit: contain !important;
    border-radius: 10px !important;
    background: transparent !important;
    transition: transform 0.3s ease !important;
}

.services-grid-section .service-card:hover .service-icon img {
    transform: scale(1.05) !important;
}

.services-grid-section .service-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #0d1f33;
    margin-bottom: 10px;
    transition: color 0.25s ease;
}

.services-grid-section .service-card:hover .service-title {
    color: #1a3c5e;
}

.services-grid-section .service-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
}

/* 3. WHY CHOOSE US SECTION */
.why-choose-section {
    background: linear-gradient(180deg, #070a12 0%, #0d1322 100%) !important;
    color: #ffffff !important;
    padding: 100px 0 !important;
    border-top: 1px solid rgba(212,175,55,0.15);
    border-bottom: 1px solid rgba(212,175,55,0.15);
}

.wcu-header {
    margin-bottom: 60px;
}

.wcu-badge-container {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 14px;
}

.wcu-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4a017);
}

.wcu-badge-container .wcu-line:last-child {
    background: linear-gradient(90deg, #d4a017, transparent);
}

.wcu-badge-main {
    color: #d4a017;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.wcu-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.wcu-header-icon {
    font-size: 1.3rem;
    color: #d4a017;
    margin-bottom: 18px;
}

.wcu-subtitle {
    color: #94a3b8;
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

.wcu-card {
    background: rgba(17, 24, 39, 0.7) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212,175,55,0.18) !important;
    border-radius: 16px !important;
    padding: 30px 20px !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    height: 100%;
}

.wcu-card:hover {
    transform: translateY(-7px) !important;
    border-color: #d4a017 !important;
    box-shadow: 0 14px 35px rgba(212,175,55,0.18) !important;
    background: rgba(26, 36, 56, 0.85) !important;
}

.wcu-card-icon-wrap {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    border: 1.5px solid rgba(212,175,55,0.4) !important;
    background: rgba(212,175,55,0.08) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #d4a017 !important;
    font-size: 1.6rem !important;
    margin-bottom: 22px !important;
    transition: all 0.35s ease !important;
    overflow: hidden !important;
    padding: 6px !important;
}

.wcu-custom-icon {
    width: 44px !important;
    height: 44px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    transition: transform 0.3s ease !important;
}

.wcu-card:hover .wcu-card-icon-wrap {
    background: linear-gradient(135deg, #d4a017, #f0c040) !important;
    color: #0b0f19 !important;
    border-color: transparent !important;
    transform: scale(1.1) !important;
}

.wcu-card:hover .wcu-custom-icon {
    transform: scale(1.05) !important;
}

.wcu-card-title {
    font-size: 0.98rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: 0.6px !important;
    margin-bottom: 12px !important;
    text-transform: uppercase !important;
}

.wcu-card-desc {
    font-size: 0.85rem !important;
    color: #94a3b8 !important;
    line-height: 1.6 !important;
}

/* 4. EXPERT CONNECT BAND */
/* 4. EXPERT CONNECT BAND */
.expert-band,
div.expert-band {
    background: linear-gradient(135deg, #091526 0%, #162a45 100%) !important;
    border-top: 1px solid rgba(212,160,23,0.3) !important;
    border-bottom: 1px solid rgba(212,160,23,0.3) !important;
    padding: 42px 0 !important;
    box-shadow: inset 0 2px 20px rgba(0,0,0,0.4) !important;
}

.expert-band .expert-band-title,
div.expert-band h3.expert-band-title,
div.expert-band h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 8px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.expert-band .expert-band-sub,
div.expert-band p.expert-band-sub,
div.expert-band p {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 1.02rem !important;
    line-height: 1.55 !important;
    margin-bottom: 0 !important;
}

.expert-band .btn-hero-primary,
div.expert-band a.btn-hero-primary {
    background: #d4a017 !important;
    color: #0a1628 !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(212, 160, 23, 0.4) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}

.expert-band .btn-hero-primary:hover,
div.expert-band a.btn-hero-primary:hover {
    background: #e5b32a !important;
    color: #0a1628 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.6) !important;
}

.expert-band .btn-hero-secondary,
div.expert-band a.btn-hero-secondary {
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    font-weight: 600 !important;
    padding: 10px 22px !important;
    border-radius: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}

.expert-band .btn-hero-secondary i,
div.expert-band a.btn-hero-secondary i {
    color: rgba(255, 255, 255, 0.9) !important;
}

.expert-band .btn-hero-secondary:hover,
div.expert-band a.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.22) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35) !important;
}

.expert-band .btn-hero-secondary:hover i,
div.expert-band a.btn-hero-secondary:hover i {
    color: #ffffff !important;
}

/* 5. HOW IT WORKS SECTION */
.how-section {
    background: #ffffff;
    padding: 95px 0;
}

.step-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 28px;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 6px 20px rgba(13,31,51,0.04);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(13,31,51,0.09);
    border-color: rgba(37,87,167,0.3);
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3c5e, #2557a7);
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 24px rgba(26,60,94,0.25);
    transition: transform 0.35s ease;
}

.step-card:nth-child(even) .step-number {
    background: linear-gradient(135deg, #d4a017, #f0c040);
    color: #0d1f33;
    box-shadow: 0 8px 24px rgba(212,160,23,0.3);
}

.step-card:hover .step-number {
    transform: scale(1.1);
}

.step-card h5 {
    font-weight: 700;
    font-size: 1.15rem;
    color: #0d1f33;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 0;
}

/* 6. FEATURED CA PROFESSIONALS SECTION */
.professionals-section {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 95px 0;
}

.prof-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.prof-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(13,31,51,0.12);
    border-color: rgba(212,160,23,0.35);
}

.prof-card-header {
    background: linear-gradient(135deg, #0d1f33 0%, #1a3c5e 100%);
    padding: 1.8rem 1.5rem;
    position: relative;
    text-align: center;
}

.prof-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a017, #f0c040);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #0d1f33;
    border: 3px solid rgba(255,255,255,0.3);
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.prof-verified {
    position: absolute;
    top: 1rem; right: 1rem;
    background: rgba(34,197,94,0.18);
    border: 1px solid rgba(34,197,94,0.4);
    color: #4ade80;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 50px;
    padding: 3px 10px;
}

.prof-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 0.9rem;
    margin-bottom: 0.2rem;
}

.prof-designation {
    color: rgba(255,255,255,0.7);
    font-size: 0.83rem;
}

.prof-card-body {
    padding: 1.4rem 1.5rem;
}

.prof-tag {
    display: inline-block;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    padding: 4px 12px;
    margin: 2px;
    border: 1px solid #dbeafe;
}

.prof-rating {
    color: #f59e0b;
    font-size: 0.95rem;
    margin-top: 10px;
}

.prof-meta {
    font-size: 0.83rem;
    color: #64748b;
    margin-top: 10px;
    border-top: 1px solid #f1f5f9;
    padding-top: 10px;
}

.btn-connect {
    background: linear-gradient(135deg, #1a3c5e, #2557a7);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.65rem 1.2rem;
    width: 100%;
    margin-top: 14px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(26,60,94,0.2);
}

.btn-connect:hover {
    background: linear-gradient(135deg, #d4a017, #f0c040);
    color: #0d1f33;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,160,23,0.35);
}

/* 7. TESTIMONIALS SECTION */
.testimonials-section {
    background: #ffffff;
    padding: 95px 0;
}

.testi-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 34px 28px;
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 6px 22px rgba(0,0,0,0.04);
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(13,31,51,0.08);
    border-color: rgba(212,160,23,0.3);
}

.testi-quote {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #d4a017;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.testi-text {
    color: #334155;
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    font-style: italic;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3c5e, #2557a7);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 12px rgba(26,60,94,0.2);
}

.testi-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0f172a;
}

.testi-role {
    font-size: 0.8rem;
    color: #64748b;
}

.testi-stars {
    color: #f59e0b;
    font-size: 0.88rem;
    margin-top: 3px;
}

/* 8. FAQ SECTION */
.faq-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 95px 0;
}

.faq-accordion .faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 14px !important;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.faq-accordion .faq-item:hover {
    box-shadow: 0 8px 24px rgba(13,31,51,0.06);
    border-color: rgba(37,87,167,0.25);
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 1.02rem;
    color: #0f172a;
    background: #ffffff;
    padding: 22px 26px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #f0f7ff, #e8f0fe);
    color: #1a3c5e;
    font-weight: 700;
}

.faq-accordion .accordion-body {
    padding: 18px 26px 24px;
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.7;
    background: #ffffff;
}

/* 9. CTA SECTION — High Specificity Premium Overhaul */
.cta-section,
section.cta-section {
    background: radial-gradient(circle at 50% 30%, #162f52 0%, #0c1c30 55%, #071220 100%) !important;
    border-top: 1px solid rgba(212,160,23,0.3) !important;
    border-bottom: 1px solid rgba(212,160,23,0.3) !important;
    padding: 95px 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

.cta-section .section-badge,
section.cta-section span.section-badge {
    background: rgba(212, 160, 23, 0.15) !important;
    color: #f0c040 !important;
    border: 1.5px solid rgba(212, 160, 23, 0.45) !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    padding: 7px 20px !important;
    border-radius: 50px !important;
    display: inline-block !important;
    box-shadow: 0 0 16px rgba(212, 160, 23, 0.2) !important;
}

.cta-section .section-title,
section.cta-section h2.section-title,
section.cta-section h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 2.75rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.25 !important;
    margin-top: 14px !important;
    margin-bottom: 16px !important;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6) !important;
}

.cta-section .section-title span,
section.cta-section h2.section-title span,
section.cta-section h2 span {
    color: #f0c040 !important;
    background: linear-gradient(135deg, #ffd700 0%, #d4a017 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 800 !important;
    display: inline-block !important;
}

.cta-section .section-desc,
section.cta-section p.section-desc,
section.cta-section p {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 1.12rem !important;
    line-height: 1.65 !important;
    max-width: 680px !important;
    margin: 0 auto 2.4rem auto !important;
}

.cta-section .btn-cta-white,
section.cta-section a.btn-cta-white {
    background: linear-gradient(135deg, #f0c040 0%, #d4a017 100%) !important;
    color: #0d1f33 !important;
    font-weight: 700 !important;
    font-size: 1.02rem !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 14px 30px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: all 0.28s ease !important;
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.35) !important;
}

.cta-section .btn-cta-white:hover,
section.cta-section a.btn-cta-white:hover {
    background: linear-gradient(135deg, #fcd34d 0%, #e5b32a 100%) !important;
    color: #0d1f33 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.55) !important;
}

.cta-section .btn-cta-outline,
section.cta-section a.btn-cta-outline {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.45) !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 1.02rem !important;
    padding: 14px 30px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    transition: all 0.28s ease !important;
}

.cta-section .btn-cta-outline i,
section.cta-section a.btn-cta-outline i {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: color 0.28s ease !important;
}

.cta-section .btn-cta-outline:hover,
section.cta-section a.btn-cta-outline:hover {
    border-color: #ffffff !important;
    background: rgba(255, 255, 255, 0.22) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35) !important;
}

.cta-section .btn-cta-outline:hover i,
section.cta-section a.btn-cta-outline:hover i {
    color: #ffffff !important;
}

/* 10. FOOTER */
.ca-footer {
    background: #070b12;
    color: rgba(255,255,255,0.7);
    padding: 85px 0 0;
}

.footer-heading {
    color: #d4a017;
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 22px;
}

.footer-about {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 24px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #d4a017;
    padding-left: 4px;
}

.footer-newsletter-row {
    margin-top: 60px;
    padding: 35px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,160,23,0.2);
    border-radius: 20px;
}

.newsletter-input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #ffffff;
    border-radius: 10px;
    padding: 12px 18px;
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.newsletter-btn {
    background: linear-gradient(135deg, #d4a017, #f0c040);
    color: #0d1f33;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    transition: all 0.25s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,160,23,0.4);
}

/* ── Multi-Banner Hero Carousel Styles ─────────── */
.hero-carousel-section {
    background: #000000 !important;
    position: relative;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    height: calc(100vh - 56px);
    min-height: calc(100vh - 56px);
    max-height: calc(100vh - 56px);
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-carousel-section {
        height: auto;
        min-height: unset;
        max-height: calc(100vh - 56px);
    }
}

.hero-carousel-section .carousel,
.hero-carousel-section .carousel-inner,
.hero-carousel-section .carousel-item {
    width: 100%;
    height: 100%;
}

.hero-slide-img-wrap {
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 56px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    overflow: hidden;
}

.hero-slide-img-wrap picture,
.hero-slide-img-wrap a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 56px);
}

.hero-carousel-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: calc(100vh - 56px);
    object-fit: contain;
    object-position: center center;
    display: block;
    margin: 0 auto;
}

.hero-carousel-section .hero-slide-content-wrap {
    min-height: calc(100vh - 56px);
    max-height: calc(100vh - 56px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
}
/* ── Bottom-Right Circular Arrow Navigation ────── */
.carousel-control-prev.hero-carousel-arrow,
.carousel-control-next.hero-carousel-arrow,
.hero-nav-btn {
    position: absolute !important;
    top: auto !important;
    bottom: 28px !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 2.5px solid #d4a017 !important;
    color: #d4a017 !important;
    opacity: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.25s ease !important;
    transform: none !important;
    z-index: 25 !important;
    cursor: pointer !important;
    padding: 0 !important;
    line-height: 1 !important;
    outline: none !important;
}

/* Hide any i tag to ensure pure crisp CSS chevron */
.carousel-control-prev.hero-carousel-arrow i,
.carousel-control-next.hero-carousel-arrow i,
.hero-nav-btn i {
    display: none !important;
}

/* Pure CSS Chevron Icons */
.carousel-control-prev.hero-carousel-arrow::after,
.hero-nav-prev::after {
    content: '' !important;
    display: block !important;
    width: 11px !important;
    height: 11px !important;
    border-top: 2.5px solid #d4a017 !important;
    border-left: 2.5px solid #d4a017 !important;
    transform: rotate(-45deg) !important;
    margin-left: 3px !important;
    transition: border-color 0.25s ease !important;
}

.carousel-control-next.hero-carousel-arrow::after,
.hero-nav-next::after {
    content: '' !important;
    display: block !important;
    width: 11px !important;
    height: 11px !important;
    border-top: 2.5px solid #d4a017 !important;
    border-right: 2.5px solid #d4a017 !important;
    transform: rotate(45deg) !important;
    margin-right: 3px !important;
    transition: border-color 0.25s ease !important;
}

.carousel-control-prev.hero-carousel-arrow:hover,
.carousel-control-next.hero-carousel-arrow:hover,
.hero-nav-btn:hover,
.hero-nav-btn:focus {
    background: #d4a017 !important;
    border-color: #d4a017 !important;
    transform: translateY(-2px) scale(1.06) !important;
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.5) !important;
    opacity: 1 !important;
}

.carousel-control-prev.hero-carousel-arrow:hover::after,
.carousel-control-next.hero-carousel-arrow:hover::after,
.hero-nav-btn:hover::after {
    border-color: #ffffff !important;
}

.carousel-control-prev.hero-carousel-arrow:active,
.carousel-control-next.hero-carousel-arrow:active,
.hero-nav-btn:active {
    transform: translateY(0) scale(0.95) !important;
}

/* Side by side at bottom-right (left button, right button) */
.carousel-control-prev.hero-arrow-left,
.hero-nav-prev {
    left: auto !important;
    right: 274px !important;
}

.carousel-control-next.hero-arrow-right,
.hero-nav-next {
    right: 218px !important;
    left: auto !important;
}

.hero-carousel-dots {
    display: none !important;
}

@media (max-width: 768px) {
    .carousel-control-prev.hero-carousel-arrow,
    .carousel-control-next.hero-carousel-arrow,
    .hero-nav-btn {
        bottom: 16px !important;
        width: 36px !important;
        height: 36px !important;
        border-width: 2px !important;
    }
    .carousel-control-prev.hero-carousel-arrow::after,
    .hero-nav-prev::after {
        width: 9px !important;
        height: 9px !important;
        border-width: 2px !important;
        margin-left: 2px !important;
    }
    .carousel-control-next.hero-carousel-arrow::after,
    .hero-nav-next::after {
        width: 9px !important;
        height: 9px !important;
        border-width: 2px !important;
        margin-right: 2px !important;
    }
    .carousel-control-prev.hero-arrow-left,
    .hero-nav-prev {
        right: 64px !important;
        left: auto !important;
    }
    .carousel-control-next.hero-arrow-right,
    .hero-nav-next {
        right: 20px !important;
        left: auto !important;
    }
}

/* ── Suppress Somee.com Server Ads & Host Banners ──────────────────────── */
center,
center:has(a[href*="somee.com"]),
center:has(a[href*="Somee.com"]),
a[href*="somee.com"],
a[href*="Somee.com"],
div[style*="z-index: 2147483647"],
div[style*="z-index:2147483647"],
div[style*="opacity: 0.9"][style*="bottom: 0px"],
div[onmouseover*="S_ssac"],
div[onmouseover*="s_ssac"],
body > center,
html > center,
body > div[style*="height: 65px"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    width: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    top: -99999px !important;
    left: -99999px !important;
    clip: rect(0, 0, 0, 0) !important;
    overflow: hidden !important;
}


