:root {
    --primary-color: #0F172A;
    /* Deep Navy Blue */
    --secondary-color: #1E293B;
    /* Slate 800 */
    --accent-color: #38BDF8;
    /* Sky Blue */
    --accent-gold: #c9a84c;
    /* Updated Gold */
    --accent-gold-light: #dfc07a;
    --text-light: #F8FAFC;
    --text-dark: #334155;
    --text-muted: #64748B;
    --background-light: #FFFFFF;
    --background-alt: #F1F5F9;
    /* Slate 100 - Distinct Light BG */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* New variables from exigencies_website.html */
    --navy: #0f1d3a;
    --navy-mid: #162040;
    --navy-light: #1e2f55;
    --gold: #c9a84c;
    --gold-light: #dfc07a;
    --gold-pale: #f5ead4;
    --white: #ffffff;
    --cream: #f8f5ef;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 300;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    color: var(--navy);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-gold);
    margin-top: 0.5rem;
    border-radius: 2px;
}

.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-weight: 300;
    line-height: 1.6;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
    letter-spacing: 0.2em;
    font-family: var(--font-body);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    border: 1px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    background: var(--secondary-color);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--text-light);
    transform: translateY(-4px);
}

/* Header */
.header {
    background: #ffffff !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo-info {
    display: flex;
    flex-direction: column;
    line-height: 35px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    font-weight: 600;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    font-size: 0.95rem;
}

.nav-link:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-link:not(.btn-primary):hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 0;
    color: var(--white);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(30, 47, 85, 0.8) 0%, transparent 50%);
}

.hero-compass-bg {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    opacity: 0.09;
    animation: slowSpin 60s linear infinite;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: 780px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUpHero 0.8s ease 0.2s forwards;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-eyebrow span {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUpHero 0.9s ease 0.4s forwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-desc {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUpHero 0.9s ease 0.6s forwards;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: 0;
    animation: fadeUpHero 0.9s ease 0.8s forwards;
}

.btn-primary-hero {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary-hero:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

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

.btn-secondary span {
    width: 28px;
    height: 28px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: fadeUpHero 0.9s ease 1.2s forwards;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: scrollPulse 2s ease infinite;
}

.hero-scroll span {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    writing-mode: vertical-rl;
}

.hero-stats {
    position: absolute;
    right: 60px;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    opacity: 0;
    animation: fadeLeftHero 0.9s ease 1s forwards;
}

.stat-item {
    text-align: right;
    border-right: 1px solid rgba(201, 168, 76, 0.3);
    padding-right: 20px;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
}

.stat-num span {
    color: var(--gold);
    font-style: italic;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Marquee Band */
.marquee-band {
    background: var(--gold);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    gap: 0;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 0 30px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--navy);
}

.marquee-dot {
    width: 4px;
    height: 4px;
    background: var(--navy);
    border-radius: 50%;
    opacity: 0.4;
}

/* Hero Animations */
@keyframes slowSpin {
    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes fadeUpHero {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeftHero {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* About Us Section Modern Styles */
.about {
    padding: 4rem 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.about-grid-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.about-visual-side {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 30px;
    box-shadow: var(--shadow-2xl);
    overflow: visible;
}

.about-premium-img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-premium-img {
    transform: scale(1.02);
}

.about-experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 2.5rem;
    border-radius: 50% 50% 50% 0;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 8px solid white;
    z-index: 5;
    animation: float 4s ease-in-out infinite;
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold-light);
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subsection-tagline {
    font-size: 1rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.about-main-text p {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-gold);
}

.about-feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.about-feature-item i {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.about-feature-item span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .about-grid-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-visual-side {
        max-width: 600px;
        margin: 0 auto;
    }

    .about-experience-badge {
        right: 0;
        bottom: -20px;
    }
}


/* Chairman Message Section Redesigned (Text Only) */
.chairman-section-refined {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.chairman-section-refined::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(217, 119, 6, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.chairman-refined-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 40px;
    box-shadow: var(--shadow-xl);
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.message-quote-box {
    margin: 3rem 0;
    position: relative;
    padding: 0 2rem;
    text-align: center;
}

.message-quote-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    opacity: 0.2;
    margin-bottom: 1.5rem;
}

.message-highlight-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--primary-color);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.message-body-text {
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: center;
}

.message-footer-cta {
    margin-top: 2rem;
}

.chairman-section-refined .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .chairman-section-refined {
        padding: 5rem 0;
    }

    .chairman-refined-content {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }

    .message-highlight-text {
        font-size: 1.4rem;
    }

    .message-body-text {
        font-size: 1.05rem;
    }

    .hero h1 {
        font-size: 40px !important;
    }
}



/* Mission & Vision Section */
.mission-section {
    padding: 6rem 0;
    background-color: var(--background-light);
}



/* Chairman Message Section */
.chairman-section {
    padding: 80px 0;
    background-color: var(--background-alt);
    position: relative;
}

.chairman-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin: 0 auto;
}

.chairman-visual {
    flex: 0 0 400px;
    position: relative;
}

.chairman-content {
    flex: 1;
}

.chairman-img {
    width: 100%;
    border-radius: 15px;
    filter: grayscale(1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

.visual-quote-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #E67E22;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
    z-index: 2;
}

.chairman-cta {
    text-align: end;
}

.chairman-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.chairman-content h3::after {
    display: none;
}

.chairman-intro {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.chairman-content blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #333;
    line-height: 1.5;
    margin: 2rem 0;
    padding: 0 0 0 2rem;
    font-style: italic;
    border-left: 3px solid #E67E22;
    background: none;
}

.chairman-cta .btn-outline {
    background: transparent;
    border: 1px solid #ccc;
    color: #333;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
}

.chairman-cta .btn-outline:hover {
    border-color: #333;
    background: rgba(0, 0, 0, 0.02);
    transform: none;
}

@media (max-width: 991px) {
    .chairman-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .chairman-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .chairman-content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .chairman-section {
        padding: 60px 0;
    }

    .visual-quote-overlay {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        right: -10px;
        bottom: -10px;
    }

    .chairman-intro {

        font-size: 1.2rem;
    }

    .hero-stats {
        display: none;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        padding: 0 20px;
        max-width: 100%;
    }

    .btn-primary-hero {
        padding: 6px 19px;
        font-size: 13px;
        border-radius: 6px;
        font-weight: 700;
    }

    .hero h1 {
        font-size: 40px !important;
    }
}

/* Chairman List */
.chairman-list {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.chairman-list li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.chairman-promise {
    background: rgba(245, 158, 11, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
    margin: 2rem 0;
}

.chairman-promise h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.chairman-promise ul {
    list-style: none;
}

.chairman-promise ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.chairman-promise ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* Mission & Vision Section */
.mission-section {
    padding: 4rem 0;
    background-color: #fcfcfc;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.mission-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.mv-card {
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mv-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-gold);
    transform: translateY(-12px);
}

.mv-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(15, 23, 42, 0.03);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.mv-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px dashed var(--accent-gold);
    border-radius: 25px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0.9);
}

.mv-card:hover .mv-icon-wrapper {
    background: var(--primary-color);
    transform: rotate(10deg);
}

.mv-card:hover .mv-icon-wrapper::after {
    opacity: 1;
    transform: scale(1);
    transform: rotate(-10deg);
}

.mv-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.mv-card:hover .mv-icon {
    color: #fff;
}

.mv-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.mv-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.mv-card strong {
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

.mission-vision-grid .mv-card:nth-child(1) {
    transition-delay: 0.1s;
}

.mission-vision-grid .mv-card:nth-child(2) {
    transition-delay: 0.3s;
}

.mission-vision-grid .mv-card:nth-child(3) {
    transition-delay: 0.5s;
}



/* Services Section (Light Alt) */
.services {
    padding: 5rem 0;
    background-color: var(--background-alt);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.03) 0%, transparent 20%);
    pointer-events: none;
}

.services .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(245, 158, 11, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--background-alt);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--accent-gold);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 1.05rem;
}

.service-link {
    font-weight: 600;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    font-size: 1rem;
}

.service-link:hover {
    gap: 1rem;
    color: var(--primary-color);
}

/* Why Choose Us (Dark Feature) */
.why-choose-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.why-choose-us .section-title {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-item h4 {
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #94A3B8;
    font-size: 1rem;
    line-height: 1.6;
}

/* Our Promise */
.our-promise {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.our-promise h3 {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.promise-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 1.5rem;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-style: italic;
}

.promise-items .divider {
    color: var(--accent-gold);
    font-size: 1rem;
}

/* Business Model (Carousel) */
.business-model {
    padding: 4rem 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.business-model .section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    /* Add side padding for buttons */
}


.carousel-track-container {
    overflow: hidden;
    padding: 2rem 1rem 0rem;
    /* Generous padding for hover lift */
    margin: 0 -1rem;
    /* Negative margin to counteract padding overlap with grid */
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 1%, black 99%, transparent);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    /* Smoother bezier */
    gap: 2rem;
    padding: 0;
    list-style: none;
    counter-reset: carousel-counter;
}

.carousel-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    counter-increment: carousel-counter;
}

/* Large Background Number */
.carousel-card::before {
    content: "0" counter(carousel-counter);
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 6rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.06;
    font-family: var(--font-heading);
    z-index: 0;
    line-height: 1;
    pointer-events: none;
    transition: var(--transition);
}

.carousel-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(217, 119, 6, 0.3);
}

.carousel-card:hover::before {
    opacity: 0.06;
    transform: scale(1.1);
}

.phase-badge {
    align-self: flex-start;
    padding: 8px 16px;
    background: rgba(15, 23, 42, 0.04);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    z-index: 1;
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: var(--transition);
}

.carousel-card:hover .phase-badge {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.carousel-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    height: 3rem;
    /* Fixed height alignment */
    display: flex;
    align-items: center;
}

.phase-desc {
    position: relative;
    z-index: 1;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
    height: 3.2rem;
}

.phase-list {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.phase-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.phase-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.outcome-box {
    position: relative;
    z-index: 1;
    background: #F8FAFC;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #E2E8F0;
    margin-top: auto;
    transition: var(--transition);
}

.carousel-card:hover .outcome-box {
    background: #fff;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.outcome-box i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.outcome-box span {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Carousel Controls */
.carousel-controls {
    /* Only for dots container now, buttons are absolute */
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    position: static;
    /* Let buttons break out */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #E2E8F0;
    color: var(--primary-color);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* Stronger shadow for visibility */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-btn.prev-btn {
    left: 10px;
}

.carousel-btn.next-btn {
    right: 10px;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--accent-gold);
    border-color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.2);
    transform: translateY(-50%) scale(1.1);
    /* Maintain centering + scale */
}

.carousel-dots-container {
    display: flex;
    gap: 12px;
    margin-top: 0.5rem;
}

.carousel-dot {
    border: none;
    width: 10px;
    height: 10px;
    background: #CBD5E1;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ... rest of dot styles unchanged ... */

.carousel-dot.active {
    width: 35px;
    background: var(--accent-gold);
}

.carousel-dot:hover:not(.active) {
    background: #94A3B8;
}

/* Clear List Styling */
.phase-list li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-size: 0.95rem;
    /* Increased size */
    font-weight: 600;
    /* Increased weight */
    line-height: 1.5;
}

.phase-list li::before {
    top: 9px;
    width: 8px;
    /* Larger bullet */
    height: 8px;
    background: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(217, 119, 6, 0.2);
    /* Ring effect */
}

/* Responsive */
@media (max-width: 1024px) {
    .carousel-card {
        flex: 0 0 calc(50% - 1rem);
        /* 2 items */
    }
}

@media (max-width: 768px) {
    .carousel-wrapper {
        padding: 0 10px;
        /* Reduced from 4rem to give box more space */
    }

    .carousel-card {
        flex: 0 0 100%;
        /* 1 item */
        padding: 2.5rem 1.5rem;
        /* Slightly tighter padding for mobile */
    }

    .carousel-track-container {
        margin: 0;
        mask-image: none;
        /* remove mask on mobile to avoid edge fading issues */
    }

    .carousel-card h3,
    .phase-desc {
        height: auto;
    }

    .carousel-btn {
        width: 42px;
        /* Smaller buttons on mobile */
        height: 42px;
        font-size: 1.1rem;
        background: rgba(255, 255, 255, 0.85);
        /* Slightly more transparent */
        backdrop-filter: blur(4px);
    }

    .carousel-btn.prev-btn {
        left: -5px;
        /* Pull buttons slightly outward */
    }

    .carousel-btn.next-btn {
        right: -5px;
    }

    .btn {
        padding: 10px 15px;
    }
}

.phase-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

.outcome-box {
    background: #F8FAFC;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-left: 4px solid var(--accent-gold);
}

.outcome-box i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.outcome-box span {
    font-size: 0.9rem;
    color: var(--primary-color);
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
        transform: none;
    }

    .timeline-row {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 3rem;
    }

    .timeline-empty {
        display: none;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }

    .timeline-content.left,
    .timeline-content.right {
        order: 2;
    }

    .timeline-marker {
        left: 30px;
        transform: translateX(-50%);
        top: 30px;
    }

    .timeline-row:hover .timeline-marker {
        transform: translateX(-50%) scale(1.2);
    }

    .timeline-content::after {
        display: none;
        /* Hide arrows on mobile for cleaner look */
    }
}

/* Engagement Principles */
.engagement-principles {
    margin-top: 3rem;
    text-align: center;
}

.principles-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.principle-item {
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.principle-item:hover {
    transform: translateY(-5px);
    background: var(--secondary-color);
    box-shadow: var(--shadow-xl);
}

/* Industries (Light Alt) */
.industries {
    padding: 4rem 0;
    background-color: var(--background-alt);
    text-align: center;
    position: relative;
}

.industries .section-header {
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-card {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 5px solid transparent;
    cursor: default;
}

.industry-card:hover {
    border-left-color: var(--accent-gold);
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
}

.industry-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
}

.industry-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Our Focus */
.our-focus {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.our-focus h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.our-focus p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* Section Eyebrow */
.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.section-eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.section-eyebrow span {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Contact Section Premium Redesign */
.contact {
    background-color: var(--navy-mid);
    background-image:
        radial-gradient(at 0% 100%, rgba(15, 29, 58, 1) 0, transparent 50%),
        radial-gradient(at 100% 0%, rgba(30, 47, 85, 0.8) 0, transparent 50%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: flex-start;
}

.contact-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-visual-side .section-title {
    color: var(--white);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(201, 168, 76, 0.2);
}

.contact-text h3 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 5px;
}

.contact-text p {
   
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 300;
}

/* Contact Card */
.contact-card {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    position: relative;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.card-header {
    margin-bottom: 35px;
}

.card-header h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.card-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.actual-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    background: var(--background-alt);
    border: 1px solid transparent;
    padding: 15px 20px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--navy);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    background: var(--white);
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}

.form-textarea {
    height: 140px;
    resize: none;
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 40px;
    }

    .contact-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact {
        padding: 80px 0;
    }

    .contact-text p {
        font-size: 1.1rem;
    }
}


/* Footer */
.footer {
    background: #080f1f;
    /* A deeper midnight navy */
    padding: 80px 0 40px;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    color: rgba(255, 255, 255, 0.6);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    line-height: 1.7;
    margin-top: 18px;
    max-width: 300px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-weight: 300;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
    font-family: var(--font-body);
    letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }

    .hero-headline {
        font-size: 3.5rem;
    }

    /* old chairman container removed */
}

@media (max-width: 767px) {

    h1 {
        font-size: 38px !important;
    }

    h2,
    .section-title {
        font-size: 28px !important;
    }

    h3 {
        font-size: 24px !important;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        gap: 1.5rem;
    }

    .nav-list.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content {
        padding: 0 20px;
        text-align: center;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero h1 {
        font-size: 42px !important;
        line-height: 1.1;
    }

    .hero-desc {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary-hero,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 60px;
        gap: 20px;
        padding: 0 20px;
    }

    .stat-item {
        text-align: center;
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(201, 168, 76, 0.2);
        padding-bottom: 10px;
        flex: 1;
    }

    .stat-num {
        font-size: 28px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-compass-bg {
        width: 400px;
        height: 400px;
        right: -100px;
        bottom: -50px;
        top: auto;
        transform: none;
    }

    .about {
        padding: 60px 0;
    }

    .about-experience-badge {
        padding: 1.5rem;
        bottom: -15px;
        right: -15px;
        border-width: 4px;
    }

    .badge-number {
        font-size: 1.8rem;
    }

    .chairman-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .chairman-visual {
        max-width: 100%;
    }

    .logo-image {
        height: 50px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .logo-sub {
        font-size: 0.5rem;
        letter-spacing: 1px;
    }

    .logo-info {
        line-height: 20px;
    }

    .marquee-item {
        font-size: 10px;
        padding: 0 15px;
    }

    .section-header {
        margin-bottom: 2.5rem !important;
        text-align: center;
    }

    .subsection-tagline,
    .section-title {
        text-align: center !important;
        display: block !important;
    }

    .section-title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chairman Modal */
.chairman-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.chairman-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.chairman-modal-content {
    background: #fff;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--background-alt);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.modal-close-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(90deg);
}

.chairman-text-container.collapsed {
    display: none;
}

.chairman-read-more-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.read-more-btn {
    background: transparent;
    border: none;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    border-radius: 50px;
}

.read-more-btn:hover {
    background: rgba(245, 158, 11, 0.1);
    gap: 0.8rem;
}

/* Modal Typography Override */
.chairman-modal-content h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--background-alt);
    padding-bottom: 1rem;
    color: var(--primary-color);
}

.chairman-modal-content p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.chairman-modal-content blockquote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--primary-color);
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid var(--accent-gold);
    background: var(--background-alt);
    padding: 2rem;
    border-radius: 0 12px 12px 0;
}

.chairman-modal-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.chairman-modal-content li {
    margin-bottom: 0.5rem;
    list-style: disc;
}

/* Page Header Styles */
.page-header {
    background: var(--navy);
    padding: 120px 0 60px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--gold) !important;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Specific Styles */
.about-page-content {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 767px) {
    .about-page-content {
        padding: 60px 0 !important;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
    }
}

/* About Page Premium Redesign - Modern & Attractive */
.about-hero {
    min-height: 80vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0;
    color: var(--white);
    margin-top: 80px;
    /* Offset for fixed header */
}

.about-hero .hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 5;
}

.about-hero .hero-text-content {
    max-width: 700px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpHero 0.8s ease forwards 0.2s;
}

.about-hero h1 {
    font-family: var(--font-body);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    color: var(--white);
    margin: 20px 0;
    line-height: 1;
    letter-spacing: -1px;
}

.about-hero .hero-desc {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-weight: 300;
    max-width: 550px;
    border-left: 2px solid var(--gold);
    padding-left: 25px;
}

.hero-graphic {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
}

.abstract-shape {
    width: 320px;
    height: 400px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0.8;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 0 80px rgba(201, 168, 76, 0.4);
    animation: floatShape 8s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-shape::after {
    content: '';
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 20px white;
    animation: pulse 2s infinite;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-30px) rotate(8deg) scale(1.05);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.about-section-main {
    padding: 120px 0;
    background: var(--background-light);
    position: relative;
}

.about-content-header {
    margin-bottom: 60px;
}

.about-title {
    font-family: var(--font-body);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 6px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.title-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
}

.about-paragraphs {
    max-width: 1000px;
}

.about-paragraphs p {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.about-paragraphs .lead-para {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.5;
    margin-bottom: 3rem;
}

.luxe-stats-bar {
    background: var(--navy);
    padding: 80px 0;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-box {
    text-align: center;
    padding: 40px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.03);
}

.stat-box:last-child {
    border-right: none;
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    line-height: 1;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

@media (max-width: 1100px) {
    .hero-graphic {
        width: 350px;
        height: 350px;
    }

    .abstract-shape {
        width: 250px;
        height: 320px;
    }
}

@media (max-width: 991px) {
    .about-hero {
        min-height: auto;
        padding: 100px 0;
    }

    .about-hero .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .about-hero .hero-desc {
        margin: 0 auto;
        border-left: none;
        padding-left: 0;
        border-top: 2px solid var(--gold);
        padding-top: 20px;
    }

    .hero-graphic {
        margin-top: 60px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box:nth-child(2) {
        border-right: none;
    }

    .stat-box {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-box:nth-child(3),
    .stat-box:nth-child(4) {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 60px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-box:last-child {
        border-bottom: none;
    }

    .stat-number {
        font-size: 3rem;
    }
}

/* Modern Premium About Page Redesign */
.about-hero-modern {
    min-height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: translateY(-10%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 29, 58, 0.9) 0%, rgba(15, 29, 58, 0.6) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.hero-content-modern .eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
}

.hero-content-modern h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: white;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content-modern h1 em {
    color: var(--gold);
    font-style: italic;
}

.hero-content-modern p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-modern-content {
    padding: 100px 0;
    background: #f8fafc;
}

.content-grid-modern {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.modern-title {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 25px;
    font-family: var(--font-body);
    position: relative;
    display: inline-block;
}

.modern-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gold);
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 40px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.expertise-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
}

.expertise-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 5px;
}

.expertise-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.expertise-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.full-content-modern p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-dark);
}

.modern-card {
    background: var(--navy);
    padding: 40px;
    border-radius: 25px;
    color: white;
    text-align: center;
    box-shadow: 0 20px 50px rgba(15, 29, 58, 0.2);
    position: sticky;
    top: 120px;
}

.stat-circle {
    width: 150px;
    height: 150px;
    border: 4px solid var(--gold);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-val {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-txt {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modern-list {
    text-align: left;
}

.modern-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.modern-list li i {
    color: var(--gold);
}

.modern-stats-bar {
    background: white;
    padding: 80px 0;
    border-top: 1px solid #eee;
}

.stats-wrapper-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.modern-stat h4 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.modern-stat p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
}

@media (max-width: 991px) {
    .content-grid-modern {
        grid-template-columns: 1fr;
    }

    .stats-wrapper-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .modern-card {
        position: static;
    }
}

@media (max-width: 576px) {
    .stats-wrapper-modern {
        grid-template-columns: 1fr;
    }

    .hero-content-modern h1 {
        font-size: 2rem;
    }
}

/* Side-by-Side Split Section Styles */
.about-split-section {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-image-side {
    position: relative;
}

.image-premium-container {
    position: relative;
    border-radius: 30px;
    overflow: visible;
    box-shadow: var(--shadow-xl);
}

.premium-about-img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    display: block;
    transition: var(--transition);
}

.image-premium-container:hover .premium-about-img {
    transform: scale(1.02);
}

.experience-floating-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--navy);
    color: white;
    padding: 30px;
    border-radius: 50% 50% 50% 0;
    text-align: center;
    box-shadow: 0 15px 35px rgba(15, 29, 58, 0.3);
    border: 8px solid white;
    z-index: 5;
    animation: float 4s ease-in-out infinite;
}

.fb-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.fb-txt {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.split-content-side {
    padding-right: 20px;
}

.split-content-side p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.mini-features-row {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.m-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}

.m-feat i {
    color: var(--gold);
}

@media (max-width: 991px) {
    .split-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .split-image-side {
        max-width: 600px;
        margin: 0 auto;
    }

    .split-content-side {
        padding-right: 0;
        text-align: center;
    }

    .split-content-side .modern-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .mini-features-row {
        justify-content: center;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Perfect Refined About Page Styles */
.about-modern-refined {
    padding: 50px 0;
    background: #ffffff;
}

.section-heading-perfect {
    text-align: center;
    margin-bottom: 70px;
}

.eyebrow-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.main-display-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--navy);
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.2;
}

.main-display-title em {
    color: var(--gold);
    font-style: italic;
}

.about-grid-perfect {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-perfect {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.perfect-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-perfect:hover .perfect-img {
    transform: scale(1.05);
}

.about-text-perfect p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .about-grid-perfect {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-perfect {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Luxe Stats Bar - Screenshot Inspired */
.luxe-stats-section {
    background: var(--navy);
    padding: 60px 0;
    margin-top: 50px;
}

.luxe-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.luxe-stat-item {
    padding: 40px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.luxe-stat-item:last-child {
    border-right: none;
}

.luxe-stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.luxe-stat-num {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.luxe-stat-label {
    font-size: 1rem;
    color: white;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .luxe-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .luxe-stat-item:nth-child(2) {
        border-right: none;
    }

    .luxe-stat-item:nth-child(1),
    .luxe-stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 576px) {
    .luxe-stats-grid {
        grid-template-columns: 1fr;
    }

    .luxe-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .luxe-stat-item:last-child {
        border-bottom: none;
    }
}

/* Screenshot Style Header */
.screenshot-header {
    margin-bottom: 40px;
}

.screenshot-header h2 {
    font-size: 2.2rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.screenshot-header .gold-line {
    width: 100%;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

/* Snapshot Section Styling */
.about-snapshot-section {
    padding: 80px 0;
    background: #fdfdfd;
    border-top: 1px solid #f0f0f0;
}

/* Modern Luxe Snapshot Section */
.about-snapshot-modern {
    padding: 120px 0;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    position: relative;
    overflow: hidden;
}

.about-snapshot-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.luxe-statement-card {
    background: white;
    border-radius: 40px;
    padding: 80px;
    box-shadow: 0 40px 100px rgba(15, 29, 58, 0.08);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(15, 29, 58, 0.05);
}

.screenshot-header.modern-header {
    margin-bottom: 60px;
    text-align: center;
}

.screenshot-header.modern-header h2 {
    font-size: 1rem;
    letter-spacing: 8px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 20px;
}

.modern-header .divider-luxe {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto;
    border-radius: 2px;
}

.text-content-luxe {
    max-width: 900px;
    margin: 0 auto 80px;
}

.text-content-luxe p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.text-content-luxe p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: var(--navy);
}

.kpi-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--navy);
    padding: 10px;
    border-radius: 25px;
}

.kpi-item {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.kpi-item:hover {
    background: rgba(201, 168, 76, 0.1);
    transform: translateY(-10px);
    border-color: var(--gold);
}

.kpi-val {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
    margin-bottom: 10px;
    line-height: 1;
}

.kpi-label {
    font-size: 0.9rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0.8;
}

@media (max-width: 1200px) {
    .luxe-statement-card {
        padding: 60px 40px;
    }
}

@media (max-width: 991px) {
    .kpi-dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .text-content-luxe p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .kpi-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .luxe-statement-card {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .kpi-val {
        font-size: 2.2rem;
    }
}

/* Modern Split Snapshot - No Box Version */
.snap-split-container {
    padding: 10px 0;
    background: #ffffff;
}

.snap-grid-modern {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: start;
}

.snap-text-side {
    text-align: left;
}

.snap-text-side p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.snap-stats-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.luxe-point-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: #fcfcfc;
    border-radius: 20px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.luxe-point-item:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: 0 15px 45px rgba(15, 29, 58, 0.08);
}

.point-val-luxe {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    font-family: var(--font-heading);
    min-width: 80px;
}

.point-label-luxe {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--gold);
}

@media (max-width: 991px) {
    .snap-grid-modern {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .luxe-point-item {
        padding: 20px;
    }

    .point-val-luxe {
        font-size: 1.8rem;
    }
}