@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary: #FF5500;
    /* Sharper Orange - Construction safety style */
    --primary-dark: #CC4400;
    --secondary: #0B1120;
    /* Darker, richer navy */
    --secondary-light: #162032;
    --accent: #E2E8F0;
    /* Soft white/grey */
    --text-main: #F1F5F9;
    --text-muted: #94A3B8;
    --glass-bg: rgba(11, 17, 32, 0.9);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--secondary);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 30%, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 0;
    /* More architectural/sharp look */
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.glass-card:hover::before {
    transform: scaleY(1);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 85, 0, 0.3);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--primary);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn:hover {
    background: transparent;
    color: var(--primary);
    transform: translateX(5px);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    /* Increased height for visibility */
    width: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    max-width: 100%;
    /* Ensure it doesn't overflow */
}

@media (max-width: 768px) {
    .logo img {
        height: 40px;
        /* Smaller logo on mobile to prevent overlap */
    }

    header .container {
        padding: 0 1rem;
        /* Adjust padding for mobile */
    }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    position: relative;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    opacity: 1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    right: 0;
    /* Animate from right */
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    left: 0;
}

/* Page Headers (for subpages) */
.page-header {
    height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    /* Reduced bottom margin */
    padding-top: 80px;
    /* Space for fixed header */
    min-height: 50vh;
    /* flexible height instead of fixed */
    height: auto;
}

@media (max-width: 768px) {
    .page-header {
        min-height: 40vh;
        /* Adjust for mobile */
        padding-top: 150px;
        /* Extra space for mobile header overlap */
    }
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(11, 17, 32, 0.3), var(--secondary));
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Hero Section (Index) */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero background (Video or Image) */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    /* Removed filter here as we added an overlay div in HTML for better control */
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
    padding: 0 1rem;
}

/* Hero Sections on Index */
.hero h1 {
    color: white;
    /* Always white on hero image */
    font-size: 6rem;
    font-weight: 600;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    /* Shadow for readability */
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    /* Lighter text for hero */
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}



/* Section Common */
.section-padding {
    padding: 6rem 0;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    line-height: 1;
}

.section-title span {
    color: var(--primary);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Stats */
.stat-item h3 {
    font-size: 5rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}

/* Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.step-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    position: relative;
    border-top: 4px solid var(--primary);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 20px;
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
    background: #000;
    border-top: 1px solid var(--glass-border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.map-container {
    height: 400px;
    width: 100%;
    border: 1px solid var(--glass-border);
    filter: grayscale(100%) invert(92%) contrast(83%);
    /* Custom map style */
    transition: filter 0.3s;
}

.map-container:hover {
    filter: none;
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 50px rgba(255, 85, 0, 0.2);
    border: 2px solid var(--primary);
    transition: transform 0.1s linear;
    /* Smooth zoom */
    cursor: grab;
}



.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 1001;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 1001;
}

.lightbox-controls button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-controls button:hover {
    background: var(--primary);
    color: white;
}

/* Enhanced Footer */
.footer-modern {
    background: linear-gradient(to bottom, #050a14, #000);
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    /* Allows padding to work */
    padding: 2px 0;
    /* Increase touch target vertical size */
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.copy {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Fixes */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Menu Simplification */
    .nav-links {
        display: none;
    }

    .page-header {
        min-height: 40vh;
        height: auto;
        padding-top: 140px;
        /* Slightly reduced but sufficient */
        text-align: center;
        /* Center align for better visual on mobile */
    }

    /* Landscape on mobile */
    @media (orientation: landscape) {
        .page-header {
            min-height: auto;
            padding-top: 100px;
            padding-bottom: 2rem;
        }
    }

    .page-header h1 {
        font-size: 2.5rem;
        /* Slightly smaller to prevent harsh wrapping */
        margin-bottom: 0.5rem;
    }
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .separator {
    margin: 0 0.5rem;
    color: var(--primary);
}

.breadcrumb .current {
    color: white;
    font-weight: 600;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    border-radius: 50%;
    /* Rounded for better look */
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.slider-prev {
    left: 2rem;
}

.slider-next {
    right: 2rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(37, 211, 102, 0.4);
    background-color: #20b85a;
    color: white;
}

.whatsapp-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Mobile Navigation Styles */
.mobile-menu-toggle {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 101;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: rgba(11, 17, 32, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 2rem;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.sidebar-header img {
    height: 40px;
}

.close-sidebar {
    font-size: 2.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.close-sidebar:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-links a {
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    transition: var(--transition);
    transform: translateX(20px);
    opacity: 0;
    animation: none;
}

.mobile-sidebar.active .sidebar-links a {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.2s;
}

/* Stagger transition for links */
.mobile-sidebar.active .sidebar-links a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-sidebar.active .sidebar-links a:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-sidebar.active .sidebar-links a:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-sidebar.active .sidebar-links a:nth-child(4) {
    transition-delay: 0.4s;
}

.sidebar-links a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

/* Bims Product Cards */
.bims-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.bims-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: none;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.bims-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-bottom: 4px solid var(--primary);
}

.bims-image-container {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: #f1f5f9;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e2e8f0;
}

.bims-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.bims-card:hover .bims-image-container img {
    transform: scale(1.05);
}

.bims-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.bims-category {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.bims-desc {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.bims-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.bims-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
}

.bims-detail-btn {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid var(--primary);
}

.bims-detail-btn:hover {
    background: white;
    color: var(--primary);
}

.bims-whatsapp-btn {
    background: #25d366;
    color: white;
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.bims-whatsapp-btn:hover {
    background: #128c7e;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}



/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #ffffff;
    margin: auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideUp 0.3s ease-out;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    z-index: 10;
}

.close-modal:hover,
.close-modal:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    background: var(--secondary);
    color: white;
    padding: 1.5rem;
    border-radius: 12px 12px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    color: white;
}

.badge {
    background: var(--primary);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 600;
}

.modal-body {
    padding: 2rem;
}

.modal-description {
    color: #475569;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.spec-item ion-icon {
    font-size: 2rem;
    color: var(--primary);
}

.spec-item h4 {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 0.2rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.spec-item p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);

}

/* Horizontal Product Strip */
.product-strip-section {
    background: #0B1120;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.product-strip-wrapper {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #0B1120;
    justify-content: flex-start;
    /* Start from left to allow scrolling */
    flex-wrap: nowrap;
    /* Force single row always */
    margin: 0 -1rem;
    /* Negative margin for edge-to-edge scroll feeling on mobile */
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .product-strip-wrapper {
        justify-content: center;
        /* Center on desktop if they fit */
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
}

.product-strip-wrapper::-webkit-scrollbar {
    height: 4px;
}

.product-strip-wrapper::-webkit-scrollbar-track {
    background: #0B1120;
}

.product-strip-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

.strip-item {
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid transparent;
    text-align: center;
    margin: 10px 0;
    /* Add vertical margin to prevent hover clip */
}

.strip-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 85, 0, 0.5);
    /* Stronger border color */
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    /* Standard shadow, removed inset */
}

.strip-img-box {
    width: 110px;
    height: 110px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 3px solid transparent;
    overflow: visible;
    /* Ensure shadows/effects aren't clipped */
    margin-bottom: 5px;
    /* Add space below image */
}

.strip-item:hover .strip-img-box {
    transform: scale(1.05);
    box-shadow: 0 15px 30px -5px rgba(255, 85, 0, 0.2);
    border-color: var(--primary);
}

.strip-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.strip-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.strip-title {
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.strip-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
    transition: color 0.3s;
}

.strip-item:hover .strip-title {
    color: white;
}

.strip-item:hover .strip-desc {
    color: var(--primary);
}

/* =========================================
   EXTRA STYLES (Merged)
   - Technical Table
   - Feature Strip
   - Mobile Sticky Bar
   - FAQ
   ========================================= */

/* --- Technical Table Styles --- */
.tech-table-container {
    overflow-x: auto;
    margin-top: 4rem;
    border-radius: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
}

.tech-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-main);
    min-width: 600px;
}

.tech-table th,
.tech-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.tech-table th {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
}

.tech-table tr:last-child td {
    border-bottom: none;
}

.tech-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* --- Feature Strip Styles --- */
.feature-strip {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 1rem 0 3rem 0;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    flex: 1;
    min-width: 150px;
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 85, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--primary);
    font-size: 2.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon-box {
    transform: scale(1.1);
    background: var(--primary);
    color: white;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- Mobile Sticky Bottom Bar --- */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(11, 17, 32, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--primary);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    padding-bottom: env(safe-area-inset-bottom);
}

.mobile-action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 60px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: background 0.3s;
    height: 100%;
    font-weight: 600;
    color: white !important;
    /* Force white text */
}

.action-btn.call {
    background: var(--secondary);
}

.action-btn.whatsapp {
    background: #25D366;
}

.action-btn ion-icon {
    font-size: 1.3rem;
    color: white !important;
}

@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: block;
    }

    footer {
        padding-bottom: 80px !important;
    }

    .whatsapp-float {
        display: none !important;
    }
}

/* --- FAQ Accordion Section --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 85, 0, 0.3);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: white;
    background: rgba(255, 255, 255, 0.02);
}

.faq-question ion-icon {
    color: var(--primary);
    transition: transform 0.3s ease;
    font-size: 1.4rem;
}

.faq-item.active .faq-question ion-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq-content {
    padding: 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    border-top: 1px solid var(--glass-border);
}

/* --- MODERN EXPANDING GALLERY --- */
.modern-gallery-section {
    padding: 4rem 0 6rem;
    overflow: hidden;
    position: relative;
    background: linear-gradient(to bottom, var(--secondary-light), #0B1120);
}

.modern-gallery {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 500px;
    gap: 1rem;
    padding: 0 1rem;
}

.gallery-card {
    position: relative;
    flex: 0.5;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    overflow: hidden;
    transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-card.active {
    flex: 3;
    border: 1px solid var(--primary);
    box-shadow: 0 20px 50px rgba(236, 104, 40, 0.4);
}

/* Hover effect for non-active cards */
.gallery-card:not(.active):hover {
    flex: 0.8;
    transform: translateY(-5px);
}

.gallery-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent 60%);
    opacity: 0.8;
    transition: opacity 0.4s;
}

.gallery-card.active::before {
    opacity: 0.6;
}

.card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
    /* delay text appearance */
}

.gallery-card.active .card-content {
    opacity: 1;
    transform: translateY(0);
}

.card-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-content p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 80%;
}

.card-icon {
    background: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .modern-gallery {
        flex-direction: column;
        height: 800px;
    }

    .gallery-card {
        flex: 1 !important;
        /* Stack them evenly on mobile initially */
        border-radius: 12px;
    }

    .gallery-card.active {
        flex: 3 !important;
    }

    .card-content h3 {
        font-size: 1.5rem;
    }
}


/* --- CARD CAROUSEL CONTROLS --- */
.card-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    /* Hidden by default, shown on active */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.2s;
    opacity: 0;
    pointer-events: none;
}

.gallery-card.active .card-nav-btn {
    opacity: 1;
    pointer-events: auto;
}

.card-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.card-prev {
    left: 10px;
}

.card-next {
    right: 10px;
}


/* --- BOTTOM SCROLLING STRIP --- */
.bottom-strip-section {
    padding: 2rem 0;
    background: #050a14;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.bottom-strip-track {
    display: flex;
    gap: 1rem;
    animation: scrollBottomStrip 40s linear infinite;
    width: max-content;
}

.bottom-strip-item img {
    height: 120px;
    width: auto;
    border-radius: 8px;
    opacity: 0.6;
    transition: 0.3s;
    filter: grayscale(100%);
}

.bottom-strip-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

@keyframes scrollBottomStrip {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- MODERN INFINITY STREAM GALLERY (UX REQUEST) --- */
.modern-ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #020617 0%, #0F172A 50%, #020617 100%);
    padding: 3rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
}

.modern-ticker-wrap::before,
.modern-ticker-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.modern-ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, #020617, transparent);
}

.modern-ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, #020617, transparent);
}

.ticker-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: infiniteScroll 60s linear infinite;
    will-change: transform;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, filter 0.4s ease;
    cursor: pointer;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) contrast(0.9) brightness(0.9);
    transition: filter 0.5s ease, transform 0.8s ease;
    display: block;
}

.ticker-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--primary);
    z-index: 10;
}

.ticker-item:hover img {
    filter: grayscale(0%) contrast(1.05) brightness(1.1);
    transform: scale(1.1);
}

@keyframes infiniteScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 768px) {
    .modern-ticker-wrap {
        padding: 1.5rem 0;
    }

    .ticker-item {
        width: 220px;
        height: 220px;
    }

    .ticker-track {
        gap: 1rem;
        animation-duration: 40s;
    }

    .modern-ticker-wrap::before,
    .modern-ticker-wrap::after {
        width: 50px;
    }
}

/* Badge Default Styling - Brand Standard */
.badge,
.card-badge {
    background: rgba(236, 104, 40, 0.15) !important;
    /* brand orange primary */
    color: var(--primary) !important;
    border: 1px solid rgba(236, 104, 40, 0.3) !important;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* --- HIZLI TEKLIF AL: Header Button --- */
.hizli-teklif-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 9px 18px;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 2px 8px rgba(236, 104, 40, 0.35);
}

.hizli-teklif-btn:hover {
    background: #d55c20;
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(236, 104, 40, 0.55);
}

.hizli-teklif-btn ion-icon {
    font-size: 1rem;
}

/* --- HIZLI TEKLIF MODAL --- */
.teklif-modal-overlay {
    display: none;
    /* completely hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 13, 26, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.25s ease;
}

.teklif-modal-overlay.active {
    display: flex;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.teklif-modal-content {
    background: #1E293B;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    width: 92%;
    max-width: 470px;
    padding: 36px 32px 28px;
    position: relative;
    animation: modalSlideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.teklif-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #94A3B8;
    font-size: 1.5rem;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.teklif-close:hover {
    background: rgba(255, 255, 255, 0.18);
    color: white;
}

.teklif-header {
    text-align: center;
    margin-bottom: 28px;
}

.teklif-header h3 {
    color: #EC6828;
    font-family: 'Oswald', sans-serif;
    font-size: 1.7rem;
    margin: 0 0 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.teklif-header p {
    color: #94A3B8;
    font-size: 0.95rem;
    margin: 0;
}

/* Step progress dots */
.teklif-progress {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
}

.teklif-progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.3s, transform 0.3s;
}

.teklif-progress-dot.active {
    background: #EC6828;
    transform: scale(1.3);
}

.teklif-step {
    display: none;
}

.teklif-step.active {
    display: block;
    animation: stepSlide 0.25s ease;
}

@keyframes stepSlide {
    from {
        opacity: 0;
        transform: translateX(12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.teklif-step label {
    display: block;
    color: #CBD5E1;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.teklif-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 13px 15px;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 18px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: inherit;
}

.teklif-input:focus {
    border-color: #EC6828;
    box-shadow: 0 0 0 3px rgba(236, 104, 40, 0.15);
}

.teklif-input option {
    background: #1E293B;
}

.teklif-nav-btns {
    display: flex;
    gap: 12px;
}

.teklif-next-btn,
.teklif-submit-btn,
.teklif-back-btn {
    flex: 1;
    padding: 13px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: none;
}

.teklif-next-btn {
    background: #EC6828;
    color: white;
}

.teklif-next-btn:hover {
    background: #d55c20;
    transform: translateY(-1px);
}

.teklif-back-btn {
    background: transparent;
    color: #94A3B8;
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex: 0 0 auto;
    padding: 13px 20px;
}

.teklif-back-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    color: white;
}

.teklif-submit-btn {
    background: #25D366;
    color: white;
}

.teklif-submit-btn:hover {
    background: #1aad52;
    box-shadow: 0 5px 18px rgba(37, 211, 102, 0.45);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .teklif-modal-content {
        padding: 28px 18px 22px;
    }

    .hizli-teklif-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

/* --- PRODUCT THUMBNAILS --- */
.product-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thumb-item {
    width: 62px;
    height: 62px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s;
    background: white;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.thumb-item:hover img {
    transform: scale(1.12);
}

.thumb-item.active {
    border-color: #EC6828;
    box-shadow: 0 3px 12px rgba(236, 104, 40, 0.4);
    transform: translateY(-2px);
}