/* VELOX | Swift by Design - Core Styles */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Syne:wght@400;700&display=swap');

:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #92a2ff;
    /* Electric Blue */
    --accent-dim: rgba(0, 240, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-display: 'Syne', sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    --spacing-xxl: 15rem;
    --transition-slow: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.4s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-color);
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
.spaced-text {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.8;
}

.mega-spaced {
    letter-spacing: 0.3em;
    text-transform: uppercase;
    line-height: 1.4;
}

h1,
h2,
h3 {
    font-family: var(--font-main);
    font-weight: 400;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
    text-transform: none;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    opacity: 0;
    transform: translateY(30px);
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    letter-spacing: 0.3em;
    max-width: 800px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    transform: translateY(20px);
}

.section-title {
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
    font-weight: 600;
}

.poetic-text {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
    line-height: 1.5;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

section {
    padding: var(--spacing-xl) 0;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Header/Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md) 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: normal;
    transition: background 0.3s ease, padding 0.3s ease;
}

header.scrolled {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--spacing-sm) 5%;
    /* Compact on scroll */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    pointer-events: auto;
}

.logo-img {
    height: 30px;
    /* Adjust based on preference, sleek and small */
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Ensure it's white if transparent png is black, or just 'brightness(100)' if needed */
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
    pointer-events: auto;
}

.contact-pill {
    padding: 8px 24px;
    background: #e0e0e0;
    color: #000;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-pill:hover {
    background: #fff;
    transform: scale(1.05);
}

.nav-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
    justify-content: flex-end;
}

.menu-icon {
    width: 30px;
    height: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.menu-icon span {
    display: block;
    height: 1px;
    background: #fff;
    transition: width 0.3s;
}

.menu-icon span:first-child {
    width: 100%;
}

.menu-icon span:last-child {
    width: 100%;
}

.nav-toggle:hover .menu-icon span:first-child {
    width: 60%;
}

.nav-toggle:hover .menu-icon span:last-child {
    width: 60%;
}

/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nav-overlay.open {
    transform: translateY(0);
}

.nav-links {
    list-style: none;
    text-align: center;
}

.nav-link {
    display: block;
    font-size: clamp(2rem, 5vw, 4rem);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, color 0.3s;
}

.nav-overlay.open .nav-link {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay.open .nav-link:nth-child(1) {
    transition-delay: 0.2s;
}

.nav-overlay.open .nav-link:nth-child(2) {
    transition-delay: 0.3s;
}

.nav-overlay.open .nav-link:nth-child(3) {
    transition-delay: 0.4s;
}

.nav-overlay.open .nav-link:nth-child(4) {
    transition-delay: 0.5s;
}

.nav-link:hover {
    color: var(--accent-color);
    letter-spacing: 0.15em;
}

.nav-num {
    font-size: 1rem;
    color: #555;
    vertical-align: super;
    margin-right: 15px;
    font-weight: 300;
}

.nav-bg-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(20, 20, 20, 1) 0%, rgba(0, 0, 0, 1) 80%);
    z-index: -1;
}

/* Contact Modal */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: 5%;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: #fff;
    z-index: 2001;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #fff;
    color: #000;
}

.contact-container {
    width: 85%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: flex-start;
}

.contact-headline {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-md);
}

.contact-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 90%;
    font-weight: 300;
}

.contact-desc p {
    margin-bottom: 1rem;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: #fff;
    font-family: 'Courier New', monospace;
    /* Tech feel */
}

.form-group input,
.form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.5rem 0;
    font-size: 1rem;
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s;
    font-family: var(--font-main);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #fff;
}

.form-check {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #888;
}

.form-check input {
    margin-right: 10px;
    accent-color: #fff;
}

.check-text a {
    color: #fff;
    text-decoration: underline;
}

.submit-btn {
    align-self: flex-end;
    padding: 12px 30px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 30px;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s;
}

.submit-btn:hover {
    transform: scale(1.05);
}

/* Hero Section: Industry Pulse */
.hero-pulse {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #050505;
    position: relative;
    padding-top: 80px;
    /* Space for fixed header */
    overflow: hidden;
}

/* Zone A: Active Display (Top) */
.active-zone {
    flex: 1;
    /* Takes remaining space */
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 2rem;
    z-index: 10;
    /* Ensure text is above background */
}

.active-grid {
    display: flex;
    /* Changed from Grid to Flex to prevent empty col issues */
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hero-text-content {
    padding-left: 2rem;
    z-index: 10;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-viewport {
    position: relative;
    height: 350px;
    /* Reserve space for highest text block */
    width: 100%;
    margin-bottom: 2rem;
}

.text-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.text-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 5;
}

.hero-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* Removed clip to transparent bg because we are over an image now */
}

.hero-copy {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}



/* Background Slider */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.media-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    transform: scale(1.1);
}

.media-item.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1s ease-in-out, transform 8s ease-out;
    /* Cinematic zoom */
}

.media-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%);
    /* Strong left gradient for text readability + bottom gradient for nav integration */
}

/* Zone B: Navigation Strip (Bottom) */
.nav-strip {
    height: 150px;
    /* Reduced slightly for sleekness */
    width: 100%;
    position: absolute;
    /* Pin to bottom */
    bottom: 0;
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 20;
}

.nav-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 100%;
}

.industry-card {
    position: relative;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: background 0.3s;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.industry-card:last-child {
    border-right: none;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Progress Bar */
.progress-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.progress-fill {
    width: 0;
    height: 100%;
    background: #fff;
    transition: width 0.1s linear;
}

.industry-card.active .progress-fill {
    /* JS controls width */
    background: var(--accent-color);
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.card-subtitle {
    display: block;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.industry-card.active .card-title,
.industry-card:hover .card-title {
    opacity: 1;
}

/* Thumbnail Background on Hover/Active */
.card-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: grayscale(100%) brightness(0.6);
}

.industry-card:hover .card-thumb {
    opacity: 0.2;
    /* Subtle reveal on hover */
}

.industry-card.active .card-thumb {
    opacity: 0.1;
    /* Very subtle if active, focus is on top area */
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .active-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    /* Keep background slider visible, it is the main visual now */

    .hero-pulse {
        height: 100vh;
        /* Keep full height on mobile */
    }

    .active-zone {
        padding: 4rem 0 100px 0;
        /* Add bottom padding for nav strip */
        align-items: flex-start;
        /* Align text to top */
        padding-top: 100px;
    }

    .hero-text-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        max-width: 100%;
    }

    .hero-h1 {
        font-size: 2.5rem;
    }

    /* Mobile Nav Strip */
    .nav-strip {
        display: block;
        /* Show it */
        height: auto;
        min-height: 80px;
        padding: 0;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(15px);
        overflow-x: auto;
        /* Enable scroll */
        white-space: nowrap;
        bottom: 0;
        left: 0;
        width: 100%;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll on iOS */
    }

    .nav-strip-grid {
        display: flex;
        /* Horizontal list */
        width: auto;
        height: 100%;
    }

    .industry-card {
        min-width: 220px;
        /* Fixed width cards */
        flex-shrink: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem;
        height: 80px;
        /* Compact height */
        justify-content: center;
    }

    .card-thumb {
        display: none;
        /* Hide flashy thumbs on small nav to save performance/space */
    }

    .card-subtitle {
        font-size: 0.6rem;
    }

    .card-title {
        font-size: 0.9rem;
    }

    .progress-track {
        top: auto;
        bottom: 0;
        /* Move progress to bottom on mobile? Or keep top. Top is fine. */
    }
}

.watch-btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    transition: var(--transition-fast);
    backdrop-filter: blur(5px);
    margin-top: var(--spacing-md);
    opacity: 0;
    transform: translateY(20px);
}

.watch-btn:hover {
    border-color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

/* Glow/Particles */
.glow-spot {
    position: absolute;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(40px);
}

/* About / Poetic Sections */
.about-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: var(--spacing-xl) 0;
}

.relative-container {
    position: relative;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.about-label {
    position: absolute;
    top: -50px;
    /* Adjust based on spacing preference */
    right: 0;
    font-family: 'Courier New', monospace;
    /* Tech/Mono feel per ref */
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.label-line {
    width: 200px;
    height: 1px;
    background-color: var(--accent-color);
}

.about-content {
    max-width: 80%;
    /* Leave some space */
    margin-top: 50px;
}

.about-text {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.3;
    font-weight: 400;
    /* Regular weight, clean sans-serif */
    letter-spacing: -0.01em;
    color: #fff;
}

.text-center {
    text-align: center;
}


/* Services Overview */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.service-card {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
    transition: var(--transition-fast);
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--accent-color);
}

.service-card h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.1em;
}

.service-card p {
    font-size: 0.9rem;
    color: #888;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.service-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

/* Detailed Sections */
.detail-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-xl) 0;
    min-height: auto;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.detail-title {
    font-size: 2rem;
    letter-spacing: 0.2em;
    margin-bottom: var(--spacing-sm);
}

/* Updated to Grid with Image */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

/* Reverse layout for alternating sections */
.detail-grid.reverse .detail-image {
    order: -1;
}

.detail-text {
    padding-right: var(--spacing-md);
}

.detail-grid.reverse .detail-text {
    padding-right: 0;
    padding-left: var(--spacing-md);
}

.detail-image {
    width: 100%;
    height: 400px;
    /* Fixed height for consistency */
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    /* Slight soft edge */
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.8) contrast(1.2);
    /* Sleek B&W look */
    transition: filter 0.5s ease, transform 0.8s ease;
}

.detail-section:hover .detail-image img {
    filter: grayscale(0%) brightness(1) contrast(1);
    /* Color on hover */
    transform: scale(1.05);
}

.detail-list li {
    list-style: none;
    margin-bottom: var(--spacing-xs);
    position: relative;
    padding-left: 1.5rem;
    color: #bbb;
}

.detail-list li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}


/* Footer */
footer {
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-tagline {
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    margin-bottom: var(--spacing-lg);
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    margin: 0 var(--spacing-sm);
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.contact-info a:hover {
    border-color: var(--accent-color);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */

/* Tablet (Portrait/Small Desktop) */
@media (max-width: 1024px) {
    :root {
        --spacing-xl: 6rem;
        --spacing-lg: 3rem;
    }

    .hero-title {
        font-size: 3.5rem;
        /* Still large but managed */
    }

    .contact-headline {
        font-size: 3.5rem;
    }

    .about-text {
        font-size: 2rem;
    }

    .detail-image {
        height: 300px;
        /* Slightly shorter */
    }
}

/* Mobile (Phones) */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 2rem;
        --spacing-md: 1.5rem;
        --spacing-sm: 0.8rem;
    }

    /* Layout Stacking */
    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        width: 90%;
    }

    .detail-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    /* Reset Order for logical mobile flow (Title -> Text -> Image) */
    .detail-grid.reverse .detail-image {
        order: 0;
    }

    .detail-text,
    .detail-grid.reverse .detail-text {
        padding: 0;
        margin-bottom: var(--spacing-sm);
    }

    /* Typography sizing */
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .contact-headline {
        font-size: 2.5rem;
    }

    .about-text {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    /* About Section */
    .about-label {
        position: relative;
        top: auto;
        right: auto;
        align-items: flex-start;
        margin-bottom: var(--spacing-md);
    }

    .label-line {
        width: 100px;
    }

    .about-content {
        max-width: 100%;
        margin-top: 0;
    }

    /* Contact Modal */
    .modal-close {
        top: 1rem;
        right: 1rem;
    }

    .contact-modal {
        align-items: flex-start;
        /* Allow scroll */
        padding-top: 4rem;
        overflow-y: auto;
    }

    /* Navigation */
    .nav-link {
        font-size: 2rem;
        /* Manageable size */
    }

    .service-card {
        padding: 1.5rem 0;
    }
}

/* Reinforced Hero CTA Styles */
.hero-text-content .hero-cta {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-top: 1rem;
    opacity: 1 !important;
    /* Ensure visibility */
    transform: none !important;
    /* Override reveal transform */
    pointer-events: auto;
}

.hero-text-content .hero-cta:hover {
    background: #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Glass Navigation Arrows */
.glass-nav {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    z-index: 9999 !important;
    /* Extremely high z-index */
    pointer-events: auto !important;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .glass-nav {
        bottom: 120px !important;
        /* Raise above mobile nav strip */
        right: 20px !important;
    }
}
/* Video Section */
.video-section {
    position: relative;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay for readability */
    z-index: 1;
}

.video-section .container {
    position: relative;
    z-index: 2;
}

