/* ============================================
   PK-BROKER - Dark Luxury Car Insurance
   Inspired by Premium Yacht/Luxury Design
   ============================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

/* ---- CSS Variables ---- */
:root {
    /* Navy-White High Contrast Palette */
    --dark-900: #FFFFFF;
    --dark-800: #F9FAFB;
    --dark-700: #F3F4F6;
    --dark-600: #E5E7EB;
    --dark-500: #D1D5DB;
    --dark-400: #9CA3AF;
    --dark-300: #6B7280;
    --dark-200: #4B5563;
    --dark-100: #374151;

    /* Blue Accent - Professional */
    --gold: #4682B4;
    --gold-light: #6BA3CC;
    --gold-dark: #2D5A85;
    --gold-glow: rgba(70, 130, 180, 0.18);

    /* Navy Accent */
    --navy: #1B2A4A;
    --navy-light: #2D4A7A;
    --navy-glow: rgba(27, 42, 74, 0.15);

    /* Text */
    --text-primary: #1B2A4A;
    --text-secondary: #4B5563;
    --text-muted: #9CA3AF;
    --text-gold: var(--gold);

    /* Typography */
    --font-serif: 'Kanit', sans-serif;
    --font-sans: 'Kanit', sans-serif;
    --font-thai: 'Kanit', sans-serif;

    /* Spacing */
    --section-padding: clamp(80px, 10vw, 140px);
    --container-width: 1300px;
    --container-padding: clamp(20px, 4vw, 40px);

    /* Transitions */
    --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Effects */
    --glass-border: rgba(27, 42, 74, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.92);
    --card-border: 1px solid rgba(27, 42, 74, 0.12);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px; /* Offset for static/sticky navbar */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
    background: #FFFFFF;
    line-height: 1.75;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul,
ol {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-thai);
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 500;
}

.text-italic {
    font-weight: 300;
}

/* ---- Over-Dark-BG White Text Overrides ---- */
.hero,
.page-header,
.footer,
.cta-section,
.stats-bar,
.process-section-dark {
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.55);
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-border: 1px solid rgba(255, 255, 255, 0.12);
}

.navbar {
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
}

.navbar.scrolled {
    --text-primary: #1B2A4A;
    --text-secondary: #4B5563;
    --text-muted: #9CA3AF;
}

.text-gold {
    color: var(--gold);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.section-label::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.5s var(--ease-luxury);
    position: relative;
}

.btn-gold {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    border-radius: 8px;
}

.btn-gold:hover {
    background: var(--gold);
    color: #FFFFFF;
    box-shadow: 0 8px 30px rgba(70, 130, 180, 0.35);
    transform: translateY(-2px);
}

.btn-filled {
    background: var(--gold);
    color: #FFFFFF;
    border: 1px solid var(--gold);
    border-radius: 8px;
}

.btn-filled:hover {
    background: var(--gold-dark);
    box-shadow: 0 8px 30px rgba(70, 130, 180, 0.35);
    transform: translateY(-2px);
}

.btn-white {
    background: transparent;
    color: #1B2A4A;
    border: 1px solid rgba(27, 42, 74, 0.15);
}

.btn-white:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline-blue {
    background: transparent;
    color: var(--gold-dark);
    border: 1.5px solid var(--gold);
    border-radius: 8px;
}

.btn-outline-blue:hover {
    background: var(--gold);
    color: #FFFFFF;
    box-shadow: 0 8px 30px rgba(70, 130, 180, 0.35);
    transform: translateY(-2px);
}

.btn-gradient {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.3);
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: #FFFFFF;
    box-shadow: 0 12px 35px rgba(0, 210, 255, 0.4);
    transform: translateY(-3px);
}

/* ---- Navbar ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.5s var(--ease-luxury);
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(27, 42, 74, 0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-logo .logo-shield {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    border: 2px solid rgba(70, 130, 180, 0.3);
    box-shadow: 0 2px 12px rgba(70, 130, 180, 0.15), 0 0 0 3px rgba(70, 130, 180, 0.06);
    transition: all 0.4s ease;
}

.nav-logo:hover .logo-shield {
    border-color: rgba(70, 130, 180, 0.6);
    box-shadow: 0 4px 20px rgba(70, 130, 180, 0.25), 0 0 0 5px rgba(70, 130, 180, 0.08);
    transform: scale(1.12);
}

.nav-logo .logo-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.nav-logo .logo-sub {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

/* Default (Light Text for Dark Backgrounds) */
.nav-links a:not(.btn) {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #D1D5DB;
    /* Light gray */
    position: relative;
    padding: 4px 0;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-luxury);
}

.nav-links a:hover,
.nav-links a.active {
    color: #FFFFFF;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-logo .logo-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: #FFFFFF;
    letter-spacing: 0.05em;
}

.nav-logo .logo-sub {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

/* Scrolled or Light Background (Dark Text for White Backgrounds) */
.navbar.scrolled .nav-links a:not(.btn),
.navbar.navbar-light-bg .nav-links a:not(.btn) {
    color: #4B5563;
    font-weight: 500;
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active,
.navbar.navbar-light-bg .nav-links a:hover,
.navbar.navbar-light-bg .nav-links a.active {
    color: #1B2A4A;
}

.navbar.scrolled .nav-logo .logo-text,
.navbar.navbar-light-bg .nav-logo .logo-text {
    color: #1B2A4A;
}

.navbar.scrolled .nav-logo .logo-sub,
.navbar.navbar-light-bg .nav-logo .logo-sub {
    color: #6B7280;
}

.nav-cta .btn {
    padding: 10px 28px;
    font-size: 0.75rem;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: #1B2A4A;
    font-size: 1.2rem;
    cursor: pointer;
}

.navbar.scrolled .menu-toggle {
    color: #1B2A4A;
    border-color: rgba(15, 23, 42, 0.2);
}

/* ---- Cart Icon ---- */
.nav-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-left: 12px;
    flex-shrink: 0;
}

.nav-cart:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.08);
    color: #fff;
}

.navbar.scrolled .nav-cart,
.navbar.navbar-light-bg .nav-cart {
    background: rgba(70, 130, 180, 0.08);
    border-color: rgba(70, 130, 180, 0.2);
    color: #1B2A4A;
}

.navbar.scrolled .nav-cart:hover,
.navbar.navbar-light-bg .nav-cart:hover {
    background: rgba(70, 130, 180, 0.15);
    color: #4682B4;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, #D4A843, #C49B38);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(212, 168, 67, 0.4);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.cart-badge.active {
    opacity: 1;
    transform: scale(1);
}

/* ---- Hero Section (Original for Subpages) ---- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: contrast(1.05) saturate(1.1);
    image-rendering: -webkit-optimize-contrast;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.35) 35%, rgba(15, 23, 42, 0.45) 60%, rgba(15, 23, 42, 0.9) 100%),
        linear-gradient(90deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.05) 40%, rgba(15, 23, 42, 0.7) 85%, rgba(15, 23, 42, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--container-padding);
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #D1D5DB;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 1s 0.3s var(--ease-luxury) forwards;
    padding: 10px 28px;
    border: 1px solid rgba(70, 130, 180, 0.3);
    border-radius: 100px;
    display: inline-block;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-headline {
    opacity: 0;
    animation: fadeInUp 1s 0.5s var(--ease-luxury) forwards;
}

.hero h1 {
    font-weight: 700;
    line-height: 1.0;
    margin-bottom: 12px;
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    letter-spacing: 0.03em;
    color: #FFFFFF;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-deco-line {
    width: 80px;
    height: 1px;
    margin: 16px auto;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-accent-text {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 300;
    color: #D1D5DB;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.gold-gradient {
    background: linear-gradient(135deg, #6BA3CC 0%, #4682B4 50%, #2D5A85 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.15em;
    letter-spacing: 0.08em;
    filter: drop-shadow(0 2px 10px rgba(70, 130, 180, 0.3));
}

.hero-desc {
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    color: #E5E7EB;
    max-width: 550px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s 0.7s var(--ease-luxury) forwards;
}

.hero-cta {
    opacity: 0;
    animation: fadeInUp 1s 0.9s var(--ease-luxury) forwards;
}

/* ====== HERO BUTTON STYLES ====== */
.btn {
    text-decoration: none;
    transition: all 0.4s var(--ease-luxury, ease);
    cursor: pointer;
    font-family: inherit;
    border: none;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-primary {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: #FFFFFF !important;
    box-shadow: 0 8px 25px rgba(58, 123, 213, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(58, 123, 213, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
    color: #FFFFFF !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #9CA3AF;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeInUp 1s 1.1s var(--ease-luxury) forwards;
    opacity: 0;
}

.hero-scroll .scroll-line {
    width: 2px;
    height: 60px;
    background: rgba(156, 163, 175, 0.2);
    position: relative;
    border-radius: 2px;
}

.hero-scroll .scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -2px; /* Center 6px dot on a 2px track */
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-glow), 0 0 15px var(--gold-light);
    animation: scrollDotLoop 3s infinite cubic-bezier(0.5, 0, 0.1, 1);
}

@keyframes scrollDotLoop {
    0% {
        transform: translateY(-5px) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    30% {
        /* Run to mid point */
        transform: translateY(25px) scale(1.2);
    }
    45% {
        /* Loop/pulse at mid point */
        transform: translateY(25px) scale(1.6);
        box-shadow: 0 0 15px var(--gold-light), 0 0 25px var(--gold);
    }
    60% {
        transform: translateY(25px) scale(1);
    }
    85% {
        /* Continue downwards and shrink */
        transform: translateY(50px) scale(0.3);
        opacity: 0.5;
    }
    100% {
        transform: translateY(60px) scale(0);
        opacity: 0;
    }
}

/* ---- Hero Section (Split Layout) ---- */
.hero-split {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    padding-top: 80px;
    /* Space for navbar */
    overflow: hidden;
}

.hero-split-container {
    display: flex;
    align-items: center;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 80px;
}

.hero-content-split {
    flex: 1;
    padding-right: 60px;
    z-index: 2;
}

.hero-eyebrow-blue {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(70, 130, 180, 0.08);
    border-radius: 100px;
}

.hero-headline-split h1 {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 8px;
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: #1B2A4A;
    letter-spacing: -0.02em;
}

.hero-accent-text-split {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    color: #6B7280;
    margin-bottom: 24px;
}

.blue-gradient {
    background: linear-gradient(135deg, #2D5A85 0%, #6BA3CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.hero-desc-split {
    font-size: 1.1rem;
    color: #4B5563;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-cta-split {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-split {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-image-inner {
    position: relative;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

.hero-image-inner img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    transition: transform 0.8s ease;
}

.hero-image-inner:hover img {
    transform: scale(1.05);
}

.hero-image-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
    box-shadow: inset 0 0 40px rgba(70, 130, 180, 0.1);
}

@media (max-width: 992px) {
    .hero-split-container {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
    }

    .hero-content-split {
        padding-right: 0;
        margin-bottom: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-desc-split {
        margin: 0 auto 40px;
    }

    .hero-cta-split {
        justify-content: center;
    }
}


/* ---- Stats Bar (Full-Width Design) ---- */
.stats-bar {
    padding: 0;
    background: #0F172A;
    position: relative;
    z-index: 10;
    margin-top: -2px;
    border-bottom: 2px solid var(--gold);
}

.stats-bar .container {
    max-width: 100%;
    padding: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    background: transparent;
    border: none;
    padding: 48px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
}

/* Top accent line on hover */
.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
}

/* Vertical divider between items */
.stat-item+.stat-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(70, 130, 180, 0.3), transparent);
}

/* Glow background on hover */
.stat-item:hover {
    background: rgba(70, 130, 180, 0.06);
    box-shadow: inset 0 0 60px rgba(70, 130, 180, 0.05);
}

.stat-item:hover::before {
    width: 60%;
}

.stat-item:hover .stat-number {
    transform: scale(1.12);
    text-shadow: 0 4px 20px rgba(70, 130, 180, 0.4);
}

.stat-item:hover .stat-number span {
    color: var(--gold-light);
}

.stat-item:hover .stat-divider {
    width: 70px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    box-shadow: 0 0 12px rgba(70, 130, 180, 0.4);
}

.stat-item:hover .stat-label {
    color: #F3F4F6;
    letter-spacing: 0.16em;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    color: var(--gold) !important;
    font-weight: 600;
    line-height: 1;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), text-shadow 0.5s ease;
}

.stat-number span {
    color: var(--gold-light);
    font-weight: 600;
    transition: color 0.4s ease;
}

.stat-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    margin: 16px auto;
    position: relative;
    z-index: 1;
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.4s ease, box-shadow 0.4s ease;
}

.stat-label {
    font-size: 0.85rem;
    color: #D1D5DB;
    letter-spacing: 0.12em;
    font-weight: 400;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease, letter-spacing 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Insurance Types (Circle Navigation) ---- */
.insurance-types {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-bg-white {
    background: #FFFFFF !important;
}

.section-bg-brand-blue {
    background: linear-gradient(135deg, #1B2A4A 0%, #2D4A7A 50%, #1B2A4A 100%) !important;
}

.section-bg-dark-blue {
    background: #0F172A !important;
}

.insurance-circle {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* The big circle */
.circle-ring {
    width: 360px;
    height: 360px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 60px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F3F4F6 100%);
    box-shadow:
        0 20px 40px rgba(15, 23, 42, 0.04),
        0 1px 3px rgba(15, 23, 42, 0.02),
        inset 0 2px 4px rgba(255, 255, 255, 1);
}

.circle-ring::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0%, #4682B4 25%, transparent 50%);
    mask: radial-gradient(farthest-side, transparent calc(100% - 2px), black calc(100% - 2px));
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), black calc(100% - 2px));
    animation: rotateGlow 6s linear infinite;
    opacity: 0.8;
}

@keyframes rotateGlow {
    to {
        transform: rotate(360deg);
    }
}

.circle-ring .circle-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #6B7280;
    margin-bottom: 12px;
}

.circle-ring h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    line-height: 1.1;
    color: #1B2A4A;
    font-weight: 600;
}

.circle-ring h2 .italic {
    font-weight: 400;
    color: var(--gold);
    display: block;
    margin-top: 5px;
}

/* Insurance cards around circle (Classic Minimalist) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Noto+Serif+Thai:wght@400;600&display=swap');

.insurance-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---- Plan Sections (Full-width per plan) ---- */
.plans-header {
    text-align: center;
    padding: clamp(80px, 10vw, 120px) 0 clamp(60px, 8vw, 80px);
}

.plan-section {
    padding: clamp(60px, 8vw, 100px) 0;
    border-top: 1px solid #E5E7EB;
    overflow: hidden;
}

.plan-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

/* ????????-??? */
.plan-section:nth-child(even) .plan-inner {
    direction: rtl;
}

.plan-section:nth-child(even) .plan-inner>* {
    direction: ltr;
}

.plan-content {
    max-width: 480px;
}

.plan-number {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 400;
    color: #E5E7EB;
    line-height: 1;
    margin-bottom: 8px;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        color 0.6s ease;
}

.plan-tier {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #9CA3AF;
    margin-bottom: 12px;
}

.plan-content h3 {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 500;
    color: #1B2A4A;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.plan-desc {
    font-size: 0.95rem;
    color: #6B7280;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 32px;
}

.plan-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    color: #1B2A4A;
    border: 1px solid #0F172A;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.03em;
    position: relative;
    overflow: hidden;
}

.plan-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #0F172A;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.plan-cta span,
.plan-cta i {
    position: relative;
    z-index: 1;
}

.plan-cta i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.plan-cta:hover::before {
    left: 0;
}

.plan-cta:hover {
    color: #FFFFFF;
}

.plan-cta:hover i {
    transform: translateX(4px);
}

/* Features Card */
.plan-features-card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    padding: clamp(32px, 4vw, 48px);
    position: relative;
    overflow: hidden;
    /* reveal animation */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.plan-section.in-view .plan-features-card {
    opacity: 1;
    transform: translateY(0);
}

/* ?????? features card */
.plan-features-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0F172A;
    transition: width 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.plan-section.in-view .plan-features-card::before {
    width: 100%;
}

.plan-features-title {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9CA3AF;
    margin-bottom: 24px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.9rem;
    color: #374151;
    font-weight: 300;
    padding: 14px 0;
    border-bottom: 1px solid #E5E7EB;
    line-height: 1.5;
    /* stagger animation */
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.plan-section.in-view .plan-features li {
    opacity: 1;
    transform: translateX(0);
}

.plan-section.in-view .plan-features li:nth-child(1) {
    transition-delay: 0.15s;
}

.plan-section.in-view .plan-features li:nth-child(2) {
    transition-delay: 0.25s;
}

.plan-section.in-view .plan-features li:nth-child(3) {
    transition-delay: 0.35s;
}

.plan-section.in-view .plan-features li:nth-child(4) {
    transition-delay: 0.45s;
}

.plan-section.in-view .plan-features li:nth-child(5) {
    transition-delay: 0.55s;
}

.plan-features li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.plan-features li:first-child {
    padding-top: 0;
}

.plan-features li i {
    color: #1B2A4A;
    font-size: 0.4rem;
    margin-top: 8px;
    flex-shrink: 0;
}

/* Content reveal animation */
.plan-content .plan-number,
.plan-content .plan-tier,
.plan-content h3,
.plan-content .plan-desc,
.plan-content .plan-cta {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.plan-section.in-view .plan-content .plan-number {
    transition-delay: 0s;
    opacity: 1;
    transform: translateY(0);
}

.plan-section.in-view .plan-content .plan-tier {
    transition-delay: 0.08s;
    opacity: 1;
    transform: translateY(0);
}

.plan-section.in-view .plan-content h3 {
    transition-delay: 0.16s;
    opacity: 1;
    transform: translateY(0);
}

.plan-section.in-view .plan-content .plan-desc {
    transition-delay: 0.24s;
    opacity: 1;
    transform: translateY(0);
}

.plan-section.in-view .plan-content .plan-cta {
    transition-delay: 0.32s;
    opacity: 1;
    transform: translateY(0);
}

/* Hover: ?????????? */
.plan-section:hover .plan-number {
    transform: translateY(-4px);
    color: #D1D5DB;
}

/* ---- Dark variant ---- */
.plan-section.plan-dark {
    background: #0F172A;
    border-top-color: #1F2937;
}

.plan-dark .plan-number {
    color: #1F2937;
}

.plan-dark .plan-tier {
    color: var(--gold);
}

.plan-dark .plan-content h3 {
    color: #F3F4F6;
}

.plan-dark .plan-desc {
    color: #9CA3AF;
}

.plan-dark .plan-cta {
    color: var(--gold);
    border-color: var(--gold);
}

.plan-dark .plan-cta::before {
    background: var(--gold);
}

.plan-dark .plan-cta:hover {
    color: #1B2A4A;
}

.plan-dark .plan-features-card {
    background: #1F2937;
    border-color: #374151;
}

.plan-dark .plan-features-card::before {
    background: var(--gold);
}

.plan-dark .plan-features-title {
    color: #6B7280;
}

.plan-dark .plan-features li {
    color: #D1D5DB;
    border-bottom-color: #374151;
}

.plan-dark .plan-features li i {
    color: var(--gold);
}

.plan-dark:hover .plan-number {
    color: #374151;
}

/* Responsive plan sections */
@media (max-width: 768px) {


    .plan-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .plan-section:nth-child(even) .plan-inner {
        direction: ltr;
    }

    .plan-content {
        max-width: 100%;
    }
}

/* ---- Featured Section (Gallery) ---- */
.featured {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #FAFAF8 0%, #FBF7F0 100%);
    overflow: hidden;
}

.featured-header {
    text-align: center;
    margin-bottom: 60px;
}

.featured-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 16px;
    align-items: center;
}

/* Left gallery column */
.gallery-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 16/10;
    border: var(--card-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-luxury);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .gallery-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(15, 30, 60, 0.55);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

/* Center featured card */
.featured-center {
    position: relative;
}

.featured-circle-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    aspect-ratio: 3/4;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.featured-circle-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-luxury);
}

.featured-circle-frame:hover img {
    transform: scale(1.05);
}

.featured-info {
    text-align: center;
    margin-top: 24px;
}

.featured-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.featured-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
}

.featured-btn {
    margin-top: 20px;
}

/* ---- Why Choose Section ---- */
.why-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

.why-content h2 .italic {
    font-weight: 300;
    color: var(--gold-light);
}

.why-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border: var(--card-border);
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    transition: all 0.5s var(--ease-luxury);
}

.why-feature:hover {
    border-color: rgba(70, 130, 180, 0.15);
    background: rgba(70, 130, 180, 0.03);
    transform: translateX(8px);
}

.why-feature .feature-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 300;
    min-width: 30px;
    opacity: 0.6;
}

.why-feature h4 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.why-feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
}

.why-visual {
    position: relative;
}

.why-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: var(--card-border);
    aspect-ratio: 4/5;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.why-stat-card {
    padding: 24px;
    border: var(--card-border);
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    text-align: center;
}

.why-stat-card .big-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-primary);
    line-height: 1;
}

.why-stat-card .big-num span {
    color: var(--gold);
    font-weight: 300;
}

.why-stat-card .stat-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 8px;
}

/* ---- Testimonials ---- */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--dark-800);
    position: relative;
}

.testimonials-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.testimonials-content {
    position: relative;
}

.testimonials-content h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.05;
    margin-bottom: 40px;
}

.testimonials-content h2 .italic {
    font-weight: 300;
    color: var(--gold-light);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 0.85rem;
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 24px;
    padding-left: 20px;
    border-left: 2px solid rgba(70, 130, 180, 0.2);
}

.about-quote-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}
.about-exec-quote p {
    font-size: 1.25rem;
    color: #334155;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 300;
}

.testimonial-author-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.testimonial-author-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonials-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.test-card {
    padding: 28px;
    border: var(--card-border);
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    transition: all 0.5s var(--ease-luxury);
    cursor: default;
}

.test-card:hover {
    border-color: rgba(70, 130, 180, 0.15);
    background: rgba(70, 130, 180, 0.03);
}

.test-card .tc-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.test-card .tc-stars i {
    color: var(--gold);
    font-size: 0.7rem;
}

.test-card .tc-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 300;
}

.test-card .tc-author {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.test-card .tc-author strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* ---- Process / How It Works ---- */
.process-section {
    padding: var(--section-padding) 0;
    background: #1F2937;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.55);
}

.process-header {
    text-align: center;
    margin-bottom: 70px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    overflow: visible;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(70, 130, 180, 0.2), rgba(70, 130, 180, 0.25), rgba(70, 130, 180, 0.2), transparent);
    border-radius: 4px;
    z-index: 1;
}

/* Light glow on the line */
.process-steps::after {
    content: '';
    position: absolute;
    top: 37px;
    left: 10%;
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), rgba(70, 130, 180, 1), rgba(255,255,255,0.8), transparent);
    border-radius: 6px;
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 0 12px 4px rgba(70, 130, 180, 0.5);
    animation: lineGlow 5s linear infinite;
}

@keyframes lineGlow {
    0% { left: 8%; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { left: 82%; opacity: 0; }
}

.process-step {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    border: 2px solid rgba(70, 130, 180, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(70, 130, 180, 0.1);
    transition: all 0.5s var(--ease-luxury);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(70, 130, 180, 0.1);
}

.process-step:hover .step-icon {
    border-color: var(--gold);
    box-shadow: 0 0 30px var(--gold-glow);
    background: rgba(70, 130, 180, 0.04);
}

.process-step h3 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
}

/* ---- CTA Section ---- */
.cta-section {
    padding: 40px 0 100px;
    background: #F9FAFB;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* ===== CTA Full Orbit System (Style E) ===== */
.cta-orbit-system {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.cta-static-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(70, 130, 180, 0.15);
}

.cta-static-ring-1 {
    width: 820px;
    height: 820px;
    margin: -410px 0 0 -410px;
}

.cta-static-ring-2 {
    display: none;
}

.cta-orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid transparent;
}

.cta-orbit-ring-1 {
    width: 760px;
    height: 760px;
    margin: -380px 0 0 -380px;
    animation: ctaOrbitSpin 15s linear infinite;
}

.cta-inner {
    position: relative;
    z-index: 10;
}

.cta-orbit-ring-2,
.cta-orbit-ring-3 {
    display: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 14px rgba(70, 130, 180, 0.4), 0 0 30px rgba(70, 130, 180, 0.12);
}

.cta-orbit-ring-1 .cta-orb {
    width: 12px;
    height: 12px;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.cta-orbit-ring-1 .cta-orb:nth-child(2) {
    width: 8px;
    height: 8px;
    bottom: -4px;
    top: auto;
    left: 50%;
}

.cta-center-glow {
    display: none;
}

@keyframes ctaOrbitSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes ctaOrbitGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
}

.cta-inner h2 {
    margin-bottom: 16px;
    color: #1B2A4A;
}

.cta-inner h2 .italic {
    font-weight: 300;
    color: var(--gold);
}

.cta-inner p {
    font-size: 0.95rem;
    color: #6B7280;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

/* CTA Gold Pill Button */
.btn-cta-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 100px;
    background: linear-gradient(135deg, #6BA3CC 0%, #4682B4 100%);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(70, 130, 180, 0.35);
    text-decoration: none;
}

.btn-cta-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(70, 130, 180, 0.5);
    background: linear-gradient(135deg, #4682B4 0%, #2D5A85 100%);
}

/* CTA Outline Pill Button */
.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 100px;
    background: transparent;
    color: #1B2A4A;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1.5px solid rgba(15, 23, 42, 0.15);
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-cta-outline:hover {
    border-color: var(--gold);
    color: #2D5A85;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(70, 130, 180, 0.15);
}

@media (max-width: 768px) {


    .cta-section {
        padding: 100px 0;
        margin-bottom: 0;
    }

    .cta-static-ring-1 {
        width: 320px;
        height: 320px;
        margin: -160px 0 0 -160px;
    }

    .cta-orbit-ring-1 {
        width: 320px;
        height: 320px;
        margin: -160px 0 0 -160px;
    }

    .cta-inner h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .cta-inner p {
        font-size: 1rem;
        margin-bottom: 18px;
        padding: 0 30px;
        line-height: 1.6;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .cta-orbit-system {
        display: none !important;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn-cta-gold {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .btn-cta-outline {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

.cta-contacts {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.cta-contact-item:hover {
    color: var(--gold);
}

.cta-contact-item i {
    color: var(--gold);
    opacity: 0.6;
}

/* ---- Footer ---- */
.footer {
    background: #0F172A;
    border-top: none;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand .fl-shield {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    border: 2px solid rgba(70, 130, 180, 0.2);
    box-shadow: 0 2px 10px rgba(70, 130, 180, 0.1), 0 0 0 3px rgba(70, 130, 180, 0.05);
    transition: all 0.4s ease;
}

.footer-brand .fl-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-primary);
}

.footer-brand>p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: all 0.4s ease;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-contact-item:hover {
    color: var(--gold);
    transform: translateX(6px);
}

.footer-contact-item i {
    color: var(--gold);
    margin-top: 4px;
    opacity: 0.6;
    width: 14px;
    transition: all 0.3s ease;
}

.footer-contact-item:hover i {
    opacity: 1;
    transform: scale(1.2);
}

/* Footer watermark */
.footer-watermark {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 12vw, 10rem);
    color: rgba(255, 255, 255, 0.015);
    text-align: center;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1;
    padding: 20px 0;
    user-select: none;
    overflow: hidden;
    white-space: nowrap;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}

.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;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .featured-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-col {
        flex-direction: row;
    }

    .why-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .testimonials-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insurance-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {


    .nav-links {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #FFFFFF;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 9999;
        overflow-y: auto;
    }

    .nav-links::before {
        display: none;
    }

    .nav-links.active {
        display: flex;
        top: 0 !important;
        position: fixed !important; /* Will still be absolute-like in containing block, but better to enforce */
    }
    
    /* When menu is active, remove backdrop-filter from navbar to prevent containing-block bug */
    .navbar:focus-within, .navbar:has(.nav-links.active) {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    

    .nav-links a {
        font-size: 1.8rem !important;
        font-weight: 700 !important;
        color: #0F172A !important;
        padding: 20px 40px !important;
        width: auto;
        text-align: center;
        border-bottom: none;
        transition: color 0.2s ease;
        letter-spacing: 0.01em !important;
        position: relative;
        text-transform: none !important;
    }

    .nav-links a:hover,
    .nav-links a:active {
        color: var(--gold);
        background: transparent;
        letter-spacing: 0.01em;
    }

    .nav-links a.active {
        color: var(--gold);
        font-weight: 600;
        letter-spacing: 0.01em;
    }

    .nav-links a.active::before {
        display: none;
    }

    .nav-links .nav-cta {
        padding: 16px 40px 0;
        width: 100%;
        text-align: center;
    }

    .nav-links .nav-cta .btn {
        width: auto;
        padding: 10px 24px;
        font-size: 0.85rem;
        border-radius: 50px;
        background: transparent;
        color: #64748B !important;
        border: 1px solid #CBD5E1;
        box-shadow: none;
        font-weight: 400;
        letter-spacing: 0.02em;
        text-transform: none;
    }

    .nav-cart {
        display: flex;
        z-index: 10001;
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
        margin-right: 6px;
    }

    .menu-toggle {
        display: flex;
        z-index: 10001;
    }

    .menu-toggle.active i {
        color: #1B2A4A;
        font-size: 1.4rem;
    }

    /* Hero: Premium Mobile View (Image Top, Text Below) */
    .hero {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-bottom: 0;
        background: #0a0f1e; /* Dark luxury base */
        padding-top: 0; /* Let image hit the top edge */
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .hero-bg {
        position: relative;
        width: 100%;
        flex-shrink: 0;
    }

    .hero-bg img {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center bottom;
        filter: contrast(1.05) saturate(1.1);
    }

    .hero-bg::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0; right: 0; top: auto;
        height: 120px;
        background: linear-gradient(to bottom, transparent, rgba(10, 15, 30, 0.9) 70%, #0a0f1e 100%) !important;
        z-index: 1;
    }

    .hero-content {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        padding: 0px 20px 80px; /* Add bottom padding so buttons don't hit floating contact */
        text-align: center;
        z-index: 2;
        background: #0a0f1e;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* Move text up closer to image */
        margin-top: -10px; /* Blend tightly with gradient */
        align-items: center; /* Prevent flex children from stretching */
        width: 100%; /* FIX: Force full width to cover image edges */
}

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.15;
        margin-bottom: 8px;
    }

    .hero-desc {
        font-size: 0.8rem;
        padding: 0 8px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .hero-eyebrow {
        font-size: 0.55rem;
        padding: 7px 16px;
        margin-bottom: 14px;
        letter-spacing: 0.2em;
    }

    .hero-accent-text {
        font-size: 1.1rem !important;
        margin-bottom: 10px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-deco-line {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .insurance-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .circle-ring {
        width: 260px;
        height: 260px;
    }

    .gallery-col {
        flex-direction: column;
    }

    .why-stats {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-contacts {
        flex-direction: column;
        align-items: center;
    }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #F5F3EE;
}

::-webkit-scrollbar-thumb {
    background: var(--gold-light);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ---- Selection ---- */
::selection {
    background: var(--gold);
    color: #FFFFFF;
}


/* ============================================
   PAGE-SPECIFIC STYLES (Multi-page)
   ============================================ */

/* ---- Page Header ---- */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Show the center of the image (the car) */
    opacity: 0.35;
}

.page-header-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #0B1120 0%, rgba(11, 17, 32, 0.7) 50%, #0B1120 100%);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    margin-bottom: 16px;
    font-weight: 600;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 1.15rem;
    color: #D1D5DB;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: 0 20px 60px -15px rgba(70, 130, 180, 0.08), 0 10px 30px -10px rgba(15, 23, 42, 0.04);
    transition: transform 0.6s var(--ease-spring), box-shadow 0.6s var(--ease-spring);
    margin-bottom: 60px;
}

.section-bg-dark-blue .service-detail {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    margin-bottom: 0;
}

.service-detail:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px -20px rgba(70, 130, 180, 0.12), 0 15px 40px -15px rgba(15, 23, 42, 0.06);
}

.section-bg-dark-blue .service-detail:hover {
    box-shadow: none;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse>* {
    direction: ltr;
}

.service-detail-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #1B2A4A;
    /* Dark contrast text on gold */
    background: var(--gold);
    /* Make badge gold */
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.section-bg-dark-blue .service-detail-badge {
    background: var(--gold);
    /* Actual Gold color */
    color: #1B2A4A;
    /* Dark text for contrast against gold */
}

.service-detail h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.section-bg-dark-blue .service-detail h2 {
    color: #FFFFFF;
}

.service-detail-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.section-bg-dark-blue .service-detail-desc {
    color: rgba(255, 255, 255, 0.8);
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.section-bg-dark-blue .service-features li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: var(--gold);
    /* Make checkmarks gold */
    font-size: 1.1rem;
    margin-right: 4px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.section-bg-dark-blue .service-features li i {
    color: var(--gold);
    /* Actual Gold checkmarks */
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.section-bg-dark-blue .service-price {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.section-bg-dark-blue .price-label {
    color: rgba(255, 255, 255, 0.6);
}

.price-amount {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
    /* Make price gold */
    font-weight: 500;
    line-height: 1;
    transition: color 0.3s ease;
}

.section-bg-dark-blue .price-amount {
    color: #FFFFFF;
    /* High contrast for price on dark background */
}

.price-unit {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    transition: color 0.3s ease;
}

.section-bg-dark-blue .price-unit {
    color: rgba(255, 255, 255, 0.6);
}

.section-bg-dark-blue .btn-outline-blue {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-weight: 500;
}

.section-bg-dark-blue .btn-outline-blue:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #FFFFFF;
    box-shadow: 0 8px 30px rgba(70, 130, 180, 0.4);
}

.service-image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.service-image-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.05);
    pointer-events: none;
}

.service-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.8s var(--ease-luxury);
}

.service-image-frame:hover img {
    transform: scale(1.05);
}

/* ---- Service Cards Grid (Clean Editorial Premium) ---- */
.service-cards-section {
    background: #F9FAFB;
}

.sc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.sc-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(70, 130, 180, 0.15);
    border-color: rgba(70, 130, 180, 0.3);
}

/* Featured card (Most popular) */
.sc-card-featured {
    border: 2px solid rgba(70, 130, 180, 0.5);
    box-shadow: 0 8px 24px rgba(70, 130, 180, 0.1);
    transform: translateY(-4px);
}

.sc-card-featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 36px rgba(70, 130, 180, 0.2);
}

/* Badges */
.sc-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    width: fit-content;
    white-space: nowrap;
}

.sc-badge-gold {
    background: #FBF7F0;
    color: #1B2A4A;
    border: none;
}

.sc-badge-blue {
    background: #F5F0E5;
    color: #2D5A85;
    border: none;
}

.sc-badge-green {
    background: #DCFCE7;
    color: #166534;
    border: none;
}

.sc-badge-navy {
    background: #F3F4F6;
    color: #374151;
    border: none;
}

/* Icon */
.sc-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #0F172A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    margin-top: 5px;
    transition: all 0.4s ease;
}

.sc-card:hover .sc-icon {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.sc-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.sc-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Features list */
.sc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.sc-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.4;
    padding: 0;
}

.sc-features li i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* CTA Button */
.sc-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-base);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
}

.sc-cta i {
    margin-left: 6px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.sc-cta:hover {
    background: #F9FAFB;
    border-color: rgba(0, 0, 0, 0.2);
}

.sc-card:hover .sc-cta {
    border-color: rgba(70, 130, 180, 0.4);
    color: #1B2A4A;
}

.sc-card:hover .sc-cta:hover {
    background: #FBF7F0;
}

.sc-cta:hover i {
    transform: translateX(4px);
}


/* Responsive: Service Cards */
@media (max-width: 1024px) {
    .sc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .sc-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sc-card {
        padding: 28px 22px;
    }
}

/* ---- Why Choose Us / Grid Cards ---- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 40px 28px 36px;
    text-align: center;
    transition: all 0.5s var(--ease-luxury);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4682B4, transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.why-card:hover {
    border-color: rgba(70, 130, 180, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(70, 130, 180, 0.1);
    border: 1px solid rgba(70, 130, 180, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    transition: all 0.5s ease;
}

.why-card:hover .why-card-icon {
    background: rgba(70, 130, 180, 0.2);
    border-color: rgba(70, 130, 180, 0.4);
    transform: scale(1.1);
}

.why-card-num {
    font-family: var(--font-serif);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.why-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
}

/* Partner Tags */
.partner-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(15, 23, 42, 0.03);
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 400;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.partner-tag:hover {
    border-color: rgba(70, 130, 180, 0.4);
    color: #2D5A85;
    background: rgba(70, 130, 180, 0.06);
}

/* Responsive: Why Grid */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card {
        padding: 28px 24px;
    }
}


.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.review-card {
    padding: 28px;
    border: var(--card-border);
    border-radius: 12px;
    background: #FFFFFF;
    transition: all 0.5s var(--ease-luxury);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.review-card:hover {
    border-color: rgba(70, 130, 180, 0.2);
    background: #F8FAFF;
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(70, 130, 180, 0.1);
}

.rc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.rc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 300;
    flex-shrink: 0;
}

.rc-header strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.rc-header span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
    font-weight: 300;
    margin: 12px 0 16px;
}

.rc-type {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border: 1px solid rgba(70, 130, 180, 0.15);
    border-radius: 100px;
}

/* ---- Contact Cards Grid ---- */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-card {
    text-align: center;
    padding: 40px 24px;
    border: var(--card-border);
    border-radius: 12px;
    background: #FFFFFF;
    transition: all 0.5s var(--ease-luxury);
    display: block;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.contact-card:hover {
    border-color: rgba(70, 130, 180, 0.25);
    background: #F0F7FF;
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(70, 130, 180, 0.1);
}

.cc-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 16px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    background: linear-gradient(135deg, #FBF7F0, #DBEAFE);
    transition: all 0.4s ease;
}

.contact-card:hover .cc-icon {
    background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
    box-shadow: 0 8px 25px rgba(70, 130, 180, 0.15);
}

.contact-card h3 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cc-detail {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 4px;
}

.cc-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ---- Contact Layout ---- */
.contact-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: start;
}

/* ---- Contact Form ---- */
.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}

.form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark-700);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M6 9l6 6 6-6' stroke='%23525c7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

.form-group select option {
    background: var(--dark-700);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ---- Contact Info Side ---- */
.contact-info-card {
    padding: 32px;
    border: var(--card-border);
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.info-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.ip-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(70, 130, 180, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.info-point strong {
    display: block;
    font-size: 0.88rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 4px;
}

.info-point p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
}

.contact-hours-card {
    padding: 28px;
    border: var(--card-border);
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.contact-hours-card h4 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-hours-card h4 i {
    color: var(--gold);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.hours-note {
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
}

/* ---- Map Section ---- */
.map-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: var(--card-border);
}

/* ---- Responsive: New Pages ---- */
@media (max-width: 1024px) {
    .service-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail.reverse {
        direction: ltr;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {


    .page-header {
        padding: 140px 0 60px;
        min-height: 320px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {

    .insurance-cards-grid,
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .about-layout {
        gap: 30px;
    }

    .consultant-values {
        flex-direction: column;
        gap: 10px;
    }

    .addl-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- About Consultant ---- */
.about-consultant {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
    position: relative;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 24px;
}

.consultant-name {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.consultant-name h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.consultant-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.consultant-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 24px;
}

.consultant-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #FBF7F0, #DBEAFE);
    border: 1px solid rgba(70, 130, 180, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.consultant-badge>i {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.consultant-badge strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 2px;
}

.consultant-badge span {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 500;
}

.consultant-values {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cv-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 100px;
    background: #FFFFFF;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
    transition: all 0.3s ease;
}

.cv-item i {
    color: var(--gold);
    font-size: 0.75rem;
}

.cv-item:hover {
    border-color: rgba(70, 130, 180, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(70, 130, 180, 0.08);
}

.about-image {
    position: relative;
}

.license-frame {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    border: none;
    box-shadow: none;
    transition: all 0.5s var(--ease-luxury);
}

.license-frame:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

.license-frame img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.06);
    transition: transform 0.6s var(--ease-luxury);
}

.license-frame:hover img {
    transform: scale(1.08);
}

.license-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
}

.license-overlay i {
    font-size: 1.1rem;
    color: #FFFFFF;
}

.license-overlay span {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* ---- Additional Services Section ---- */
.addl-services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
}

.addl-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.addl-service-card {
    padding: 32px 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-lg);
    background: #FFFFFF;
    text-align: center;
    transition: all 0.5s var(--ease-spring);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.addl-service-card:hover {
    border-color: rgba(70, 130, 180, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(70, 130, 180, 0.1);
}

.addl-service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    background: linear-gradient(135deg, #FBF7F0, #DBEAFE);
    box-shadow: 0 6px 12px rgba(70, 130, 180, 0.1);
    transition: all 0.4s var(--ease-spring);
}

.addl-service-card:hover .addl-service-icon {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 20px rgba(70, 130, 180, 0.18);
}

.addl-service-card h3 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.addl-service-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
}

/* ---- About Consultant Responsive ---- */
@media (max-width: 992px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .addl-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {


    .addl-services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .partner-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* ---- Partner Showcase (Option D: Minimal Premium Row) ---- */
.partner-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.partners-logo-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: white;
}

.partners-logo-section .decor-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23c5a022' fill-opacity='0.1' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

.partners-logo-section .decor-waves-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%231e3a8a' fill-opacity='0.05' d='M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,106.7C672,117,768,171,864,176C960,181,1056,139,1152,122.7C1248,107,1344,117,1392,122.7L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    border-radius: 12px;
    background: white;
    border: 1px solid #E5E7EB;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.showcase-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #4682B4, #6BA3CC);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-item:hover {
    border-color: #6BA3CC;
    box-shadow: 0 8px 24px rgba(70, 130, 180, 0.1);
}

.showcase-item:hover::before {
    opacity: 1;
}

.showcase-main {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    flex: 1;
}

.showcase-logo {
    flex: 0 0 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F9FAFB;
    border-radius: 12px;
    padding: 8px;
}

.showcase-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.showcase-content {
    flex: 1;
}

.showcase-content h4 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.showcase-content p {
    font-size: 0.75rem;
    color: #9CA3AF;
    line-height: 1.4;
    margin-bottom: 0;
}

.showcase-badge {
    width: 22px;
    height: auto;
    opacity: 0.7;
    position: absolute;
    top: 12px;
    right: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Company Specific Colors */
.sc-viriya h4 {
    color: #1e3a8a;
}

.sc-tokio h4 {
    color: #0284c7;
}

.sc-bki h4 {
    color: #2D5A85;
}

.sc-thanachart h4 {
    color: #f97316;
}

.sc-mtl h4 {
    color: var(--gold);
}

.sc-tip h4 {
    color: #7e22ce;
}

.sc-allianz h4 {
    color: #003781;
}

.sc-ergo h4 {
    color: #ef4444;
}

.sc-others h4 {
    color: var(--text-primary);
}

@media (max-width: 1024px) {
    .partner-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .partner-showcase-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .showcase-logo {
        flex: 0 0 60px;
        height: 60px;
    }

    .showcase-item {
        padding: 16px 20px;
    }
}

/* Hide old grid if still there */
.partner-logo-grid {
    display: none;
}

@media (max-width: 992px) {
    .partner-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .partner-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .partner-logo-card {
        padding: 16px 10px;
    }

    .partner-logo-card img {
        width: 36px;
        height: 36px;
    }
}

/* ============================================
   EXECUTIVE GRID � Services Section
   ============================================ */
.exec-services {
    padding: 140px 0;
    background: #FFFFFF;
}

.exec-services-header {
    text-align: center;
    margin-bottom: 80px;
}

.exec-services-header h2 {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    color: #1B2A4A;
    line-height: 1.2;
    margin-bottom: 20px;
}

.exec-services-subtitle {
    color: #6B7280;
    font-weight: 300;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.exec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .exec-grid > *:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: calc(50% - 16px);
        width: 100%;
    }
}

.exec-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 48px 44px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.exec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4682B4, #6BA3CC);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.exec-card:hover {
    border-color: #BFDBFE;
    box-shadow: 0 12px 40px rgba(70, 130, 180, 0.08);
    transform: translateY(-4px);
}

.exec-card:hover::before {
    transform: scaleX(1);
}

.exec-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.exec-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #FBF7F0, #DBEAFE);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.4rem;
}

.exec-card-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: #E5E7EB;
    line-height: 1;
}

.exec.p3-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1B2A4A;
    margin: 0;
}

.exec-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1B2A4A;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.exec-card p {
    color: #6B7280;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 28px;
}

.exec-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.exec-card-link:hover {
    gap: 10px;
}

.exec-card-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.exec-card-link:hover i {
    transform: translateX(2px);
}

.installment-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, #4682B4, #2D5A85);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pulseGold 2.5s infinite;
}

@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(70, 130, 180, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(70, 130, 180, 0); }
    100% { box-shadow: 0 0 0 0 rgba(70, 130, 180, 0); }
}

/* Responsive */
@media (max-width: 768px) {


    .exec-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .exec-card {
        padding: 28px 24px;
    }

    .exec-services {
        padding: 60px 0;
    }
}

/* ============================================
   ABOUT CONSULTANT � Executive Split
   ============================================ */
.about-exec {
    padding: 140px 0;
    background: #F9FAFB;
}

.about-exec-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin: 0 auto;
}

/* --- Left: Image Frame --- */
.about-exec-image {
    position: relative;
}

.about-exec-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,210,255,0.3);
    box-shadow: 0 25px 50px -12px rgba(15,23,42,0.15), 0 0 30px rgba(0,210,255,0.1);
}

.about-exec-frame img {
    width: 100%;
    display: block;
}

.about-exec-frame-accent {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #4682B4;
    border-radius: 20px;
    pointer-events: none;
    opacity: 0.3;
    display: none;
}

.about-exec-stamp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 20px;
    background: #FBF7F0;
    border: 1px solid #BFDBFE;
    border-radius: 100px;
    font-size: 0.8rem;
    color: #2D5A85;
    font-weight: 500;
}
.about-mini-stats {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.about-mini-stat {
    flex: 1;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-top: 3px solid #3a7bd5;
    border-radius: 12px;
    padding: 16px 10px;
    text-align: center;
    transition: all 0.3s ease;
}
.about-mini-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.15);
    background: #FFFFFF;
}
.about-mini-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}
.about-mini-label {
    display: block;
    font-size: 0.8rem;
    color: #64748B;
    margin-top: 4px;
}

.about-exec-stamp i {
    font-size: 0.9rem;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Right: Content --- */
.about-exec-content h2 {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    color: #1B2A4A;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-exec-name h3 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #1B2A4A;
    margin-bottom: 8px;
}

.about-exec-name span {
    font-size: 0.95rem;
    color: #6B7280;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.about-exec-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #4682B4, #6BA3CC);
    margin: 20px 0;
    border-radius: 2px;
}

.about-exec-bio {
    color: #4B5563;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 32px;
}

.about-exec-license {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(to right, #F0F7FF, #FFFFFF);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-left: 4px solid #3a7bd5;
    border-radius: 14px;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
}

.about-exec-license:hover {
    transform: translateY(-4px);
    border-color: #6BA3CC;
    box-shadow: 0 12px 32px rgba(70, 130, 180, 0.12), 0 0 0 1px rgba(70, 130, 180, 0.05);
    background: linear-gradient(135deg, #FFFFFF 0%, #FBF7F0 100%);
}

.about-exec-license i {
    font-size: 2rem;
    color: var(--gold);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-exec-license:hover i {
    transform: scale(1.15) rotate(-5deg);
}

.about-exec-license strong {
    display: block;
    font-size: 1.05rem;
    color: #1B2A4A;
    margin-bottom: 4px;
}

.about-exec-license span {
    font-size: 0.95rem;
    color: #6B7280;
    font-weight: 300;
}

.about-exec-values {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-exec-value {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(0, 210, 255, 0.05);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    color: #1E293B;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
}

.about-exec-value:hover {
    transform: translateY(-3px);
    background: rgba(0, 210, 255, 0.12);
    border-color: rgba(0, 210, 255, 0.4);
    box-shadow: 0 8px 24px rgba(0, 210, 255, 0.15);
    color: #2D5A85;
}

.about-exec-value i {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-exec-value:hover i {
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {


    .about-exec-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-exec {
        padding: 60px 0;
    }

    .about-exec-values {
        flex-direction: column;
    }
}

/* ============================================
   DECORATIVE ENHANCEMENTS
   ============================================ */

/* --- Services Section: Dot Pattern Background --- */
.exec-services {
    position: relative;
    overflow: hidden;
}

.exec-deco-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, #BFDBFE 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.exec-deco-dots-tl {
    top: 40px;
    left: -40px;
}

.exec-deco-dots-br {
    bottom: 40px;
    right: -40px;
}

.exec-deco-line-v {
    position: absolute;
    top: 20%;
    right: 60px;
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #BFDBFE, transparent);
    pointer-events: none;
    z-index: 0;
}

.exec-services .container {
    position: relative;
    z-index: 1;
}

.exec-ornament {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #4682B4, #6BA3CC);
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* --- About Section: Quote Block --- */
.about-exec-quote {
    position: relative;
    padding: 20px 0 20px 24px;
    margin-bottom: 24px;
    border-left: 3px solid #BFDBFE;
}

.about-exec-quote p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: #374151;
    line-height: 1.7;
    font-weight: 400;
}

.about-quote-icon {
    position: absolute;
    top: -8px;
    left: -14px;
    font-size: 1.8rem;
    color: #BFDBFE;
    font-style: normal;
}

/* --- About Section: Mini Stats --- */
.about-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.about-mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 8px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-mini-stat:hover {
    border-color: #BFDBFE;
    box-shadow: 0 4px 16px rgba(70, 130, 180, 0.08);
    transform: translateY(-2px);
}

.about-mini-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.about-mini-label {
    font-size: 0.7rem;
    color: #6B7280;
    font-weight: 300;
}

/* Responsive adjustments */
@media (max-width: 768px) {



    .exec-deco-dots,
    .exec-deco-line-v {
        display: none;
    }

    .about-mini-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .about-mini-num {
        font-size: 1.1rem;
    }
}

/* ============================================
   WHY CHOOSE US � Vertical Timeline
   ============================================ */
.why-timeline-section {
    padding: 140px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.why-tl-deco-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, #BFDBFE 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: 0.35;
    pointer-events: none;
}

.why-tl-deco-tr {
    top: 60px;
    right: -30px;
}

.why-tl-deco-bl {
    bottom: 60px;
    left: -30px;
}

.why-tl-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.why-tl-header h2 {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    color: #1B2A4A;
    line-height: 1.2;
    margin-bottom: 20px;
}

.why-tl-subtitle {
    color: #6B7280;
    font-weight: 300;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Timeline Track --- */
.why-tl-track {
    position: relative;
    margin: 0 auto;
    padding-left: 50px;
}

.why-tl-line {
    position: absolute;
    left: 1px;
    top: 0;
    bottom: 0;
    width: 40px;
    background: none;
    z-index: 0;
    pointer-events: none;
}

/* The actual visible 2px line drawn in center */
.why-tl-line::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #BFDBFE, var(--gold), #BFDBFE);
    overflow: visible;
}



/* Base icon transitions for advanced hover effects across the site */
i[class*="fa-"], .icon, .why-tl-card-icon i, .exec-card-icon i {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}
a:hover i[class*="fa-"], .btn:hover i[class*="fa-"], .why-tl-card:hover .why-tl-card-icon i, .exec-card:hover .exec-card-icon i, .social-pill:hover i {
    transform: scale(1.15) translateY(-2px);
    color: var(--gold-light);
}

/* JS-controlled traveling light */
.tl-light {
    position: absolute;
    left: 18px;
    top: 0;
    width: 4px;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(70, 130, 180, 0.3) 20%, rgba(255,255,255,0.6) 50%, rgba(70, 130, 180, 0.3) 80%, transparent 100%);
    border-radius: 4px;
    box-shadow: 0 0 8px 3px rgba(70, 130, 180, 0.3);
    filter: blur(1px);
    opacity: 0;
    z-index: 3;
    pointer-events: none;
    transition: none;
}

.tl-light.active {
    opacity: 1;
}

/* Pulse when reaching a dot */
.tl-light.pulse {
    animation: tlLightPulse 0.6s ease-in-out;
}

@keyframes tlLightPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.8), 0 0 14px 4px rgba(70, 130, 180, 0.6), 0 0 30px 8px rgba(70, 130, 180, 0.25);
    }

    50% {
        transform: scale(1.8);
        box-shadow: 0 0 10px 4px rgba(255, 255, 255, 1), 0 0 24px 8px rgba(70, 130, 180, 0.8), 0 0 50px 16px rgba(70, 130, 180, 0.35);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.8), 0 0 14px 4px rgba(70, 130, 180, 0.6), 0 0 30px 8px rgba(70, 130, 180, 0.25);
    }
}

/* Dot glow when light arrives */
.why-tl-dot.glow {
    box-shadow: 0 0 0 4px rgba(70, 130, 180, 0.3), 0 0 20px rgba(70, 130, 180, 0.6), 0 0 40px rgba(70, 130, 180, 0.2);
    background: #6BA3CC;
    transition: all 0.3s ease;
}

/* --- Timeline Item --- */
.why-tl-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    z-index: 1;
}

.why-tl-item:last-child {
    margin-bottom: 0;
}

.why-tl-left,
.why-tl-right {
    padding-left: 0;
    padding-right: 0;
    justify-content: flex-start;
}

/* --- Checkpoint Dot --- */
.why-tl-dot {
    position: absolute;
    left: -30px;
    top: 30px;
    width: 18px;
    height: 18px;
    background: #00d2ff;
    border: 3px solid #FFFFFF;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(0, 210, 255, 0.2), 0 0 16px rgba(0, 210, 255, 0.4);
    z-index: 2;
    transition: all 0.3s ease;
}

/* --- Timeline Card --- */
.why-tl-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 44px 40px;
    transition: all 0.4s ease;
    overflow: hidden;
    width: 100%;
}

.why-tl-card:hover {
    border-color: #00d2ff;
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.15);
    transform: translateY(-6px);
}

/* Watermark Number */
.why-tl-watermark {
    position: absolute;
    top: -10px;
    right: 16px;
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 800;
    color: #F3F4F6;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.why-tl-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #F8FAFC;
    border: 1px solid rgba(0, 210, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 210, 255, 0.1), inset 0 2px 4px #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a7bd5;
    font-size: 1.6rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.why-tl-card-icon i {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-tl-card:hover .why-tl-card-icon {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, rgba(0,210,255,0.1), rgba(58,123,213,0.1));
    border: 1px solid rgba(0,210,255,0.3);
    color: #00d2ff;
    box-shadow: 0 15px 35px rgba(0, 210, 255, 0.2), inset 0 2px 4px #FFFFFF;
}

.why-tl-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1B2A4A;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.why-tl-card p {
    color: #4B5563;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.why-tl-card p:last-child {
    margin-bottom: 0;
}

/* Responsive Timeline */
@media (max-width: 768px) {


    .why-tl-track {
        padding-left: 36px;
    }

    .why-tl-line {
        left: 14px;
    }

    .why-tl-dot {
        left: -22px;
    }

    .why-tl-deco-dots {
        display: none;
    }

    .why-timeline-section {
        padding: 80px 0;
    }

    .why-tl-card {
        padding: 28px 24px;
    }
}

/* ============================================
   PARTNERS — 3-Column Grid
   ============================================ */
.partners-grid-section {
    padding: 140px 0;
    background: #F9FAFB;
    position: relative;
    overflow: hidden;
}

.partners-grid-deco {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, #E5E7EB 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.partners-grid-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.partners-grid-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: #1B2A4A;
    line-height: 1.2;
    margin-bottom: 18px;
}

.partners-grid-subtitle {
    color: #6B7280;
    font-weight: 300;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.partners-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.p3-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.p3-card:hover {
    border-color: #00d2ff;
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.15);
    transform: translateY(-6px);
}

.p3-logo {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 16px;
    border-radius: 12px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.05));
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p3-card:hover .p3-logo {
    transform: scale(1.15) translateY(-2px);
    filter: drop-shadow(0 8px 16px rgba(0, 210, 255, 0.25));
}

.p3-name-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    line-height: 1;
}

.p3-badge-inline {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.p3-card:hover .p3-badge-inline {
    transform: scale(1.15) translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(0, 210, 255, 0.4));
}

.p3-badge-icon {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.p3-card:hover .p3-badge-icon {
    transform: scale(1.25) translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(0, 210, 255, 0.3));
}

.p3-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1B2A4A;
    margin: 0;
}

.p3-card p {
    color: #6B7280;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.5;
}

.p3-card-more {
    border-style: dashed;
}

.p3-more-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p3-card-more:hover .p3-more-icon {
    transform: scale(1.1) rotate(90deg);
    background: rgba(0, 210, 255, 0.1);
    color: #00d2ff;
}

/* Responsive Partners */
@media (max-width: 768px) {


    .partners-3col {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .partners-grid-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .partners-3col {
        grid-template-columns: 1fr;
    }
}

/* =========================================================================
   PROCESS SECTION (Elegant Timeline - Concept 1)
   ========================================================================= */
.process-section {
    padding: 100px 0;
    background-color: #F9FAFB;
    position: relative;
    overflow: hidden;
}

.process-header {
    text-align: center;
    margin-bottom: 70px;
}

.process-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: #1B2A4A;
    margin: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    max-width: 1150px;
    margin: 0 auto;
}

/* The Connecting Horizontal Line with Flowing Animation */
.process-steps::before {
    content: '';
    position: absolute;
    top: 45px;
    /* Center of the 90px step-number circle */
    left: calc(12.5% + 45px);
    right: calc(12.5% + 45px);
    height: 4px;
    background: linear-gradient(90deg, #6BA3CC 0%, #4682B4 30%, #6BA3CC 50%, #4682B4 70%, #6BA3CC 100%);
    background-size: 200% 100%;
    animation: flowLine 3s linear infinite;
    z-index: 1;
    border-radius: 4px;
}

@keyframes flowLine {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    /* Sit above the line */
    padding: 20px 10px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: #FFFFFF;
    border: 4px solid #4682B4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

/* Hover effects for the entire column/step */
.process-step:hover {
    background: #FFFFFF;
    box-shadow: 0 15px 35px rgba(70, 130, 180, 0.05);
    transform: translateY(-8px);
}

.process-step:hover .step-icon {
    border-color: #4682B4;
    background: #4682B4;
    color: #FFFFFF;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(70, 130, 180, 0.4);
}

.process-step h3 {
    font-size: 1.4rem;
    color: #1B2A4A;
    margin-bottom: 12px;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
}

.process-step:hover h3 {
    color: var(--gold);
    transform: scale(1.05);
}

.process-step p {
    color: #6B7280;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 300;
    padding: 0 10px;
    transition: opacity 0.3s ease;
}

/* Small visual dot inside the active hovering node's bottom */
.step-icon::after {
    content: '';
    position: absolute;
    bottom: -15px;
    width: 8px;
    height: 8px;
    background: #4682B4;
    border-radius: 50%;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

/* =========================================================================
   AFTER-SALES CARE (Vertical Tabs Navigation - Concept 2)
   ========================================================================= */
.as-tabs-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
    margin-top: 50px;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(15, 23, 42, 0.06);
    padding: 40px;
    border: 1px solid #E5E7EB;
}

.as-tabs-list {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.as-tab {
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid transparent;
    background: #F9FAFB;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 1.15rem;
    color: #4B5563;
    font-weight: 500;
    font-family: 'Kanit', sans-serif;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    outline: none;
}

.as-tab i {
    font-size: 1.5rem;
    color: #9CA3AF;
    transition: color 0.3s ease;
    width: 30px;
    text-align: center;
}

.as-tab:hover {
    background: #F3F4F6;
    color: #1B2A4A;
    transform: translateX(6px);
}

.as-tab:hover i {
    color: var(--gold);
}

.as-tab.active {
    background: linear-gradient(135deg, #4682B4, #2D5A85);
    color: #FFFFFF;
    box-shadow: 0 12px 30px rgba(70, 130, 180, 0.25);
    transform: translateX(12px);
    border-color: transparent;
}

.as-tab.active i {
    color: #FFFFFF;
}

.as-pane-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 20px 20px 20px 50px;
    border-left: 2px dashed #E5E7EB;
    min-height: 420px;
    position: relative;
}

.as-pane {
    display: none;
    opacity: 0;
    width: 100%;
}

.as-pane.active {
    display: flex;
    flex-direction: column;
    gap: 30px;
    opacity: 1;
}

.pane-icon {
    width: 90px;
    height: 90px;
    background: rgba(70, 130, 180, 0.08);
    color: var(--gold);
    font-size: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    margin-bottom: 10px;
    box-shadow: inset 0 0 0 1px rgba(70, 130, 180, 0.1);
}

.pane-text h3 {
    font-size: 2rem;
    color: #1B2A4A;
    margin: 0 0 18px;
    font-weight: 700;
    line-height: 1.3;
}

.pane-text p {
    font-size: 1.15rem;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 300;
}

.pane-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pane-benefits li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.1rem;
    color: #1F2937;
    font-weight: 500;
}

.pane-benefits li i {
    color: #4682B4;
    /* Emerald green for checkmarks */
    font-size: 1.3rem;
    background: rgba(70, 130, 180, 0.1);
    padding: 6px;
    border-radius: 50%;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .as-tabs-container {
        flex-direction: column;
        padding: 20px 16px;
        gap: 24px;
    }

    .as-tabs-list {
        flex: auto;
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;
        gap: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .as-tabs-list::-webkit-scrollbar {
        display: none;
    }

    .as-tab {
        flex: 0 0 auto;
        padding: 12px 18px;
        font-size: 0.85rem;
        white-space: nowrap;
        scroll-snap-align: start;
        transform: none !important;
        border-radius: 10px;
    }

    .as-tab i {
        font-size: 1rem;
    }

    .as-pane-content {
        border-left: none;
        border-top: 1px solid #E5E7EB;
        padding: 24px 4px 0 4px;
        min-height: auto;
    }

    .pane-icon {
        width: 60px;
        height: 60px;
    }

    .pane-icon i {
        font-size: 1.5rem;
    }

    .pane-text h3 {
        font-size: 1.3rem;
    }

    .pane-text p {
        font-size: 0.9rem;
    }
}

.process-step:hover .step-icon::after {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 50px;
    }

    .process-steps::before {
        display: none;
        /* Hide line on smaller screens */
    }
}

@media (max-width: 500px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}


/* =========================================================================
   WHY BROKER SECTION (Clean White Corporate)
   ========================================================================= */
.why-broker-section {
    padding: 100px 0;
    background: #F9FAFB;
    position: relative;
}

.why-broker-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-broker-subtitle {
    color: #6B7280;
    max-width: 550px;
    margin: 16px auto 0;
    font-weight: 300;
    font-size: 1.05rem;
}

.why-new-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-new-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-new-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1B2A4A, #4682B4);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.why-new-card:hover::before {
    transform: scaleX(1);
}

.why-new-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    border-color: #CBD5E1;
}

.why-new-icon {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, #FBF7F0 0%, #F5F0E5 100%);
    box-shadow: 0 8px 20px rgba(70, 130, 180, 0.15), inset 0 2px 4px #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-new-icon i {
    font-size: 2rem;
    color: var(--gold);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-new-card:hover .why-new-icon {
    background: linear-gradient(135deg, #4682B4 0%, #1e3a8a 100%);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    transform: translateY(-4px) scale(1.05);
}

.why-new-card:hover .why-new-icon i {
    color: #FFFFFF;
}

.why-new-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1B2A4A;
    margin-bottom: 12px;
    font-family: 'Kanit', sans-serif;
}

.why-new-desc {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

@media (max-width: 900px) {
    .why-new-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* =========================================================================
   FOOTER (Classic Premium Dark - Concept 1)
   ========================================================================= */
.footer {
    background-color: #0B1120;
    color: #9CA3AF;
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
    font-family: 'Kanit', sans-serif;
    border-top: none;
}

/* Animated Gradient Line */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            #4682B4,
            #6BA3CC,
            #4682B4,
            #4682B4,
            transparent);
    animation: footerGradientFlow 4s linear infinite;
    z-index: 3;
}

@keyframes footerGradientFlow {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

/* Background Watermark */
.footer-watermark {
    display: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 70px;
}

/* Brand Column */
.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 25px;
}

.fl-shield {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(70, 130, 180, 0.4));
}

.fl-name {
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-brand p {
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 320px;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social .social-pill {
    width: 42px;
    height: 42px;
    border-radius: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-social .social-pill.sp-facebook {
    background: #1877F2;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.35);
}

.footer-social .social-pill.sp-line {
    background: #06C755;
    box-shadow: 0 4px 12px rgba(6, 199, 85, 0.35);
}

.footer-social .social-pill i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    padding-right: 2px;
    font-weight: 400;
    font-style: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.footer-social .social-pill .sp-text {
    width: 0;
    overflow: hidden;
    line-height: 42px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-social .social-pill:hover {
    width: 155px;
    color: #FFFFFF;
    transform: translateY(-3px);
    padding-right: 18px;
}

.footer-social .social-pill.sp-facebook:hover {
    background: #1565D8;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.45);
}

.footer-social .social-pill.sp-line:hover {
    background: #05B34C;
    box-shadow: 0 8px 20px rgba(6, 199, 85, 0.45);
}

.footer-social .social-pill:hover .sp-text {
    width: 85px;
    opacity: 1;
}

/* Links Columns */
.footer-col h4 {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #4682B4;
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col ul li a {
    position: relative;
    color: #9CA3AF;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    font-weight: 300;
}

.footer-col ul li a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #6BA3CC;
    transition: width 0.3s ease;
}

.footer-col ul li a:hover::after {
    width: 100%;
}

/* Contact Items */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #D1D5DB;
    text-decoration: none;
    margin-bottom: 22px;
    transition: color 0.3s ease;
    line-height: 1.6;
    font-size: 1.05rem;
}

.footer-contact-item:hover {
    color: #FFFFFF;
}

.footer-contact-item i {
    font-size: 1rem !important;
    color: var(--gold);
    width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
}

.footer-contact-item .fa-line {
    color: #06C755;
}

.footer-contact-item .fa-facebook {
    color: #1877F2;
}

.footer-contact-item .fa-envelope {
    color: #9CA3AF;
}

.footer-contact-item span {
    font-weight: 400;
    font-size: 1rem;
}

/* Bottom Bar */
.footer-bottom {
    background: #020617;
    /* Even darker Navy */
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 300;
}

.footer-bottom a:hover {
    color: #FFFFFF !important;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }

    /* Brand centered */
    .footer-brand {
        margin-bottom: 28px;
        padding-bottom: 28px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-brand>p {
        text-align: center;
        font-size: 0.75rem;
    }

    .footer-social {
        justify-content: center;
    }


    /* Glass Pill h4 headings */
    .footer-col {
        margin-bottom: 4px;
    }

    .footer-col h4 {
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 13px 28px;
        margin-bottom: 0;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.04);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        letter-spacing: 0.03em;
    }

    .footer-col h4:active {
        transform: scale(0.97);
    }

    .footer-col h4::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.7rem;
        color: #6B7280;
        transition: transform 0.3s ease, color 0.3s ease;
        display: inline-block !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
    }

    /* Open state */
    .footer-col.accordion-open h4 {
        background: rgba(70, 130, 180, 0.1);
        border-color: rgba(70, 130, 180, 0.25);
        color: var(--gold);
    }

    .footer-col.accordion-open h4::after {
        transform: rotate(180deg);
        color: var(--gold);
    }

    /* Accordion content hidden by default */
    .footer-col ul,
    .footer-col .footer-contact-item {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
        opacity: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    /* >> THIS IS THE FIX THE USER WANTED! Increase max-height from 300px to 800px so the 5th items don't hide! << */
    .footer-col.accordion-open ul {
        max-height: 800px; 
        opacity: 1;
        padding: 16px 0 12px;
    }

    .footer-col.accordion-open .footer-contact-item {
        max-height: 200px;
        opacity: 1;
        margin: 0 auto 16px;
        display: grid;
        grid-template-columns: 44px auto;
        gap: 14px;
        align-items: center;
        width: 290px;
        font-size: 1rem;
    }

    .footer-col.accordion-open .footer-contact-item:first-of-type {
        margin-top: 20px;
    }

    .footer-col ul li {
        padding: 10px 0;
    }

    .footer-col ul li a {
        justify-content: center;
        font-size: 1.1rem;
        color: #D1D5DB;
    }
    .footer-bottom .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-contacts {
        flex-direction: column;
        align-items: center;
    }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #F5F3EE;
}

::-webkit-scrollbar-thumb {
    background: var(--gold-light);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ---- Selection ---- */
::selection {
    background: var(--gold);
    color: #FFFFFF;
}


/* ============================================
   PAGE-SPECIFIC STYLES (Multi-page)
   ============================================ */

/* ---- Page Header ---- */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Show the center of the image (the car) */
    opacity: 0.35;
}

.page-header-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #0B1120 0%, rgba(11, 17, 32, 0.7) 50%, #0B1120 100%);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    margin-bottom: 16px;
    font-weight: 600;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 1.15rem;
    color: #D1D5DB;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: 0 20px 60px -15px rgba(70, 130, 180, 0.08), 0 10px 30px -10px rgba(15, 23, 42, 0.04);
    transition: transform 0.6s var(--ease-spring), box-shadow 0.6s var(--ease-spring);
    margin-bottom: 60px;
}

.section-bg-dark-blue .service-detail {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    margin-bottom: 0;
}

.service-detail:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px -20px rgba(70, 130, 180, 0.12), 0 15px 40px -15px rgba(15, 23, 42, 0.06);
}

.section-bg-dark-blue .service-detail:hover {
    box-shadow: none;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse>* {
    direction: ltr;
}

.service-detail-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #1B2A4A;
    /* Dark contrast text on gold */
    background: var(--gold);
    /* Make badge gold */
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.section-bg-dark-blue .service-detail-badge {
    background: var(--gold);
    /* Actual Gold color */
    color: #1B2A4A;
    /* Dark text for contrast against gold */
}

.service-detail h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.section-bg-dark-blue .service-detail h2 {
    color: #FFFFFF;
}

.service-detail-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.section-bg-dark-blue .service-detail-desc {
    color: rgba(255, 255, 255, 0.8);
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.section-bg-dark-blue .service-features li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: var(--gold);
    /* Make checkmarks gold */
    font-size: 1.1rem;
    margin-right: 4px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.section-bg-dark-blue .service-features li i {
    color: var(--gold);
    /* Actual Gold checkmarks */
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.section-bg-dark-blue .service-price {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.section-bg-dark-blue .price-label {
    color: rgba(255, 255, 255, 0.6);
}

.price-amount {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
    /* Make price gold */
    font-weight: 500;
    line-height: 1;
    transition: color 0.3s ease;
}

.section-bg-dark-blue .price-amount {
    color: #FFFFFF;
    /* High contrast for price on dark background */
}

.price-unit {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    transition: color 0.3s ease;
}

.section-bg-dark-blue .price-unit {
    color: rgba(255, 255, 255, 0.6);
}

.section-bg-dark-blue .btn-outline-blue {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-weight: 500;
}

.section-bg-dark-blue .btn-outline-blue:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #FFFFFF;
    box-shadow: 0 8px 30px rgba(70, 130, 180, 0.4);
}

.service-image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.service-image-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.05);
    pointer-events: none;
}

.service-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.8s var(--ease-luxury);
}

.service-image-frame:hover img {
    transform: scale(1.05);
}

/* ---- Service Cards Grid (Clean Editorial Premium) ---- */
.service-cards-section {
    background: #F9FAFB;
}

.sc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.sc-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(70, 130, 180, 0.15);
    border-color: rgba(70, 130, 180, 0.3);
}

/* Featured card (Most popular) */
.sc-card-featured {
    border: 2px solid rgba(70, 130, 180, 0.5);
    box-shadow: 0 8px 24px rgba(70, 130, 180, 0.1);
    transform: translateY(-4px);
}

.sc-card-featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 36px rgba(70, 130, 180, 0.2);
}

/* Badges */
.sc-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    width: fit-content;
    white-space: nowrap;
}

.sc-badge-gold {
    background: #FBF7F0;
    color: #1B2A4A;
    border: none;
}

.sc-badge-blue {
    background: #F5F0E5;
    color: #2D5A85;
    border: none;
}

.sc-badge-green {
    background: #DCFCE7;
    color: #166534;
    border: none;
}

.sc-badge-navy {
    background: #F3F4F6;
    color: #374151;
    border: none;
}

/* Icon */
.sc-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #0F172A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    margin-top: 5px;
    transition: all 0.4s ease;
}

.sc-card:hover .sc-icon {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.sc-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.sc-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Features list */
.sc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.sc-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.4;
    padding: 0;
}

.sc-features li i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* CTA Button */
.sc-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-base);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
}

.sc-cta i {
    margin-left: 6px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.sc-cta:hover {
    background: #F9FAFB;
    border-color: rgba(0, 0, 0, 0.2);
}

.sc-card:hover .sc-cta {
    border-color: rgba(70, 130, 180, 0.4);
    color: #1B2A4A;
}

.sc-card:hover .sc-cta:hover {
    background: #FBF7F0;
}

.sc-cta:hover i {
    transform: translateX(4px);
}


/* Responsive: Service Cards */
@media (max-width: 1024px) {
    .sc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .sc-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sc-card {
        padding: 28px 22px;
    }
}

/* ---- Why Choose Us / Grid Cards ---- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 40px 28px 36px;
    text-align: center;
    transition: all 0.5s var(--ease-luxury);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4682B4, transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.why-card:hover {
    border-color: rgba(70, 130, 180, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(70, 130, 180, 0.1);
    border: 1px solid rgba(70, 130, 180, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    transition: all 0.5s ease;
}

.why-card:hover .why-card-icon {
    background: rgba(70, 130, 180, 0.2);
    border-color: rgba(70, 130, 180, 0.4);
    transform: scale(1.1);
}

.why-card-num {
    font-family: var(--font-serif);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.why-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
}

/* Partner Tags */
.partner-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(15, 23, 42, 0.03);
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 400;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.partner-tag:hover {
    border-color: rgba(70, 130, 180, 0.4);
    color: #2D5A85;
    background: rgba(70, 130, 180, 0.06);
}

/* Responsive: Why Grid */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card {
        padding: 28px 24px;
    }
}


.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.review-card {
    padding: 28px;
    border: var(--card-border);
    border-radius: 12px;
    background: #FFFFFF;
    transition: all 0.5s var(--ease-luxury);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.review-card:hover {
    border-color: rgba(70, 130, 180, 0.2);
    background: #F8FAFF;
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(70, 130, 180, 0.1);
}

.rc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.rc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 300;
    flex-shrink: 0;
}

.rc-header strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.rc-header span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
    font-weight: 300;
    margin: 12px 0 16px;
}

.rc-type {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border: 1px solid rgba(70, 130, 180, 0.15);
    border-radius: 100px;
}

/* ---- Contact Cards Grid ---- */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-card {
    text-align: center;
    padding: 40px 24px;
    border: var(--card-border);
    border-radius: 12px;
    background: #FFFFFF;
    transition: all 0.5s var(--ease-luxury);
    display: block;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.contact-card:hover {
    border-color: rgba(70, 130, 180, 0.25);
    background: #F0F7FF;
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(70, 130, 180, 0.1);
}

.cc-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 16px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    background: linear-gradient(135deg, #FBF7F0, #DBEAFE);
    transition: all 0.4s ease;
}

.contact-card:hover .cc-icon {
    background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
    box-shadow: 0 8px 25px rgba(70, 130, 180, 0.15);
}

.contact-card h3 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cc-detail {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 4px;
}

.cc-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ---- Contact Layout ---- */
.contact-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: start;
}

/* ---- Contact Form ---- */
.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}

.form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark-700);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M6 9l6 6 6-6' stroke='%23525c7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

.form-group select option {
    background: var(--dark-700);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ---- Contact Info Side ---- */
.contact-info-card {
    padding: 32px;
    border: var(--card-border);
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.info-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.ip-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(70, 130, 180, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.info-point strong {
    display: block;
    font-size: 0.88rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 4px;
}

.info-point p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
}

.contact-hours-card {
    padding: 28px;
    border: var(--card-border);
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.contact-hours-card h4 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-hours-card h4 i {
    color: var(--gold);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.hours-note {
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
}

/* ---- Map Section ---- */
.map-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: var(--card-border);
}

/* ---- Responsive: New Pages ---- */
@media (max-width: 1024px) {
    .service-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail.reverse {
        direction: ltr;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {


    .page-header {
        padding: 140px 0 60px;
        min-height: 320px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {

    .insurance-cards-grid,
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .about-layout {
        gap: 30px;
    }

    .consultant-values {
        flex-direction: column;
        gap: 10px;
    }

    .addl-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- About Consultant ---- */
.about-consultant {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
    position: relative;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 24px;
}

.consultant-name {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.consultant-name h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.consultant-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.consultant-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 24px;
}

.consultant-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #FBF7F0, #DBEAFE);
    border: 1px solid rgba(70, 130, 180, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.consultant-badge>i {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.consultant-badge strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 2px;
}

.consultant-badge span {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 500;
}

.consultant-values {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cv-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 100px;
    background: #FFFFFF;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
    transition: all 0.3s ease;
}

.cv-item i {
    color: var(--gold);
    font-size: 0.75rem;
}

.cv-item:hover {
    border-color: rgba(70, 130, 180, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(70, 130, 180, 0.08);
}

.about-image {
    position: relative;
}

.license-frame {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    border: none;
    box-shadow: none;
    transition: all 0.5s var(--ease-luxury);
}

.license-frame:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

.license-frame img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.06);
    transition: transform 0.6s var(--ease-luxury);
}

.license-frame:hover img {
    transform: scale(1.08);
}

.license-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
}

.license-overlay i {
    font-size: 1.1rem;
    color: #FFFFFF;
}

.license-overlay span {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* ---- Additional Services Section ---- */
.addl-services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
}

.addl-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.addl-service-card {
    padding: 32px 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-lg);
    background: #FFFFFF;
    text-align: center;
    transition: all 0.5s var(--ease-spring);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.addl-service-card:hover {
    border-color: rgba(70, 130, 180, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(70, 130, 180, 0.1);
}

.addl-service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    background: linear-gradient(135deg, #FBF7F0, #DBEAFE);
    box-shadow: 0 6px 12px rgba(70, 130, 180, 0.1);
    transition: all 0.4s var(--ease-spring);
}

.addl-service-card:hover .addl-service-icon {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 20px rgba(70, 130, 180, 0.18);
}

.addl-service-card h3 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.addl-service-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
}

/* ---- About Consultant Responsive ---- */
@media (max-width: 992px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .addl-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {


    .addl-services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .partner-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* ---- Partner Showcase (Option D: Minimal Premium Row) ---- */
.partner-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.partners-logo-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: white;
}

.partners-logo-section .decor-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23c5a022' fill-opacity='0.1' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

.partners-logo-section .decor-waves-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%231e3a8a' fill-opacity='0.05' d='M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,106.7C672,117,768,171,864,176C960,181,1056,139,1152,122.7C1248,107,1344,117,1392,122.7L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    border-radius: 12px;
    background: white;
    border: 1px solid #E5E7EB;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.showcase-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #4682B4, #6BA3CC);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-item:hover {
    border-color: #6BA3CC;
    box-shadow: 0 8px 24px rgba(70, 130, 180, 0.1);
}

.showcase-item:hover::before {
    opacity: 1;
}

.showcase-main {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    flex: 1;
}

.showcase-logo {
    flex: 0 0 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F9FAFB;
    border-radius: 12px;
    padding: 8px;
}

.showcase-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.showcase-content {
    flex: 1;
}

.showcase-content h4 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.showcase-content p {
    font-size: 0.75rem;
    color: #9CA3AF;
    line-height: 1.4;
    margin-bottom: 0;
}

.showcase-badge {
    width: 22px;
    height: auto;
    opacity: 0.7;
    position: absolute;
    top: 12px;
    right: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Company Specific Colors */
.sc-viriya h4 {
    color: #1e3a8a;
}

.sc-tokio h4 {
    color: #0284c7;
}

.sc-bki h4 {
    color: #2D5A85;
}

.sc-thanachart h4 {
    color: #f97316;
}

.sc-mtl h4 {
    color: var(--gold);
}

.sc-tip h4 {
    color: #7e22ce;
}

.sc-allianz h4 {
    color: #003781;
}

.sc-ergo h4 {
    color: #ef4444;
}

.sc-others h4 {
    color: var(--text-primary);
}

@media (max-width: 1024px) {
    .partner-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .partner-showcase-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .showcase-logo {
        flex: 0 0 60px;
        height: 60px;
    }

    .showcase-item {
        padding: 16px 20px;
    }
}

/* Hide old grid if still there */
.partner-logo-grid {
    display: none;
}

@media (max-width: 992px) {
    .partner-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .partner-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .partner-logo-card {
        padding: 16px 10px;
    }

    .partner-logo-card img {
        width: 36px;
        height: 36px;
    }
}

/* ============================================
   EXECUTIVE GRID � Services Section
   ============================================ */
.exec-services {
    padding: 140px 0;
    background: #FFFFFF;
}

.exec-services-header {
    text-align: center;
    margin-bottom: 80px;
}

.exec-services-header h2 {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    color: #1B2A4A;
    line-height: 1.2;
    margin-bottom: 20px;
}

.exec-services-subtitle {
    color: #6B7280;
    font-weight: 300;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.exec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .exec-grid > *:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: calc(50% - 16px);
        width: 100%;
    }
}

.exec-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 48px 44px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.exec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4682B4, #6BA3CC);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.exec-card:hover {
    border-color: #BFDBFE;
    box-shadow: 0 12px 40px rgba(70, 130, 180, 0.08);
    transform: translateY(-4px);
}

.exec-card:hover::before {
    transform: scaleX(1);
}

.exec-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.exec-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #FBF7F0, #DBEAFE);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.4rem;
}

.exec-card-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: #E5E7EB;
    line-height: 1;
}

.exec.p3-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1B2A4A;
    margin: 0;
}

.exec-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1B2A4A;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.exec-card p {
    color: #6B7280;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 28px;
}

.exec-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.exec-card-link:hover {
    gap: 10px;
}

.exec-card-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.exec-card-link:hover i {
    transform: translateX(2px);
}

.installment-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, #4682B4, #2D5A85);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pulseGold 2.5s infinite;
}

@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(70, 130, 180, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(70, 130, 180, 0); }
    100% { box-shadow: 0 0 0 0 rgba(70, 130, 180, 0); }
}

/* Responsive */
@media (max-width: 768px) {


    .exec-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .exec-card {
        padding: 28px 24px;
    }

    .exec-services {
        padding: 60px 0;
    }
}

/* ============================================
   ABOUT CONSULTANT � Executive Split
   ============================================ */
.about-exec {
    padding: 140px 0;
    background: #F9FAFB;
}

.about-exec-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin: 0 auto;
}

/* --- Left: Image Frame --- */
.about-exec-image {
    position: relative;
}

.about-exec-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,210,255,0.3);
    box-shadow: 0 25px 50px -12px rgba(15,23,42,0.15), 0 0 30px rgba(0,210,255,0.1);
}

.about-exec-frame img {
    width: 100%;
    display: block;
}

.about-exec-frame-accent {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #4682B4;
    border-radius: 20px;
    pointer-events: none;
    opacity: 0.3;
    display: none;
}

.about-exec-stamp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 20px;
    background: #FBF7F0;
    border: 1px solid #BFDBFE;
    border-radius: 100px;
    font-size: 0.8rem;
    color: #2D5A85;
    font-weight: 500;
}
.about-mini-stats {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.about-mini-stat {
    flex: 1;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-top: 3px solid #3a7bd5;
    border-radius: 12px;
    padding: 16px 10px;
    text-align: center;
    transition: all 0.3s ease;
}
.about-mini-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.15);
    background: #FFFFFF;
}
.about-mini-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}
.about-mini-label {
    display: block;
    font-size: 0.8rem;
    color: #64748B;
    margin-top: 4px;
}

.about-exec-stamp i {
    font-size: 0.9rem;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Right: Content --- */
.about-exec-content h2 {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    color: #1B2A4A;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-exec-name h3 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #1B2A4A;
    margin-bottom: 8px;
}

.about-exec-name span {
    font-size: 0.95rem;
    color: #6B7280;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.about-exec-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #4682B4, #6BA3CC);
    margin: 20px 0;
    border-radius: 2px;
}

.about-exec-bio {
    color: #4B5563;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 32px;
}

.about-exec-license {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(to right, #F0F7FF, #FFFFFF);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-left: 4px solid #3a7bd5;
    border-radius: 14px;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
}

.about-exec-license:hover {
    transform: translateY(-4px);
    border-color: #6BA3CC;
    box-shadow: 0 12px 32px rgba(70, 130, 180, 0.12), 0 0 0 1px rgba(70, 130, 180, 0.05);
    background: linear-gradient(135deg, #FFFFFF 0%, #FBF7F0 100%);
}

.about-exec-license i {
    font-size: 2rem;
    color: var(--gold);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-exec-license:hover i {
    transform: scale(1.15) rotate(-5deg);
}

.about-exec-license strong {
    display: block;
    font-size: 1.05rem;
    color: #1B2A4A;
    margin-bottom: 4px;
}

.about-exec-license span {
    font-size: 0.95rem;
    color: #6B7280;
    font-weight: 300;
}

.about-exec-values {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-exec-value {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(0, 210, 255, 0.05);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    color: #1E293B;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
}

.about-exec-value:hover {
    transform: translateY(-3px);
    background: rgba(0, 210, 255, 0.12);
    border-color: rgba(0, 210, 255, 0.4);
    box-shadow: 0 8px 24px rgba(0, 210, 255, 0.15);
    color: #2D5A85;
}

.about-exec-value i {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-exec-value:hover i {
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {


    .about-exec-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-exec {
        padding: 60px 0;
    }

    .about-exec-values {
        flex-direction: column;
    }
}

/* ============================================
   DECORATIVE ENHANCEMENTS
   ============================================ */

/* --- Services Section: Dot Pattern Background --- */
.exec-services {
    position: relative;
    overflow: hidden;
}

.exec-deco-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, #BFDBFE 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.exec-deco-dots-tl {
    top: 40px;
    left: -40px;
}

.exec-deco-dots-br {
    bottom: 40px;
    right: -40px;
}

.exec-deco-line-v {
    position: absolute;
    top: 20%;
    right: 60px;
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #BFDBFE, transparent);
    pointer-events: none;
    z-index: 0;
}

.exec-services .container {
    position: relative;
    z-index: 1;
}

.exec-ornament {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #4682B4, #6BA3CC);
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* --- About Section: Quote Block --- */
.about-exec-quote {
    position: relative;
    padding: 20px 0 20px 24px;
    margin-bottom: 24px;
    border-left: 3px solid #BFDBFE;
}

.about-exec-quote p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: #374151;
    line-height: 1.7;
    font-weight: 400;
}

.about-quote-icon {
    position: absolute;
    top: -8px;
    left: -14px;
    font-size: 1.8rem;
    color: #BFDBFE;
    font-style: normal;
}

/* --- About Section: Mini Stats --- */
.about-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.about-mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 8px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-mini-stat:hover {
    border-color: #BFDBFE;
    box-shadow: 0 4px 16px rgba(70, 130, 180, 0.08);
    transform: translateY(-2px);
}

.about-mini-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.about-mini-label {
    font-size: 0.7rem;
    color: #6B7280;
    font-weight: 300;
}

/* Responsive adjustments */
@media (max-width: 768px) {



    .exec-deco-dots,
    .exec-deco-line-v {
        display: none;
    }

    .about-mini-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .about-mini-num {
        font-size: 1.1rem;
    }
}

/* ============================================
   WHY CHOOSE US � Vertical Timeline
   ============================================ */
.why-timeline-section {
    padding: 140px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.why-tl-deco-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, #BFDBFE 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: 0.35;
    pointer-events: none;
}

.why-tl-deco-tr {
    top: 60px;
    right: -30px;
}

.why-tl-deco-bl {
    bottom: 60px;
    left: -30px;
}

.why-tl-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.why-tl-header h2 {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    color: #1B2A4A;
    line-height: 1.2;
    margin-bottom: 20px;
}

.why-tl-subtitle {
    color: #6B7280;
    font-weight: 300;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Timeline Track --- */
.why-tl-track {
    position: relative;
    margin: 0 auto;
    padding-left: 50px;
}

.why-tl-line {
    position: absolute;
    left: 1px;
    top: 0;
    bottom: 0;
    width: 40px;
    background: none;
    z-index: 0;
    pointer-events: none;
}

/* The actual visible 2px line drawn in center */
.why-tl-line::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #BFDBFE, var(--gold), #BFDBFE);
    overflow: visible;
}



/* Base icon transitions for advanced hover effects across the site */
i[class*="fa-"], .icon, .why-tl-card-icon i, .exec-card-icon i {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}
a:hover i[class*="fa-"], .btn:hover i[class*="fa-"], .why-tl-card:hover .why-tl-card-icon i, .exec-card:hover .exec-card-icon i, .social-pill:hover i {
    transform: scale(1.15) translateY(-2px);
    color: var(--gold-light);
}

/* JS-controlled traveling light */
.tl-light {
    position: absolute;
    left: 18px;
    top: 0;
    width: 4px;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(70, 130, 180, 0.3) 20%, rgba(255,255,255,0.6) 50%, rgba(70, 130, 180, 0.3) 80%, transparent 100%);
    border-radius: 4px;
    box-shadow: 0 0 8px 3px rgba(70, 130, 180, 0.3);
    filter: blur(1px);
    opacity: 0;
    z-index: 3;
    pointer-events: none;
    transition: none;
}

.tl-light.active {
    opacity: 1;
}

/* Pulse when reaching a dot */
.tl-light.pulse {
    animation: tlLightPulse 0.6s ease-in-out;
}

@keyframes tlLightPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.8), 0 0 14px 4px rgba(70, 130, 180, 0.6), 0 0 30px 8px rgba(70, 130, 180, 0.25);
    }

    50% {
        transform: scale(1.8);
        box-shadow: 0 0 10px 4px rgba(255, 255, 255, 1), 0 0 24px 8px rgba(70, 130, 180, 0.8), 0 0 50px 16px rgba(70, 130, 180, 0.35);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.8), 0 0 14px 4px rgba(70, 130, 180, 0.6), 0 0 30px 8px rgba(70, 130, 180, 0.25);
    }
}

/* Dot glow when light arrives */
.why-tl-dot.glow {
    box-shadow: 0 0 0 4px rgba(70, 130, 180, 0.3), 0 0 20px rgba(70, 130, 180, 0.6), 0 0 40px rgba(70, 130, 180, 0.2);
    background: #6BA3CC;
    transition: all 0.3s ease;
}

/* --- Timeline Item --- */
.why-tl-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    z-index: 1;
}

.why-tl-item:last-child {
    margin-bottom: 0;
}

.why-tl-left,
.why-tl-right {
    padding-left: 0;
    padding-right: 0;
    justify-content: flex-start;
}

/* --- Checkpoint Dot --- */
.why-tl-dot {
    position: absolute;
    left: -30px;
    top: 30px;
    width: 18px;
    height: 18px;
    background: #00d2ff;
    border: 3px solid #FFFFFF;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(0, 210, 255, 0.2), 0 0 16px rgba(0, 210, 255, 0.4);
    z-index: 2;
    transition: all 0.3s ease;
}

/* --- Timeline Card --- */
.why-tl-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 44px 40px;
    transition: all 0.4s ease;
    overflow: hidden;
    width: 100%;
}

.why-tl-card:hover {
    border-color: #00d2ff;
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.15);
    transform: translateY(-6px);
}

/* Watermark Number */
.why-tl-watermark {
    position: absolute;
    top: -10px;
    right: 16px;
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 800;
    color: #F3F4F6;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.why-tl-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #F8FAFC;
    border: 1px solid rgba(0, 210, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 210, 255, 0.1), inset 0 2px 4px #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a7bd5;
    font-size: 1.6rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.why-tl-card-icon i {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-tl-card:hover .why-tl-card-icon {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, rgba(0,210,255,0.1), rgba(58,123,213,0.1));
    border: 1px solid rgba(0,210,255,0.3);
    color: #00d2ff;
    box-shadow: 0 15px 35px rgba(0, 210, 255, 0.2), inset 0 2px 4px #FFFFFF;
}

.why-tl-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1B2A4A;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.why-tl-card p {
    color: #4B5563;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.why-tl-card p:last-child {
    margin-bottom: 0;
}

/* Responsive Timeline */
@media (max-width: 768px) {


    .why-tl-track {
        padding-left: 36px;
    }

    .why-tl-line {
        left: 14px;
    }

    .why-tl-dot {
        left: -22px;
    }

    .why-tl-deco-dots {
        display: none;
    }

    .why-timeline-section {
        padding: 80px 0;
    }

    .why-tl-card {
        padding: 28px 24px;
    }
}

/* ============================================
   PARTNERS — 3-Column Grid
   ============================================ */
.partners-grid-section {
    padding: 140px 0;
    background: #F9FAFB;
    position: relative;
    overflow: hidden;
}

.partners-grid-deco {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, #E5E7EB 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.partners-grid-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.partners-grid-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: #1B2A4A;
    line-height: 1.2;
    margin-bottom: 18px;
}

.partners-grid-subtitle {
    color: #6B7280;
    font-weight: 300;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.partners-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.p3-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.p3-card:hover {
    border-color: #00d2ff;
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.15);
    transform: translateY(-6px);
}

.p3-logo {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 16px;
    border-radius: 12px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.05));
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p3-card:hover .p3-logo {
    transform: scale(1.15) translateY(-2px);
    filter: drop-shadow(0 8px 16px rgba(0, 210, 255, 0.25));
}

.p3-name-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    line-height: 1;
}

.p3-badge-inline {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.p3-card:hover .p3-badge-inline {
    transform: scale(1.15) translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(0, 210, 255, 0.4));
}

.p3-badge-icon {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.p3-card:hover .p3-badge-icon {
    transform: scale(1.25) translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(0, 210, 255, 0.3));
}

.p3-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1B2A4A;
    margin: 0;
}

.p3-card p {
    color: #6B7280;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.5;
}

.p3-card-more {
    border-style: dashed;
}

.p3-more-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p3-card-more:hover .p3-more-icon {
    transform: scale(1.1) rotate(90deg);
    background: rgba(0, 210, 255, 0.1);
    color: #00d2ff;
}

/* Responsive Partners */
@media (max-width: 768px) {


    .partners-3col {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .partners-grid-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .partners-3col {
        grid-template-columns: 1fr;
    }
}

/* =========================================================================
   PROCESS SECTION (Elegant Timeline - Concept 1)
   ========================================================================= */
.process-section {
    padding: 100px 0;
    background-color: #F9FAFB;
    position: relative;
    overflow: hidden;
}

.process-header {
    text-align: center;
    margin-bottom: 70px;
}

.process-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: #1B2A4A;
    margin: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    max-width: 1150px;
    margin: 0 auto;
}

/* The Connecting Horizontal Line with Flowing Animation */
.process-steps::before {
    content: '';
    position: absolute;
    top: 45px;
    /* Center of the 90px step-number circle */
    left: calc(12.5% + 45px);
    right: calc(12.5% + 45px);
    height: 4px;
    background: linear-gradient(90deg, #6BA3CC 0%, #4682B4 30%, #6BA3CC 50%, #4682B4 70%, #6BA3CC 100%);
    background-size: 200% 100%;
    animation: flowLine 3s linear infinite;
    z-index: 1;
    border-radius: 4px;
}

@keyframes flowLine {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    /* Sit above the line */
    padding: 20px 10px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: #FFFFFF;
    border: 4px solid #4682B4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

/* Hover effects for the entire column/step */
.process-step:hover {
    background: #FFFFFF;
    box-shadow: 0 15px 35px rgba(70, 130, 180, 0.05);
    transform: translateY(-8px);
}

.process-step:hover .step-icon {
    border-color: #4682B4;
    background: #4682B4;
    color: #FFFFFF;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(70, 130, 180, 0.4);
}

.process-step h3 {
    font-size: 1.4rem;
    color: #1B2A4A;
    margin-bottom: 12px;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
}

.process-step:hover h3 {
    color: var(--gold);
    transform: scale(1.05);
}

.process-step p {
    color: #6B7280;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 300;
    padding: 0 10px;
    transition: opacity 0.3s ease;
}

/* Small visual dot inside the active hovering node's bottom */
.step-icon::after {
    content: '';
    position: absolute;
    bottom: -15px;
    width: 8px;
    height: 8px;
    background: #4682B4;
    border-radius: 50%;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

/* =========================================================================
   AFTER-SALES CARE (Vertical Tabs Navigation - Concept 2)
   ========================================================================= */
.as-tabs-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
    margin-top: 50px;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(15, 23, 42, 0.06);
    padding: 40px;
    border: 1px solid #E5E7EB;
}

.as-tabs-list {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.as-tab {
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid transparent;
    background: #F9FAFB;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 1.15rem;
    color: #4B5563;
    font-weight: 500;
    font-family: 'Kanit', sans-serif;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    outline: none;
}

.as-tab i {
    font-size: 1.5rem;
    color: #9CA3AF;
    transition: color 0.3s ease;
    width: 30px;
    text-align: center;
}

.as-tab:hover {
    background: #F3F4F6;
    color: #1B2A4A;
    transform: translateX(6px);
}

.as-tab:hover i {
    color: var(--gold);
}

.as-tab.active {
    background: linear-gradient(135deg, #4682B4, #2D5A85);
    color: #FFFFFF;
    box-shadow: 0 12px 30px rgba(70, 130, 180, 0.25);
    transform: translateX(12px);
    border-color: transparent;
}

.as-tab.active i {
    color: #FFFFFF;
}

.as-pane-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 20px 20px 20px 50px;
    border-left: 2px dashed #E5E7EB;
    min-height: 420px;
    position: relative;
}

.as-pane {
    display: none;
    opacity: 0;
    width: 100%;
}

.as-pane.active {
    display: flex;
    flex-direction: column;
    gap: 30px;
    opacity: 1;
}

.pane-icon {
    width: 90px;
    height: 90px;
    background: rgba(70, 130, 180, 0.08);
    color: var(--gold);
    font-size: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    margin-bottom: 10px;
    box-shadow: inset 0 0 0 1px rgba(70, 130, 180, 0.1);
}

.pane-text h3 {
    font-size: 2rem;
    color: #1B2A4A;
    margin: 0 0 18px;
    font-weight: 700;
    line-height: 1.3;
}

.pane-text p {
    font-size: 1.15rem;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 300;
}

.pane-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pane-benefits li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.1rem;
    color: #1F2937;
    font-weight: 500;
}

.pane-benefits li i {
    color: #4682B4;
    /* Emerald green for checkmarks */
    font-size: 1.3rem;
    background: rgba(70, 130, 180, 0.1);
    padding: 6px;
    border-radius: 50%;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .as-tabs-container {
        flex-direction: column;
        padding: 20px 16px;
        gap: 24px;
    }

    .as-tabs-list {
        flex: auto;
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;
        gap: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .as-tabs-list::-webkit-scrollbar {
        display: none;
    }

    .as-tab {
        flex: 0 0 auto;
        padding: 12px 18px;
        font-size: 0.85rem;
        white-space: nowrap;
        scroll-snap-align: start;
        transform: none !important;
        border-radius: 10px;
    }

    .as-tab i {
        font-size: 1rem;
    }

    .as-pane-content {
        border-left: none;
        border-top: 1px solid #E5E7EB;
        padding: 24px 4px 0 4px;
        min-height: auto;
    }

    .pane-icon {
        width: 60px;
        height: 60px;
    }

    .pane-icon i {
        font-size: 1.5rem;
    }

    .pane-text h3 {
        font-size: 1.3rem;
    }

    .pane-text p {
        font-size: 0.9rem;
    }
}

.process-step:hover .step-icon::after {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 50px;
    }

    .process-steps::before {
        display: none;
        /* Hide line on smaller screens */
    }
}

@media (max-width: 500px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}


/* =========================================================================
   WHY BROKER SECTION (Clean White Corporate)
   ========================================================================= */
.why-broker-section {
    padding: 100px 0;
    background: #F9FAFB;
    position: relative;
}

.why-broker-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-broker-subtitle {
    color: #6B7280;
    max-width: 550px;
    margin: 16px auto 0;
    font-weight: 300;
    font-size: 1.05rem;
}

.why-new-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-new-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-new-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1B2A4A, #4682B4);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.why-new-card:hover::before {
    transform: scaleX(1);
}

.why-new-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    border-color: #CBD5E1;
}

.why-new-icon {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, #FBF7F0 0%, #F5F0E5 100%);
    box-shadow: 0 8px 20px rgba(70, 130, 180, 0.15), inset 0 2px 4px #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-new-icon i {
    font-size: 2rem;
    color: var(--gold);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-new-card:hover .why-new-icon {
    background: linear-gradient(135deg, #4682B4 0%, #1e3a8a 100%);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    transform: translateY(-4px) scale(1.05);
}

.why-new-card:hover .why-new-icon i {
    color: #FFFFFF;
}

.why-new-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1B2A4A;
    margin-bottom: 12px;
    font-family: 'Kanit', sans-serif;
}

.why-new-desc {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

@media (max-width: 900px) {
    .why-new-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* =========================================================================
   FOOTER (Classic Premium Dark - Concept 1)
   ========================================================================= */
.footer {
    background-color: #0B1120;
    color: #9CA3AF;
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
    font-family: 'Kanit', sans-serif;
    border-top: none;
}

/* Animated Gradient Line */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            #4682B4,
            #6BA3CC,
            #4682B4,
            #4682B4,
            transparent);
    animation: footerGradientFlow 4s linear infinite;
    z-index: 3;
}

@keyframes footerGradientFlow {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

/* Background Watermark */
.footer-watermark {
    display: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 70px;
}

/* Brand Column */
.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 25px;
}

.fl-shield {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(70, 130, 180, 0.4));
}

.fl-name {
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-brand p {
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 320px;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social .social-pill {
    width: 42px;
    height: 42px;
    border-radius: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-social .social-pill.sp-facebook {
    background: #1877F2;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.35);
}

.footer-social .social-pill.sp-line {
    background: #06C755;
    box-shadow: 0 4px 12px rgba(6, 199, 85, 0.35);
}

.footer-social .social-pill i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    padding-right: 2px;
    font-weight: 400;
    font-style: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.footer-social .social-pill .sp-text {
    width: 0;
    overflow: hidden;
    line-height: 42px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-social .social-pill:hover {
    width: 155px;
    color: #FFFFFF;
    transform: translateY(-3px);
    padding-right: 18px;
}

.footer-social .social-pill.sp-facebook:hover {
    background: #1565D8;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.45);
}

.footer-social .social-pill.sp-line:hover {
    background: #05B34C;
    box-shadow: 0 8px 20px rgba(6, 199, 85, 0.45);
}

.footer-social .social-pill:hover .sp-text {
    width: 85px;
    opacity: 1;
}

/* Links Columns */
.footer-col h4 {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #4682B4;
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col ul li a {
    position: relative;
    color: #9CA3AF;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    font-weight: 300;
}

.footer-col ul li a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #6BA3CC;
    transition: width 0.3s ease;
}

.footer-col ul li a:hover::after {
    width: 100%;
}

/* Contact Items */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #D1D5DB;
    text-decoration: none;
    margin-bottom: 22px;
    transition: color 0.3s ease;
    line-height: 1.6;
    font-size: 1.05rem;
}

.footer-contact-item:hover {
    color: #FFFFFF;
}

.footer-contact-item i {
    font-size: 1rem !important;
    color: var(--gold);
    width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
}

.footer-contact-item .fa-line {
    color: #06C755;
}

.footer-contact-item .fa-facebook {
    color: #1877F2;
}

.footer-contact-item .fa-envelope {
    color: #9CA3AF;
}

.footer-contact-item span {
    font-weight: 400;
    font-size: 1rem;
}

/* Bottom Bar */
.footer-bottom {
    background: #020617;
    /* Even darker Navy */
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 300;
}

.footer-bottom a:hover {
    color: #FFFFFF !important;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }

    /* Brand centered */
    .footer-brand {
        margin-bottom: 28px;
        padding-bottom: 28px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-brand>p {
        text-align: center;
        font-size: 0.75rem;
    }

    .footer-social {
        justify-content: center;
    }

    /* Glass Pill h4 headings */
    .footer-col {
        margin-bottom: 4px;
    }

    .footer-col h4 {
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 13px 28px;
        margin-bottom: 0;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.04);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        letter-spacing: 0.03em;
    }

    .footer-col h4:active {
        transform: scale(0.97);
    }

    .footer-col h4::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.7rem;
        color: #6B7280;
        transition: transform 0.3s ease, color 0.3s ease;
        display: inline-block !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
    }

    /* Open state */
    .footer-col.accordion-open h4 {
        background: rgba(70, 130, 180, 0.1);
        border-color: rgba(70, 130, 180, 0.25);
        color: var(--gold);
    }

    .footer-col.accordion-open h4::after {
        transform: rotate(180deg);
        color: var(--gold);
    }

    /* Accordion content hidden by default */
    .footer-col ul,
    .footer-col .footer-contact-item {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
        opacity: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    .footer-col.accordion-open ul {
        max-height: 1000px !important;
        opacity: 1;
        padding: 16px 0 12px;
    }

    .footer-col.accordion-open .footer-contact-item {
        max-height: 80px;
        opacity: 1;
        margin: 0 auto 16px;
        display: grid;
        grid-template-columns: 44px auto;
        gap: 14px;
        align-items: center;
        width: 290px;
        font-size: 1rem;
    }

    .footer-col.accordion-open .footer-contact-item:first-of-type {
        margin-top: 20px;
    }

    .footer-col ul li {
        padding: 10px 0;
    }

    .footer-col ul li a {
        justify-content: center;
        font-size: 1.1rem;
        color: #D1D5DB;
    }



    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================================================
   CONTACT BANNER SECTION
   ========================================================================= */
.contact-banner-section {
    padding: 80px 0;
    background: #F9FAFB;
}

.contact-banner-box {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-banner-header {
    margin-bottom: 50px;
}

.cb-title {
    color: #2B579A;
    /* Dark blue */
    font-weight: 800;
    font-size: 2.8rem;
    margin-bottom: 12px;
    font-family: 'Kanit', sans-serif;
}

.cb-subtitle {
    color: #8CB4D6;
    /* Gold/yellow */
    font-weight: 500;
    font-size: 1.4rem;
}

.contact-banner-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.cb-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cb-col-1,
.cb-col-2 {
    min-width: 250px;
}

.cb-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.cb-item:hover {
    transform: translateX(5px);
}

.cb-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.cb-phone {
    background: #1B2A4A;
}

/* Dark Blue */
.cb-fb {
    background: #1877F2;
}

/* Facebook Blue */
.cb-text {
    display: flex;
    flex-direction: column;
}

.cb-label {
    font-weight: 800;
    font-size: 1.15rem;
    color: #1B2A4A;
    font-family: 'Kanit', sans-serif;
}

.cb-value {
    color: #4B5563;
    font-size: 1.2rem;
}

.cb-qr-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cb-qr-placeholder {
    width: 180px;
    height: 180px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: #1B2A4A;
}

.cb-or {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    background: #FFF;
    color: #9CA3AF;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px;
}

/* ---- Alternating Insurance Plans ---- */
.ins-alt-section {
    padding: 80px 0;
}

.section-bg-gray {
    background-color: #F9FAFB;
}

.ins-alt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ins-alt-grid.reverse .ins-alt-text {
    order: 2;
}

.ins-alt-grid.reverse .ins-alt-visual {
    order: 1;
}

.ins-visual-box {
    background: white;
    border-radius: 24px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.05);
    font-size: 6rem;
    color: var(--gold);
    position: relative;
    overflow: hidden;
}

.ins-visual-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(70, 130, 180, 0.05), transparent);
    pointer-events: none;
}

.ins-alt-text p {
    font-size: 1.25rem !important;
    color: #475569 !important;
    margin-bottom: 24px;
}

.ins-plan-features li {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ins-plan-features li i {
    margin-top: 6px;
    font-size: 1.1rem;
    color: #4682B4;
}

@media (max-width: 992px) {
    .ins-alt-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .ins-alt-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ins-alt-grid.reverse .ins-alt-text {
        order: 1;
    }

    .ins-alt-grid.reverse .ins-alt-visual {
        order: 2;
    }
}

.cb-website {
    margin-top: 20px;
    color: #6B7280;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
}

@media (max-width: 900px) {
    .contact-banner-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .cb-col {
        align-items: center;
    }

    .cb-item {
        width: 100%;
        justify-content: center;
    }

    .cb-qr-wrapper {
        align-items: center;
        width: 100%;
        margin-top: 20px;
    }

    .cb-or {
        position: static;
        transform: none;
        margin-bottom: 16px;
        text-align: center;
    }

    .cb-title {
        font-size: 2rem;
    }

    .cb-subtitle {
        font-size: 1.1rem;
    }
}

/* =========================================================================
   DOC & CLAIM CARE SECTION
   ========================================================================= */
.doc-claim-section {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #F3F4F6;
}

.doc-claim-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

.doc-claim-watermark i {
    font-size: 320px;
    color: var(--gold);
}

.doc-claim-watermark .doc-icon {
    margin-right: -100px;
    transform: rotate(-10deg);
}

.doc-claim-watermark .shake-icon {
    transform: translateY(60px);
}

.doc-claim-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.doc-claim-header h2 {
    font-size: 2.2rem;
    color: #1B2A4A;
    font-weight: 800;
    font-family: 'Kanit', sans-serif;
}

.doc-claim-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.doc-claim-col {
    flex: 1;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.doc-claim-col:hover {
    box-shadow: 0 16px 40px rgba(0, 210, 255, 0.12);
    transform: translateY(-6px);
    border-color: rgba(0, 210, 255, 0.3);
}

.doc-claim-col h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 24px;
    font-family: 'Kanit', sans-serif;
}

.gold-text {
    color: var(--gold);
}

/* Matching brownish-gold from image */
.blue-text {
    color: #2B579A;
}

/* Matching deeper blue from image */
.doc-claim-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doc-claim-list li {
    display: flex;
    align-items: center;
    font-size: 1.15rem;
    color: #1F2937;
    margin-bottom: 20px;
    font-weight: 500;
}

.doc-claim-list li i {
    font-size: 1.1rem;
    margin-right: 12px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 210, 255, 0.2));
}

.doc-claim-badge {
    margin: 60px auto 0;
    max-width: fit-content;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,248,255,0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 210, 255, 0.3);
    color: #1B2A4A;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    padding: 18px 48px;
    border-radius: 50px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.15), inset 0 2px 4px #ffffff;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.doc-claim-badge:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.25), inset 0 2px 4px #ffffff;
    border-color: #00d2ff;
}

@media (max-width: 768px) {


    .doc-claim-grid {
        flex-direction: column;
        gap: 40px;
    }

    .doc-claim-col {
        padding: 24px;
    }

    .doc-claim-col h3 {
        text-align: center;
    }

    .doc-claim-header h2 {
        font-size: 1.6rem;
    }

    .doc-claim-badge {
        font-size: 0.95rem;
        padding: 12px 24px;
        border-radius: 20px;
        line-height: 1.5;
    }

    .doc-claim-watermark i {
        font-size: 200px;
    }
}

/* =========================================================================
   SIMPLE LIGHTBOX
   ========================================================================= */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.85);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: zoom-out;
    backdrop-filter: blur(8px);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox-overlay.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 100000;
    transition: transform 0.3s ease, color 0.3s ease;
    opacity: 0.8;
}

.lightbox-close:hover {
    transform: scale(1.2) rotate(90deg);
    color: #F87171;
    opacity: 1;
}

.zoomable-license, .zoomable-img {
    cursor: zoom-in;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.zoomable-license:hover, .zoomable-img:hover {
    transform: scale(1.02);
}

.zoomable-license:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
    position: relative;
}
/* ---- Fix Process Step Text Visibility ---- */
.process-step p { color: #475569 !important; font-weight: 500 !important; font-size: 1.05rem !important; opacity: 1 !important; }
.process-step h3 { font-weight: 600 !important; color: #142031 !important; }


/* ==========================================================
   REDESIGNED PREMIUM PROCESS SECTION (ELEGANT & FORMAL)
   ========================================================== */
.process-section {
    padding: 100px 0 !important;
    background: #FFFFFF !important;
}

.process-header {
    text-align: center;
    margin-bottom: 70px;
}

.process-header h2 {
    color: #142031 !important;
    font-size: 2.2rem !important;
    font-weight: 600 !important;
    letter-spacing: -0.5px !important;
}

.process-steps::before {
    background: #E5E7EB !important; /* Subtle minimal line */
    height: 1px !important;
    top: 40px !important;
    left: 12% !important;
    right: 12% !important;
}

.step-icon {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 24px !important;
    background: #FFFFFF !important;
    border: 1px solid #CBD5E1 !important; /* Very elegant thin border */
    color: #142031 !important; /* Dark formal navy */
    font-size: 1.8rem !important;
    font-weight: 400 !important; /* Thinner weight for elegance */
     /* Premium Serif */
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03) !important;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.process-step:hover .step-icon {
    border-color: #142031 !important;
    color: #FFFFFF !important;
    background: #142031 !important;
    box-shadow: 0 15px 35px rgba(20, 32, 49, 0.15) !important;
    transform: translateY(-5px) !important;
}

.process-step h3 {
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: #142031 !important;
    margin-bottom: 12px !important;
    letter-spacing: 0.5px !important;
}

.process-step p {
    font-size: 0.95rem !important;
    color: #475569 !important; /* Fully visible Slate */
    font-weight: 400 !important;
    line-height: 1.6 !important;
    opacity: 1 !important;
    max-width: 260px !important;
    margin: 0 auto !important;
}


/* ===== ELEGANT LINE ANIMATION ===== */
.process-steps::after {
    content: '';
    position: absolute;
    top: 39px; /* slightly taller than the 1px line */
    left: 12%;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #142031, transparent);
    border-radius: 50%;
    z-index: 0;
    opacity: 0;
    animation: processLineGlow 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes processLineGlow {
    0% {
        left: 10%;
        opacity: 0;
        transform: scaleX(0.5);
    }
    20% {
        opacity: 0.6;
        transform: scaleX(1);
    }
    80% {
        opacity: 0.6;
        transform: scaleX(1);
    }
    100% {
        left: calc(88% - 80px);
        opacity: 0;
        transform: scaleX(0.5);
    }
}


/* ===== ICON BLUE STATE & HOVER ANIMATION ===== */
.step-icon {
    color: #4682B4 !important; /* Premium Blue */
}

.process-step:hover .step-icon {
    border-color: #4682B4 !important;
    color: #FFFFFF !important;
    background: #4682B4 !important;
    box-shadow: 0 15px 35px rgba(74, 122, 181, 0.3) !important;
    transform: translateY(-8px) scale(1.05) !important;
}

/* Make the icon inside jump and scale delightfully */
.process-step:hover .step-icon i {
    animation: premiumIconJump 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes premiumIconJump {
    0% { transform: scale(1) translateY(0); }
    40% { transform: scale(1.2) translateY(-3px) rotate(-8deg); }
    100% { transform: scale(1) translateY(0) rotate(0); }
}

/* ==========================================================
   GUARANTEED EXPLICIT STEP-ICON STRUCTURE
   ========================================================== */
.step-icon {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 24px !important;
    border-radius: 50% !important;
    background: #FFFFFF !important;
    border: 1px solid #CBD5E1 !important;
    color: #4682B4 !important;
    font-size: 1.8rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03) !important;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    position: relative !important;
    z-index: 2 !important;
}

.process-steps::before {
    content: '' !important;
    position: absolute !important;
    top: 40px !important;
    left: 12% !important;
    right: 12% !important;
    height: 1px !important;
    background: #E5E7EB !important;
    z-index: 1 !important;
}

.process-step h3 {
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: #142031 !important;
    margin-bottom: 12px !important;
    letter-spacing: 0.5px !important;
}

.process-step p {
    font-size: 0.95rem !important;
    color: #475569 !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    opacity: 1 !important;
    max-width: 260px !important;
    margin: 0 auto !important;
}

/* =========================================================================
   ALTERNATING SECTION COLORS (Gray #F9FAFB / Dark #0B1120)
   ========================================================================= */
.section-alt-gray {
    background: #FAFAF8 !important;
}

.section-alt-dark {
    background: #0B1120 !important;
}

.section-alt-dark .fa-star {
    text-shadow: 0 0 8px rgba(70, 130, 180, 0.5), 0 0 20px rgba(70, 130, 180, 0.2);
}

/* --- Dark Section: Text Color Overrides --- */
.section-alt-dark h1,
.section-alt-dark h2,
.section-alt-dark h3,
.section-alt-dark h4,
.section-alt-dark h5,
.section-alt-dark h6 {
    color: #FFFFFF !important;
}

.section-alt-dark p,
.section-alt-dark li,
.section-alt-dark span {
    color: rgba(255, 255, 255, 0.75) !important;
}

.section-alt-dark .italic {
    color: #6BA3CC !important;
}

.section-alt-dark .exec-services-subtitle,
.section-alt-dark .why-broker-subtitle,
.section-alt-dark .why-tl-subtitle,
.section-alt-dark .partners-grid-subtitle {
    color: rgba(255, 255, 255, 0.55) !important;
}

.section-alt-dark .gold-gradient {
    color: #6BA3CC !important;
}

/* --- Dark Section: Card Overrides --- */
.section-alt-dark .exec-card,
.section-alt-dark .why-new-card,
.section-alt-dark .why-tl-card,
.section-alt-dark .addl-service-card,
.section-alt-dark .doc-claim-col,
.section-alt-dark .p3-card,
.section-alt-dark .ins-visual-box {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.section-alt-dark .why-new-desc,
.section-alt-dark .exec-card-desc {
    color: #CBD5E1 !important;
    line-height: 1.8 !important;
}

.section-alt-dark .exec-card:hover,
.section-alt-dark .why-new-card:hover,
.section-alt-dark .why-tl-card:hover,
.section-alt-dark .p3-card:hover,
.section-alt-dark .addl-service-card:hover {
    border-color: rgba(0, 210, 255, 0.4) !important;
    box-shadow: 0 20px 50px rgba(0, 210, 255, 0.15), 0 0 20px rgba(0, 210, 255, 0.1) !important;
    transform: translateY(-8px) scale(1.02);
}

.section-alt-dark .p3-card-more {
    border-style: dashed !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* --- Dark Section: Icon Overrides --- */
.section-alt-dark .exec-card-icon,
.section-alt-dark .why-new-icon,
.section-alt-dark .why-tl-card-icon,
.section-alt-dark .addl-service-icon {
    background: rgba(0, 210, 255, 0.08) !important;
    border-color: rgba(0, 210, 255, 0.2) !important;
    box-shadow: inset 0 0 15px rgba(0,210,255,0.1), 0 0 20px rgba(0, 210, 255, 0.15) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.section-alt-dark .why-new-card:hover .why-new-icon {
    background: rgba(0, 210, 255, 0.15) !important;
    border-color: rgba(0, 210, 255, 0.4) !important;
    box-shadow: inset 0 0 20px rgba(0,210,255,0.2), 0 0 30px rgba(0, 210, 255, 0.3) !important;
}

.section-alt-dark .exec-card-icon i,
.section-alt-dark .why-new-icon i,
.section-alt-dark .why-tl-card-icon i,
.section-alt-dark .addl-service-icon i {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: none !important;
    filter: drop-shadow(0 0 8px rgba(0, 210, 255, 0.4));
}

.section-alt-dark .p3-more-icon {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #94A3B8 !important;
}

.section-alt-dark .p3-card-more:hover .p3-more-icon {
    background: rgba(70, 130, 180, 0.15) !important;
    color: #6BA3CC !important;
}

/* --- Dark Section: Watermark Numbers --- */
.section-alt-dark .exec-card-num,
.section-alt-dark .why-tl-watermark {
    color: rgba(255, 255, 255, 0.04) !important;
}

/* --- Dark Section: Decorative Elements --- */
.section-alt-dark .exec-deco-dots,
.section-alt-dark .why-tl-deco-dots {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px) !important;
}

.section-alt-dark .partners-grid-deco {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px) !important;
}

/* --- Dark Section: Links --- */
.section-alt-dark .exec-card-link {
    color: #6BA3CC !important;
}

.section-alt-dark a.btn-gold,
.section-alt-dark a.btn-filled {
    color: #FFFFFF !important;
}

.section-alt-dark a.btn-outline {
    color: #FFFFFF !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* --- Dark Section: Timeline --- */
.section-alt-dark .why-tl-line::before {
    background: linear-gradient(to bottom, rgba(70, 130, 180, 0.2), rgba(70, 130, 180, 0.4), rgba(70, 130, 180, 0.2)) !important;
}

.section-alt-dark .why-tl-dot {
    border-color: #0B1120 !important;
}

/* --- Dark Section: Process Steps --- */
.section-alt-dark .step-icon {
    background: #0f1a2e !important;
    border-color: rgba(70, 130, 180, 0.4) !important;
    color: #6BA3CC !important;
    text-shadow: 0 0 8px rgba(70, 130, 180, 0.3);
    box-shadow: 0 0 0 6px #0B1120 !important;
}


.section-alt-dark .process-steps::before {
    background: linear-gradient(90deg, transparent 0%, rgba(70, 130, 180, 0.7) 15%, #6BA3CC 50%, rgba(70, 130, 180, 0.7) 85%, transparent 100%) !important;
    box-shadow: 0 0 10px rgba(70, 130, 180, 0.4), 0 0 25px rgba(70, 130, 180, 0.2), 0 0 50px rgba(70, 130, 180, 0.1);
    height: 3px !important;
}

/* Fix 3rd step icon (fa-file-signature) visual centering */
.process-step:nth-child(3) .step-icon i {
    transform: translateX(4px);
}

.section-alt-dark .process-step:hover {
    background: rgba(70, 130, 180, 0.08) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
}

.section-alt-dark .process-step:hover .step-icon {
    background: #1a3050 !important;
    border-color: #6BA3CC !important;
    color: #FFFFFF !important;
    transform: scale(1.1) !important;
    box-shadow: 0 0 0 6px #0B1120, 0 12px 30px rgba(70, 130, 180, 0.3) !important;
}

.section-alt-dark .process-step:hover h3 {
    color: #6BA3CC !important;
}

.section-alt-dark .process-step h3 {
    color: #FFFFFF !important;
}

.section-alt-dark .process-step p {
    color: rgba(255, 255, 255, 0.55) !important;
}

/* --- Dark Section: Doc & Claim --- */
.section-alt-dark.doc-claim-section {
    border-top-color: rgba(255, 255, 255, 0.05) !important;
}

.section-alt-dark .gold-text {
    color: #6BA3CC !important;
}

.section-alt-dark .blue-text {
    color: #6BA3CC !important;
}

.section-alt-dark .doc-claim-list li i {
    color: #6BA3CC !important;
}

/* --- Dark Section: CTA --- */
.section-alt-dark .cta-inner h2 {
    color: #FFFFFF !important;
}

.section-alt-dark .cta-inner p {
    color: rgba(255, 255, 255, 0.6) !important;
}

.section-alt-dark .btn-cta-outline {
    color: #FFFFFF !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.section-alt-dark .btn-cta-gold {
    color: #FFFFFF !important;
}

.section-alt-dark .cta-static-ring {
    border-color: rgba(70, 130, 180, 0.08) !important;
}

.section-alt-dark .cta-orb {
    box-shadow: 0 0 14px rgba(70, 130, 180, 0.3), 0 0 30px rgba(70, 130, 180, 0.1) !important;
}

/* --- Dark Section: Insurance Alt --- */
.section-alt-dark .ins-alt-text h3 {
    color: #6BA3CC !important;
}

.section-alt-dark .ins-alt-text p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.section-alt-dark .ins-plan-features li {
    color: rgba(255, 255, 255, 0.8) !important;
}

.section-alt-dark .ins-plan-features li i {
    color: #6BA3CC !important;
    text-shadow: 0 0 8px rgba(70, 130, 180, 0.5), 0 0 20px rgba(70, 130, 180, 0.2);
}

.section-alt-dark .popular-tag {
    background: rgba(70, 130, 180, 0.15) !important;
    color: #6BA3CC !important;
}

/* --- Dark Section: Insurance Types Circle --- */
.section-alt-dark .insurance-circle {
    color: #FFFFFF !important;
}

.section-alt-dark .circle-ring {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.section-alt-dark .circle-label {
    color: rgba(255, 255, 255, 0.5) !important;
}

.section-alt-dark .circle-ring h2 {
    color: #FFFFFF !important;
}

.section-alt-dark .circle-ring h2 .italic {
    color: #6BA3CC !important;
}

.section-alt-dark .circle-ring {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.section-alt-dark .circle-ring::before {
    background: conic-gradient(from 0deg, transparent 0%, #6BA3CC 25%, transparent 50%) !important;
}

/* --- Dark Section: About Exec --- */
.section-alt-dark .about-exec-frame {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.section-alt-dark .about-exec-stamp {
    background: rgba(70, 130, 180, 0.15) !important;
    border-color: rgba(70, 130, 180, 0.3) !important;
    color: #6BA3CC !important;
}

.section-alt-dark .about-exec-stamp i {
    color: #6BA3CC !important;
}

.section-alt-dark .about-exec-value {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.section-alt-dark .about-exec-value-icon {
    background: rgba(70, 130, 180, 0.12) !important;
    color: #6BA3CC !important;
}

/* --- Dark Section: Review Cards --- */
.section-alt-dark .reviews-grid > div {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* --- Dark Section: Contact Cards --- */
.section-alt-dark .contact-card {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* --- Dark Section: About Exec Additional --- */
.section-alt-dark .about-exec-license {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.section-alt-dark .about-exec-license:hover {
    border-color: rgba(70, 130, 180, 0.4) !important;
    background: rgba(70, 130, 180, 0.08) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3) !important;
}

.section-alt-dark .about-exec-license strong {
    color: #FFFFFF !important;
}

.section-alt-dark .about-exec-license i {
    color: #6BA3CC !important;
}

.section-alt-dark .about-exec-value {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.section-alt-dark .about-exec-value:hover {
    border-color: rgba(70, 130, 180, 0.4) !important;
    background: rgba(70, 130, 180, 0.12) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
    color: #6BA3CC !important;
}

.section-alt-dark .about-exec-value i {
    color: #6BA3CC !important;
}

.section-alt-dark .about-exec-quote {
    border-left-color: rgba(70, 130, 180, 0.4) !important;
}

.section-alt-dark .about-quote-icon {
    color: rgba(70, 130, 180, 0.4) !important;
}

.section-alt-dark .about-mini-stat {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.section-alt-dark .about-mini-stat:hover {
    border-color: rgba(70, 130, 180, 0.3) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
}

.section-alt-dark .about-mini-num {
    color: #6BA3CC !important;
    text-shadow: 0 0 10px rgba(70, 130, 180, 0.5), 0 0 25px rgba(70, 130, 180, 0.2);
}

.section-alt-dark .about-mini-label {
    color: rgba(255, 255, 255, 0.55) !important;
}

.section-alt-dark .about-exec-name span {
    color: rgba(255, 255, 255, 0.55) !important;
}

.section-alt-dark .about-exec-bio {
    color: rgba(255, 255, 255, 0.7) !important;
}

.section-alt-dark .about-exec-divider {
    background: linear-gradient(90deg, #6BA3CC, #4682B4) !important;
}

.section-alt-dark .about-exec-stamp i,
.section-alt-dark .about-exec-value i,
.section-alt-dark .about-exec-license i {
    color: #6BA3CC !important;
    text-shadow: 0 0 8px rgba(70, 130, 180, 0.4), 0 0 20px rgba(70, 130, 180, 0.15);
}

/* --- Dark Section: Tabs (addl-services) --- */
.section-alt-dark .as-tabs-container {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.section-alt-dark .as-tab {
    background: rgba(255, 255, 255, 0.04) !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.section-alt-dark .as-tab i {
    color: rgba(140, 180, 255, 0.6) !important;
    text-shadow: 0 0 8px rgba(70, 130, 180, 0.3);
    transition: all 0.3s ease;
}

.section-alt-dark .as-tab:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #FFFFFF !important;
}

.section-alt-dark .as-tab:hover i {
    color: #6BA3CC !important;
    text-shadow: 0 0 12px rgba(70, 130, 180, 0.5), 0 0 24px rgba(70, 130, 180, 0.2);
}

.section-alt-dark .as-tab.active {
    background: linear-gradient(135deg, #4682B4, #2D5A85) !important;
    color: #FFFFFF !important;
}

.section-alt-dark .as-tab.active i {
    color: #FFFFFF !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 0 20px rgba(70, 130, 180, 0.3);
}

.section-alt-dark .as-pane-content {
    border-left-color: rgba(255, 255, 255, 0.08) !important;
}

.section-alt-dark .pane-icon {
    background: rgba(70, 130, 180, 0.12) !important;
    color: #6BA3CC !important;
}

.section-alt-dark .pane-text h3 {
    color: #FFFFFF !important;
}

.section-alt-dark .pane-text p {
    color: rgba(255, 255, 255, 0.65) !important;
}

.section-alt-dark .pane-benefits li {
    color: rgba(255, 255, 255, 0.8) !important;
}

.section-alt-dark .pane-benefits li i {
    color: #34D399 !important;
    background: rgba(70, 130, 180, 0.12) !important;
}

/* Fix for fixed header anchoring */
section[id], div[id] {
    scroll-margin-top: 100px;
}

/* Coverage Table */
.ins-visual-box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.coverage-table {
    margin-bottom: 30px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    background: #FFFFFF;
}
.cov-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #E5E7EB;
    font-size: 0.95rem;
    color: #4B5563;
}
.cov-row:last-child {
    border-bottom: none;
}
.cov-header {
    background: #F9FAFB;
    font-weight: 600;
    color: #1B2A4A;
}
.cov-row div:first-child {
    flex: 1;
    padding-right: 16px;
}
.cov-row div:last-child {
    font-weight: 500;
    color: #3B82F6;
    text-align: right;
    white-space: nowrap;
}

/* FAQ Accordion */
.faq-container {
    max-width: 768px;
    margin: 0 auto;
}
.faq-item {
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: #CBD5E1;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}
.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #FFFFFF;
}
.faq-question h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1B2A4A;
}
.faq-question i {
    color: #4B5563;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
}
.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 500px;
}
.faq-answer p {
    margin: 0;
    color: #4B5563;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Dark Theme FAQ (Glassmorphism) */
.section-alt-dark .faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.section-alt-dark .faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.section-alt-dark .faq-question {
    background: transparent;
}
.section-alt-dark .faq-question h4, .section-alt-dark .faq-item h3 {
    color: #FFFFFF !important;
    font-weight: 500;
}
.section-alt-dark .faq-answer p {
    color: #94A3B8 !important;
}
.section-alt-dark .faq-question i {
    color: var(--gold) !important;
    font-size: 1.1rem;
}
.section-alt-dark .faq-item.active {
    border-left: 3px solid var(--gold);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

/* ====== FLOATING CONTACT OVERRIDES ====== */
.floating-contact-btn {
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.2);
}

/* ====== NEW CTA UPGRADES ====== */
.text-gradient {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #00d2ff; /* fallback */
    font-weight: 700;
}
.btn-cta-gold {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5) !important;
    color: #FFFFFF !important;
    border: none !important;
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.3) !important;
    padding: 16px 40px !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    font-size: 1.15rem !important;
    transition: all 0.3s ease !important;
}
.btn-cta-gold:hover {
    box-shadow: 0 12px 35px rgba(0, 210, 255, 0.45) !important;
    transform: translateY(-3px) !important;
}
.btn-cta-outline {
    background: #FFFFFF !important;
    color: #1E293B !important;
    border: 2px solid #E2E8F0 !important;
    padding: 14px 40px !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    font-size: 1.15rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05) !important;
}
.btn-cta-outline:hover {
    border-color: #00d2ff !important;
    color: #00d2ff !important;
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.15) !important;
    transform: translateY(-3px) !important;
}

/* ====== FLOATING CONTACT ====== */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}
.fc-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white !important;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}
.fc-btn:hover {
    transform: translateY(-5px) scale(1.05);
}
.fc-line {
    background-color: #06C755;
    animation: fcPulse 2.5s ease-in-out infinite;
}
@keyframes fcPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
    50% { box-shadow: 0 4px 15px rgba(6,199,85,0.5), 0 0 0 12px rgba(6,199,85,0.15); }
}
.fc-phone {
    background: linear-gradient(135deg, #4682B4, #2D5A85);
}
.fc-tooltip {
    position: absolute;
    right: 75px;
    background: white;
    color: #333;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.fc-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}
.fc-btn:hover .fc-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
/* Pulse animation for LINE button */
@keyframes fc-pulse {
    0% { box-shadow: 0 0 0 0 rgba(6, 199, 85, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(6, 199, 85, 0); }
    100% { box-shadow: 0 0 0 0 rgba(6, 199, 85, 0); }
}
.fc-line {
    animation: fc-pulse 2s infinite;
}

@media (max-width: 768px) {


    .floating-contact {
        bottom: 20px;
        right: 20px;
        flex-direction: row-reverse;
    }
    .fc-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .fc-tooltip {
        display: none;
    }
}

/* ====== TRUST BADGES ====== */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D1D5DB;
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.trust-badge-item i {
    color: #4682B4; /* Gold icon */
    font-size: 1.1rem;
}
.cta-section.section-alt-gray .trust-badge-item {
    color: #4B5563;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(229, 231, 235, 0.6);
}

/* ====== COMPARE PLANS TABLE ====== */
.compare-wrapper {
    overflow-x: auto;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}
.compare-plans-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}
.compare-plans-table th, .compare-plans-table td {
    padding: 20px 16px;
    text-align: center;
    border-bottom: 1px solid #F3F4F6;
    transition: all 0.3s var(--ease-luxury);
}
.compare-plans-table th {
    background: #0F172A;
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 600;
    border-bottom: none;
    padding: 24px 16px;
}
.compare-plans-table th.col-feature {
    text-align: left;
    width: 30%;
    background: #FFFFFF;
    color: #1B2A4A;
    border-right: 1px solid #F3F4F6;
    border-bottom: 1px solid #F3F4F6;
}
.compare-plans-table td.col-feature {
    text-align: left;
    font-weight: 500;
    color: #374151;
    background: #FFFFFF;
    border-right: 1px solid #F3F4F6;
}
.compare-plans-table .plan-highlight {
    background: linear-gradient(135deg, #2D5A85 0%, #1B2A4A 100%);
    position: relative;
}
.compare-plans-table .plan-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #4682B4;
}
.compare-plans-table tbody tr {
    position: relative;
    background: #FFFFFF;
}
.compare-plans-table tbody tr:hover td {
    background: #F9FAFB;
}
.compare-plans-table tbody tr:hover {
    box-shadow: 0 4px 25px rgba(15, 23, 42, 0.05);
    z-index: 5;
}
.compare-plans-table td:not(.col-feature) {
    width: 23.3%;
    vertical-align: middle;
}
.c-check {
    color: #4682B4;
    font-size: 1.4rem;
    display: inline-block;
    width: 1.4rem;
    text-align: center;
    vertical-align: middle;
    text-shadow: 0 4px 12px rgba(70, 130, 180, 0.25);
    transform: scale(1.1);
}
.c-cross {
    color: #9CA3AF;
    font-size: 1.25rem;
    display: inline-block;
    width: 1.25rem;
    text-align: center;
    vertical-align: middle;
    opacity: 0.6;
}


/* ====== HOME TESTIMONIALS ====== */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testi-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
    border-color: #CBD5E1;
}
.testi-stars {
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #FBBF24;
    text-shadow: 0 2px 5px rgba(245, 158, 11, 0.3);
}
.testi-text {
    color: #4B5563;
    font-size: 1.05rem;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 25px;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #F3F4F6;
    padding-top: 20px;
}
.testi-avatar {
    width: 45px;
    height: 45px;
    background: #2D5A85;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.testi-author h4 {
    margin: 0 0 4px 0;
    color: #1B2A4A;
    font-size: 1.05rem;
    font-weight: 600;
}
.testi-author span {
    color: #6B7280;
    font-size: 0.85rem;
    display: block;
}
@media (max-width: 992px) {
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {


    .testi-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
    }
    .testi-grid::-webkit-scrollbar {
        height: 6px;
    }
    .testi-grid::-webkit-scrollbar-thumb {
        background: #CBD5E1;
        border-radius: 10px;
    }
    .testi-card {
        min-width: 300px;
        scroll-snap-align: start;
    }
}


/* ====== HERO QUOTE FORM ====== */
.hero-quote-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    position: relative;
    z-index: 10;
}
.qf-row {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}
.qf-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.qf-submit {
    flex: 1.2;
}
.qf-group label {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.qf-group select, .qf-group input {
    width: 100%;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.95);
    color: #1B2A4A;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    height: 48px;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.qf-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}
.qf-group select:focus, .qf-group input:focus {
    border-color: #4682B4;
    box-shadow: 0 0 0 3px rgba(70, 130, 180, 0.3);
}
@media (max-width: 992px) {
    .qf-row {
        flex-wrap: wrap;
    }
    .qf-group {
        flex: 1 1 45%;
    }
    .qf-submit {
        flex: 1 1 100%;
        margin-top: 10px;
    }
}
@media (max-width: 576px) {
    .qf-row {
        flex-direction: column;
    }
    .qf-group {
        width: 100%;
    }
    .hero-quote-form {
        padding: 20px;
    }
}

/* Dark Mode overrides for Compare Plans Table */
.section-alt-dark .compare-plans-table th {
    color: #F9FAFB;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.section-alt-dark .compare-plans-table th:last-child {
    border-right: none;
}
.section-alt-dark .compare-plans-table th.col-feature {
    color: #E5E7EB;
}
.section-alt-dark .compare-plans-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.section-alt-dark .compare-plans-table td:last-child {
    border-right: none;
}
.section-alt-dark .compare-plans-table td.col-feature {
    color: #F9FAFB;
}
.section-alt-dark .compare-plans-table tr:hover td {
    background: rgba(255, 255, 255, 0.05);
}


/* ===== GLOBAL COLOR FLIP OVERRIDES ===== */
.section-alt-dark h2, .section-alt-dark h3, .section-alt-dark h4 { color: #FFFFFF !important; }
.section-alt-dark p, .section-alt-dark span { color: #CBD5E1 !important; }
.section-alt-dark .btn-outline { border-color: #6BA3CC !important; color: #6BA3CC !important; }
.section-alt-dark .btn-outline:hover { background: #6BA3CC !important; color: #0F172A !important; }
.section-alt-dark .compare-plans-table th { color: #FFFFFF !important; border-bottom: 2px solid rgba(255,255,255,0.2) !important; border-right: 1px solid rgba(255,255,255,0.1) !important;}
.section-alt-dark .compare-plans-table td { color: #E5E7EB !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important; border-right: 1px solid rgba(255,255,255,0.1) !important;}
.section-alt-dark .compare-plans-table th.col-feature, .section-alt-dark .compare-plans-table td.col-feature { color: #FFFFFF !important; }
.section-alt-dark .compare-plans-table tr:hover td { background: rgba(255,255,255,0.05) !important; }

.section-alt-gray h2, .section-alt-gray h3, .section-alt-gray h4 { color: #0F172A !important; }
.section-alt-gray p, .section-alt-gray span { color: #64748B !important; }
.section-alt-gray .btn-outline { border-color: #2D5A85 !important; color: #2D5A85 !important; }
.section-alt-gray .btn-outline:hover { background: #2D5A85 !important; color: #FFFFFF !important; }
.section-alt-gray .compare-plans-table th { color: #FFFFFF !important; border-bottom: none !important; }
.section-alt-gray .compare-plans-table th.col-feature { color: #0F172A !important; background: #FFFFFF !important; }
.section-alt-gray .compare-plans-table td { color: #374151 !important; border-bottom: 1px solid #F3F4F6 !important; }
.section-alt-gray .compare-plans-table tr:hover td { background: #F9FAFB !important; }

/* PROTECT CARDS & INNER ELEMENTS FROM GLOBAL TEXT OVERRIDES */
.section-alt-dark .card *, .section-alt-dark .testi-card *, .section-alt-dark .faq-item *, .section-alt-dark .doc-card *, .section-alt-dark .process-card *, .section-alt-dark .pane-text *, .section-alt-dark .ci-card *, .section-alt-dark .compare-plans-table td, .section-alt-dark .compare-plans-table td * {
    color: initial;
}
.section-alt-gray .card *, .section-alt-gray .testi-card *, .section-alt-gray .faq-item *, .section-alt-gray .doc-card *, .section-alt-gray .process-card *, .section-alt-gray .pane-text * {
    color: initial;
}

/* Re-apply specific defaults for cards (since 'initial' breaks some inherits) */
.card h3, .card h4, .testi-card h4, .faq-item h3, .faq-question h4, .ci-card h3 { color: #0F172A !important; }
.card p, .testi-card p, .faq-answer p, .testi-author span, .faq-question i, .ci-card-features li { color: #475569 !important; }
.ci-card-features li i { color: #22C55E !important; }
.ci-card-badge { color: #475569 !important; }
.ci-badge-popular { color: #FFFFFF !important; }
.ci-card-btn { color: #FFFFFF !important; }
.ci-card-icon { color: var(--gold) !important; }
.ci-card-icon i { color: inherit !important; }
.testi-stars i { color: #FBBF24 !important; }
.compare-plans-table tbody td { color: #374151 !important; }
.compare-plans-table tbody td.col-feature { color: #0F172A !important; padding-left: 32px; }
.compare-plans-table thead th span { color: rgba(255, 255, 255, 0.8) !important; }
.c-check { color: #10B981 !important; }
.c-cross { color: #F87171 !important; }

/* Timeline content specific */
.timeline-content h3 { color: #0F172A !important; }
.timeline-content p { color: #475569 !important; }

/* Doc Claim specific */
.doc-card h3 { color: #0F172A !important; }
.doc-card p { color: #475569 !important; }
.doc-card li { text-shadow: none !important; color: #475569 !important;}
.doc-card li { text-shadow: none !important; color: #475569 !important;}
.doc-item span { color: #0F172A !important; font-weight: 600; }

/* Process specific */
.process-card h3 { color: #0F172A !important; }
.process-card p { color: #475569 !important; }

/* ====== FLOATING CONTACT BUTTONS ====== */
.floating-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.fc-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.fc-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.fc-phone {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
}

.fc-line {
    background: #06C755;
}

.fc-tooltip {
    position: absolute;
    right: 68px;
    background: #1F2937;
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fc-btn:hover .fc-tooltip {
    opacity: 1;
}

/* ====== CAR FILTER MODAL ====== */
.car-filter-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.car-filter-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.cfm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cfm-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.4s var(--ease-luxury);
}

.car-filter-modal.active .cfm-content {
    transform: translateY(0);
}

.cfm-header {
    background: linear-gradient(135deg, #0F172A, #1F2937);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--gold);
}

.cfm-header h3 {
    color: #FFFFFF;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.cfm-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cfm-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.cfm-body {
    padding: 24px;
    max-height: 70vh;
    overflow-y: auto;
}

.cfm-group {
    margin-bottom: 16px;
}

.cfm-group label {
    display: block;
    font-weight: 500;
    color: #1F2937;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.cfm-group select,
.cfm-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: #1B2A4A;
    background: #F9FAFB;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
}

.cfm-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.cfm-group select:focus,
.cfm-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(96, 134, 168, 0.2);
    background: #FFFFFF;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 8px;
}

.brand-btn {
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    padding: 12px 8px;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: #4B5563;
    transition: all 0.2s ease;
    text-align: center;
}

.brand-btn.selected {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(96, 134, 168, 0.05);
    box-shadow: inset 0 0 0 1px var(--gold);
}

/* ====== CAR INSURANCE PAGE — PRODUCT CARDS ====== */
.ci-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ci-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    border: 1px solid #E5E7EB;
    transition: all 0.4s var(--ease-luxury);
    overflow: hidden;
    /* Reset text colors for white card inside dark sections */
    --text-primary: #142031;
    --text-secondary: #475569;
    --text-muted: #9CA3AF;
    color: #4B5563;
}

.ci-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border-color: var(--gold);
}

.ci-card-popular {
    border: 2px solid var(--gold);
    box-shadow: 0 8px 30px rgba(96, 134, 168, 0.15);
}

.ci-card-badge {
    display: inline-block;
    padding: 4px 16px;
    background: #F3F4F6;
    color: #4B5563;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.ci-badge-popular {
    background: var(--gold);
    color: #FFFFFF;
}

.ci-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(96, 134, 168, 0.1), rgba(96, 134, 168, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.ci-card:hover .ci-card-icon {
    background: var(--gold);
    color: #FFFFFF;
    transform: scale(1.1);
}

.ci-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: #1B2A4A;
}

.ci-card-features {
    text-align: left;
    margin-bottom: 24px;
}

.ci-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #4B5563;
    line-height: 1.5;
}

.ci-card-features li i {
    color: #22C55E;
    margin-top: 3px;
    flex-shrink: 0;
}

.ci-card-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--gold);
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.ci-card-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(96, 134, 168, 0.3);
}

/* --- Fix: Restore dark text inside ci-card on dark sections --- */
.section-alt-dark .ci-card h3 {
    color: #0F172A !important;
}

.section-alt-dark .ci-card p,
.section-alt-dark .ci-card li,
.section-alt-dark .ci-card span {
    color: #475569 !important;
}

.section-alt-dark .ci-card-features li i {
    color: #22C55E !important;
}

.section-alt-dark .ci-card-badge {
    color: #475569 !important;
}

.section-alt-dark .ci-badge-popular {
    color: #FFFFFF !important;
}

.section-alt-dark .ci-card-btn {
    color: #FFFFFF !important;
}

@media (max-width: 1024px) {
    .ci-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ci-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ====== WIZARD FORM ====== */
.wizard-container {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #E5E7EB;
}

.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    gap: 0;
}

.wp-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #9CA3AF;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 100px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.wp-step span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #E5E7EB;
    color: #9CA3AF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.wp-step.active {
    color: var(--gold);
}

.wp-step.active span {
    background: var(--gold);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(96, 134, 168, 0.3);
}

.wp-step.completed span {
    background: #22C55E;
    color: #FFFFFF;
}

.wp-line {
    width: 40px;
    height: 2px;
    background: #E5E7EB;
    flex-shrink: 0;
}

.wizard-step {
    display: none;
    animation: fadeInUp 0.4s ease forwards;
}

.wizard-step.active {
    display: block;
}

.wizard-next-btn,
.wizard-back-btn,
.wizard-submit-btn {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.wizard-next-btn {
    background: var(--gold);
    color: #FFFFFF;
}

.wizard-next-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.wizard-back-btn {
    background: #F3F4F6;
    color: #4B5563;
}

.wizard-back-btn:hover {
    background: #E5E7EB;
}

.wizard-submit-btn {
    background: #06C755;
    color: #FFFFFF;
}

.wizard-submit-btn:hover {
    background: #05A648;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 199, 85, 0.3);
}

@media (max-width: 600px) {
    .wizard-container {
        padding: 20px 16px;
    }

    .wp-step {
        font-size: 0.7rem;
        padding: 6px 8px;
    }

    .wp-step span {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .wp-line {
        width: 20px;
    }
}

/* ====== COMPARE TABLE ====== */
.compare-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.compare-plans-table thead th {
    background: #0F172A;
    background: #FFFFFF;
    color: #1E293B;
    padding: 20px 16px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border-bottom: 2px solid #E2E8F0;
}

.compare-plans-table thead th.col-feature {
    text-align: left;
    width: 35%;
    padding-left: 32px;
    border-top: 4px solid #FFFFFF;
}

/* ===== PREMIUM TIERS: PURE MINIMALIST ===== */
.compare-plans-table thead th:nth-child(2) {
    background: #F8FAFC;
    color: #0F172A !important;
    border-top: 4px solid #00d2ff;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.02);
}
.compare-plans-table thead th:nth-child(2) span { color: #475569 !important; }

.compare-plans-table thead th:nth-child(3) {
    background: #FFFFFF;
    color: #1E293B !important;
    border-top: 4px solid #94A3B8;
    position: relative;
}
.compare-plans-table thead th:nth-child(3) span { color: #64748B !important; }

.compare-plans-table thead th:nth-child(4) {
    background: #FFFFFF;
    color: #1E293B !important;
    border-top: 4px solid #475569;
    position: relative;
}
.compare-plans-table thead th:nth-child(4) span { color: #64748B !important; }

.compare-plans-table tbody td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid #E5E7EB;
    font-size: 0.95rem;
    color: #374151;
}

.compare-plans-table tbody td.col-feature {
    text-align: left;
    font-weight: 500;
    color: #1B2A4A;
}

.compare-plans-table tbody tr {
    transition: all 0.3s ease;
}

.compare-plans-table tbody tr:hover {
    background: rgba(0, 210, 255, 0.04);
}
.compare-plans-table tbody tr:hover td {
    color: #1B2A4A;
}

.compare-plans-table tbody tr:last-child td {
    border-bottom: none;
}

.c-check {
    color: #10B981;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.4));
}

.c-cross {
    color: #F87171;
    font-size: 1rem;
    filter: drop-shadow(0 2px 4px rgba(248, 113, 113, 0.4));
}

@media (max-width: 768px) {


    .compare-plans-table {
        font-size: 0.85rem;
    }

    .compare-plans-table thead th {
        padding: 14px 10px;
        font-size: 0.85rem;
    }

    .compare-plans-table tbody td {
        padding: 12px 10px;
    }
}

/* --- Fix: Restore dark text inside compare table on dark sections --- */
.section-alt-dark .compare-plans-table tbody td {
    color: #374151 !important;
}

.section-alt-dark .compare-plans-table tbody td.col-feature {
    color: #0F172A !important;
}

.section-alt-dark .compare-plans-table thead th {
    color: #FFFFFF !important;
}

.section-alt-dark .compare-plans-table thead th span {
    color: rgba(255, 255, 255, 0.8) !important;
}

.section-alt-dark .compare-plans-table .c-check {
    color: #22C55E !important;
}

.section-alt-dark .compare-plans-table .c-cross {
    color: #EF4444 !important;
}

/* ====== LEAD CAPTURE ====== */
.lead-capture-section {
    position: relative;
    padding: 100px 0;
    background: #F8FAFC; /* Light Gray matching alternating sections */
    overflow: hidden;
    margin-top: 60px;
}
.lead-bg-shapes {
    display: none;
}
.lead-card {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.05); /* Translucent Gray (เทาใส) */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 55px 65px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #1E293B;
}
.lead-header h2 {
    font-size: 2.2rem;
    color: #0F172A;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    font-weight: 800;
}
.lead-accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    margin: 16px auto 32px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 210, 255, 0.3);
}
.lead-trust-marks {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.lead-trust-marks span {
    font-size: 0.9rem;
    color: #1E293B;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lead-trust-marks span:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 210, 255, 0.15);
}
.lead-trust-marks i {
    color: #00d2ff;
    font-size: 1.25rem;
}
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.lead-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
    background: transparent;
    padding: 0;
    border-radius: 0;
}
.lead-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.lead-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lead-group label {
    font-size: 0.85rem;
    color: #4B5563;
    font-weight: 700;
}
.lead-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-sans);
    background: rgba(255, 255, 255, 0.8);
    color: #1F2937;
    transition: all 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}
.lead-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.lead-input-wrap i {
    position: absolute;
    left: 18px;
    color: #9CA3AF;
    font-size: 1.1rem;
    pointer-events: none;
    transition: color 0.2s ease;
}
.lead-input-wrap:focus-within i {
    color: #00d2ff;
}
.lead-input.lead-input-icon {
    padding-left: 48px;
}
.lead-input:focus {
    outline: none;
    border-color: #00d2ff;
    box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.2);
    background: #FFFFFF;
}
.lead-input::placeholder {
    color: #9CA3AF;
}
select.lead-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    color: #4B5563;
}
select.lead-input option {
    background: #FFFFFF;
    color: #1F2937;
}
.lead-consent {
    font-size: 0.85rem;
    color: #6B7280;
    margin-top: 8px;
}
.lead-consent a {
    color: #2563EB;
    text-decoration: underline;
    transition: color 0.2s;
}
.lead-consent a:hover {
    color: #1D4ED8;
}
.lead-submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.15rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.25);
    transition: all 0.3s ease;
}
.lead-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.4);
    background: linear-gradient(135deg, #22dffb, #4b8ae0);
}
.lead-submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {


    .lead-grid-3, .lead-grid-2 {
        grid-template-columns: 1fr;
    }
    .lead-card {
        padding: 30px 20px;
    }
}

/* ====== HERO LUXURY BUTTONS ====== */
.btn-hero-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-family: var(--font-sans);
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, #6BA3CC, #4682B4);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(70, 130, 180, 0.4);
    transition: all 0.4s var(--ease-luxury);
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-hero-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(70, 130, 180, 0.5);
    color: #FFFFFF;
}
.btn-hero-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-family: var(--font-sans);
    font-weight: 600;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s var(--ease-luxury);
}
.btn-hero-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
}

@media (max-width: 768px) {


    .lead-card {
        padding: 30px 20px;
    }
    .lead-inputs {
        flex-direction: column;
    }
}

/* ====== VISION & LICENSE ====== */
.vision-license-section {
    padding: var(--section-padding) 0;
    background: var(--dark-800); /* #F9FAFB Light grey background */
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
}
.vl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.vl-image-box {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(27, 42, 74, 0.08);
}
.vl-image-box img {
    width: 100%;
    display: block;
    transition: transform 0.6s var(--ease-luxury);
}
.vl-image-box:hover img {
    transform: scale(1.03);
}
.vl-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.3;
}
.vl-content h2 .highlight {
    color: var(--gold);
    font-style: italic;
}
.vl-content-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}
.vl-expert-list {
    list-style: none;
    margin-top: 30px;
    margin-bottom: 0px;
}
.vl-expert-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--navy);
    font-weight: 500;
}
.vl-expert-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--gold);
    font-size: 1.2rem;
}
.vl-expert-list li span.desc {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 4px;
}
.vl-license-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--glass-border);
    margin-top: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.4s var(--ease-luxury);
}
.vl-license-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(70, 130, 180, 0.12);
    border-color: rgba(70, 130, 180, 0.3);
}
.vl-license-card img {
    width: 150px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.vl-license-info h4 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.vl-license-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}
.vl-license-num {
    display: inline-block;
    background: var(--gold-glow);
    color: var(--gold-dark);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 8px;
    letter-spacing: 0.05em;
}
@media (max-width: 992px) {
    .vl-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
@media (max-width: 480px) {
    .vl-license-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

/* ====== DEEP DIVE BENEFITS ====== */
.deep-dive-section {
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}
.dd-deco-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00d2ff, transparent);
}
.dd-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 28px;
    background: linear-gradient(135deg, rgba(70,130,180,0.15), rgba(70,130,180,0.05));
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 28px;
    border: 1px solid rgba(70,130,180,0.3);
    backdrop-filter: blur(4px);
}
.deep-dive-header {
    text-align: center;
}
.deep-dive-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0;
    letter-spacing: -0.02em;
    line-height: 1.5; /* Prevents Thai vowel clipping */
    padding-top: 10px;
    padding-bottom: 10px;
}
.dd-accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    margin: 28px auto;
    border-radius: 2px;
}
.dd-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.55);
    max-width: 500px;
    margin: 0 auto 60px;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.01em;
}
.dd-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 70px;
}
.dd-benefit-item {
    background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.07);
    border-left: 3px solid #3a7bd5; /* Hybrid C: Corporate left border */
    border-radius: 20px;
    padding: 48px 28px 36px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden; /* For the top highlight */
    text-align: center;
}
.dd-benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.15); /* Premium Glow Effect */
    border-color: rgba(0, 210, 255, 0.3);
    border-left-color: #00d2ff;
}
.dd-benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0 0 2px 2px;
}
.dd-benefit-item:hover::before {
    width: 80%;
}
.dd-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
}
.dd-icon-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid rgba(70,130,180,0.25);
    animation: dd-ring-pulse 3s ease-in-out infinite;
}
@keyframes dd-ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.08); opacity: 1; }
}
.dd-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #1a2744, #0c1527);
    border: 1px solid rgba(70,130,180,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #00d2ff;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4), inset 0 1px 3px rgba(255,255,255,0.05);
    transition: all 0.4s ease;
}
.dd-benefit-item:hover .dd-icon-circle {
    border-color: rgba(70,130,180,0.4);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 20px rgba(70,130,180,0.15);
}
.dd-benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
    letter-spacing: 0.02em;
    font-weight: 700;
}
.dd-item-line {
    width: 32px;
    height: 2px;
    background: rgba(70,130,180,0.4);
    margin: 14px auto 16px;
    border-radius: 1px;
    transition: width 0.3s ease;
}
.dd-benefit-item:hover .dd-item-line {
    width: 50px;
    background: #00d2ff;
}
.dd-benefit-item p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
    margin: 0;
}
.dd-compare-tiers {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
    max-width: 1250px !important;
    margin: 0 auto !important;
}
.dd-tier {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-radius: 20px !important;
    padding: 40px 32px 36px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-top: 2px solid rgba(0, 210, 255, 0.4) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    text-align: center !important;
    position: relative !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.dd-tier:hover {
    border-color: rgba(0, 210, 255, 0.3) !important;
    border-top: 2px solid #00d2ff !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(0, 210, 255, 0.15), 0 0 30px rgba(0, 210, 255, 0.1) !important;
}
.dd-tier-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 20px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(70,130,180,0.3);
    white-space: nowrap;
}
.dd-tier-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.dd-tier-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.03em;
    font-family: var(--font-serif);
}
.dd-tier-circle {
    width: 56px !important;
    height: 56px !important;
    background: rgba(0, 210, 255, 0.05) !important;
    border: 2px solid #00d2ff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: #00d2ff !important;
    flex-shrink: 0 !important;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.4), inset 0 0 10px rgba(0, 210, 255, 0.2) !important;
    font-family: var(--font-serif) !important;
    text-shadow: 0 0 8px rgba(0, 210, 255, 0.6) !important;
}
.dd-tier-circle span {
    font-size: 1rem;
    margin-top: -8px;
}
.dd-tier strong {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    display: block;
    margin-bottom: 0;
    letter-spacing: 0.02em;
    font-weight: 500;
}
.dd-tier-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(70,130,180,0.4), transparent);
    margin: 16px auto;
}
.dd-tier-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}
.dd-tier-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.dd-tier-list li:last-child {
    border-bottom: none;
}
.dd-tier-list li i {
    color: var(--gold);
    margin-top: 3px;
    font-size: 0.8rem;
    flex-shrink: 0;
}
@media (max-width: 992px) {
    .dd-benefits-grid {
        grid-template-columns: 1fr;
    }
    .dd-compare-tiers {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
}

/* ====== PREMIUM PRODUCT CARDS ====== */
.premium-products-section {
    padding: 100px 0;
}
.premium-products-header {
    text-align: center;
    margin-bottom: 60px;
}
.dd-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
}
.dd-icon-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid rgba(70,130,180,0.25);
    animation: dd-ring-pulse 3s ease-in-out infinite;
}
@keyframes dd-ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.08); opacity: 1; }
}
.dd-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #1a2744, #0c1527);
    border: 1px solid rgba(70,130,180,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #00d2ff;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4), inset 0 1px 3px rgba(255,255,255,0.05);
    transition: all 0.4s ease;
}
.dd-benefit-item:hover .dd-icon-circle {
    border-color: rgba(70,130,180,0.4);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 20px rgba(70,130,180,0.15);
}
.dd-benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
    letter-spacing: 0.02em;
    font-weight: 700;
}
.dd-item-line {
    width: 32px;
    height: 2px;
    background: rgba(70,130,180,0.4);
    margin: 14px auto 16px;
    border-radius: 1px;
    transition: width 0.3s ease;
}
.dd-benefit-item:hover .dd-item-line {
    width: 50px;
    background: #00d2ff;
}
.dd-benefit-item p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
    margin: 0;
}
.dd-compare-tiers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}
.dd-tier {
    background: linear-gradient(160deg, rgba(15,23,42,0.95), rgba(10,15,30,0.98));
    border-radius: 20px;
    padding: 40px 32px 36px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.dd-tier:hover {
    border-color: rgba(70,130,180,0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.35), 0 0 30px rgba(70,130,180,0.08);
}
.dd-tier-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 20px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(70,130,180,0.3);
    white-space: nowrap;
}
.dd-tier-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.dd-tier-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.03em;
    font-family: var(--font-serif);
}
.dd-tier-circle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    font-family: var(--font-serif);
}
.dd-tier-circle span {
    font-size: 1rem;
    margin-top: -8px;
}
.dd-tier strong {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    display: block;
    margin-bottom: 0;
    letter-spacing: 0.02em;
    font-weight: 500;
}
.dd-tier-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(70,130,180,0.4), transparent);
    margin: 16px auto;
}
.dd-tier-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}
.dd-tier-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.dd-tier-list li:last-child {
    border-bottom: none;
}
.dd-tier-list li i {
    color: var(--gold);
    margin-top: 3px;
    font-size: 0.8rem;
    flex-shrink: 0;
}
@media (max-width: 992px) {
    .dd-benefits-grid {
        grid-template-columns: 1fr;
    }
    .dd-compare-tiers {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
}

/* ====== PREMIUM PRODUCT CARDS ====== */
.premium-products-section {
    padding: 100px 0;
}
.premium-products-header {
    text-align: center;
    margin-bottom: 60px;
}
.pp-accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    margin: 16px auto 0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 210, 255, 0.3);
}
.pp-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}
.pp-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 35px 22px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 30px rgba(15,23,42,0.03);
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}
.pp-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(15,23,42,0.1), 0 0 0 1px rgba(0,0,0,0.03);
    border-color: #CBD5E1;
}
.pp-card-featured {
    border: 2px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.12), 0 0 0 6px rgba(16, 185, 129, 0.04);
    transform: scale(1.05);
    z-index: 2;
    background: linear-gradient(180deg, #F0FDF4 0%, #ffffff 50%);
}
.pp-card-featured:hover {
    transform: scale(1.08) translateY(-8px);
    border-color: rgba(16, 185, 129, 0.7);
    box-shadow: 0 30px 70px rgba(16, 185, 129, 0.2), 0 0 0 8px rgba(16, 185, 129, 0.06);
}
.pp-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10B981, #059669);
    color: #FFFFFF;
    padding: 8px 22px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.3);
}
.pp-header {
    text-align: center;
    margin-bottom: 24px;
    border-bottom: 1px solid #F3F4F6;
    padding-bottom: 24px;
}
.pp-icon-shield {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}
.pp-icon-emerald {
    background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(5,150,105,0.15));
    border: 1px solid rgba(16,185,129,0.2);
    box-shadow: 0 8px 25px rgba(16,185,129,0.15), inset 0 2px 4px rgba(255,255,255,0.8);
}
.pp-icon-blue {
    background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(37,99,235,0.15));
    border: 1px solid rgba(59,130,246,0.2);
    box-shadow: 0 8px 25px rgba(59,130,246,0.12), inset 0 2px 4px rgba(255,255,255,0.8);
}
.pp-icon-slate {
    background: linear-gradient(135deg, rgba(100,116,139,0.1), rgba(71,85,105,0.15));
    border: 1px solid rgba(100,116,139,0.2);
    box-shadow: 0 8px 25px rgba(100,116,139,0.12), inset 0 2px 4px rgba(255,255,255,0.8);
}
.pp-card:hover .pp-icon-shield {
    transform: scale(1.1) translateY(-4px);
}
.pp-header h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}
.pp-header p {
    font-size: 0.95rem;
    color: #6B7280;
    margin: 0;
}
.pp-installment {
    background: #F8FAFC;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    font-size: 0.95rem;
    color: #1E293B;
    margin-bottom: 24px;
    border: none;
    font-weight: 500;
}
.pp-features {
    flex-grow: 1;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
}
.pp-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.5;
}
.pp-features li i {
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 1rem;
}
.pp-price {
    text-align: center;
    margin-bottom: 24px;
}
.pp-price-label {
    display: block;
    font-size: 0.85rem;
    color: #9CA3AF;
    margin-bottom: 0px;
}
.pp-price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}
.pp-price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    font-family: var(--font-serif);
    line-height: 1;
}
.pp-price-unit {
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 500;
}
.pp-btn {
    width: 100%;
    margin: 0;
    justify-content: center;
    display: flex;
    align-items: center;
}
.pp-btn i { transition: transform 0.3s ease; }
.pp-btn:hover i { transform: translateX(4px); }

/* === Shimmer Button Effect === */
.pp-btn-shimmer {
    position: relative;
    overflow: hidden;
}
.pp-btn-shimmer::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: ppShimmer 3s infinite;
}
@keyframes ppShimmer {
    0% { left: -100%; }
    50%, 100% { left: 150%; }
}

@media (max-width: 992px) {
    .pp-cards-grid {
        grid-template-columns: 1fr;
    }
    .pp-card-featured {
        transform: none;
    }
    .pp-card-featured:hover {
        transform: translateY(-8px);
    }
}

/* === Coverage Table Enhancements === */
.cov-row {
    transition: background-color 0.3s ease;
}
.cov-row:not(.cov-header):nth-child(even) {
    background: rgba(248, 250, 252, 0.5);
}
.cov-row:not(.cov-header):hover {
    background: rgba(16, 185, 129, 0.06);
}

/* === Insurance Visual Card Image Overlays === */
.ins-visual-box {
    overflow: hidden;
    position: relative;
}
.ins-visual-box img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ins-alt-section:hover .ins-visual-box img {
    transform: scale(1.05);
}

/* === Section Gradient Dividers === */
.section-divider-glow {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16,185,129,0.3), rgba(59,130,246,0.3), transparent);
    margin: 0;
    border: none;
}


/* === Partner Trust Bar (Auto-Scroll) === */
.partner-trust {
    padding: 44px 0 40px;
    background: #FFFFFF;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.partner-trust-header {
    text-align: center;
    margin-bottom: 28px;
}
.partner-trust-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #4682B4;
    margin-bottom: 8px;
}
.partner-trust-label i {
    font-size: 0.9rem;
}
.partner-trust-sub {
    color: #94A3B8;
    font-size: 0.95rem;
    margin: 6px 0 0;
}
.partner-scroll-track {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.partner-scroll-inner {
    display: flex;
    gap: 56px;
    align-items: center;
    animation: partnerScroll 50s linear infinite;
    width: max-content;
}
.partner-scroll-inner img {
    height: 44px;
    object-fit: contain;
    filter: grayscale(0%) opacity(0.85);
    transition: all 0.4s ease;
    flex-shrink: 0;
}
.partner-scroll-inner img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}
@keyframes partnerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* GLOBAL STAR GLOW OVERRIDE */
.fa-star, .fas.fa-star { text-shadow: 0 2px 7px rgba(245, 158, 11, 0.4) !important; color: #FBBF24 !important; }

/* ============================================
   VISUAL QUOTE SELECTOR (VQS) - MINIMALIST PREMIUM (B+)
   ============================================ */
.vqs-section {
    padding: 120px 0;
    background: #f8fafc; /* White-Gray Light Background */
    position: relative;
    overflow: hidden;
    min-height: 800px;
    display: flex;
    align-items: center;
    transition: background 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dynamic BG Glow (Adjusted for Light Theme) */
.vqs-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(70, 130, 180, 0.05) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.8;
    transition: all 1s ease;
    pointer-events: none;
    z-index: 1;
}

.vqs-container {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    margin: 0 auto;
    width: 100%;
}

.vqs-stage {
    position: relative;
    width: 100%;
    min-height: 500px;
}

/* Step Transitions (Cinematic) */
.vqs-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.98);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.vqs-step.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Success Step Styles */
.vqs-success-icon {
    font-size: 80px;
    color: #10B981;
    margin-bottom: 10px;
    filter: drop-shadow(0 10px 20px rgba(16, 185, 129, 0.3));
    animation: successPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.vqs-summary-box {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 20px;
    margin-top: 10px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.vqs-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #EDF2F7;
    gap: 15px;
}

.vqs-summary-item:last-child {
    border-bottom: none;
}

.vqs-summary-item .label {
    color: #64748B;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.vqs-summary-item .value {
    color: #0F172A;
    font-weight: 700;
    text-align: right;
    font-size: 0.95rem;
}

/* Typography (Dark against Light BG) */
.vqs-header {
    text-align: center;
    margin-bottom: 40px;
}
.vqs-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #64748B;
    margin-bottom: 12px;
    font-weight: 800;
}
.vqs-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a; /* Slate 900 */
    line-height: 1.2;
}

/* Pricing Selection (SaaS Cards) - Light Theme */
.vqs-pricing-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
}
.vqs-pricing-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 45px 24px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}
.vqs-pricing-card:hover {
    border-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 20px rgba(0,0,0,0.02);
}
.vqs-pricing-card.popular {
    transform: scale(1.06);
    z-index: 10;
    background: linear-gradient(180deg, #F0FDF4 0%, #ffffff 80%);
    border: 2px solid rgba(16, 185, 129, 0.5);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15), 0 0 0 6px rgba(16, 185, 129, 0.05);
}
.vqs-pricing-card.popular:hover {
    transform: scale(1.09) translateY(-6px);
    border-color: rgba(16, 185, 129, 0.8);
    box-shadow: 0 25px 60px rgba(16, 185, 129, 0.25), 0 0 0 8px rgba(16, 185, 129, 0.1);
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.vqs-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    animation: pulseGlow 2.5s infinite;
}
.vqs-card-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.vqs-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: -15px auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,1), rgba(248,250,252,1));
    width: 85px;
    height: 85px;
    margin: 20px auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,250,252,0.8));
    box-shadow: 0 20px 40px rgba(0,0,0,0.06), inset 0 2px 8px rgba(255,255,255,1), inset 0 -2px 6px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.1, 1.25);
}

.vqs-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    background: var(--icon-color, #475569);
    opacity: 0.08;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.vqs-icon-wrapper i, .vqs-icon-wrapper svg {
    font-size: 2.2rem;
    color: var(--icon-color);
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.1, 1.25);
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.15));
}

.vqs-pricing-card:hover .vqs-icon-wrapper {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1), inset 0 4px 10px rgba(255,255,255,1);
    background: linear-gradient(135deg, rgba(255,255,255,1), rgba(248,250,252,0.9));
}

.vqs-pricing-card:hover .vqs-icon-wrapper::before {
    opacity: 0.15;
}

.vqs-pricing-card:hover .vqs-icon-wrapper i, .vqs-pricing-card:hover .vqs-icon-wrapper svg {
    transform: scale(1.15);
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.25));
}

.vqs-card-header h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e293b; /* Slate 800 */
    margin: 0;
}
.vqs-card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.vqs-card-desc {
    color: #64748b; /* Slate 500 */
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 25px;
}
.vqs-card-action {
    text-align: center;
    color: var(--vqs-accent, #2563EB);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.vqs-pricing-card.popular .vqs-card-action {
    color: #2563EB; /* Bright Blue */
}
.vqs-pricing-card:hover .vqs-card-action {
    transform: translateX(5px);
}
@media (max-width: 991px) {
    .vqs-pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .vqs-pricing-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .vqs-pricing-card.popular {
        transform: scale(1);
    }
}
@media (max-width: 768px) {


    .vqs-section {
        overflow: visible;
        min-height: auto;
        padding: 60px 15px;
    }
    .vqs-stage {
        min-height: auto;
    }
    .vqs-step {
        position: relative;
    }
    .vqs-step:not(.active) {
        display: none;
    }
    .vqs-step.active {
        position: relative;
        display: block;
    }
}

/* Brand Selection (Horizontal Scroll / Focus) - Light Theme */
.vqs-brand-scroller {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 20px;
}
.vqs-brand-tile {
    padding: 24px 10px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.vqs-brand-tile:hover {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.15);
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
.vqs-brand-tile.active {
    background: #f8fafc;
    border-color: #0f172a;
    transform: scale(0.95);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.vqs-brand-mask {
    width: 100%;
    height: 45px;
    background-color: var(--brand-color, #475569); /* Permanent official brand color */
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.vqs-brand-tile:hover .vqs-brand-mask {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
.vqs-brand-tile.active .vqs-brand-mask {
    filter: none;
}

.vqs-svg-icon {
    width: auto;
    max-width: 80%;
    height: 45px;
    color: var(--brand-color, #475569); /* Permanent official brand color */
    margin-bottom: 15px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.vqs-brand-tile:hover .vqs-svg-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
.vqs-brand-tile.active .vqs-svg-icon {
    filter: none;
}
.vqs-brand-tile small {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    font-weight: 600;
    transition: all 0.3s ease;
}
.vqs-brand-tile:hover small {
    color: #0f172a;
}
.vqs-brand-tile.active small { 
    color: #020617; 
}

/* Smart Summary Badge (Light Theme) */
.vqs-smart-badge {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 12px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 100;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.vqs-smart-badge.visible {
    transform: translateX(-50%) translateY(0);
}
.vqs-badge-node {
    font-size: 0.85rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}
.vqs-badge-node strong { color: #0f172a; }
.vqs-badge-sep { color: rgba(0, 0, 0, 0.2); }

/* Final Form (Light Theme) */
.vqs-form-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 24px;
    padding: 40px;
    max-width: 650px;
    margin: 0 auto;
}

.vqs-input-group {
    margin-bottom: 25px;
}
.vqs-input-group label {
    display: block;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 600;
    margin-bottom: 10px;
}
.vqs-minimal-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    font-size: 1.4rem;
    color: #0f172a;
    font-weight: 600;
    transition: all 0.3s ease;
}
.vqs-minimal-input:focus {
    outline: none;
    border-color: var(--vqs-accent, #2563EB);
}

.vqs-submit-btn {
    width: 100%;
    background: #0f172a;
    color: #ffffff;
    padding: 20px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(15, 23, 42, 0.2);
}
.vqs-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
}

/* Back Button (Light Theme) */
.vqs-back-btn {
    position: absolute;
    top: -60px;
    left: 0;
    background: none;
    border: none;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.vqs-back-btn:hover { color: #0f172a; }

/* Responsive */
@media (max-width: 600px) {
    .vqs-brand-scroller { grid-template-columns: repeat(3, 1fr); }
    .vqs-title { font-size: 1.8rem; }
    .vqs-smart-badge { width: 90%; padding: 10px 15px; }
}

/* ============================================
   PLAN COMPARISON (AT-A-GLANCE INFOGRAPHIC)
   ============================================ */
.plan-comp-section {
    padding: 80px 0 60px;
    background: #ffffff; /* White background to match reference feeling */
    position: relative;
    overflow: hidden;
}
.plan-comp-header {
    text-align: center;
    margin-bottom: 80px; /* Space for the badges overlapping */
}
.plan-comp-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}
.plan-comp-header p {
    color: #64748b;
    font-size: 1.1rem;
}
.plan-comp-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap; 
}
.plan-comp-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: #fafafa;
    border-radius: 16px;
    padding: 55px 15px 25px;
    position: relative;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.plan-comp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}
.plan-comp-badge {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 3px solid #fff;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background: #fff;
}

/* Base Theme Specifics (Matching Reference Graphic exactly) */
.pc-theme-prb { border-color: #bae6fd; background: #f0f9ff; }
.pc-theme-prb .plan-comp-badge { background: #bae6fd; color: #0284c7; }

.pc-theme-1 { border-color: #fde68a; background: #fffbeb; }
.pc-theme-1 .plan-comp-badge { background: #fde68a; color: #b45309; }

.pc-theme-2p { border-color: #bfdbfe; background: #eff6ff; }
.pc-theme-2p .plan-comp-badge { background: #bfdbfe; color: #1e3a8a; }

.pc-theme-3p { border-color: #e2e8f0; background: #f8fafc; }
.pc-theme-3p .plan-comp-badge { background: #e2e8f0; color: #334155; }

.pc-theme-23 { border-color: #d6d3d1; background: #fafaf9; }
.pc-theme-23 .plan-comp-badge { background: #d6d3d1; color: #57534e; }

.plan-comp-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2px;
}

.plan-comp-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 20px;
}
.plan-comp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.plan-comp-list li {
    font-size: 0.85rem;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
.plan-comp-list li::before {
    content: "•";
    color: #0f172a;
    font-weight: 800;
}

@media (max-width: 1024px) {
    .plan-comp-grid {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 30px;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .plan-comp-grid::-webkit-scrollbar { height: 6px; }
    .plan-comp-grid::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
    .plan-comp-card {
        flex: 0 0 auto;
        min-width: 260px;
        max-width: 260px;
        scroll-snap-align: center;
    }
}

/* ============================================
   FEATURED PRICING CARDS (LIGHT THEME SAAS)
   ============================================ */
.featured-plans-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    position: relative;
}
.featured-plans-header {
    text-align: center;
    margin-bottom: 60px;
}
.featured-plans-header h2 {
    font-size: 1.3rem;
    color: #475569;
    font-weight: 500;
}
.fp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}
.fp-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
    z-index: 1;
}
.fp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.fp-card.popular {
    border: 2px solid #10B981;
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.15);
    z-index: 2;
}
.fp-card.popular::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    border-radius: 30px;
}
.fp-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #10B981;
    color: white;
    padding: 8px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    white-space: nowrap;
}
.fp-icon {
    width: 72px;  
    height: 72px;
    border-radius: 20px; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06), inset 0 2px 4px rgba(255,255,255,0.8);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid rgba(255,255,255,0.7);
}
.fp-card:hover .fp-icon {
    transform: translateY(-8px) scale(1.05);
}
.fp-theme-green .fp-icon { 
    background: linear-gradient(135deg, #E6F9F2 0%, #D1FAE5 100%); 
    color: #059669; 
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.15), inset 0 2px 4px rgba(255,255,255,0.9);
}
.fp-theme-blue .fp-icon { 
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%); 
    color: #2563EB; 
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.15), inset 0 2px 4px rgba(255,255,255,0.9);
}
.fp-theme-gray .fp-icon { 
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%); 
    color: #475569; 
    box-shadow: 0 15px 30px rgba(71, 85, 105, 0.10), inset 0 2px 4px rgba(255,255,255,0.9);
}

.fp-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 8px;
}
.fp-subtitle {
    font-size: 0.95rem;
    color: #64748B;
    margin-bottom: 30px;
}
.fp-installment {
    background: #F8FAFC;
    color: #475569;
    padding: 12px 0;
    width: 100%;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 35px;
}
.fp-installment span.highlight {
    color: #3B82F6;
}
.fp-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    text-align: left;
    width: 100%;
}
.fp-features li {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.fp-theme-green .fp-features li i { color: #10B981; margin-top: 3px; font-size: 1.1rem; }
.fp-theme-blue .fp-features li i { color: #3B82F6; margin-top: 3px; font-size: 1.1rem; }
.fp-theme-gray .fp-features li i { color: #64748B; margin-top: 3px; font-size: 1.1rem; }

.fp-price-box {
    margin-top: auto;
    margin-bottom: 25px;
}
.fp-price-label {
    font-size: 0.85rem;
    color: #94A3B8;
    margin-bottom: 5px;
}
.fp-price-value {
    font-size: 2.8rem;
    font-weight: 900;
    color: #000000;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}
.fp-price-unit {
    font-size: 0.95rem;
    color: #64748B;
    font-weight: 600;
}
.fp-btn {
    width: 100%;
    padding: 16px 0;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.fp-theme-green .fp-btn {
    background: #4682B4; 
    color: #ffffff;
    border: 1px solid #4682B4;
}
.fp-theme-blue .fp-btn, .fp-theme-gray .fp-btn { 
    background: #FFFFFF; 
    color: #4682B4; 
    border: 1px solid #CBD5E1; 
}

.fp-theme-green .fp-btn:hover { background: #3B729B; border-color: #3B729B; color: white;}
.fp-theme-blue .fp-btn:hover, .fp-theme-gray .fp-btn:hover { background: #F8FAFC; border-color: #4682B4; }

.fp-footer-link {
    text-align: center;
    margin-top: 50px;
}
.fp-footer-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 35px;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    color: #475569;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.fp-footer-link a:hover {
    background: #F8FAFC;
    color: #0F172A;
    border-color: #CBD5E1;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

@media (max-width: 991px) {
    .fp-grid { grid-template-columns: 1fr; max-width: 450px; }
    .fp-card { padding: 35px 20px; }
}





/* RESTORED PREMIUM PRODUCT CARDS WITHOUT ZOOM */
.pp-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}
.pp-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px 24px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 30px rgba(15,23,42,0.03);
    position: relative;
    display: flex;
    flex-direction: column;
}
.pp-card:hover {
    box-shadow: 0 15px 40px rgba(15,23,42,0.08); /* slightly stronger shadow, NO zoom */
    border-color: #CBD5E1;
}
.pp-card-featured {
    border: 2px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.1);
    z-index: 2;
    background: linear-gradient(180deg, #F0FDF4 0%, #ffffff 50%);
}
.pp-card-featured:hover {
    border-color: rgba(16, 185, 129, 0.7);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
}
.pp-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10B981, #059669);
    color: #FFFFFF;
    padding: 8px 22px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.3);
}
.pp-header {
    text-align: center;
    margin-bottom: 24px;
    border-bottom: 1px solid #F3F4F6;
    padding-bottom: 24px;
}
.pp-icon-shield {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 16px;
    position: relative;
}
.pp-icon-emerald {
    background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(5,150,105,0.15));
    border: 1px solid rgba(16,185,129,0.2);
    box-shadow: 0 8px 25px rgba(16,185,129,0.15), inset 0 2px 4px rgba(255,255,255,0.8);
}
.pp-icon-blue {
    background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(37,99,235,0.15));
    border: 1px solid rgba(59,130,246,0.2);
    box-shadow: 0 8px 25px rgba(59,130,246,0.12), inset 0 2px 4px rgba(255,255,255,0.8);
}
.pp-icon-slate {
    background: linear-gradient(135deg, rgba(100,116,139,0.1), rgba(71,85,105,0.15));
    border: 1px solid rgba(100,116,139,0.2);
    box-shadow: 0 8px 25px rgba(100,116,139,0.12), inset 0 2px 4px rgba(255,255,255,0.8);
}
.pp-header h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}
.pp-header p {
    font-size: 0.95rem;
    color: #6B7280;
    margin: 0;
}
.pp-installment {
    background: #F8FAFC;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    font-size: 0.95rem;
    color: #1E293B;
    margin-bottom: 24px;
    border: none;
    font-weight: 500;
}
.pp-features {
    flex-grow: 1;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
}
.pp-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.5;
}
.pp-features li i {
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 1rem;
}
.pp-price {
    text-align: center;
    margin-bottom: 24px;
}
.pp-price-label {
    display: block;
    font-size: 0.85rem;
    color: #9CA3AF;
    margin-bottom: 0px;
}
.pp-price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}
.pp-price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    font-family: var(--font-serif);
    line-height: 1;
}
.pp-price-unit {
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 500;
}
.pp-btn {
    width: 100%;
    margin: 0;
    justify-content: center;
    display: flex;
    align-items: center;
}
.pp-btn i { transition: transform 0.3s ease; }
.pp-btn:hover i { transform: translateX(4px); }

/* === Shimmer Button Effect === */
.pp-btn-shimmer {
    position: relative;
    overflow: hidden;
}
.pp-btn-shimmer::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: ppShimmer 3s infinite;
}
@keyframes ppShimmer {
    0% { left: -100%; }
    50%, 100% { left: 150%; }
}

@media (max-width: 992px) {
    .pp-cards-grid {
        grid-template-columns: 1fr;
    }
}


.pp-features {
    flex-grow: 1;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
}
.pp-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.5;
}
.pp-features li i {
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 1rem;
}
.pp-price {
    text-align: center;
    margin-bottom: 24px;
}
.pp-price-label {
    display: block;
    font-size: 0.85rem;
    color: #9CA3AF;
    margin-bottom: 0px;
}
.pp-price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}
.pp-price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    font-family: var(--font-serif);
    line-height: 1;
}
.pp-price-unit {
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 500;
}
.pp-btn {
    width: 100%;
    margin: 0;
    justify-content: center;
    display: flex;
    align-items: center;
}
.pp-btn i { transition: transform 0.3s ease; }
.pp-btn:hover i { transform: translateX(4px); }

/* === Shimmer Button Effect === */
.pp-btn-shimmer {
    position: relative;
    overflow: hidden;
}
.pp-btn-shimmer::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: ppShimmer 3s infinite;
}
@keyframes ppShimmer {
    0% { left: -100%; }
    50%, 100% { left: 150%; }
}

@media (max-width: 992px) {
    .pp-cards-grid {
        grid-template-columns: 1fr;
    }
}


/* VIP CYBER-GLASSMORPHISM OVERRIDE */
.vp-compare-tiers {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 16px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
}
.vp-compare-tiers > .vp-tier {
    flex: 1 1 0 !important;
    min-width: 180px !important;
    max-width: 260px !important;
}
.vp-tier {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-radius: 20px !important;
    padding: 36px 24px 32px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-top: 2px solid rgba(0, 210, 255, 0.4) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    text-align: center !important;
    position: relative !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.vp-tier:hover {
    border-color: rgba(0, 210, 255, 0.3) !important;
    border-top: 2px solid #00d2ff !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(0, 210, 255, 0.15), 0 0 30px rgba(0, 210, 255, 0.1) !important;
}
.vp-tier-badge {
    position: absolute !important;
    top: -14px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding: 5px 20px !important;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5) !important;
    border-radius: 100px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    letter-spacing: 0.1em !important;
    box-shadow: 0 4px 15px rgba(70,130,180,0.3) !important;
    white-space: nowrap !important;
}
.vp-tier-top {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
}
.vp-tier-title {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    letter-spacing: 0.03em !important;
    font-family: var(--font-serif) !important;
}
.vp-tier-circle {
    width: 56px !important;
    height: 56px !important;
    background: rgba(0, 210, 255, 0.05) !important;
    border: 2px solid #00d2ff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: #00d2ff !important;
    flex-shrink: 0 !important;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.4), inset 0 0 10px rgba(0, 210, 255, 0.2) !important;
    font-family: var(--font-serif) !important;
    text-shadow: 0 0 8px rgba(0, 210, 255, 0.6) !important;
}
.vp-tier-circle span {
    font-size: 1rem !important;
    margin-top: -8px !important;
}
.vp-tier strong {
    font-size: 1rem !important;
    color: rgba(255,255,255,0.75) !important;
    display: block !important;
    margin-bottom: 0 !important;
    letter-spacing: 0.02em !important;
    font-weight: 500 !important;
}
.vp-tier-divider {
    width: 40px !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, rgba(70,130,180,0.4), transparent) !important;
    margin: 16px auto !important;
}
.vp-tier-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
    width: 100% !important;
}
.vp-tier-list li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    padding: 8px 0 !important;
    font-size: 0.9rem !important;
    color: rgba(255,255,255,0.6) !important;
    line-height: 1.5 !important;
    border-bottom: 1px solid rgba(255,255,255,0.04) !important;
}
.vp-tier-list li:last-child {
    border-bottom: none !important;
}
.vp-tier-list li i {
    color: #00d2ff !important; /* Neon Cyan */
    margin-top: 3px !important;
    font-size: 0.8rem !important;
    flex-shrink: 0 !important;
}

@media (max-width: 992px) {
    .vp-compare-tiers {
        flex-direction: column !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }
    .vp-compare-tiers > .vp-tier {
        width: 100% !important;
        max-width: 420px !important;
    }
}

/* iOS SQUIRCLE ICON OVERRIDE */
.pp-icon-shield {
    width: 72px !important;  
    height: 72px !important;
    border-radius: 20px !important; 
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 24px auto !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06), inset 0 2px 4px rgba(255,255,255,0.8) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    position: relative !important;
    border: 1px solid rgba(255,255,255,0.7) !important;
}
.pp-card:hover .pp-icon-shield {
    transform: translateY(-8px) scale(1.05) !important;
}

/* SQUIRCLE THEMES */
.pp-icon-emerald { 
    background: linear-gradient(135deg, #E6F9F2 0%, #D1FAE5 100%) !important; 
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.15), inset 0 2px 4px rgba(255,255,255,0.9) !important;
}
.pp-icon-emerald svg path[fill="#ffffff"] { fill: #059669 !important; fill-opacity: 1 !important; }
.pp-icon-emerald i { color: #059669 !important; font-size: 1.85rem !important; }

.pp-icon-blue { 
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%) !important; 
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.15), inset 0 2px 4px rgba(255,255,255,0.9) !important;
}
.pp-icon-blue svg path[fill="#DBEAFE"] { fill: #2563EB !important; }
.pp-icon-blue i { color: #2563EB !important; font-size: 1.85rem !important; }

.pp-icon-gray { 
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%) !important; 
    box-shadow: 0 15px 30px rgba(71, 85, 105, 0.10), inset 0 2px 4px rgba(255,255,255,0.9) !important;
}
.pp-icon-gray i { color: #475569 !important; font-size: 1.85rem !important; }

.pp-icon-slate { 
    background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%) !important; 
    box-shadow: 0 15px 30px rgba(51, 65, 85, 0.12), inset 0 2px 4px rgba(255,255,255,0.9) !important;
}
.pp-icon-slate i { color: #334155 !important; font-size: 1.85rem !important; }

/* PREMIUM LEAD TRUST MARKS OVERRIDE */
.lead-trust-marks span {
    background: #F8FAFC !important;
    color: #475569 !important;
    border: 1px solid #E2E8F0 !important;
    font-weight: 500 !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02) !important;
}
.lead-trust-marks span i {
    color: #10B981 !important; /* Emerald Green */
    background: transparent !important;
    font-size: 1.15rem !important;
    margin-right: 6px !important;
}

body.menu-open {
    overflow: hidden !important;
}
body.menu-open .navbar {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
}
body.menu-open .nav-links.active {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
}

/* SAFE GLOBAL OVERFLOW FIX */
body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

/* ====== COMPANY PROFILE CAROUSEL ====== */
.company-profile-section {
    padding: var(--section-padding) 0;
    background: #0a0f1e; /* Deep Navy */
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}
.cp-slider-container {
    position: relative;
    width: 100%;
    margin-top: 40px;
}
.cp-slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    gap: 30px;
    padding: 20px 0;
}
.cp-slider-track::-webkit-scrollbar {
    display: none;
}
.cp-slide {
    flex: 0 0 calc(50% - 15px); /* Show 2 slides desktop */
    scroll-snap-align: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.4s var(--ease-luxury), box-shadow 0.4s;
    background: #FFFFFF; /* In case png has transparent parts, but it is a PDF so it is white */
}
.cp-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.25);
}
.cp-slide img {
    width: 100%;
    height: auto;
    display: block;
}
.cp-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}
.cp-nav-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(70, 130, 180, 0.6);
}
.cp-prev {
    left: -25px;
}
.cp-next {
    right: -25px;
}

/* ====== MOBILE RESPONSIVE FIXES ====== */
@media (max-width: 992px) {
    .cp-slide {
        flex: 0 0 calc(80% - 10px); /* Show 1 big slide tablet */
    }
}
@media (max-width: 768px) {
    /* Prevent CEO picture from being giant on mobile */
    .vl-image-box {
        max-width: 320px;
        margin: 0 auto;
    }
    
    /* Hide the desktop connector line in process steps on mobile */
    .process-steps::before,
    .process-steps::after {
        display: none !important;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cp-slide {
        flex: 0 0 90%; /* Show 1 slide mobile */
    }
    .cp-nav-btn {
        display: none; /* Hide buttons on mobile, rely on swipe */
    }
}

/* ====== EXPERTISE GRID (PDF Layout) ====== */
.expertise-grid {
    display: grid;
    grid-template-columns: 4fr 3fr 3fr;
    gap: 40px;
    align-items: flex-start;
}
.ep-col-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}
.ep-point {
    background: #FFFFFF;
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-left: 4px solid var(--navy);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ep-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.ep-point ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}
.ep-point ul li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}
.ep-point ul li::before {
    content: "•";
    color: var(--navy);
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 1.2rem;
}
.ep-point ul li strong {
    color: #1e293b;
    font-weight: 600;
}

@media (max-width: 992px) {
    .expertise-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ep-col-card {
        grid-column: 1 / -1; /* Make card full width */
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    .expertise-header h2 {
        font-size: 2rem !important;
    }
}

/* ====== EXPERTISE GRID (V2 Elegant Minimalist) ====== */
.expertise-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 60px;
    align-items: center;
}
.ex-v2-card-wrap {
    position: relative;
    padding: 10px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.ex-v2-card-wrap img {
    width: 100%;
    display: block;
    border-radius: var(--radius-md);
}
.ex-v2-card-footer {
    text-align: center;
    padding: 18px 0 8px;
    font-weight: 600;
    color: var(--navy);
    font-size: 1.15rem;
    border-top: 1px solid #f1f5f9;
    margin-top: 10px;
}
.ex-v2-points-col {
    display: flex;
    flex-direction: column;
}
.ex-v2-item {
    display: flex;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.ex-v2-item:first-child {
    padding-top: 0;
}
.ex-v2-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.ex-v2-item:hover {
    padding-left: 15px;
    background: linear-gradient(90deg, #f8fafc 0%, transparent 100%);
    border-left: 2px solid var(--gold);
}
.ex-v2-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
    margin-right: 25px;
    line-height: 1.1;
}
.ex-v2-text h4 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}
.ex-v2-text .en-tag {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: block;
    margin-top: 2px;
}
.ex-v2-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 10px;
}
.ex-v2-text p:last-child {
    margin-bottom: 0;
}
.ex-v2-text p strong {
    color: var(--navy);
    font-weight: 600;
}

@media (max-width: 992px) {
    .expertise-v2-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .ex-v2-card-col {
        max-width: 500px;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .ex-v2-item {
        flex-direction: column;
    }
    .ex-v2-num {
        margin-bottom: 15px;
        margin-right: 0;
        font-size: 1.4rem;
    }
}

/* ============================================
   #opt-b  Credential / License Section
   ============================================ */
#opt-b .cred-header-label {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: block;
}
#opt-b .cred-header-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin: 0 auto;
    line-height: 1.4;
}
#opt-b .cred-header-title span {
    color: var(--gold);
}
#opt-b .cred-header-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin-top: 28px;
    opacity: 0.5;
}

/* Grid */
#opt-b .cred-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: start;
}

/* License card */
#opt-b .cred-license-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
#opt-b .cred-license-topbar {
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}
#opt-b .cred-license-body {
    padding: 36px 36px 0;
    text-align: center;
}
#opt-b .cred-license-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1B2A4A;
    margin: 0 0 4px;
    line-height: 1.4;
}
#opt-b .cred-license-body .cred-subtitle {
    font-size: 0.78rem;
    color: #9CA3AF;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 24px;
}
#opt-b .cred-img-frame {
    padding: 5px;
    border: 1px solid #E5E7EB;
    border-radius: 3px;
    background: #FAFBFC;
}
#opt-b .cred-img-frame img {
    width: 100%;
    display: block;
    border-radius: 2px;
}
#opt-b .cred-license-num {
    padding: 20px 36px;
    text-align: center;
}
#opt-b .cred-license-num-inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 9px 22px;
    border-radius: 3px;
}
#opt-b .cred-license-num-inner .label {
    font-size: 0.78rem;
    color: #9CA3AF;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}
#opt-b .cred-license-num-inner .divider {
    width: 1px;
    height: 16px;
    background: #D1D5DB;
}
#opt-b .cred-license-num-inner .number {
    font-size: 1.05rem;
    color: #1B2A4A;
    font-weight: 700;
    letter-spacing: 1.5px;
}
#opt-b .cred-quote {
    padding: 24px 40px;
    border-top: 1px solid #E5E7EB;
    text-align: center;
}
#opt-b .cred-quote p {
    margin: 0 auto;
    font-size: 0.93rem;
    color: #4B5563;
    line-height: 1.85;
    font-style: italic;
    max-width: 440px;
}
#opt-b .cred-quote strong {
    color: #1B2A4A;
    font-weight: 700;
    font-style: normal;
}

/* Trust bar */
#opt-b .cred-trust-bar {
    background: #F8FAFC;
    border-top: 1px solid #E5E7EB;
    padding: 20px 36px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
#opt-b .cred-trust-item {
    text-align: center;
    flex: 1;
}
#opt-b .cred-trust-item svg {
    margin: 0 auto 6px;
    display: block;
}
#opt-b .cred-trust-item .cred-trust-label {
    display: block;
    font-size: 0.76rem;
    color: #1B2A4A;
    font-weight: 600;
    line-height: 1.5;
}
#opt-b .cred-trust-divider {
    width: 1px;
    height: 32px;
    background: #E2E8F0;
    flex-shrink: 0;
}

/* Right column cards */
#opt-b .cred-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
#opt-b .cred-card {
    position: relative;
    padding: 26px 30px;
    border-radius: 6px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    transition: all 0.35s ease;
    cursor: default;
}
#opt-b .cred-card:hover {
    border-color: rgba(70, 130, 180, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}
#opt-b .cred-card--vision {
    border-left: 3px solid var(--gold);
    text-align: center;
    padding: 30px 34px;
}
#opt-b .cred-card h4 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 12px;
    line-height: 1.4;
}
#opt-b .cred-card--vision h4 {
    font-size: 1.15rem;
    margin-bottom: 14px;
}
#opt-b .cred-card p {
    font-size: 0.9rem;
    color: #4B5563;
    line-height: 1.7;
    margin: 0;
}
#opt-b .cred-card--vision p {
    font-weight: 300;
    color: #6B7280;
    line-height: 1.85;
}
#opt-b .cred-card .cred-num {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    opacity: 0.4;
}
#opt-b .cred-bullet {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}
#opt-b .cred-bullet:last-child {
    margin-bottom: 0;
}
#opt-b .cred-bullet::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--gold-light);
    border-radius: 1px;
    margin-top: 9px;
    flex-shrink: 0;
    opacity: 0.5;
}
#opt-b .cred-bullet strong {
    color: var(--navy);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    #opt-b .cred-grid {
        grid-template-columns: 1fr;
    }
    #opt-b .cred-license-body {
        padding: 28px 20px 0;
    }
    #opt-b .cred-quote {
        padding: 20px;
    }
    #opt-b .cred-trust-bar {
        padding: 18px 16px;
    }
    #opt-b .cred-license-num {
        padding: 18px 20px;
    }
}
@media (max-width: 480px) {
    #opt-b .cred-trust-bar {
        flex-direction: column;
        gap: 16px;
    }
    #opt-b .cred-trust-divider {
        width: 40px;
        height: 1px;
    }
    #opt-b .cred-license-num-inner {
        flex-direction: column;
        gap: 4px;
    }
    #opt-b .cred-license-num-inner .divider {
        width: 30px;
        height: 1px;
    }
}


/* --- OVERRIDE FOOTER LINK SPACING --- */
.footer-col ul {
    gap: 6px !important;
}
.footer-col ul li {
    margin-bottom: 2px !important;
}
.footer-col .footer-contact-item {
    margin-bottom: 10px !important;
}


/* --- OVERRIDE FOOTER LINK SPACING --- */
.footer-col ul {
    gap: 6px !important;
}
.footer-col ul li {
    margin-bottom: 2px !important;
}
.footer-col .footer-contact-item {
    margin-bottom: 8px !important;
}
