/* ============================================
   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: #F8FAFC;
    --dark-700: #F1F5F9;
    --dark-600: #E2E8F0;
    --dark-500: #CBD5E1;
    --dark-400: #94A3B8;
    --dark-300: #64748B;
    --dark-200: #475569;
    --dark-100: #334155;

    /* Blue Accent - Warm Luxury Muted Formal Blue */
    --gold: #6086A8;
    --gold-light: #8BACCC;
    --gold-dark: #3F5E7A;
    --gold-glow: rgba(96, 134, 168, 0.15);

    /* Cool Blue Accent */
    --blue-accent: #6086A8;
    --blue-glow: rgba(96, 134, 168, 0.15);

    /* Text */
    --text-primary: #142031;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --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(15, 23, 42, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --card-border: 1px solid #94A3B8;

    /* 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;
    -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: var(--dark-900);
    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-serif);
    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: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
}

.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.3);
    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.3);
    transform: translateY(-2px);
}

.btn-white {
    background: transparent;
    color: #0F172A;
    border: 1px solid rgba(15, 23, 42, 0.15);
}

.btn-white:hover {
    border-color: #4682B4;
    color: #4682B4;
}

.btn-outline-blue {
    background: transparent;
    color: #4682B4;
    /* Make button outline gold */
    border: 1.5px solid #4682B4;
    border-radius: 8px;
}

.btn-outline-blue:hover {
    background: #4682B4;
    color: #0F172A;
    /* Dark contrast on hover */
    box-shadow: 0 8px 30px rgba(70, 130, 180, 0.3);
    transform: translateY(-2px);
}

/* ---- 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.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid #E2E8F0;
}

.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: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.15);
    border: 2px solid rgba(70, 130, 180, 0.3);
    box-shadow: 0 2px 12px rgba(70, 130, 180, 0.12), 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.2);
}

.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: #CBD5E1;
    /* 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: #4682B4;
    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: #94A3B8;
    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: #475569;
    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: #0F172A;
}

.navbar.scrolled .nav-logo .logo-text,
.navbar.navbar-light-bg .nav-logo .logo-text {
    color: #0F172A;
}

.navbar.scrolled .nav-logo .logo-sub,
.navbar.navbar-light-bg .nav-logo .logo-sub {
    color: #64748B;
}

.nav-cta .btn {
    padding: 10px 28px;
    font-size: 0.75rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
}

.navbar.scrolled .menu-toggle {
    color: #0F172A;
    border-color: rgba(15, 23, 42, 0.2);
}

/* ---- 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, 30, 60, 0.65) 0%, rgba(15, 30, 60, 0.3) 35%, rgba(15, 30, 60, 0.4) 60%, rgba(15, 30, 60, 0.85) 100%),
        linear-gradient(90deg, rgba(15, 30, 60, 0.15) 0%, rgba(15, 30, 60, 0.05) 40%, rgba(15, 30, 60, 0.7) 85%, rgba(15, 30, 60, 0.85) 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: #CBD5E1;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 1s 0.3s var(--ease-luxury) forwards;
    padding: 10px 28px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 100px;
    display: inline-block;
    background: rgba(15, 30, 60, 0.45);
    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), 0 0 80px rgba(70, 130, 180, 0.1);
}

.hero-deco-line {
    width: 80px;
    height: 1px;
    margin: 16px auto;
    background: linear-gradient(90deg, transparent, #4682B4, transparent);
}

.hero-accent-text {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 300;
    color: #CBD5E1;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.gold-gradient {
    background: linear-gradient(135deg, #94A3B8 0%, #CBD5E1 50%, #64748B 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(100, 116, 139, 0.2));
}

.hero-desc {
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    color: #E2E8F0;
    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-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #94A3B8;
    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(148, 163, 184, 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: #4682B4;
    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: #0F172A;
    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: #64748B;
    margin-bottom: 24px;
}

.blue-gradient {
    background: linear-gradient(135deg, #316996 0%, #5C9CE6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.hero-desc-split {
    font-size: 1.1rem;
    color: #475569;
    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;
    /* Ensure seamless connection with hero */
}

.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, #4682B4, #5C9CE6, #60A5FA);
    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(59, 130, 246, 0.35), 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(59, 130, 246, 0.3);
}

.stat-item:hover .stat-number span {
    color: #60A5FA;
}

.stat-item:hover .stat-divider {
    width: 70px;
    background: linear-gradient(90deg, #5C9CE6, #60A5FA);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}

.stat-item:hover .stat-label {
    color: #F1F5F9;
    letter-spacing: 0.16em;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    color: #FFFFFF;
    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: #5C9CE6;
    font-weight: 600;
    transition: color 0.4s ease;
}

.stat-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #4682B4, #5C9CE6);
    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: #CBD5E1;
    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, #1E3A8A 0%, #4682B4 50%, #5C9CE6 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%, #F1F5F9 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%, #5C9CE6 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: #64748B;
    margin-bottom: 12px;
}

.circle-ring h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    line-height: 1.1;
    color: #0F172A;
    font-weight: 600;
}

.circle-ring h2 .italic {
    font-weight: 400;
    color: #4682B4;
    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 #E2E8F0;
    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: #E2E8F0;
    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: #94A3B8;
    margin-bottom: 12px;
}

.plan-content h3 {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 500;
    color: #0F172A;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.plan-desc {
    font-size: 0.95rem;
    color: #64748B;
    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: #0F172A;
    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: #F8FAFC;
    border: 1px solid #E2E8F0;
    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: #94A3B8;
    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: #334155;
    font-weight: 300;
    padding: 14px 0;
    border-bottom: 1px solid #E2E8F0;
    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: #0F172A;
    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: #CBD5E1;
}

/* ---- Dark variant ---- */
.plan-section.plan-dark {
    background: #0F172A;
    border-top-color: #1E293B;
}

.plan-dark .plan-number {
    color: #1E293B;
}

.plan-dark .plan-tier {
    color: #4682B4;
}

.plan-dark .plan-content h3 {
    color: #F1F5F9;
}

.plan-dark .plan-desc {
    color: #94A3B8;
}

.plan-dark .plan-cta {
    color: #4682B4;
    border-color: #4682B4;
}

.plan-dark .plan-cta::before {
    background: #4682B4;
}

.plan-dark .plan-cta:hover {
    color: #0F172A;
}

.plan-dark .plan-features-card {
    background: #1E293B;
    border-color: #334155;
}

.plan-dark .plan-features-card::before {
    background: #4682B4;
}

.plan-dark .plan-features-title {
    color: #64748B;
}

.plan-dark .plan-features li {
    color: #CBD5E1;
    border-bottom-color: #334155;
}

.plan-dark .plan-features li i {
    color: #4682B4;
}

.plan-dark:hover .plan-number {
    color: #334155;
}

/* 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, #F7F9FC 0%, #EFF6FF 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;
    font-weight: 300;
    margin-bottom: 24px;
    padding-left: 20px;
    border-left: 2px solid rgba(70, 130, 180, 0.2);
}

.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: #1E293B;
    --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;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(70, 130, 180, 0.15), transparent);
}

.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: #60A5FA;
    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: 120px 0;
    background: #F8FAFC;
    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: 2px solid rgba(70, 130, 180, 0.15);
}

.cta-static-ring-1 {
    width: 620px;
    height: 620px;
    margin: -310px 0 0 -310px;
}

.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: 620px;
    height: 620px;
    margin: -310px 0 0 -310px;
    animation: ctaOrbitSpin 12s linear infinite;
}

.cta-orbit-ring-2,
.cta-orbit-ring-3 {
    display: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    background: #4682B4;
    box-shadow: 0 0 14px rgba(70, 130, 180, 0.5), 0 0 30px rgba(70, 130, 180, 0.15);
}

.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: #0F172A;
}

.cta-inner h2 .italic {
    font-weight: 300;
    color: #4682B4;
}

.cta-inner p {
    font-size: 0.95rem;
    color: #64748B;
    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, #4682B4 0%, #316996 100%);
    color: #0F172A;
    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.3);
    text-decoration: none;
}

.btn-cta-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(70, 130, 180, 0.45);
    background: linear-gradient(135deg, #60A5FA 0%, #4682B4 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: #0F172A;
    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: #4682B4;
    color: #1E40AF;
    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;
    }

    .btn-cta-gold {
        display: none;
    }

    .btn-cta-outline {
        padding: 10px 24px;
        font-size: 0.82rem;
    }
}

.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: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.15);
    border: 2px solid rgba(70, 130, 180, 0.25);
    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: #4682B4;
    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: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        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;
    }

    .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: #5C9CE6;
        background: transparent;
        letter-spacing: 0.01em;
    }

    .nav-links a.active {
        color: #5C9CE6;
        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;
    }

    .menu-toggle {
        display: flex;
        z-index: 10001;
    }

    .menu-toggle.active i {
        color: #0F172A;
        font-size: 1.4rem;
    }

    /* Hero: แสดงรูปเต็มโดยไม่ crop */
    .hero {
        height: auto;
        min-height: 0;
        display: block;
        padding-bottom: 0;
    }

    .hero-bg {
        position: relative;
    }

    .hero-bg img {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center center;
    }

    .hero-bg::after {
        background:
            linear-gradient(180deg, rgba(10, 15, 30, 0.15) 0%, rgba(10, 15, 30, 0.05) 30%, rgba(10, 15, 30, 0.25) 55%, rgba(10, 15, 30, 0.88) 78%, rgba(10, 15, 30, 0.97) 100%) !important;
    }

    .hero-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 0 20px 36px;
        text-align: center;
    }

    .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: #F1F5F9;
}

::-webkit-scrollbar-thumb {
    background: #93C5FD;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4682B4;
}

/* ---- Selection ---- */
::selection {
    background: #4682B4;
    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: #CBD5E1;
    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: #0F172A;
    /* Dark contrast text on gold */
    background: #4682B4;
    /* Make badge gold */
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.section-bg-dark-blue .service-detail-badge {
    background: #4682B4;
    /* Actual Gold color */
    color: #0F172A;
    /* 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: #4682B4;
    /* 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: #4682B4;
    /* 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: #4682B4;
    /* 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: #4682B4;
    border-color: #4682B4;
    color: #0F172A;
    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: #F8FAFC;
}

.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: #EFF6FF;
    color: #1E3A8A;
    border: none;
}

.sc-badge-blue {
    background: #E0F2FE;
    color: #0284C7;
    border: none;
}

.sc-badge-green {
    background: #DCFCE7;
    color: #166534;
    border: none;
}

.sc-badge-navy {
    background: #F1F5F9;
    color: #334155;
    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: #4682B4;
    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: #4682B4;
    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: #F8FAFC;
    border-color: rgba(0, 0, 0, 0.2);
}

.sc-card:hover .sc-cta {
    border-color: rgba(70, 130, 180, 0.4);
    color: #1E3A8A;
}

.sc-card:hover .sc-cta:hover {
    background: #EFF6FF;
}

.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: #4682B4;
    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: #1E40AF;
    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: #4682B4;
    background: linear-gradient(135deg, #EFF6FF, #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, #F7F9FC 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, #EFF6FF, #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, #F7F9FC 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: #4682B4;
    background: linear-gradient(135deg, #EFF6FF, #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 #E2E8F0;
    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, #60A5FA);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-item:hover {
    border-color: #93C5FD;
    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: #F8FAFC;
    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: #94A3B8;
    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: #316996;
}

.sc-thanachart h4 {
    color: #f97316;
}

.sc-mtl h4 {
    color: #4682B4;
}

.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: #0F172A;
    line-height: 1.2;
    margin-bottom: 20px;
}

.exec-services-subtitle {
    color: #64748B;
    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;
}

.exec-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    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, #60A5FA);
    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, #EFF6FF, #DBEAFE);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4682B4;
    font-size: 1.4rem;
}

.exec-card-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: #E2E8F0;
    line-height: 1;
}

.exec.p3-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0F172A;
    margin: 0;
}

.exec-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.exec-card p {
    color: #64748B;
    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: #4682B4;
    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);
}

/* 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: #F8FAFC;
}

.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 #E2E8F0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.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: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 100px;
    font-size: 0.8rem;
    color: #316996;
    font-weight: 500;
}

.about-exec-stamp i {
    font-size: 0.9rem;
}

/* --- Right: Content --- */
.about-exec-content h2 {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    color: #0F172A;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-exec-name h3 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 8px;
}

.about-exec-name span {
    font-size: 0.95rem;
    color: #64748B;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.about-exec-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #4682B4, #60A5FA);
    margin: 20px 0;
    border-radius: 2px;
}

.about-exec-bio {
    color: #475569;
    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: #FFFFFF;
    border: 1px solid #E2E8F0;
    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: #93C5FD;
    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%, #EFF6FF 100%);
}

.about-exec-license i {
    font-size: 2rem;
    color: #4682B4;
    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: #0F172A;
    margin-bottom: 4px;
}

.about-exec-license span {
    font-size: 0.95rem;
    color: #64748B;
    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: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1rem;
    color: #334155;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
}

.about-exec-value:hover {
    transform: translateY(-3px);
    border-color: #93C5FD;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    box-shadow: 0 8px 24px rgba(70, 130, 180, 0.1);
    color: #1E40AF;
}

.about-exec-value i {
    color: #4682B4;
    font-size: 1.1rem;
    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, #60A5FA);
    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: #334155;
    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 #E2E8F0;
    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: #4682B4;
    line-height: 1;
    margin-bottom: 4px;
}

.about-mini-label {
    font-size: 0.7rem;
    color: #64748B;
    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: #0F172A;
    line-height: 1.2;
    margin-bottom: 20px;
}

.why-tl-subtitle {
    color: #64748B;
    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: 12px;
    top: 0;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle,
            #FFFFFF 0%,
            rgba(59, 130, 246, 0.8) 40%,
            transparent 70%);
    border-radius: 50%;
    filter: blur(1px);
    box-shadow:
        0 0 6px 2px rgba(255, 255, 255, 0.8),
        0 0 14px 4px rgba(59, 130, 246, 0.6),
        0 0 30px 8px rgba(59, 130, 246, 0.25);
    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(59, 130, 246, 0.6), 0 0 30px 8px rgba(59, 130, 246, 0.25);
    }

    50% {
        transform: scale(1.8);
        box-shadow: 0 0 10px 4px rgba(255, 255, 255, 1), 0 0 24px 8px rgba(59, 130, 246, 0.8), 0 0 50px 16px rgba(59, 130, 246, 0.35);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.8), 0 0 14px 4px rgba(59, 130, 246, 0.6), 0 0 30px 8px rgba(59, 130, 246, 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(59, 130, 246, 0.6), 0 0 40px rgba(59, 130, 246, 0.2);
    background: #60A5FA;
    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: #4682B4;
    border: 3px solid #FFFFFF;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(70, 130, 180, 0.2), 0 0 16px rgba(70, 130, 180, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

/* --- Timeline Card --- */
.why-tl-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 44px 40px;
    transition: all 0.4s ease;
    overflow: hidden;
    width: 100%;
}

.why-tl-card:hover {
    border-color: #BFDBFE;
    box-shadow: 0 12px 40px rgba(70, 130, 180, 0.08);
    transform: translateY(-4px);
}

/* Watermark Number */
.why-tl-watermark {
    position: absolute;
    top: -10px;
    right: 16px;
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 800;
    color: #F1F5F9;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.why-tl-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4682B4;
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.why-tl-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.why-tl-card p {
    color: #475569;
    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: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.partners-grid-deco {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, #E2E8F0 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: #0F172A;
    line-height: 1.2;
    margin-bottom: 18px;
}

.partners-grid-subtitle {
    color: #64748B;
    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 #E2E8F0;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.p3-card:hover {
    border-color: #BFDBFE;
    box-shadow: 0 8px 32px rgba(70, 130, 180, 0.08);
    transform: translateY(-4px);
}

.p3-logo {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 16px;
    border-radius: 12px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p3-card:hover .p3-logo {
    transform: scale(1.15) rotate(-5deg);
}

.p3-name-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 6px;
}

.p3-badge-inline {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.p3-card:hover .p3-badge-inline {
    transform: scale(1.25) translateY(-2px);
}

.p3-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0F172A;
    margin: 0;
}

.p3-card p {
    color: #64748B;
    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: #F1F5F9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    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: #EFF6FF;
    color: #4682B4;
}

/* 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: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.process-header {
    text-align: center;
    margin-bottom: 70px;
}

.process-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: #0F172A;
    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, #93C5FD 0%, #5C9CE6 30%, #60A5FA 50%, #5C9CE6 70%, #93C5FD 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 #5C9CE6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #5C9CE6;
    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: #5C9CE6;
    background: #5C9CE6;
    color: #FFFFFF;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.process-step h3 {
    font-size: 1.4rem;
    color: #0F172A;
    margin-bottom: 12px;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
}

.process-step:hover h3 {
    color: #4682B4;
    transform: scale(1.05);
}

.process-step p {
    color: #64748B;
    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: #5C9CE6;
    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 #E2E8F0;
}

.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: #F8FAFC;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 1.15rem;
    color: #475569;
    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: #94A3B8;
    transition: color 0.3s ease;
    width: 30px;
    text-align: center;
}

.as-tab:hover {
    background: #F1F5F9;
    color: #0F172A;
    transform: translateX(6px);
}

.as-tab:hover i {
    color: #5C9CE6;
}

.as-tab.active {
    background: linear-gradient(135deg, #4682B4, #316996);
    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 #E2E8F0;
    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: #4682B4;
    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: #0F172A;
    margin: 0 0 18px;
    font-weight: 700;
    line-height: 1.3;
}

.pane-text p {
    font-size: 1.15rem;
    color: #475569;
    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: #1E293B;
    font-weight: 500;
}

.pane-benefits li i {
    color: #10B981;
    /* Emerald green for checkmarks */
    font-size: 1.3rem;
    background: rgba(16, 185, 129, 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 #E2E8F0;
        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: #F8FAFC;
    position: relative;
}

.why-broker-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-broker-subtitle {
    color: #64748B;
    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 #E2E8F0;
    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, #1E3A8A, #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: 72px;
    height: 72px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.why-new-icon i {
    font-size: 1.8rem;
    color: #1E3A8A;
    transition: transform 0.3s ease;
}

.why-new-card:hover .why-new-icon {
    background: #1E3A8A;
    border-color: #1E3A8A;
}

.why-new-card:hover .why-new-icon i {
    color: #FFFFFF;
    transform: scale(1.1);
}

.why-new-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 12px;
    font-family: 'Kanit', sans-serif;
}

.why-new-desc {
    color: #64748B;
    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: #94A3B8;
    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,
            #5C9CE6,
            #8B5CF6,
            #06B6D4,
            #5C9CE6,
            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(59, 130, 246, 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: #5C9CE6;
    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: #94A3B8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    font-weight: 300;
}

.footer-col ul li a:hover {
    color: #60A5FA;
    transform: translateX(5px);
}

.footer-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #60A5FA;
    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: #CBD5E1;
    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: #5C9CE6;
    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: #94A3B8;
}

.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: #64748B;
    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: #64748B;
        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: #60A5FA;
    }

    .footer-col.accordion-open h4::after {
        transform: rotate(180deg);
        color: #60A5FA;
    }

    /* 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: 300px;
        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: #CBD5E1;
    }



    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================================================
   CONTACT BANNER SECTION
   ========================================================================= */
.contact-banner-section {
    padding: 80px 0;
    background: #F8FAFC;
}

.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: #1E3A8A;
}

/* 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: #1E3A8A;
    font-family: 'Kanit', sans-serif;
}

.cb-value {
    color: #475569;
    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 #E2E8F0;
    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: #1E3A8A;
}

.cb-or {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    background: #FFF;
    color: #94A3B8;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px;
}

/* ---- Alternating Insurance Plans ---- */
.ins-alt-section {
    padding: 80px 0;
}

.section-bg-gray {
    background-color: #F8FAFC;
}

.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: #4682B4;
    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: #334155;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ins-plan-features li i {
    margin-top: 6px;
    font-size: 1.1rem;
    color: #4A7AB5;
}

@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: #64748B;
    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 #F1F5F9;
}

.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: #5C9CE6;
}

.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: #0F172A;
    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);
}

.doc-claim-col h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 24px;
    font-family: 'Kanit', sans-serif;
}

.gold-text {
    color: #4682B4;
}

/* 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: #1E293B;
    margin-bottom: 20px;
    font-weight: 500;
}

.doc-claim-list li i {
    color: #0F172A;
    font-size: 0.5rem;
    margin-right: 16px;
}

.doc-claim-badge {
    margin: 60px auto 0;
    max-width: fit-content;
    background: #E8F0FA;
    color: #0F172A;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    padding: 18px 48px;
    border-radius: 50px;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.15);
}

@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: 100vw;
    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: #E2E8F0 !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: #4A7AB5 !important; /* Premium Blue */
}

.process-step:hover .step-icon {
    border-color: #4A7AB5 !important;
    color: #FFFFFF !important;
    background: #4A7AB5 !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: #4A7AB5 !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: #E2E8F0 !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 #F8FAFC / Dark #0B1120)
   ========================================================================= */
.section-alt-gray {
    background: #F8FAFC !important;
}

.section-alt-dark {
    background: #0B1120 !important;
}

.section-alt-dark .fa-star {
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.5), 0 0 20px rgba(251, 191, 36, 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: #60A5FA !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: #60A5FA !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;
}

.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(70, 130, 180, 0.3) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3) !important;
}

.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(70, 130, 180, 0.15) !important;
    border-color: rgba(70, 130, 180, 0.3) !important;
    box-shadow: 0 0 12px rgba(96, 165, 250, 0.25), 0 0 30px rgba(96, 165, 250, 0.1);
}

.section-alt-dark .why-new-card:hover .why-new-icon {
    background: #1E3A8A !important;
    border-color: #1E3A8A !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 {
    color: #60A5FA !important;
    text-shadow: 0 0 8px rgba(96, 165, 250, 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: #60A5FA !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: #60A5FA !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(96, 165, 250, 0.2), rgba(70, 130, 180, 0.4), rgba(96, 165, 250, 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(96, 165, 250, 0.4) !important;
    color: #60A5FA !important;
    text-shadow: 0 0 8px rgba(96, 165, 250, 0.3);
    box-shadow: 0 0 0 6px #0B1120 !important;
}


.section-alt-dark .process-steps::before {
    background: linear-gradient(90deg, transparent 0%, rgba(96, 165, 250, 0.7) 15%, #60A5FA 50%, rgba(96, 165, 250, 0.7) 85%, transparent 100%) !important;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.4), 0 0 25px rgba(96, 165, 250, 0.2), 0 0 50px rgba(96, 165, 250, 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: #60A5FA !important;
    color: #FFFFFF !important;
    transform: scale(1.1) !important;
    box-shadow: 0 0 0 6px #0B1120, 0 12px 30px rgba(96, 165, 250, 0.3) !important;
}

.section-alt-dark .process-step:hover h3 {
    color: #93C5FD !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: #60A5FA !important;
}

.section-alt-dark .blue-text {
    color: #93C5FD !important;
}

.section-alt-dark .doc-claim-list li i {
    color: #60A5FA !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: #60A5FA !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: #60A5FA !important;
    text-shadow: 0 0 8px rgba(96, 165, 250, 0.5), 0 0 20px rgba(96, 165, 250, 0.2);
}

.section-alt-dark .popular-tag {
    background: rgba(251, 191, 36, 0.15) !important;
    color: #FBBF24 !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: #60A5FA !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%, #60A5FA 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: #93C5FD !important;
}

.section-alt-dark .about-exec-stamp i {
    color: #60A5FA !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: #60A5FA !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: #60A5FA !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: #93C5FD !important;
}

.section-alt-dark .about-exec-value i {
    color: #60A5FA !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: #60A5FA !important;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5), 0 0 25px rgba(96, 165, 250, 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, #60A5FA, #4682B4) !important;
}

.section-alt-dark .about-exec-stamp i,
.section-alt-dark .about-exec-value i,
.section-alt-dark .about-exec-license i {
    color: #60A5FA !important;
    text-shadow: 0 0 8px rgba(96, 165, 250, 0.4), 0 0 20px rgba(96, 165, 250, 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(96, 165, 250, 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: #60A5FA !important;
    text-shadow: 0 0 12px rgba(96, 165, 250, 0.5), 0 0 24px rgba(96, 165, 250, 0.2);
}

.section-alt-dark .as-tab.active {
    background: linear-gradient(135deg, #4682B4, #316996) !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(96, 165, 250, 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: #60A5FA !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(16, 185, 129, 0.12) !important;
}

/* Fix for fixed header anchoring */
section[id], div[id] {
    scroll-margin-top: 100px;
}

