@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --color-bg: #f4f4f4;
    --color-navy: #010d2d;
    --color-navy-light: #051645;
    --color-white: #ffffff;
    --color-gold: #c5a059;
    --color-text-body: #333333;
    --color-text-muted: #666666;

    --font-main: 'Plus Jakarta Sans', sans-serif;

    --radius-lg: 32px;
    --radius-pill: 100px;

    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-body);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--color-navy);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

/* Pill Labels */
.pill-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-navy);
    margin-bottom: 2rem;
}

.pill-label::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    background: var(--color-navy);
    color: var(--color-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 0.72rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--color-navy-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(1, 13, 45, 0.15);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-navy);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--color-bg);
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(244, 244, 244, 0.8);
    backdrop-filter: blur(20px);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-navy);
    letter-spacing: -0.01em;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-navy);
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 2.5rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-gold);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 12rem 0 10rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(6, 20, 67, 0.85), rgba(6, 20, 67, 0.85)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white);
}

.hero .hero-title {
    color: var(--color-white);
}

.hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.hero .pill-label {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: none;
}


.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(3.5rem, 5vw, 4.1rem);
    margin-bottom: 2rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 3.5rem;
}

.hero .btn {
    background: #C5A059;
    color: var(--color-navy);
}

.hero .btn:hover {
    background: #b08d48;
    color: var(--color-white);
}

.hero-visual {
    position: relative;
}

.image-card {
    width: 100%;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Sections */
section {
    padding: 10rem 0;
}

.dark-section {
    background: var(--color-navy);
    color: var(--color-white);
}

.dark-section h2,
.dark-section h3,
.dark-section p {
    color: var(--color-white);
}

.dark-section .pill-label {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: none;
}

/* Features/Deep Dive */
.deep-dive-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.deep-dive-graphic {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

/* SVG Animations for Growth Chart Graphic */
.glass-ceiling {
    animation: fadeIn 2s ease-in-out infinite alternate;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.growth-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 3s ease-out forwards;
}

@keyframes growBar {
    to { height: var(--target-height); y: calc(250 - var(--target-height)); }
}

.growth-bar {
    transform-origin: bottom;
    animation: growBar 2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.bar-1 { --target-height: 20px; animation-delay: 0.2s; }
.bar-2 { --target-height: 35px; animation-delay: 0.4s; }
.bar-3 { --target-height: 100px; animation-delay: 0.6s; }
.bar-4 { --target-height: 170px; animation-delay: 0.8s; }
.bar-5 { --target-height: 220px; animation-delay: 1.0s; }

@keyframes popNode {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.growth-node {
    transform-origin: center;
    transform: scale(0);
    opacity: 0;
    animation: popNode 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.node-1 { animation-delay: 1.0s; }
.node-2 { animation-delay: 1.5s; }
.node-3 { animation-delay: 2.0s; }
.node-4 { animation-delay: 2.5s; }

.target-node {
    transform-origin: center;
    transform: scale(0);
    animation: popNode 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 3s;
}

@keyframes pulseTarget {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

.pulse-ring {
    transform-origin: center;
    animation: pulseTarget 2s infinite ease-out 3s;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: #010D2D;
    color: var(--color-white);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

/* Custom CSS Background "Images" */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 1; /* Made fully visible to show images */
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s ease;
}

.feature-card:hover::before {
    opacity: 0.85; /* Slight dim on hover for interactivity */
    transform: scale(1.05);
}

/* Smart Marketing Background */
.feature-marketing::before {
    background: 
        linear-gradient(rgba(1, 13, 45, 0.85), rgba(1, 13, 45, 0.95)),
        url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?q=80&w=800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

/* Serious Support Background */
.feature-support::before {
    background: 
        linear-gradient(rgba(1, 13, 45, 0.85), rgba(1, 13, 45, 0.95)),
        url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?q=80&w=800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

/* Expert Design Background */
.feature-design::before {
    background: 
        linear-gradient(rgba(1, 13, 45, 0.85), rgba(1, 13, 45, 0.95)),
        url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(1, 13, 45, 0.3);
}

.feature-card h3 {
    color: var(--color-white);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.feature-icon-wrapper {
    margin-bottom: 2.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(197, 160, 89, 0.3);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.85); /* Bright white with a touch of softness for perfect reading contrast */
}

/* 3 Pillars / Roadmap */
#pillars {
    background-image: linear-gradient(rgba(6, 20, 67, 0.85), rgba(6, 20, 67, 0.85)), url('kelly_2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 6rem;
    position: relative;
}

/* The Connecting Gold Line */
.pillars-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    z-index: 0;
    opacity: 0.3;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 4rem 3rem;
    border-radius: var(--radius-lg);
    text-align: left;
    position: relative;
    border: 1px solid rgba(197, 160, 89, 0.15);
    z-index: 1;
    transition: var(--transition);
    overflow: hidden;
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: rgba(197, 160, 89, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

/* Staggered Layout */
.pillar-card:nth-child(2) {
    transform: translateY(40px);
}
.pillar-card:nth-child(3) {
    transform: translateY(80px);
}
.pillar-card:nth-child(2):hover {
    transform: translateY(30px);
}
.pillar-card:nth-child(3):hover {
    transform: translateY(70px);
}

.pillar-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 5rem;
    font-weight: 900;
    color: var(--color-white);
    opacity: 0.06;
    line-height: 1;
    pointer-events: none;
    transition: var(--transition);
}

.pillar-card:hover .pillar-num {
    opacity: 0.12;
    transform: scale(1.05);
}

/* Philosophy */
.philosophy-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-quote {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 4rem;
}

/* Social Proof */
.social-proof {
    text-align: center;
}

.testimonial-card {
    background: var(--color-white);
    padding: 6rem 4rem;
    border-radius: var(--radius-lg);
    max-width: 900px;
    margin: 4rem auto 0;
}

.testimonial-text {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 2.5rem;
}

/* Footer */
.footer {
    padding: 4rem 0 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-card {
    background: var(--color-navy);
    padding: 5rem;
    border-radius: var(--radius-lg);
    color: var(--color-white);
}

.contact-card h2 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 2rem;
}

/* Responsive Grids */
.responsive-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

/* Mobile Toggle Hamburger (Hidden on Desktop) */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-navy);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile */
@media (max-width: 1024px) {
    .responsive-grid-2,
    .hero-grid,
    .deep-dive-grid,
    .pillars-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .deep-dive-grid .hero-title {
        font-size: 2.3rem !important;
    }

    /* Navbar Mobile Menu */
    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-white);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-links a {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
    }

    .nav-links .btn {
        margin: 1rem 0 0 0 !important;
    }

    /* Content Centering & Overrides */
    .hero-text, .deep-dive-grid > div, .about-text, .footer-grid > div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-grid div {
        align-items: center !important;
        justify-content: center !important;
    }

    .deep-dive-graphic {
        max-width: 100%;
    }

    .feature-card,
    .pillar-card,
    .contact-card {
        padding: 3rem 2rem;
    }

    /* Disable Sticky on Mobile */
    .philosophy > .container > div > div:nth-child(1),
    .feature-card {
        position: relative !important;
        top: 0 !important;
    }

    /* Adjust Social Proof Font */
    .social-proof p {
        font-size: 1.8rem !important;
    }

    /* Hide Complex Floating Overlays on Mobile */
    .floating-badge,
    .institutional-seal {
        display: none !important;
    }
}

/* Floating Elements for Next-Level Portrait Section */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.floating-badge {
    position: absolute;
    background: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.badge-top {
    top: -20px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
}

.badge-top .dot {
    width: 8px;
    height: 8px;
    background: #10b981; /* Green success dot */
    border-radius: 50%;
}

.badge-top .badge-text {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-navy);
    letter-spacing: 0.05em;
}

.badge-bottom {
    bottom: 20px;
    left: -40px;
    background: var(--color-navy);
    color: var(--color-white);
    padding: 1.5rem 2rem;
    animation-delay: -3s;
}

.badge-stat {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
    color: var(--color-white);
}

.badge-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    color: var(--color-white);
}

.accent-circle {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
    opacity: 0.15;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}


/* 3D Tilt and Institutional Seal */
.tilt-container {
    position: relative;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.tilt-container:hover {
    transform: rotateX(5deg) rotateY(-5deg) scale(1.02);
}

.image-card {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.image-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.75s ease;
    z-index: 5;
    pointer-events: none;
}

.tilt-container:hover .image-card::after {
    animation: shimmer 1.5s forwards;
}

@keyframes shimmer {
    100% { left: 200%; }
}

.image-card img {
    transition: filter 0.8s ease, transform 0.8s ease;
}

.tilt-container:hover .image-card img {
    transform: scale(1.05);
}

.institutional-seal {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.2);
    z-index: 15;
    border: 1px solid rgba(197, 160, 89, 0.3);
    transform: translateZ(50px); /* Makes it float above the image in 3D space */
    animation: rotateSeal 20s linear infinite;
}

@keyframes rotateSeal {
    from { transform: translateZ(50px) rotate(0deg); }
    to { transform: translateZ(50px) rotate(360deg); }
}

.floating-badge {
    transform: translateZ(30px); /* Different Z-index for parallax feel */
}

.badge-top {
    transform: translateZ(40px);
}

/* ==================================================
   Partnership Modal Styles
   ================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 13, 45, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-white);
    width: 90%;
    max-width: 550px;
    border-radius: 20px;
    padding: 3.5rem;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: var(--color-navy);
    cursor: pointer;
    line-height: 1;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.modal-close:hover {
    opacity: 1;
}

/* Modal Form Elements */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-navy);
}

.form-group input,
.form-group select {
    padding: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

/* ==========================================================================
   Advisor Banner Section
   ========================================================================== */
.advisor-banner-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.advisor-banner-section .container {
    padding-top: 0;
    padding-bottom: 0;
}

.advisor-banner-glow-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.advisor-banner-glow-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(1, 13, 45, 0.02) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.advisor-banner-content {
    position: relative;
    z-index: 10;
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 48px;
    background: var(--color-navy);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.advisor-banner-content:hover {
    border-color: var(--color-gold);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35), 0 0 20px rgba(197, 160, 89, 0.15);
}

.advisor-flex-container {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    text-align: left;
}

.advisor-icon-box {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    background: rgba(197, 160, 89, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
    transition: var(--transition);
    color: var(--color-gold);
}

.advisor-banner-content:hover .advisor-icon-box {
    border-color: var(--color-gold);
    transform: scale(1.05) rotate(3deg);
    background-color: var(--color-gold);
    color: var(--color-navy);
}

.advisor-text-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.advisor-title {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--color-white);
    line-height: 1.3;
}

.advisor-title .gold-text {
    color: var(--color-gold);
}

.advisor-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 0;
}

.advisor-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
    flex-shrink: 0;
}

.advisor-logo-box {
    flex-shrink: 0;
    padding: 0 16px;
}

.advisor-logo {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.advisor-banner-content:hover .advisor-logo {
    opacity: 1;
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .advisor-banner-section {
        padding: 60px 0;
    }

    .advisor-banner-content {
        flex-direction: column;
        padding: 40px 32px;
        gap: 32px;
        text-align: center;
    }

    .advisor-flex-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .advisor-text-box {
        text-align: center;
    }

    .advisor-description {
        margin: 0 auto;
    }

    .advisor-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    }
}
