/* Color Variables & Reset */
:root {
    --primary-red: #D32F2F;
    /* Accent red */
    --primary-blue: #0A192F;
    /* Navy Blue Base */
    --light-blue: #112240;
    /* Lighter Navy Surface */
    --hover-red: #B71C1C;
    --white: #FFFFFF;
    --bg-light: #F8F9FA;
    --text-main: #333333;
    --text-muted: #666666;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

ul {
    list-style: none;
}

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

/* Base Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(211, 47, 47, 0.2);
}

.btn-primary:hover {
    background-color: var(--hover-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(211, 47, 47, 0.35);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Header Component */
.header {
    background-color: transparent;
    box-shadow: none;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo {
    background-color: var(--white);
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    padding: 10px 20px;
    /* Provide some breathing room */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    align-self: flex-start;
}

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

.logo img {
    height: 100px;
    width: auto;
    max-width: 300px;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: all 0.4s ease;
}

.nav-list {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-list a {
    font-weight: 600;
    color: var(--white);
    font-size: 1.05rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-list a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width var(--transition-speed) ease;
}

.nav-list a:not(.btn):hover::after,
.nav-list a.active:not(.btn)::after {
    width: 100%;
}

.nav-list a:not(.btn):hover {
    color: var(--primary-red);
}

.nav-list a.btn {
    color: var(--white);
    text-shadow: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Header Minified State - Corporate Flush Bar */
.header.minified {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    height: 90px;
}

.header.minified .header-container {
    height: 90px;
}

/* Clear margins/heights so logo sits perfectly inside the flush header */
.header.minified .logo {
    height: 90px;
    padding: 0 15px;
    /* Restrict padding so it fits */
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
}

.header.minified .logo img {
    height: 70px;
    width: auto;
    max-width: 200px;
}

.header.minified .nav-list a:not(.btn) {
    color: var(--primary-blue);
    text-shadow: none;
}

.header.minified .nav-list a:not(.btn):hover,
.header.minified .nav-list a.active:not(.btn) {
    color: var(--primary-red);
}

.header.minified .mobile-menu-toggle span {
    background-color: var(--primary-blue);
    box-shadow: none;
}

/* Hero Section Component */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 0;
    overflow: hidden;
    background-color: var(--primary-blue);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease, visibility 1.5s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05);
    /* Slight scale for slow zoom effect */
    transition: transform 10s linear;
}

.slide.active .slide-bg {
    transform: scale(1);
}

/* Linear gradient overlay for deep navy blue tint over images */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.6) 50%, rgba(17, 34, 64, 0.4) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 800px;
    padding-top: 150px;
    /* Account for larger fixed header */
}

.slide-subtitle {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.3s;
}

.slide-title {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.5s;
}

.slide-desc {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 35px;
    max-width: 650px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.7s;
}

.slide-actions {
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.9s;
}

/* Reset animations for inactive slides */
.slide:not(.active) .slide-subtitle,
.slide:not(.active) .slide-title,
.slide:not(.active) .slide-desc,
.slide:not(.active) .slide-actions {
    animation: none;
    opacity: 0;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background-color: var(--primary-red);
    width: 35px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(211, 47, 47, 0.5);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .slide-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: block;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav.show {
        max-height: 400px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
    }

    .nav-list a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: var(--primary-blue) !important;
        text-shadow: none !important;
    }

    .nav-list a.active,
    .nav-list a:hover {
        color: var(--primary-red) !important;
    }

    .nav-list a.btn {
        margin: 15px auto;
        display: inline-block;
        width: max-content;
        color: var(--white) !important;
    }

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

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .slide-title {
        font-size: 2.2rem;
    }

    .slide-desc {
        font-size: 1rem;
    }

    .slider-arrow {
        display: none;
        /* Rely on dots and touch for mobile */
    }

    .slider-controls {
        justify-content: center;
    }

    .slide-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .slide-actions .btn {
        width: 100%;
    }
}

/* Add Video Support to Slider */
.slide-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* --- Section Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle::after {
    display: none;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* --- Ultra Modern Corporate Section --- */
.modern-vision {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Modern Abstract Visual Backing */
.modern-vision::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(10, 25, 47, 0.03) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
}

.modern-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.modern-content {
    flex: 1;
    min-width: 0;
    max-width: 600px;
    text-align: left;
}

.modern-kicker {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.modern-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.vision-quote {
    background: rgba(10, 25, 47, 0.04);
    border-left: 4px solid var(--primary-red);
    padding: 20px 25px;
    margin-bottom: 25px;
    border-radius: 0 8px 8px 0;
}

.vision-quote p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
    font-style: italic;
    line-height: 1.6;
}

.modern-text {
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
}

.mission-hooks {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.mission-hooks li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.5;
}

.mission-hooks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.mission-hooks li strong {
    color: var(--primary-blue);
}

/* Clean Typography Stat */
.vision-typography-stat {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.typo-stat-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px 0;
    border-left: 2px solid var(--primary-red);
    padding-left: 30px;
}

.typo-number-group {
    display: flex;
    align-items: flex-start;
}

.typo-number {
    font-size: 8rem;
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -4px;
    color: var(--primary-blue);
    /* Removed all gradient/badge backing - keeping it clean text */
}

.typo-plus {
    font-size: 4rem;
    color: var(--primary-red);
    font-weight: 800;
    margin-top: 5px;
    margin-left: 5px;
}

.typo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.typo-highlight {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 5px;
}

.typo-desc {
    font-size: 1.1rem;
    color: #888;
    font-weight: 400;
    max-width: 200px;
    line-height: 1.4;
}

/* --- Rich Immersive Statistics Section --- */
.immersive-stats-section {
    position: relative;
    padding: 50px 0;
    /* Reduced vertical padding by half */
    overflow: hidden;
}

.stats-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    z-index: 0;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.88);
    /* Deep Navy Blue semi-transparent overlay */
    z-index: 1;
}

.immersive-stats-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    /* Sits above the overlay */
}

.immersive-stat-block {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    text-align: center;
    color: var(--white);
    padding: 10px;
    /* Reduced internal padding to keep it compact */
}

.stat-icon-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    /* Substantially shrunk from 65px to reverse information asymmetry */
    height: 35px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-bottom: 15px;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.stat-icon {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.5);
    /* Muted out by default */
    transition: color 0.4s ease;
}

.immersive-stat-block:hover .stat-icon-wrapper {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.immersive-stat-block:hover .stat-icon {
    color: var(--white);
}

.immersive-stat-number-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 10px;
}

.immersive-stat-number {
    font-size: 4rem;
    /* Slightly smaller for the compact layout */
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    /* Crisp white numbers for pop against dark background */
    letter-spacing: -1px;
    font-variant-numeric: tabular-nums;
}

.immersive-stat-suffix {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
    margin-left: 5px;
}

.immersive-stat-label {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
}

/* --- Brands Marquee Section --- */
.brands-marquee-section {
    padding: 80px 0;
    background-color: var(--white);
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.brands-marquee-section .section-subtitle {
    margin-right: 0 !important;
}

.brands-marquee-section .section-subtitle::after {
    right: -50px;
}

.marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 0;
    margin-top: 50px;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: scroll-marquee 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 60px;
    padding-right: 60px;
    /* spacing between groups */
}

.brand-logo {
    max-width: 140px;
    max-height: 70px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.brand-logo:hover {
    transform: scale(1.1);
}

.logo-black-bg {
    background-color: #000000;
    padding: 5px;
    border-radius: 4px;
}

@keyframes scroll-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
        /* Moves exactly half the track width per loop */
    }
}

/* --- Visit Us Section --- */
.visit-us-section {
    padding: 60px 0 0 0;
    background-color: var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.visit-us-section .section-title {
    color: var(--white);
    letter-spacing: 2px;
}

.visit-us-section .container {
    margin-bottom: 40px;
}

.map-container {
    width: 100%;
    margin-top: 20px;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.05));
}

.map-container iframe {
    display: block;
    /* Removes inline bottom gap */
}

@media (max-width: 992px) {
    .immersive-stats-section {
        padding: 80px 0;
    }

    .immersive-stats-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .immersive-stats-container {
        flex-direction: column;
        align-items: center;
    }

    .immersive-stat-block {
        width: 100%;
        max-width: 400px;
        margin-bottom: 20px;
    }

    .stats-background-image {
        background-attachment: scroll;
        /* Disable parallax on mobile for performance */
    }
}

@media (max-width: 1024px) {
    .modern-container {
        flex-direction: column;
        text-align: center;
    }

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

    .vision-map {
        justify-content: center;
        max-width: 100%;
        margin-top: 40px;
    }
}

@media (max-width: 1024px) {
    .modern-title {
        font-size: 3.5rem;
    }
}

/* --- Animations & Intro Enhancements --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
    backface-visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.2, 0, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(30px);
    will-change: transform, opacity;
    backface-visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.2, 0, 0.2, 1) 0.2s, transform 0.8s cubic-bezier(0.2, 0, 0.2, 1) 0.2s;
}

.fade-in-up.animate,
.fade-in-left.animate {
    opacity: 1;
    transform: translate(0, 0);
}

/* Enhancing the stat box to be innovative */
.stat-box.glow-effect {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.9), rgba(26, 54, 93, 0.95));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.stat-box.glow-effect:hover {
    box-shadow: 0 0 50px rgba(220, 20, 60, 0.3), inset 0 0 30px rgba(255, 255, 255, 0.1);
    transform: translateY(-15px) scale(1.02);
}


/* --- Corporate Footer --- */
.site-footer {
    background-color: #0a1424;
    /* Even deeper than primary blue for visual grounding */
    color: #a0aec0;
    padding: 40px 0 0 0; /* Reduced from 80px */
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
    gap: 30px;
    margin-bottom: 60px;
}

/* Brand Column */
.footer-logo-container {
    display: inline-block;
    background-color: var(--white);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-logo {
    height: 45px;
    display: block;
}

.social-icon:hover {
    color: var(--white) !important;
}

.footer-about {
    line-height: 1.8;
    max-width: 400px;
}

/* Headings */
.footer-heading {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-red);
}

/* Links */
.footer-links,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* Contact List */
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-red);
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- Standard Categorized Catalog (products.html) --- */
.catalog-page {
    background-color: #f1f5f9; /* Contrast background to make white cards pop */
    padding: 80px 0 100px;
}

.catalog-section {
    padding: 0;
    margin-bottom: 80px;
}

.catalog-section-header {
    position: sticky;
    top: 90px; /* Aligns perfectly below minified header */
    z-index: 900;
    padding: 20px 0;
    margin-bottom: 40px;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

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

/* Red Variant Sticky Header */
.catalog-section.header-red .catalog-section-header {
    background: var(--primary-red);
    color: white;
}

.catalog-section.header-red .catalog-section-title {
    color: white;
}

.catalog-section.header-red .catalog-section-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Blue Variant Sticky Header */
.catalog-section.header-blue .catalog-section-header {
    background: var(--primary-blue);
    color: white;
}

.catalog-section.header-blue .catalog-section-title {
    color: white;
}

.catalog-section.header-blue .catalog-section-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.catalog-section-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -1px;
    text-transform: capitalize;
}

.catalog-section-count {
    background: rgba(10, 25, 47, 0.04);
    color: var(--primary-blue);
    padding: 10px 22px;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 750;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: 1px solid rgba(10, 25, 47, 0.08);
    transition: all 0.3s ease;
}

.catalog-section-header:hover .catalog-section-count {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}

.simple-card {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    position: relative;
    top: 0;
}

.simple-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.simple-card:hover {
    transform: translateY(-8px);
    border-color: rgba(211, 47, 47, 0.3);
}

.simple-card:hover::before {
    opacity: 1;
}

.simple-card-image-wrapper {
    width: 100%;
    height: 240px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* Card Image Slider Styles */
.card-image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image {
    max-width: 85%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: var(--text-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    opacity: 0;
    z-index: 10;
}

.card-image-slider:hover .slider-btn {
    opacity: 1;
}

.slider-btn:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.prev-btn {
    left: 8px;
}

.next-btn {
    right: 8px;
}

.simple-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.simple-card:hover .simple-card-image,
.simple-card:hover .placeholder-logo {
    transform: scale(1.08);
}

/* Fallback Logo Styling */
.placeholder-logo {
    width: 45%;
    opacity: 0.08;
    filter: grayscale(100%);
    object-fit: contain;
    transition: transform 0.6s ease;
}

.simple-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.simple-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1.4;
}

.simple-card-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.simple-card-action {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.simple-card-action svg {
    transition: transform 0.3s ease;
}

.simple-card:hover .simple-card-action svg {
    transform: translateX(6px);
}

/* --- Premium Catalog Search Bar --- */
/* --- Catalog Toolbar (Search + Category Filter) --- */
.catalog-toolbar {
    position: sticky;
    top: 90px;
    z-index: 99;
    background: #f8fafc; /* Subtle tint for separation */
    padding: 24px 0 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-top: 0;
}

.toolbar-search {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 600px;
    margin-bottom: 14px;
}

.toolbar-search-icon {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    z-index: 1;
}

.toolbar-search-input {
    width: 100%;
    padding: 12px 20px 12px 46px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: var(--primary-blue);
    background: #edf2f7; /* Darker input background */
    outline: none;
    transition: all 0.3s ease;
}

.toolbar-search-input::placeholder {
    color: #94a3b8;
    font-weight: 300;
}

.toolbar-search-input:focus {
    border-color: var(--primary-red);
    background: var(--white);
    box-shadow: 0 2px 12px rgba(211, 47, 47, 0.08);
}

.toolbar-pills {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.toolbar-pills::-webkit-scrollbar {
    display: none;
}

.toolbar-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 6px;
    flex-shrink: 0;
}

.category-pill {
    flex-shrink: 0;
    padding: 8px 18px;
    border: none;
    border-radius: 50px;
    background: #f1f5f9;
    color: #475569;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-pill:hover {
    background: rgba(211, 47, 47, 0.08);
    color: var(--primary-red);
}

.category-pill.active {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

/* --- Brand Color Accents --- */
.catalog-section-header {
    margin-bottom: 40px;
    padding-bottom: 15px;
    padding-left: 16px;
    border-bottom: 2px solid #e2e8f0;
    border-left: 4px solid var(--primary-red);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 15px;
}

.simple-card:hover {
    transform: translateY(-8px);
    border-color: rgba(211, 47, 47, 0.3);
}

.simple-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1.4;
}

/* --- Product Card CTA Button --- */
.simple-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 10px 20px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.simple-card-cta:hover {
    background: var(--primary-red);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
    transform: translateY(-1px);
}

.simple-card-cta svg {
    transition: transform 0.3s ease;
}

.simple-card-cta:hover svg {
    transform: translateX(3px);
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #060c17;
    /* Ultra dark anchor */
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--white);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .brand-column {
        grid-column: 1 / -1;
    }
}

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

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128c7e;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 34px;
    height: 34px;
    fill: currentColor;
}

/* Pulse Animation */
.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

/* --- Why Choose Us Redesign --- */
.features-section {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    position: relative;
    padding: 50px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 30px 60px -12px rgba(10, 25, 47, 0.12);
    border-color: rgba(211, 47, 47, 0.2);
}

.feature-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(10, 25, 47, 0.03);
    pointer-events: none;
    user-select: none;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-number {
    color: rgba(211, 47, 47, 0.05);
    transform: scale(1.1) rotate(-5deg);
}

.feature-card h4 {
    font-size: 1.6rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    position: relative;
}

.feature-card h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.feature-card:hover h4::after {
    width: 60px;
}

.feature-card p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* --- Qiagen Style Product Search --- */
.hero-search-input {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-search-input:focus {
    box-shadow: 0 15px 35px rgba(0,0,0,0.3) !important;
    transform: translateY(-2px);
}

.popular-link {
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1px;
}

.popular-link:hover {
    color: var(--white) !important;
    border-bottom-color: var(--white);
    opacity: 1;
}

.breadcrumbs a:hover {
    color: white;
}

/* --- Category Pill Refinement --- */
.filter-section {
    position: relative;
    z-index: 100;
    padding: 30px 0 !important; /* Reduced but optimized */
    background: #ffffff !important;
    overflow: visible;
}

.category-scroll-wrapper {
    padding: 15px 0; /* Extra vertical room to prevent hover clipping */
    margin: -15px 0;
    overflow-x: auto;
    overflow-y: visible; /* CRITICAL: Allows hover lift to show */
    scrollbar-width: none;
}

.filter-section .toolbar-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    overflow: visible; /* Ensuring no internal clipping on translate */
}

.filter-section .category-pill {
    background: white;
    color: #475569;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.filter-section .category-pill:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

.filter-section .category-pill.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    box-shadow: 0 10px 20px -5px rgba(10, 25, 47, 0.3);
}

@media (max-width: 768px) {
    .filter-section .category-pill {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .feature-card {
        padding: 40px;
    }
}

/* --- Mobile Optimization Overrides (Temporarily Disabled - Stored) ---
@media (max-width: 768px) {
    .header-container {
        height: 65px !important;
    }
    .logo, .logo-img {
        height: 45px !important;
        width: auto !important;
    }
    .logo-img {
        max-width: 120px !important;
    }
    .logo {
        padding: 5px 10px !important;
    }

    h1, .hero-title, .modern-title {
        font-size: 2.1rem !important;
        letter-spacing: -0.5px !important;
        line-height: 1.2 !important;
    }
    h2, .section-title {
        font-size: 1.6rem !important;
    }
    .page-hero h1 {
        font-size: 1.9rem !important;
    }

    .container {
        padding: 0 16px !important;
    }
    section {
        padding: 45px 0 !important;
    }
    .page-hero, .page-header {
        padding: 100px 0 50px 0 !important;
    }

    .hero-search-wrapper {
        padding: 0 10px;
        margin-bottom: 25px !important;
    }
    .hero-search-input {
        padding: 14px 20px 14px 55px !important;
        font-size: 0.95rem !important;
    }
    .hero-search-wrapper svg {
        left: 25px !important;
    }
    
    .filter-section {
        padding: 25px 0 !important;
    }
    .filter-section .toolbar-pills {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        padding: 10px 16px !important;
        margin: 0 -16px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 8px !important;
    }
    .filter-section .toolbar-pills::-webkit-scrollbar {
        display: none;
    }
    .filter-section .category-pill {
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        padding: 10px 16px !important;
        font-size: 0.8rem !important;
    }

    .immersive-stat-number {
        font-size: 2.75rem !important;
    }
    .immersive-stat-suffix {
        font-size: 1.5rem !important;
    }

    .whatsapp-float {
        bottom: 25px !important;
        right: 20px !important;
        width: 55px !important;
        height: 55px !important;
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4) !important;
    }
}

@media (max-width: 480px) {
    h1, .hero-title, .modern-title {
        font-size: 2rem !important;
    }
    .logo-img {
        max-width: 120px !important;
    }
}
*/
/* --- Professional Contact Page Styles --- */
.contact-section {
    padding: 120px 0;
    background: radial-gradient(circle at top right, rgba(211, 47, 47, 0.03), transparent 400px),
                radial-gradient(circle at bottom left, rgba(10, 25, 47, 0.03), transparent 400px);
    background-color: #f8fafc;
}

.contact-section .container {
    max-width: 1400px; /* Expands to take up more horizontal space */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr; /* More space for the form */
    gap: 40px;
    align-items: stretch; /* Allow height matching */
}

.contact-title-main {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 500px;
}

/* Consultation Image Card */
.contact-image-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 30px 60px rgba(10, 25, 47, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 300px;
}

.contact-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%; /* Targeted framing */
}

/* Info Cards Refinement */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.04);
    border: 1px solid rgba(10, 25, 47, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.08);
    border-color: rgba(211, 47, 47, 0.2);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.info-card-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(211, 47, 47, 0.1);
    color: var(--primary-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card h3 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin: 0;
}

.info-details p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    margin: 5px 0;
}

.info-details a {
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s;
}

.info-details a:hover {
    opacity: 0.8;
}

/* Premium Innovative Form Design */
.contact-form-card {
    position: relative;
    z-index: 10;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 
        0 30px 60px rgba(10, 25, 47, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.form-top-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-end;
}

#innovativeForm {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(10, 25, 47, 0.12);
}

.form-header-group {
    margin-bottom: 0;
}

.form-header-group h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.form-header-group p {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

/* Floating Label Groups */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 10px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 18px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    border-radius: 0;
    font-family: inherit;
    font-size: 1.05rem;
    color: var(--primary-blue);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    outline: none;
}

.form-label {
    position: absolute;
    left: 0;
    top: 18px;
    font-size: 1.05rem;
    color: #94a3b8;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-weight: 500;
}

/* Animation for Floating Labels */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label,
.form-textarea:focus ~ .form-label,
.form-textarea:not(:placeholder-shown) ~ .form-label {
    top: -12px;
    font-size: 0.8rem;
    color: var(--primary-red);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-input:focus, .form-textarea:focus {
    border-bottom-color: var(--primary-red);
}

.form-textarea {
    height: 160px; /* Gently increased height */
    padding-top: 25px;
}

/* Form Trust Footer */
.form-trust-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-item svg {
    opacity: 0.7;
}

.privacy-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--primary-red);
}

/* Inquiry Type Chips */
.inquiry-type-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    opacity: 0.8;
}

.inquiry-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
}

.chip {
    padding: 10px 20px;
    background: #f1f5f9;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chip:hover {
    background: #e2e8f0;
    color: var(--primary-blue);
}

.chip.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(10, 25, 47, 0.2);
}

.form-submit-btn {
    width: 100%;
    padding: 22px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #b91c1c 100%);
    color: var(--white);
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.3);
}

.form-submit-btn:hover {
    transform: scale(1.02) translateY(-3px);
    box-shadow: 0 20px 40px rgba(211, 47, 47, 0.4);
}

.form-submit-btn svg {
    transition: transform 0.4s ease;
}

.form-submit-btn:hover svg {
    transform: translate(5px, -5px);
}

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 20px;
    }
    
    .contact-title-main {
        font-size: 2.5rem;
    }
    
    .contact-form-container {
        padding: 40px 30px;
    }
    
    .contact-image-card {
        height: 250px;
    }
}
    
    

/* Developer Signature Styling */
.developer-signature {
    font-size: 0.6rem;
    opacity: 0.35;
    font-style: italic;
    letter-spacing: 0.8px;
    margin-left: 12px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
    text-transform: uppercase;
    font-weight: 300;
    vertical-align: middle;
}

.developer-signature:hover {
    opacity: 1;
    color: var(--primary-red);
    letter-spacing: 1.2px;
    transform: translateX(4px);
}

.developer-signature span {
    font-weight: 800;
    color: var(--primary-red);
}

@media (max-width: 768px) {
    .developer-signature {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
}

/* --- Crossfade Slider System --- */
.card-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
}

.product-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 3.2s ease-in-out;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.0);
}

.product-card-image.active {
    opacity: 1;
    z-index: 2;
}

/* Sophisticated Ken Burns zoom on active hovered image */
.product-card-image.active.zoom {
    transform: scale(1.12);
}

/* --- Mobile Desktop-Aesthetic Scaling (No Hamburger) --- */
@media (max-width: 992px) {
    .header-container {
        padding: 0 10px;
    }
    .logo img {
        height: 60px;
        max-width: 120px;
    }
    .nav-list {
        gap: 12px;
        flex-wrap: nowrap;
    }
    .nav-list a {
        font-size: 0.85rem;
        white-space: nowrap;
    }
    .nav-list a.btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 5px;
    }
    .logo {
        padding: 5px 8px;
        height: auto;
        border-radius: 0 0 10px 10px;
    }
    .header.minified .logo {
        height: auto;
        padding: 5px;
    }
    .logo img, .header.minified .logo img {
        height: 35px;
        max-width: 80px;
    }
    .nav-list {
        gap: 5px;
    }
    .nav-list a {
        font-size: 0.55rem;
    }
    .nav-list a.btn {
        padding: 5px 8px;
        font-size: 0.55rem;
    }
    .slide-title {
        font-size: 1.8rem;
    }
    .slide-subtitle {
        font-size: 0.8rem;
    }
    .slide-desc {
        font-size: 0.85rem;
    }
    .footer-grid {
        gap: 15px;
        grid-template-columns: 1fr 1fr; /* Stack into 2x2 grid for readability */
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}
