:root {
    /* Colors */
    --bg-color: #030305;
    --bg-color-alt: #0a0a12;
    --text-primary: #ffffff;
    --text-secondary: #a0a0bd;
    --accent-primary: #3b82f6;
    /* Electric Blue */
    --accent-glow: rgba(59, 130, 246, 0.5);
    --border-color: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --radius-sm: 8px;
    --radius-md: 16px;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: 1px solid rgba(255, 255, 255, 0.05);
    --shadow-glow: 0 0 20px var(--accent-glow);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for fixed header */
}

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

/* Typography */
h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

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

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

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background-color: #2563eb;
    box-shadow: 0 0 15px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 3, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

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

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

.logo img {
    height: 40px;
    /* Adjust based on preference */
    width: auto;
}

.footer-brand .logo img {
    height: 50px;
}

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

.nav-link {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.nav-link:hover {
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 100px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: var(--spacing-sm);
    /* Logo Colors: Cyan, Blue, Pink, Orange */
    background: linear-gradient(-45deg,
            #26b5ec 0%,
            #005ba7 25%,
            #da004a 50%,
            #ec6500 75%,
            #26b5ec 100%);
    background-size: 300% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Optional: Subtle glow to make colors pop */
    filter: drop-shadow(0 0 20px rgba(38, 181, 236, 0.2));
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    max-width: 600px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Hero Background Effects */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Lower z-index to be behind overlay */
    pointer-events: auto;
    /* Allow orbit controls to work */
    overflow: hidden;
    opacity: 0.5;
    /* Dim the black hole as requested */
    filter: brightness(0.8);
    /* Reduce intensity of bright colors */
    transition: opacity 1s ease;
}

/* Dark Overlay for Text Readability */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(3, 3, 5, 0.4) 0%, rgba(3, 3, 5, 0.8) 100%);
    z-index: 1;
    /* Sits on top of bg, below content */
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-primary);
    top: -100px;
    right: -100px;
}

.glow-2 {
    width: 300px;
    height: 300px;
    background: purple;
    bottom: 0;
    left: -50px;
}

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg) auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Grid & Cards */
.grid {
    display: grid;
    gap: var(--spacing-md);
}

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

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.card {
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* GSAP Spotlight Effect Classes */
.card,
.bento-item,
.step-card,
.work-card,
.work-card,
.detail-card,
.feature-item {
    position: relative;
    overflow: hidden;
    /* Ensure the glow doesn't spill out */
    z-index: 1;
}

/* The spotlight glow element */
.card::before,
.bento-item::before,
.step-card::before,
.work-card::before,
.work-card::before,
.detail-card::before,
.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(59, 130, 246, 0.06), transparent 40%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.card:hover::before,
.bento-item:hover::before,
.step-card:hover::before,
.work-card:hover::before,
.work-card:hover::before,
.detail-card:hover::before,
.feature-item:hover::before {
    opacity: 1;
}

/* Optional: Subtle border glow on hover via separate element if needed, 
   but for now let's stick to the background glow requested */

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

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

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.bento-item {
    background: var(--glass-bg);
    /* Removed standard border to allow for animated one */
    border: 1px solid transparent;
    padding: 2rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    /* Important for border animation positioning */
    position: relative;
    z-index: 1;
    min-height: 300px;
}

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

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

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

/* Gradient Border Animation */
/* We use a pseudo-element behind the card content but above the 'glow' background */
.card::after,
.bento-item::after,
.step-card::after,
.work-card::after,
.work-card::after,
.detail-card::after,
.feature-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    padding: 1px;
    /* Width of the border */
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card:hover::after,
.bento-item:hover::after,
.step-card:hover::after,
.work-card:hover::after,
.work-card:hover::after,
.detail-card:hover::after,
.feature-item:hover::after {
    opacity: 1;
    background: linear-gradient(var(--rotate, 0deg), transparent 20%, var(--accent-primary), transparent 80%);
    animation: borderRotate 3s linear infinite;
}

/* We need to define property for rotation to animate it if we use standard CSS animation, 
   but since we are using GSAP, we might just animate a variable or background-position. 
   Let's stick to a reliable CSS animation keyframe for the rotation effect. */
@property --rotate {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes borderRotate {
    0% {
        --rotate: 0deg;
    }

    100% {
        --rotate: 360deg;
    }
}



.tag-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.tag-list li {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    color: var(--text-secondary);
}

/* Works Placeholder */
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.work-card {
    background: var(--bg-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: var(--glass-border);
}

.work-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #1a1a2e, #2a2a3e);
}

.work-info {
    padding: 1.5rem;
}

/* Footer */
/* Footer Redesign */
.footer {
    padding: 6rem 0 2rem;
    background: #050508;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-3px);
    border-color: var(--accent-primary);
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--accent-primary);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: white;
}

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Check List & Stats */
.check-list {
    list-style: none;
    margin-top: 1.5rem;
}

.check-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

.check-list strong {
    color: white;
}

.stat-box {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: var(--glass-border);
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* New Stats Design (Intro Section) */
.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 2rem;
}

.stat-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateX(10px);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    background: linear-gradient(to right, var(--accent-primary), #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid {
        padding-left: 0;
        margin-top: 2rem;
    }
}

/* Features / Why Us */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    color: var(--accent-primary);
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    position: relative;
}

.step-card {
    position: relative;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

/* Trust Box */
.trust-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-md);
}

/* Footer Extra */
.footer-bottom-links nav {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    /* or flex-start based on design preference */
    flex-wrap: wrap;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    padding-bottom: 1.5rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Approximate max height */
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu Open State transform */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title br {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

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

    .stat-box {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(3, 3, 5, 0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
        z-index: 1001;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 4rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    color: var(--text-secondary);
}

.scroll-indicator span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.8;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--text-secondary), transparent);
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: white;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Security Question Styles */
.security-question {
    background: rgba(59, 130, 246, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px dashed rgba(59, 130, 246, 0.3);
    margin-bottom: 2rem;
}

.security-question label {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.security-hint {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.btn-block {
    width: 100%;
}

/* Custom Dark Map Styles */
.map-section {
    position: relative;
    width: 100%;
    margin-top: 2rem;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: var(--glass-border);
    /* Dark Theme Filter for Google Maps */
    background: var(--bg-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    /* Invert colors to create dark mode, reduce contrast to make it subtle */
    filter: grayscale(100%) invert(92%) contrast(83%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.map-container:hover iframe {
    opacity: 1;
}

/* Overlay to prevent accidental scroll interaction initially (optional) */
.map-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}