﻿/* Corporate Theme Enhancements */
:root {
    --primary-blue: #0f3d63;
    /* Deeper, more corporate blue */
    --accent-blue: #136aaf;
    /* Brighter blue for actions */
    --corporate-gold: #c5a059;
    /* Premium metallic gold */
    --neutral-gray: #f4f5f7;
    /* Clean background gray */
    --text-dark: #1e293b;
    --text-muted: #64748b;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    /* Modern, clean font */
    color: var(--text-dark);
}

/* Global Hidden State for Mobile Elements */
.mobile-menu-toggle {
    display: none;
}

/* Fix Loading Screen Z-Index (Must be higher than Header 99999) */
.loading-screen {
    z-index: 999999 !important;
}

/* --- COMPLETE HEADER REWRITE FOR PERFECT CENTERING --- */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    /* Make header sticky */
    position: -webkit-sticky;
    /* Safari support */
    top: 0;
    z-index: 99999;
    /* Ensure it stays on top of everything */
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
    /* Solid background on scroll */
}


.navbar {
    height: 90px;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Force container to handle full width and centering */
.header .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Desktop Grid Layout: Left(1fr) - Center(Auto) - Right(1fr) */
@media (min-width: 992px) {
    .nav-wrapper {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        width: 100%;
    }

    .logo {
        justify-self: start;
        display: flex;
        align-items: center;
    }

    /* Tightly control the centered menu */
    .nav-menu {
        justify-self: center;
        display: flex;
        align-items: center;
        gap: 32px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav-utils {
        justify-self: end;
        display: flex;
        align-items: center;
        gap: 15px;
    }
}

/* Mobile Layout Fallback */
@media (max-width: 991px) {
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
}

/* Navigation Link Styling */
.nav-link {
    color: var(--primary-blue) !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-decoration: none;
    position: relative;
    padding: 24px 0;
    /* Increased padding for better click area and centering integration */
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 18px;
    /* Positioned precisely relative to the text baseline */
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--corporate-gold);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Smoother animation */
}

/* Fix width on hover and active states */
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* --- Header Utility Icons & Language --- */
.icon-btn {
    background: transparent;
    border: none;
    color: var(--primary-blue);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.icon-btn:hover {
    color: var(--corporate-gold);
    background: rgba(197, 160, 89, 0.1);
    transform: scale(1.05);
}

.language-selector {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 13px;
    color: var(--primary-blue);
    cursor: pointer;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 20px;
    /* Pill shape for easier hover */
    transition: background 0.3s;
}

.language-selector:hover {
    background: rgba(15, 61, 99, 0.05);
    transform: translateY(-1px);
}


.lang-separator {
    color: #cbd5e1;
    font-weight: 400;
}

.lang-option {
    color: var(--text-muted);
    transition: color 0.3s;
}

.lang-active {
    color: var(--primary-blue);
}

.language-selector:hover .lang-option {
    color: var(--corporate-gold);
}

/* --- Search Box Fixes --- */
.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 16px;
    z-index: 10;
    font-size: 18px;
    color: var(--text-muted);
    pointer-events: none;
    /* Allows click-through to input */
}

.search-input {
    width: 100%;
    height: 50px;
    padding: 0 50px 0 48px !important;
    /* Enforced padding to prevent text overlap */
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.search-input:focus {
    background: #fff;
    border-color: var(--corporate-gold);
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Hero Section with Video */
.hero {
    height: 100vh;
    min-height: 700px;
    background: #000;
    margin-top: -90px;
    /* Pull video to the very top edge */
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(15, 61, 99, 0.85) 0%,
            rgba(15, 61, 99, 0.4) 100%);
    /* Blue tint overlay */
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding-top: calc(15vh + 90px);
    /* Compensate for header height */
}

.hero-subtitle {
    color: var(--corporate-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 16px;
    display: inline-block;
    border-bottom: 2px solid var(--corporate-gold);
    padding-bottom: 5px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}



/* Enhanced Buttons */
.btn-hero {
    padding: 16px 36px;
    border-radius: 4px;
    /* More square = more corporate */
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero.primary {
    background: var(--corporate-gold);
    color: #fff;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.btn-hero.primary:hover {
    background: #d4af66;
    transform: translateY(-3px);
}

.btn-hero.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    backdrop-filter: blur(5px);
}

.btn-hero.secondary:hover {
    background: #fff;
    color: var(--primary-blue);
    border-color: #fff;
}

/* --- Mobile Container Fix --- */
@media (max-width: 768px) {
    .header .container {
        padding: 0 15px;
        /* Ensure edge padding */
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: opacity 0.3s;
}

.scroll-down:hover {
    opacity: 1;
    color: #fff;
}

.scroll-text {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 24px;
        opacity: 0;
    }
}

/* Section Styling Updates */
.section-title {
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--corporate-gold);
}

/* Premium Highlight Cards */
.highlight-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    z-index: 1;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--corporate-gold));
    opacity: 0.8;
}

.highlight-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top right, rgba(197, 160, 89, 0.1), transparent 70%);
    z-index: -1;
    transition: all 0.5s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.highlight-card:hover::after {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at top right, rgba(19, 106, 175, 0.1), transparent 70%);
}

.highlight-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
}

.highlight-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.highlight-link,
.category-link {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
    width: fit-content;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

.highlight-link:hover,
.category-link:hover {
    gap: 12px;
    color: var(--corporate-gold);
    border-bottom-color: var(--corporate-gold);
}

.highlight-link::after,
.category-link::after {
    content: '\f061';
    /* FontAwesome Arrow Right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
}

/* Corporate Color Overrides */
/* Corporate Color Overrides - Premium Quote Button */
/* Corporate Color Overrides - User Requested Solid Yellow Quote Button */
.btn-quote {
    background: #FFC107 !important;
    /* Material Amber/Yellow */
    background: linear-gradient(to right, #FFC107, #FFCA28) !important;
    /* Subtle gradient for depth */
    color: #0f3d63 !important;
    /* Dark Blue Text */
    font-weight: 800;
    font-family: 'Exo 2', sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    /* Changed to hidden to contain the shine effect properly */
    padding: 0 30px !important;
    /* Adjusted padding */
    height: 50px;
    /* Fixed height for consistency */
    border-radius: 50px !important;
    /* Full pill shape */
    text-transform: uppercase;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
    min-width: 160px;
    /* Slightly wider to ensure text fits */
    justify-content: center;
    white-space: nowrap;
    /* CRITICAL FIX: prevents text wrapping */
    text-decoration: none !important;
    /* Removes underline from link */
}

/* Shiny Hover Effect */
.btn-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-quote:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(253, 185, 49, 0.6);
    background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FDB931 100%) !important;
}

.btn-quote:hover::before {
    left: 100%;
}

.btn-quote i {
    color: #0f3d63 !important;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-quote:hover i {
    transform: rotate(15deg) scale(1.2);
}

/* Footer High Contrast Fix */
.footer {
    background-color: #0a2540 !important;
    /* Deep Corporate Navy */
    color: #f8f9fa !important;
    border-top: 4px solid var(--corporate-gold);
}

.footer h3,
.footer h4,
.footer .footer-title {
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer p {
    color: #e2e8f0 !important;
    line-height: 1.8;
}

.footer ul li a {
    color: #cbd5e1 !important;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: var(--corporate-gold) !important;
    padding-left: 5px;
}

.footer-contact-info li,
.footer-contact-info span,
.footer-contact-info i {
    color: #e2e8f0 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    color: #94a3b8 !important;
}

.footer-social a {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--corporate-gold);
    transform: translateY(-3px);
}

/* --- Inner Page Header (Page Hero) --- */
.page-header {
    background-color: var(--primary-blue);
    background-image: linear-gradient(135deg, rgba(15, 61, 99, 0.95), rgba(19, 106, 175, 0.9));
    padding: 100px 0 60px;
    text-align: center;
    color: var(--white);
    margin-bottom: 60px;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.page-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Enhanced Product Grid --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0 80px;
}

.product-card-enhanced {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.product-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--corporate-gold);
}

.product-image-wrapper {
    height: 260px;
    overflow: hidden;
    background: #fff;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s ease;
}

.product-card-enhanced:hover .product-image-wrapper img {
    transform: scale(1.08);
}

.product-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-action {
    margin-top: auto;
    text-align: right;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.btn-link {
    color: var(--corporate-gold);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s, color 0.2s;
}

.btn-link:hover {
    gap: 8px;
    color: var(--accent-blue);
}

/* --- About Page Enhancements --- */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-weight: 800;
    position: relative;
}

.about-text h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: -15px;
    width: 40px;
    height: 4px;
    background: var(--corporate-gold);
}

.about-text p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image-enhanced {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 20px 20px 0 var(--neutral-gray);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-image-enhanced img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-enhanced:hover img {
    transform: scale(1.02);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.value-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
    border-top: 4px solid var(--corporate-gold);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.value-icon {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.value-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-enhanced {
        box-shadow: 10px 10px 0 var(--neutral-gray);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
    }

    .page-title {
        font-size: 32px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

}

/* --- Contact & Quote Page Enhancements --- */
.contact-layout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    padding: 60px 0 100px;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form-wrapper h3,
.contact-info-wrapper h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.contact-form-wrapper h3::after,
.contact-info-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--corporate-gold);
}

/* Stylish Form Elements */
.corporate-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8f9fa;
    color: var(--text-dark);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(19, 106, 175, 0.1);
}

.btn-submit {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(19, 106, 175, 0.2);
}

/* Contact Info Cards */
.info-card-list {
    display: grid;
    gap: 20px;
}

.info-card-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.info-card-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--corporate-gold);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h4 {
    margin: 0 0 5px;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.info-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Map Container */
/* Map Container Enhanced */
/* Glass & Gradient Map Container */
.map-container-enhanced {
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    margin-top: 60px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    /* Gradient Border Effect */
    padding: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(226, 232, 240, 1) 100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.map-container-enhanced:hover {
    transform: scale(1.02);
}

/* Inner Frame for Rounding */
.map-container-enhanced iframe {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    /* Inner radius */
    border: 0;
    filter: grayscale(100%) sepia(20%) hue-rotate(180deg) saturate(140%) contrast(0.95);
    /* Deep Blue Tone */
    transition: filter 0.8s ease;
    display: block;
}

.map-container-enhanced:hover iframe {
    filter: grayscale(0%) contrast(1.05);
}

/* Premium Floating Badge */
.map-container-enhanced::after {
    content: '\f3c5   Fabrika / Factory';
    font-family: 'Font Awesome 6 Free', 'Inter', sans-serif;
    font-weight: 700;
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(15, 61, 99, 0.85);
    /* Corporate Blue Glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 28px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 10;
    font-size: 16px;
    pointer-events: none;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.map-container-enhanced:hover::after {
    background: #fff;
    color: #0f3d63;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Pulse Animation Ring */
.map-container-enhanced::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    z-index: 5;
    animation: pulse-ring 2s infinite;
    pointer-events: none;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}



@media (max-width: 900px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* --- FIXED & ENHANCED NAVIGATION --- */
@media (min-width: 992px) {
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 15px;
        /* Reduced gap slightly to prevent wrapping */
        flex-wrap: nowrap;
        /* Prevent wrapping */
    }

    .nav-link {
        white-space: nowrap;
        /* Force single line */
        font-size: 13px;
        /* Slightly smaller to fit long English words */
        padding: 8px 10px;
    }
}

@media (min-width: 1200px) {
    .nav-menu {
        gap: 25px;
    }

    .nav-link {
        font-size: 14px;
    }
}

/* --- DESKTOP NAVIGATION: Premium & Glassmorphic (Restored) --- */
@media (min-width: 992px) {

    /* Glassmorphic Header Enhancement */
    .header {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
        height: 90px;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }

    /* --- "Equal-Wing" Flexbox Layout (Collision-Safe Centering) --- */
    .nav-wrapper {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        position: relative;
        height: 100%;
        gap: 10px;
    }

    /* Left Wing: Fixed Width equal to Right Wing */
    .logo {
        flex: 0 0 320px;
        /* Reserve space for Logo */
        display: flex;
        justify-content: flex-start;
        align-items: center;
        z-index: 20;
    }

    .logo-image {
        height: 55px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    /* Center Body: Automatic perfectly centered space */
    .nav-menu {
        flex: 1;

        /* Take all remaining space */
        /* --- BUG FIXES --- */
        /* Fix: Hero overlay filter cut off on wide screens */
        .hero-content::before {
            left: -1500px !important;
            width: 4000px !important;
            top: -50% !important;
            height: 200% !important;
        }

        /* Center the items inside */
        align-items: center;
        position: static !important;
        /* Reset absolute */
        transform: none !important;
        /* Reset transform */
        margin: 0 !important;
        padding: 0;
        gap: 20px;
        padding-left: 20px;
    }

    /* Container safeguard */
    .header .container {
        max-width: 1600px;
        /* Allow width to flow */
        padding: 0 40px;
        width: 100%;
    }
}

/* 2. Standard Laptops (992px - 1200px): Safe Flex Layout */
/* Prevents collision by sacrificing perfect center for safe spacing */
@media (min-width: 992px) and (max-width: 1200px) {
    .nav-wrapper {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 90px;
    }

    .logo {
        flex-shrink: 0;
        margin-right: 20px;
    }

    .nav-menu {
        display: flex;
        align-items: center;
        gap: 15px;
        /* Tighter gap for smaller screens */
        flex: 1;
        justify-content: center;
        /* Center in available space */
        white-space: nowrap;
    }

    .nav-utils {
        flex-shrink: 0;
        margin-left: 20px;
        gap: 10px;
    }

    /* Slightly smaller fonts on laptops */
    .nav-link {
        font-size: 12px !important;
        padding: 10px 5px !important;
    }
}

/* Common Desktop Styles */
@media (min-width: 992px) {
    .header {
        background: rgba(255, 255, 255, 0.98) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    }

    .nav-link {
        color: #1e293b !important;
        /* Extremely dark blue/gray text */
        font-weight: 700 !important;
        font-size: 13px;
        /* Reference Image Match */
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 10px 0;
        position: relative;
        transition: color 0.3s;
        font-family: 'Inter', sans-serif;
    }

    .nav-link:hover {
        color: var(--corporate-gold) !important;
    }

    /* Clean Active State */
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--corporate-gold);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

    /* Logo Sizing */
    .logo-image {
        height: 48px;
        /* Refined size */
        width: auto;
    }
}

/* --- PREMIUM MOBILE MENU DRAWER --- */
@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        /* Elegant wide drawer */
        max-width: 85%;
        height: 100vh;
        background: linear-gradient(160deg, #0f3d63 0%, #061a2b 100%);
        /* Corporate Dark Blue Gradient */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* Center alignment for Chic look */
        gap: 20px;
        padding: 40px 20px;
        z-index: 2000;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        left: auto !important;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        /* Subtle glass border */
    }

    .nav-menu.active {
        right: 0;
        left: auto !important;
    }

    /* Backdrop */
    .nav-wrapper::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        /* Darker backdrop */
        backdrop-filter: blur(4px);
        /* Blur effect */
        z-index: 1500;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .nav-wrapper.menu-open::before {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile Links - Corporate Chic Style */
    .nav-link {
        font-family: 'Inter', sans-serif;
        font-size: 18px;
        /* Sophisticated size */
        color: rgba(255, 255, 255, 0.85) !important;
        font-weight: 400;
        border-bottom: none;
        /* Removed ugly borders */
        width: 100%;
        padding: 12px 0;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
    }

    /* Hover Effect - Gold Fade & Scale */
    .nav-link:hover,
    .nav-link.active {
        color: var(--corporate-gold) !important;
        transform: scale(1.05);
        background: rgba(255, 255, 255, 0.03);
        /* Subtle highlight */
        border-radius: 8px;
    }

    /* Active Dot Indicator */
    .nav-link.active::after {
        content: '';
        display: block;
        width: 6px;
        height: 6px;
        background: var(--corporate-gold);
        border-radius: 50%;
        margin: 5px auto 0;
        box-shadow: 0 0 10px var(--corporate-gold);
    }


    /* Mobile Menu Toggle Button - Ultra Premium Glassmorphic */
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        background: rgba(15, 61, 99, 0.85);
        /* Glassy Blue */
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 14px;
        color: #fff;
        cursor: pointer;
        z-index: 2100;
        margin-left: 15px;
        padding: 0;
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
    }

    /* Gradient Border Effect via Box Shadow */
    .mobile-menu-toggle:hover {
        background: rgba(255, 255, 255, 0.95);
        transform: translateY(-2px) rotate(90deg);
        /* Playful rotation */
        box-shadow: 0 0 15px rgba(197, 160, 89, 0.4), inset 0 0 0 1px var(--corporate-gold);
    }

    /* Inner Glow Animation */
    .mobile-menu-toggle::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
        transform: scale(0);
        margin-top: -50px;
        /* Offset correction */
        opacity: 0;
        transition: transform 0.5s ease, opacity 0.5s;
    }

    .mobile-menu-toggle:active::after {
        transform: scale(1);
        opacity: 1;
        transition: 0s;
    }

    .mobile-menu-toggle i {
        font-size: 22px;
        color: #fff !important;
        transition: color 0.3s;
    }

    .mobile-menu-toggle:hover i {
        color: var(--corporate-gold) !important;
    }

    /* Staggered Animation for Links in Menu */
    .nav-menu.active .nav-link {
        animation: slideInRight 0.5s ease forwards;
        opacity: 0;
        transform: translateX(20px);
    }

    .nav-menu.active .nav-link:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-menu.active .nav-link:nth-child(2) {
        animation-delay: 0.2s;
    }

    .nav-menu.active .nav-link:nth-child(3) {
        animation-delay: 0.3s;
    }

    .nav-menu.active .nav-link:nth-child(4) {
        animation-delay: 0.4s;
    }

    .nav-menu.active .nav-link:nth-child(5) {
        animation-delay: 0.5s;
    }

    .nav-menu.active .nav-link:nth-child(6) {
        animation-delay: 0.6s;
    }

    @keyframes slideInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Close Button Simulation */
    .nav-menu::before {
        content: '\f00d';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        color: #999;
        cursor: pointer;
        pointer-events: none;
        transition: none;
    }

    .nav-menu:hover::before {
        color: #999;
        transform: none;
    }

    /* --- MOBILE HEADER CLEANUP --- */
    /* Hide the header 'Teklif Al' button on mobile since it's in the menu now */
    .nav-utils .btn-quote {
        display: none !important;
    }

    /* Hide Language Selector on extremely small screens if needed */
    .nav-utils .language-selector {
        display: none !important;
    }

    .nav-utils {
        gap: 15px;
        display: flex;
        align-items: center;
    }
}

/* --- USER REFERENCE STYLE CATEGORY CARDS --- */
.category-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #eee;
    /* Light default border */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #c5a059;
    /* Gold border on hover */
}

.category-image {
    height: 200px;
    overflow: hidden;
    background: #fff;
    /* White background for image area too */
    position: relative;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    padding: 20px;
    background: #fff;
    position: relative;
    border-top: 1px solid #f9f9f9;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.category-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    /* Space for link */
    line-height: 1.4;
    transition: color 0.3s;
}

.category-card:hover .category-title {
    color: var(--primary-blue);
}

.category-link {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.category-link i {
    margin-left: 5px;
}

/* --- GLASSMORPHISM SEARCH MODAL --- */
.search-modal {
    background: rgba(15, 61, 99, 0.6) !important;
    /* Corporate Blue tint */
    backdrop-filter: blur(15px) !important;
    transition: all 0.4s ease;
}

.search-modal-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 700px;
    width: 90%;
    padding: 0;
    overflow: hidden;
}

.search-header {
    background: linear-gradient(90deg, var(--primary-blue), #136aaf);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-header h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.search-close {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.search-close:hover {
    background: #fff;
    color: var(--primary-blue);
    transform: rotate(90deg);
}

.search-body {
    padding: 40px;
}

.search-input-wrapper {
    position: relative;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
    transition: border-color 0.3s;
}

.search-input-wrapper:focus-within {
    border-bottom-color: var(--corporate-gold);
}

.search-input {
    width: 100%;
    border: none;
    font-size: 24px;
    font-weight: 300;
    color: var(--text-dark);
    padding: 10px 0;
    background: transparent;
    outline: none;
}

.search-icon {
    position: absolute;
    right: 0;
    bottom: 0px;
    font-size: 24px;
    color: var(--text-muted);
}

.search-submit-btn {
    display: none;
    /* Hide standard submit, input is enough or use icon */
}

/* --- PREMIUM PRODUCT CAROUSEL STYLES --- */
.products-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff, #f4f6f9);
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.products-header-section {
    margin-bottom: 60px;
    align-items: flex-end;
}

.products-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 15px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.products-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--corporate-gold);
    border-radius: 2px;
}

.btn-download-pdf {
    background: var(--primary-blue) !important;
    color: #fff !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    box-shadow: 0 10px 25px rgba(15, 61, 99, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-download-pdf::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--corporate-gold);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-download-pdf:hover::before {
    width: 100%;
}

.btn-download-pdf:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.3) !important;
    border-color: var(--corporate-gold) !important;
}

.products-carousel-wrapper {
    margin-top: 60px;
    padding: 20px 5px;
    /* Space for shadows & side overflow */
    position: relative;
}

/* Premium Card Style - Clean & Elevated */
/* Premium Card Style - Corporate Chic */
.product-card {
    background: #fff;
    border: 1px solid rgba(15, 61, 99, 0.05);
    /* Very subtle blue tint border */
    border-top: 4px solid var(--primary-blue);
    /* Corporate Blue Top Accent */
    border-radius: 12px;
    /* Slightly tighter radius */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card::after {
    /* Gold underline effect on hover */
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--corporate-gold);
    transition: width 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 61, 99, 0.12);
    /* Richer shadow on hover */
    border-color: rgba(15, 61, 99, 0.1);
}

.product-card:hover::after {
    width: 100%;
}

.product-image {
    padding: 25px;
    background: #fff;
    /* Pure white for image integration */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 260px;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #f1f5f9;
    /* Subtle frame */
}

/* Add a subtle decorative background pattern behind the image only on hover */
.product-card:hover .product-image {
    border-color: rgba(197, 160, 89, 0.2);
    /* Gold tint border on hover */
    background: linear-gradient(to bottom, #fff, #fafafa);
}

.product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* Navigation Buttons - Glassmorphic Orbs */
.carousel-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--primary-blue);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.carousel-btn-prev {
    left: -25px;
}

.carousel-btn-next {
    right: -25px;
}

.carousel-btn:hover {
    background: var(--primary-blue);
    color: var(--corporate-gold);
    border-color: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 35px rgba(15, 61, 99, 0.25);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* --- MAIN PRODUCT GROUPS - CORPORATE ANIMATED --- */
.main-products-section {
    padding: 100px 0;
    background-color: #f8fafc;
    position: relative;
}

.main-products-title {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: var(--primary-blue) !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.5px;
}

.main-products-subtitle {
    font-size: 16px !important;
    color: var(--text-muted) !important;
    max-width: 700px;
    margin: 0 auto 60px auto !important;
    line-height: 1.6;
}

/* Floating Animation Keyframes */
@keyframes floatIcon {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.main-product-card {
    background: #fff;
    border: 1px solid rgba(15, 61, 99, 0.05) !important;
    border-radius: 16px !important;
    padding: 40px 30px !important;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    height: 100%;
}

.main-product-card::before {
    /* Subtle gradient background on hover */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.main-product-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(15, 61, 99, 0.1) !important;
    border-color: rgba(197, 160, 89, 0.3) !important;
}

.main-product-card:hover::before {
    opacity: 1;
}

.main-product-icon {
    font-size: 56px !important;
    margin-bottom: 25px !important;
    display: inline-block !important;
    background: -webkit-linear-gradient(45deg, var(--corporate-gold), #fcd34d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(197, 160, 89, 0.3));
    /* The requested motion */
    animation: floatIcon 3s ease-in-out infinite;
}

/* Stagger animations for visual interest */
.main-product-card:nth-child(2) .main-product-icon {
    animation-delay: 0.5s;
}

.main-product-card:nth-child(3) .main-product-icon {
    animation-delay: 1s;
}

.main-product-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--primary-blue) !important;
    margin-bottom: 15px !important;
}

.main-product-desc {
    font-size: 15px !important;
    color: var(--text-muted) !important;
    line-height: 1.7 !important;
}

.main-product-desc strong {
    color: var(--primary-blue) !important;
    font-weight: 600 !important;
}

/* CSS cleanup */

/* --- CERTIFICATES SECTION - PREMIUM --- */
.certificates-section {
    padding: 120px 0;
    /* More breathing room */
    background-color: var(--neutral-gray) !important;
    position: relative;
    overflow: hidden;
}

/* Subtle background accent decoration */
.certificates-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(15, 61, 99, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.certificates-content {
    position: relative;
    z-index: 2;
}

.certificates-badge {
    background: rgba(15, 61, 99, 0.1) !important;
    color: var(--primary-blue) !important;
    border: 1px solid rgba(15, 61, 99, 0.15) !important;
    padding: 8px 18px !important;
    border-radius: 30px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    box-shadow: none !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
}

/* Add a gold dot to the badge */
.certificates-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--corporate-gold);
    border-radius: 50%;
    display: inline-block;
}

.certificates-title {
    font-size: 48px !important;
    font-weight: 800 !important;
    color: var(--primary-blue) !important;
    margin-top: 25px !important;
    margin-bottom: 30px !important;
    line-height: 1.15 !important;
    letter-spacing: -1px !important;
}

.certificates-description {
    font-size: 18px !important;
    color: var(--text-muted) !important;
    line-height: 1.7 !important;
    max-width: 90% !important;
    border-left: 4px solid var(--corporate-gold);
    padding-left: 20px !important;
    margin-bottom: 50px !important;
}

.certificate-feature {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.certificate-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(15, 61, 99, 0.08);
    border-color: rgba(15, 61, 99, 0.05);
}

.certificate-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--corporate-gold);
    opacity: 0;
    transition: opacity 0.3s;
}

.certificate-feature:hover::before {
    opacity: 1;
}

.certificate-icon {
    font-size: 28px !important;
    color: var(--corporate-gold) !important;
    background: rgba(197, 160, 89, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 20px;
    flex-shrink: 0;
}

.certificate-feature-content strong {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: var(--primary-blue) !important;
    margin-bottom: 5px !important;
    display: block;
}

.certificate-feature-content p {
    font-size: 14px !important;
    color: var(--text-muted) !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

.certificates-image {
    border-radius: 20px !important;
    box-shadow: 0 25px 50px -12px rgba(15, 61, 99, 0.25) !important;
    border: 8px solid rgba(255, 255, 255, 0.6) !important;
    position: relative;
    overflow: hidden;
}

/* Glass effect overlay hint on image */
.certificates-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

/* --- ABOUT SECTION - CORPORATE REFINED --- */
.about-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Cleaner Image Style */
.about-image {
    position: relative;
    padding-left: 20px;
    /* Space for side accent */
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    /* Soft, deep shadow */
    width: 100%;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Polished solid line accent */
.about-image::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 4px;
    background: var(--corporate-gold);
    border-radius: 2px;
    z-index: 2;
}

/* Background Element - Subtle Dot Pattern */
.about-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #e2e8f0 10%, transparent 10.5%);
    background-size: 15px 15px;
    z-index: 0;
    opacity: 0.6;
}

/* Typography */
.about-subtitle {
    color: var(--corporate-gold) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px !important;
    margin-bottom: 10px !important;
    display: block;
    border: none !important;
    padding: 0 !important;
}

.about-title {
    font-size: 38px !important;
    font-weight: 800 !important;
    color: var(--primary-blue) !important;
    line-height: 1.25 !important;
    margin-bottom: 25px !important;
}

.about-text p {
    color: var(--text-dark) !important;
    /* Darker for better readability */
    font-size: 16px !important;
    line-height: 1.8 !important;
    margin-bottom: 20px !important;
    opacity: 0.85;
}

.about-text strong {
    color: var(--primary-blue) !important;
    font-weight: 700 !important;
}

/* Button - Elegant Outline */
.btn-about {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue) !important;
    background: transparent !important;
    color: var(--primary-blue) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.btn-about:hover {
    background: var(--primary-blue) !important;
    color: #fff !important;
    transform: translateX(5px);
}

.about-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    cursor: pointer;
}

.about-journey {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Mobile responsive fixes */
@media (max-width: 991px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }
}

/* --- DEFAULT: HIDE MOBILE ELEMENTS ON DESKTOP --- */
.mobile-nav-header,
.mobile-nav-cta-item,
.mobile-header-controls {
    display: none;
}

/* --- MOBILE DESIGN REVISION (WHITE DRAWER & HEADER ICONS) --- */
@media (max-width: 991px) {

    /* Fix Mobile Header */
    .header {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 99999;
    }

    /* Prevent content from hiding behind fixed header */
    body {
        padding-top: 70px;
    }

    /* 1. Header Layout */
    .header .container {
        padding: 0 15px;
    }

    .nav-wrapper {
        height: 70px;
        justify-content: space-between;
        align-items: center;
        display: flex !important;
        /* Force flex */
    }

    /* Logo Container & Image */
    .logo {
        display: flex !important;
        align-items: center !important;
        height: 100%;
        margin-top: 0;
        /* Reset */
    }

    .logo-image {
        height: 55px !important;
        width: auto !important;
        max-width: 180px;
        object-fit: contain;
        margin: 0px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    /* Hide Desktop Utils */
    .nav-utils {
        display: none !important;
    }

    /* 2. Mobile Header Controls (Contact Btn + Hamburger) */
    .mobile-header-controls {
        display: flex !important;
        align-items: center;
        gap: 12px;
        position: relative;
        z-index: 10000;
    }

    /* Mobile Contact Button */
    .mobile-contact-btn {
        display: inline-block;
        background: transparent;
        color: var(--primary-blue);
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        padding: 6px 14px;
        border: 2px solid var(--primary-blue);
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .mobile-contact-btn:hover {
        background: var(--primary-blue);
        color: #fff;
    }

    /* Hamburger Toggle (Simple Lines) */
    .mobile-menu-toggle {
        background: transparent !important;
        border: none !important;
        color: var(--primary-blue) !important;
        font-size: 26px !important;
        /* Slightly larger */
        padding: 5px !important;
        /* Hit area */
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        margin-left: 5px;
        z-index: 10001;
        /* Above container */
    }

    /* Force Icon Visibility */
    .mobile-menu-toggle i,
    .mobile-menu-toggle svg {
        color: #0f3d63 !important;
        fill: #0f3d63 !important;
        font-size: 28px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* 3. Mobile Menu Overlay (White Drawer) */
    .nav-menu {
        position: fixed !important;
        top: 0;
        right: -100%;
        width: 85% !important;
        max-width: 320px;
        height: 100vh !important;
        background: #ffffff !important;
        padding: 10px 20px 20px 20px !important;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15) !important;
        z-index: 100001;
        /* Highest Priority: Above Overlay */
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
        overflow-y: auto;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        left: auto !important;
    }

    .nav-menu.active {
        right: 0 !important;
    }

    /* Reset UL styles */
    .nav-menu ul {
        display: block;
        width: 100%;
    }

    /* Reveal Mobile Specific Items */
    .mobile-nav-header,
    .mobile-nav-cta-item {
        display: block !important;
        width: 100%;
    }

    /* 4. Menu Header (Logo + Close) */
    .mobile-nav-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 1px solid #f0f0f0;
        margin-top: 5px;
    }

    .mobile-nav-logo {
        height: 50px;
        width: auto;
    }

    .mobile-nav-close {
        background: #f3f4f6;
        border: none;
        color: #6b7280;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        cursor: pointer;
    }

    /* Remove Pseudo Close Button */
    .nav-menu::before {
        display: none !important;
    }

    /* Overlay for clicking outside - NOW COVERS HEADER */
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 100000;
        /* Above Header (99999) but below Menu (100001) */
        animation: fadeIn 0.3s;
    }

    /* 5. CTA Button Style */
    .mobile-nav-cta-item {
        margin-bottom: 25px;
    }

    .mobile-nav-cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--bright-yellow);
        color: #1f2937;
        width: 100%;
        padding: 14px;
        border-radius: 8px;
        font-weight: 700;
        text-decoration: none;
        font-size: 16px;
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
        transition: transform 0.2s;
    }

    .mobile-nav-cta-btn:active {
        transform: scale(0.98);
    }

    /* 6. Standard Links */
    .nav-menu ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .nav-menu li {
        list-style: none !important;
        width: 100%;
        text-align: left;
        transform: none !important;
        opacity: 1 !important;
        margin-bottom: 0;
        border-bottom: 1px solid #f3f4f6;
        /* Separator lines */
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a.nav-link {
        color: #1f2937 !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        /* Slightly bolder */
        text-transform: none;
        letter-spacing: normal;
        padding: 16px 0 !important;
        display: block;
        text-decoration: none !important;
    }

    .nav-menu a.nav-link:hover {
        background: transparent;
        color: var(--primary-blue) !important;
        padding-left: 8px !important;
        /* Slide effect */
    }

    /* Remove the yellow dot / bullet specifically if it comes from elsewhere */
    .nav-menu li::before {
        display: none !important;
        content: none !important;
    }

    /* Overlay for clicking outside */
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(2px);
        z-index: 9998;
        animation: fadeIn 0.3s;
    }
}