@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    /* Logo-Inspired Institutional Palette - Masterpiece Edition */
    --color-primary-dark: #000000;
    --color-primary: #006747;
    /* Forest Green */
    --color-secondary: #004d35;
    /* Deep Forest */
    --color-accent: #EF3340;
    /* Canadian Red */
    --color-bg-light: #fdfdfd;
    --color-bg-white: #ffffff;
    --color-glass-white: rgba(255, 255, 255, 0.98);
    --color-glass-border: rgba(0, 103, 71, 0.1);

    /* Luxury Typography */
    --font-heading: 'EB Garamond', serif;
    --font-body: 'Lato', sans-serif;

    /* Refined Multi-layered Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 40px -10px rgba(0, 0, 0, 0.15), 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(0, 48, 25, 0.1);

    /* Layout */
    --navbar-height: 100px;
    --container-max: 1240px;
    --transition-luxury: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-smooth: all 0.3s ease;

    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3.5rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Luxury Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1fcf9;
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 5px;
    border: 3px solid #f1fcf9;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

/* Masterpiece Texture - More Subtle */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.02;
    z-index: 9999;
    pointer-events: none;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    letter-spacing: -0.01em;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: var(--color-bg-white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    font-weight: 700;
    line-height: 1.2;
}

.heading-gradient {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* REDUCED SPACING globally */
.section {
    padding: 4rem 0;
}

.section-light {
    background-color: var(--color-bg-light);
}

/* Premium Navigation - Compact */
.navbar {
    height: var(--navbar-height);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 103, 71, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.navbar.scrolled {
    height: 80px;
    box-shadow: var(--shadow-md);
}

.navbar.scrolled .logo img {
    height: 65px;
}

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

.logo img {
    height: 85px;
    /* Bigger logo as requested */
    width: auto;
    object-fit: contain;
    transition: var(--transition-luxury);
}

@media (max-width: 768px) {
    .logo img {
        height: 60px;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 4px;
    transition: var(--transition-luxury);
}

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

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

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

.nav-links li {
    width: auto;
    /* Allow items to define their width */
}

.nav-links a {
    display: block;
    padding: 0.5rem 0.5rem;
    width: auto;
    white-space: nowrap;
    /* Prevent two words from splitting */
}

.footer-logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-luxury);
    opacity: 0.7;
}

.nav-links a:hover,
.nav-links li.active a,
.nav-links a.active {
    opacity: 1;
    color: var(--color-primary);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-nav-contact {
    background: var(--color-primary);
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 700;
    opacity: 1 !important;
}

/* Amazing Hero Redesign */
.hero {
    position: relative;
    min-height: 95vh;
    padding-top: var(--navbar-height);
    display: flex;
    align-items: center;
    background-color: #01160d;
    color: white;
    overflow: hidden;
    /* Parallax Containment */
}

.hero-bg-image {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    opacity: 0.55;
    z-index: 1;
    filter: brightness(0.7) contrast(1.1);
    animation: drift 30s infinite alternate ease-in-out;
}

@keyframes drift {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(2%, 2%);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.6);
    }
}

.hero .container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    width: 100%;
}

.hero-content {
    max-width: 900px;
    animation: luxuryFadeIn 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes luxuryFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    margin-bottom: 1.2rem;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-primary {
    background: var(--color-accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-luxury);
}

.btn-primary:hover {
    background: #d32f2f;
    transform: translateY(-2px);
}

/* Interior Page Header - AMAZING */
.page-header {
    position: relative;
    padding: 6rem 0;
    background-color: var(--color-primary-dark);
    color: white;
    text-align: left;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.5;
    z-index: 1;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #000 0%, transparent 100%);
    z-index: 2;
}

.page-header .container {
    position: relative;
    z-index: 3;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.8;
    animation: fadeInUp 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 768px) {
    .page-header {
        padding: 8rem 0 4rem;
        min-height: 40vh;
        display: flex;
        align-items: center;
    }
}

/* REDUCED SPACING in sections */
.section-header {
    margin-bottom: 2rem;
}

.split-text h2 {
    margin-bottom: 1.5rem !important;
}

.sidebar {
    position: sticky;
    top: 100px;
}

.hover-accent {
    transition: var(--transition-luxury);
}

.hover-accent:hover {
    color: var(--color-primary) !important;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--color-glass-border);
    transition: transform 0.1s ease-out, box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: var(--shadow-sm);
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.service-card h3 {
    margin-bottom: 1.25rem;
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

/* Glassmorphism Classes */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-glass);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer - PREMIUM MASTERPIECE */
.footer {
    position: relative;
    background: #000;
    /* Pure black foundation for the logo */
    color: #fff;
    padding: 8rem 0 4rem;
    overflow: hidden;
    border-top: 1px solid rgba(0, 103, 71, 0.3);
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 20%, rgba(0, 103, 71, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23006747" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.footer h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
    font-family: var(--font-body);
    font-weight: 800;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        padding: 6rem 2rem 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 1050;
    }

    .nav-links.active {
        display: flex;
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        padding: 1.5rem;
        font-size: 1.1rem;
    }

    .hero {
        min-height: 90vh;
        padding-top: 5rem;
    }

    .hero-bg-image {
        opacity: 0.8 !important;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .section {
        padding: 4rem 1.5rem;
    }
}

/* Page Specific & Refined Utilities */

/* Grid System */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 992px) {

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

@media (max-width: 600px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Trust Statement Block */
.trust-block {
    background: var(--color-bg-light);
    border: 1px solid var(--color-glass-border);
    padding: var(--space-xl);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

/* Client Card */
.client-card {
    background: white;
    padding: var(--space-lg);
    border-radius: 8px;
    border: 1px solid var(--color-glass-border);
    transition: var(--transition-luxury);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    text-align: center;
}

.client-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.client-name {
    font-weight: 800;
    opacity: 0.4;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Experience Specifics */
.experience-meta {
    font-size: 0.7rem;
    font-weight: 800;
    color: #999;
    display: block;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.experience-value {
    color: var(--color-primary);
    font-weight: 800;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.badge-primary {
    background: var(--color-primary);
    color: white;
}

.badge-accent {
    background: var(--color-accent);
    color: white;
}

.badge-dark {
    background: var(--color-primary-dark);
    color: white;
}

/* Contact Form Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
}

@media (max-width: 850px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-glass-border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-luxury);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(0, 103, 71, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-luxury);
}

.btn-submit:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

/* Compliance List */
.compliance-item {
    padding: var(--space-lg);
    border-left: 4px solid var(--color-primary);
    background: var(--color-bg-light);
    margin-bottom: var(--space-md);
}

.compliance-item h3 {
    margin-bottom: 0.5rem;
}

/* Animations & Motion - PREMIUM SMOOTHING */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1), opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1), filter 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    filter: blur(8px);
    will-change: transform, opacity, filter;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.reveal.slide-right {
    transform: translateX(-40px);
}

.reveal.slide-left {
    transform: translateX(80px);
}

.reveal.active.slide-right,
.reveal.active.slide-left {
    transform: translateX(0);
}

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

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

/* Hover States for Interactive Elements */
.service-card {
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s ease, border-color 0.6s ease;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--color-primary);
    box-shadow: 0 25px 50px -12px rgba(0, 103, 71, 0.2);
}

/* Sectors Grid Enhancement */


/* Image Ratio Fixes */
.img-fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aspect-video {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
}

.aspect-square {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
}


.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) scale(0);
    transition: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 50%;
    z-index: -1;
}

.btn-primary:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Sectors Section - Global Map & Glow */
.sectors-container {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background-color: #01160d;
    color: white;
}

.global-map-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="1000" height="500" viewBox="0 0 1000 500"%3E%3Cpath fill="%23ffffff" fill-opacity="0.05" d="M150,100 Q180,80 210,100 T270,100 T330,120 T390,100 T450,130 T510,110 T570,140 T630,120 T690,150 T750,130 T810,160 T870,140 T930,170" /%3E%3C/svg%3E');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.2;
}

/* Luxury Glow Orbs */
.glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 103, 71, 0.4) 0%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: orbMove 20s infinite alternate ease-in-out;
}

.orb-1 {
    top: -10%;
    left: -10%;
    animation-duration: 25s;
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(239, 51, 64, 0.15) 0%, transparent 70%);
    animation-duration: 30s;
    animation-delay: -5s;
}

@keyframes orbMove {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(15%, 15%) scale(1.2);
    }
}

.sector-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 16px;
    transition: var(--transition-luxury);
    position: relative;
    z-index: 2;
    text-align: center;
}

.sector-card h4 {
    color: white;
}

.sector-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-12px);
    border-color: var(--color-primary);
}

.sector-icon-bg {
    width: 60px;
    height: 60px;
    background: var(--color-bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-primary);
    font-size: 1.5rem;
}

.split-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

@media (max-width: 768px) {
    .split-image {
        height: 300px;
    }
}