/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #3b82f6;
    --primary-dark: #1e40af;
    --primary-light: #60a5fa;
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a2e;
    --text-primary: #f1f1f1;
    --text-secondary: #a1a1a1;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-blur: 12px;
    --glass-surface: rgba(255, 255, 255, 0.06);
    --glass-surface-strong: rgba(255, 255, 255, 0.1);
    --glass-surface-soft: rgba(255, 255, 255, 0.04);
    --glass-hover: rgba(255, 255, 255, 0.14);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0; /* topbar removed */
    left: 0;
    right: 0;
    background: var(--glass-surface-strong);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 1000;
    padding: 0.75rem 0; /* standard height */
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e3a8a;
}

.logo,
.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

a.logo {
    cursor: pointer;
    transition: opacity 0.2s;
}

a.logo:hover {
    opacity: 0.8;
}

.logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.85);
        backdrop-filter: blur(var(--glass-blur));
        -webkit-backdrop-filter: blur(var(--glass-blur));
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid var(--border-color);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
}

.nav-menu a { color: #e5e7eb; text-decoration: none; transition: color 0.25s; }
.nav-menu a:hover { color: #ffffff; }
.nav-actions {
    display: flex;
    gap: 1rem;
}
.nav-actions .btn { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: #ffffff; }
.nav-actions .btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(37,99,235,0.35); }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-weight: 600;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

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

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

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(to bottom, rgba(15,23,42,0.65), rgba(37,99,235,0.28) 32%, rgba(15,23,42,0.78)),
        url('https://images.unsplash.com/photo-1542601098-8fc114e148e2?w=1920') center/cover no-repeat;
    z-index: -1;
    will-change: transform;
}

/* remove light overlay; background now handles image and gradient */

.hero-content { max-width: 860px; z-index: 1; }
.hero-kicker { color: #93c5fd; background: rgba(147,197,253,0.12); border: 1px solid rgba(147,197,253,0.25); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.hero-title { font-size: clamp(2rem, 4vw + 1rem, 4rem); line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; background: none; color: #ffffff; -webkit-text-fill-color: initial; }
.hero-subtitle { color: #d1d5db; }
.hero-ctas { display: flex; gap: 0.75rem; align-items: center; margin-top: 1rem; }
.btn-secondary { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(147,197,253,0.35); }
.btn-secondary:hover { background: rgba(255,255,255,0.2); }

/* Top info bar */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--glass-surface-strong);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 0; /* seamless join with nav pill */
    z-index: 1100;
}
.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.4rem 20px;
    display: flex;
    justify-content: flex-end;
    gap: 1.25rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.topbar-item { display: inline-flex; align-items: center; gap: 0.5rem; }

/* Pill navigation container below topbar */
.nav-pill {
    margin-top: 0;
    background: transparent; /* remove pill */
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    width: 100%;
}
.nav-wrapper { gap: 1rem; }
.nav-menu { align-items: center; }

/* Center hero similar to reference */
.hero-title { margin-top: 0.5rem; }
.hero-subtitle { margin-bottom: 1.25rem; }
/* hide the center truck for this style; optional: keep bottom overlay truck later */
.hero-truck { display: none; }

/* Hero split layout (reference-inspired) */
.hero-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-right img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.hero-visual {
    position: relative;
    background: var(--glass-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}
.hero-visual img { width: 100%; display: block; }

.hero-title-strong {
    font-weight: 900;
    letter-spacing: -0.02em;
}
.hero-kicker {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--primary-dark);
    background: rgba(37, 99, 235, 0.10);
    border: 1px solid rgba(37, 99, 235, 0.15);
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}
.hero-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}
.hero-contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: var(--glass-surface);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

@media (max-width: 1024px) {
    .hero-split { grid-template-columns: 1fr; }
    .container { padding: 0 16px; }
    .hero-split { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .hero-right img { max-width: 95%; height: auto; margin-left: auto; object-fit: contain; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--primary-color);
    font-size: 2rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    background: rgba(26, 26, 46, 0.35);
}

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

.service-card {
    background: var(--glass-surface);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
    background: var(--glass-hover);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.service-card p {
    color: var(--text-secondary);
}

/* Gallery Section */
.gallery {
    background: var(--dark-bg);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    will-change: transform;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

/* Companies Section */
.companies {
    background: rgba(26, 26, 46, 0.35);
}

.companies-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.companies-container {
    display: flex;
    overflow: hidden;
    transition: transform 0.5s ease;
    width: 100%;
    will-change: transform;
}

.companies-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    box-sizing: border-box;
}

.company-logo-card {
    flex: 1;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.company-logo-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.company-logo-card img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s;
}

.company-logo-card:hover img {
    opacity: 1;
    filter: brightness(0) invert(1);
}

/* Map Section */
.location {
    background: var(--dark-bg);
}

.map-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: var(--glass-surface);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.map-info {
    background: var(--glass-surface);
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
}

.map-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.map-info p {
    color: var(--text-secondary);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass-surface);
    border: 1px solid var(--border-color);
    color: var(--primary-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.slider-btn:hover {
    background: var(--glass-hover);
    color: var(--primary-dark);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.companies-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* About Section */
.about {
    background: var(--dark-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

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

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Contact Section */
.contact {
    background: rgba(26, 26, 46, 0.35);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

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

.contact-item p {
    color: var(--text-secondary);
}

.contact-form-wrapper {
    background: var(--glass-surface);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Booking and Order Pages */
.booking-section,
.order-section {
    padding: 120px 0 5rem;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.booking-content,
.order-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.booking-form-wrapper,
.order-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.booking-info,
.order-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.info-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card ul li i {
    color: var(--primary-color);
}

.price-calculation {
    background: rgba(37, 99, 235, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.price-item.total {
    border-top: 2px solid var(--primary-color);
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-primary);
}

.order-summary {
    color: var(--text-secondary);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--dark-secondary);
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 1px solid var(--border-color);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary-color);
}

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

.success-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-body h2 {
    margin-bottom: 1rem;
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: white;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(37, 99, 235, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .booking-content,
    .order-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .stats {
        grid-template-columns: 1fr;
    }
    .nav-pill { border-radius: 0; width: 100%; margin-top: 0; }
    .hero .hero-content { padding: 0 8px; }
    .hero-split { grid-template-columns: 1fr; gap: 1rem; }
    .hero-right { margin-top: 1rem; }
    .hero-title { font-size: clamp(1.6rem, 5vw, 2.2rem); line-height: 1.2; letter-spacing: -0.01em; }
    .hero-subtitle { font-size: 1rem; }
    .navbar { top: 0; }
    .hero { 
        padding-top: 100px; 
        padding-bottom: 40px;
        min-height: 60vh;
    }
    .topbar-inner { justify-content: center; }
}

@media (min-width: 1280px) {
    .hero-content { max-width: 980px; }
}

/* Parallax utility layers */
.parallax-layer {
    will-change: transform;
}

.parallax-slow {
    transform: translateY(0);
}

.parallax-fast {
    transform: translateY(0);
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
    .hero-overlay,
    .hero-background,
    .parallax-layer,
    .companies-container,
    .gallery-item img {
        transition: none !important;
        background-attachment: scroll;
    }
}

/* ========================= */
/* Light Theme + Glassmorphism Overrides */
/* ========================= */

:root {
    --primary-color: #2563eb;
    --secondary-color: #3b82f6;
    --primary-dark: #1e40af;
    --primary-light: #60a5fa;
    --dark-bg: #f8fafc; /* light background */
    --dark-secondary: #eef2ff; /* soft surface */
    --text-primary: #0f172a; /* slate-900 */
    --text-secondary: #475569; /* slate-600 */
    --border-color: rgba(15, 23, 42, 0.08);
    --glass-blur: 12px;
    --glass-surface: rgba(255, 255, 255, 0.55);
    --glass-surface-strong: rgba(255, 255, 255, 0.7);
    --glass-surface-soft: rgba(255, 255, 255, 0.45);
    --glass-hover: rgba(255, 255, 255, 0.72);
}

body {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 35%, #f1f5f9 100%);
    color: var(--text-primary);
}

/* Navbar glass */
.navbar {
    background: var(--glass-surface-strong);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--border-color);
}
.nav-menu a { color: var(--text-secondary); }
.nav-menu a:hover { color: var(--primary-dark); }

@media (max-width: 768px) {
    .nav-menu {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(var(--glass-blur));
        -webkit-backdrop-filter: blur(var(--glass-blur));
        border-top: 1px solid var(--border-color);
    }
}

/* Hero light background with subtle pattern and parallax */
.hero-background {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #eef2ff 100%);
    background-image:
        radial-gradient(at 80% 20%, rgba(37, 99, 235, 0.10) 0px, transparent 50%),
        radial-gradient(at 20% 80%, rgba(59, 130, 246, 0.08) 0px, transparent 50%);
}
.hero-overlay {
    opacity: 0.08;
    filter: saturate(0.9) brightness(1.1);
}
.hero-title { -webkit-text-fill-color: transparent; }
.hero-subtitle { color: var(--text-secondary); }

/* Glass hero content */
.hero .hero-content {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin-inline: auto;
}

/* Section surfaces */
.services,
.companies,
.contact,
.gallery,
.location,
.about,
.footer {
    background: transparent;
}

/* Cards glass */
.service-card,
.company-logo-card,
.booking-form-wrapper,
.order-form-wrapper,
.info-card,
.map-container,
.contact-form-wrapper,
.modal-content {
    background: var(--glass-surface);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.service-card:hover,
.company-logo-card:hover {
    background: var(--glass-hover);
}

/* Company logos on light bg */
.company-logo-card img {
    filter: none;
    opacity: 0.9;
}
.company-logo-card:hover img {
    opacity: 1;
}

/* Map info pane */
.map-info {
    background: var(--glass-surface);
    border-top: 1px solid var(--border-color);
}
.map-container { background: var(--glass-surface); }

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
}
.footer-section ul li a { color: var(--text-secondary); }
.footer-section ul li a:hover { color: var(--primary-dark); }
.footer-bottom { color: var(--text-secondary); }

/* Buttons contrast on light */
.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-dark);
}
.btn-primary:hover {
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
}
.btn-primary,
.btn-outline {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Inputs on light */
.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

/* Dots on light */
.dot { background: #cbd5e1; }
.dot.active { background: var(--primary-color); }

/* Skip link accessibility */
.skip-link {
    position: absolute;
    left: -999px;
    top: -999px;
    background: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    z-index: 2000;
}
.skip-link:focus {
    left: 12px;
    top: 12px;
    outline: 3px solid var(--primary-light);
}

/* Backdrop-filter fallback */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .navbar,
    .service-card,
    .company-logo-card,
    .contact-form-wrapper,
    .map-container,
    .map-info,
    .slider-btn,
    .hero-kicker,
    .btn,
    .modal-content {
        background: rgba(255, 255, 255, 0.9);
    }
}
