
.testimonials {
    position: relative;
    padding: 80px 0;
    background-color: var(--light-blue);
}

.testimonials::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 5rem;
    color: rgba(0, 51, 102, 0.08);
    position: absolute;
    top: 30px;
    left: 10%;
    pointer-events: none;
}
.brands-carousel {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.brand-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
    transition: transform 0.3s ease;
}

.brand-logo {
    width: 120px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: filter 0.3s ease;
    filter: grayscale(40%);
}

.brand-item:hover {
    transform: translateY(-6px);
}

.brand-item:hover .brand-logo {
    filter: none;
}
.contact {
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, rgba(0, 102, 204, 0), rgba(0, 102, 204, 0.6), rgba(0, 102, 204, 0));
}
.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    border: var(--border-strong);
    border-radius: inherit;
    pointer-events: none;
}
.nav-item.dropdown.open > .dropdown-toggle,
.nav-item.dropdown.open > a {
    color: var(--primary-blue);
}
.search-match {
    outline: 3px solid rgba(0, 102, 204, 0.45);
    outline-offset: 4px;
}
.products-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    color: var(--gray-medium);
}

.products-empty-state i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}
.footer-wave {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: transparent;
}

.footer-wave svg {
    display: block;
    width: calc(150% + 1.3px);
    height: 120px;
}

.footer-wave path {
    fill: var(--dark-blue);
}
.counter-card .counter-value::after {
    content: '+';
    font-size: 1.25rem;
    margin-left: 0.25rem;
    color: var(--primary-blue);
}
.stock-indicator.contact {
    background: rgba(255, 193, 7, 0.9);
    color: #533200;
}
.partners-strip {
    padding: 90px 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.08), rgba(0, 102, 204, 0.1));
}

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

.partner-card {
    background: var(--white);
    border: var(--border-soft);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.partner-card i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.partner-card h3 {
    font-size: 1.2rem;
    color: var(--dark-blue);
}

.partner-card p {
    color: var(--gray-medium);
    margin: 0;
}
.counter-section {
    padding: 100px 0;
}

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

.counter-card {
    background: var(--white);
    border: var(--border-soft);
    border-radius: 18px;
    padding: 2.5rem 2rem;
    text-align: center;
}

.counter-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(0, 102, 204, 0.12);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.25rem;
}

.counter-value {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
}

.counter-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-medium);
    font-weight: 600;
}
.services-section {
    position: relative;
    padding: 110px 0;
}

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

.service-block4 {
    background: var(--white);
    border: var(--border-soft);
    border-radius: 18px;
    padding: 2.5rem 2rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(0, 102, 204, 0.12);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.service-block4 h3 {
    font-size: 1.25rem;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
}

.service-block4 p {
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-blue);
    position: relative;
    padding-right: 1.5rem;
}

.service-link::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.service-link:hover::after {
    transform: translateX(6px);
}

.service-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.service-wave path {
    fill: var(--white);
}
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.about-media img {
    width: 100%;
    height: auto;
    border-radius: inherit;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.92);
    padding: 0.85rem 1.2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.about-badge i {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.about-badge span {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.about-badge p {
    font-size: 0.75rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-medium);
}

.about-content p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.highlight-item h3 {
    margin-bottom: 0.35rem;
    color: var(--dark-blue);
    font-size: 1.15rem;
}

.highlight-item p {
    margin: 0;
    color: var(--gray-medium);
}

.about-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.parallax-section {
    position: relative;
    overflow: hidden;
    background-position: center var(--parallax-offset, 50%);
    background-size: cover;
}

.parallax-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    background-attachment: fixed;
    transform: translateZ(0);
    will-change: transform;
    z-index: -2;
}

.parallax-item {
    will-change: transform;
}

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-weight: 700;
    color: var(--primary-blue);
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}

.section-header.align-left {
    text-align: left;
    margin-left: 0;
}
/* CSS Variables for easy color scheme modification */
:root {
    --primary-blue: #0066CC;
    --dark-blue: #003366;
    --light-blue: #F0F8FF;
    --white: #FFFFFF;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;
    --shadow: 0 2px 10px rgba(0, 102, 204, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 102, 204, 0.2);
    --border-soft: 1px solid rgba(0, 51, 102, 0.12);
    --border-strong: 1px solid rgba(0, 51, 102, 0.2);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    padding-top: 92px;
}

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

.white-bg {
    background-color: var(--white);
}

.blue-gray-bg {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 51, 102, 0.08));
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}



.hover-bg-blue {
    position: relative;
    transition: color 0.3s ease;
}

.hover-bg-blue::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 102, 204, 0.08);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hover-bg-blue:hover::after {
    opacity: 1;
}

.hover-footer {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.hover-footer::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.hover-footer::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--white);
    opacity: 0.6;
    transition: width 0.3s ease;
}

.hover-footer:hover::before {
    width: 100%;
}

.hover-footer:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

/* Preloader styles removed — saved in version control. If you want the preloader back,
   restore the .preloader rules which set a fullscreen fixed element with a spinner. */

.header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    padding: 0.75rem 0;
    transition: transform 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.header.sticky {
    backdrop-filter: blur(8px);
}

.header.hide {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(2px 2px 2px #ddd);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.logo h1 {
    color: var(--primary-blue);
    font-size: 1.35rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.logo-subtitle {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gray-medium);
    letter-spacing: 0.18em;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: none;
}

.nav-link i {
    font-size: 0.65rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown-toggle {
    cursor: pointer;
    font: inherit;
    color: inherit;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 220px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 100;
}

.nav-item:hover .dropdown-menu,
.nav-item.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.65rem 1.25rem;
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease, padding-left 0.3s ease;
    letter-spacing: 0.05em;
}

.dropdown-link:hover {
    background: rgba(0, 102, 204, 0.08);
    padding-left: 1.5rem;
    color: var(--primary-blue);
}

.dropdown-toggle:focus,
.dropdown-link:focus {
    outline: 2px solid rgba(0, 102, 204, 0.35);
    outline-offset: 4px;
    color: var(--primary-blue);
}
.stock-indicator.contact {
    background: rgba(255, 193, 7, 0.9);
    color: #2f1f00;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header-search {
    display: none;
}

.social-media {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-link {
    color: var(--gray-medium);
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

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

.social-media-footer .social-link {
    color: var(--white);
    opacity: 0.8;
    font-size: 1.5rem;
}

.social-media-footer .social-link:hover {
    opacity: 1;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Mobile Menu Active State */
.nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
    z-index: 1200;
    padding: 1.5rem;
    border-radius: 0 0 16px 16px;
    border: var(--border-soft);
    gap: 1rem;
}

.nav.active .nav-link {
    padding: 0.75rem 0;
    border-bottom: var(--border-soft);
}

.nav.active .nav-item:last-child .nav-link {
    border-bottom: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 3rem;
    overflow: hidden;
}

/* Hero theme variables (tweak these to adjust overlay strength & colors) */
:root {
    --hero-overlay: rgba(0,0,0,0.45); /* dark overlay opacity (40-50% recommended) */
    --hero-overlay-bottom: rgba(0,0,0,0.55); /* slightly stronger at the bottom */
    --hero-accent: #002395; /* industrial blue accent */
}

.rev-slider {
    position: relative;
    min-height: 100vh;
}

.rev-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    align-items: center;
}

.rev-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.rev-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    /* use the CSS variable set by JS (see script.js) so images are responsive */
    background-image: var(--slide-bg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    filter: grayscale(5%);
    transform: scale(1.05);
    transition: transform 1.5s ease;
}

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

.rev-slide::after {
    /* dark overlay to dim the background while allowing image detail to show through */
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--hero-overlay) 0%, var(--hero-overlay-bottom) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.slide-overlay {
    /* subtle vignette to gently lift center content — kept very light */
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, transparent 50%);
    z-index: 2;
}

.hero-layout {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
    padding: 6rem 0 4rem;
}

/* Hero content styling for readability */
.hero-content {
    color: #ffffff; /* ensure strong contrast over dark overlay */
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.hero-subheading {
    display: block;
    font-weight: 600;
    color: #cfe7ff;
    letter-spacing: 0.08em;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.hero-layout h1, .hero-layout h2 {
    margin: 0 0 1rem 0;
    font-weight: 700;
    line-height: 1.05;
    color: #fff;
}

.hero-layout p {
    color: rgba(255,255,255,0.92);
    max-width: 720px;
}

/* CTA buttons: industrial palette + smooth hover */
.cta-button, .btn-primary {
    display: inline-block;
    background: var(--hero-accent);
    color: #fff;
    padding: 0.9rem 1.4rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(2,35,80,0.18);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cta-button:hover, .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(2,35,80,0.22);
    background: #003f9a; /* slightly brighter on hover */
}

.cta-button.ghost, .cta-button.ghost.btn-primary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.95);
}

.cta-button.ghost:hover {
    background: rgba(255,255,255,0.06);
}

/* subtle entrance animation for content */
.rev-slide.active .hero-content {
    animation: heroFadeIn 800ms ease both;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Make sure media side images are non-intrusive */
.hero-media img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
        padding: 4rem 0;
        text-align: center;
    }

    .hero-content {
        max-width: 640px;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-media {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .hero-content h1,
    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

.hero-content {
    color: var(--white);
}

.hero-subheading {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.hero-subheading::before {
    content: '';
    position: absolute;
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
}

.hero-content h1,
.hero-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 999px;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.35);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 102, 204, 0.45);
}

.cta-button.ghost {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.75);
    color: var(--white);
    box-shadow: none;
}

.hero-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.hero-media-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    padding: 2rem;
    border-radius: inherit;
    overflow: hidden;
}

.hero-media img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.35));
}

.gradient-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 102, 204, 0.35), rgba(0, 51, 102, 0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gradient-overlay:hover::after {
    opacity: 1;
}

.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

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

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.25);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-wave path {
    fill: var(--white);
}

/* Sectors Section */
.sectors {
    padding: 100px 0;
    background-color: var(--gray-light);
}

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

.sector-card {
    background-color: var(--white);
    border: var(--border-soft);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.sector-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 102, 204, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.sector-image {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sector-card:hover .sector-image img {
    transform: scale(1.05);
}

.sector-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-blue);
    font-size: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.sector-card h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

/* Brands Section */
.brands {
    padding: 80px 0;
}

.brand-item h3 {
    color: var(--gray-dark);
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-blue);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    text-align: center;
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

.testimonial-author h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-medium);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--primary-blue);
}

/* Products Section */
.products {
    padding: 100px 0;
}

.products-hero {
    /* Hero with responsive background image */
    position: relative;
    padding: 120px 0 80px;
    /* Use a single background image (cover) and control dimming with ::before overlay */
    background: url('assets/products/automotive-seal.png') center/cover no-repeat;
    color: var(--white);
    -webkit-font-smoothing: antialiased;
}

.products-hero::before {
    /* Dark overlay to improve text contrast while keeping the image visible.
       Adjust the alpha to show more/less of the image (0.30 - 0.55 typically). */
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* ~45% dimming */
    z-index: 0;
}

.products-hero .container {
    position: relative;
    z-index: 1;
}

/* Hero image fallback for small screens: show inline image instead of relying solely on background */
.products-hero .hero-image {
    display: none; /* desktop: hidden */
    margin-top: 1.5rem;
}

.products-hero .hero-image img {
    width: 100%;
    height: auto;
    max-width: 520px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.products-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.products-hero p {
    max-width: 640px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.breadcrumb i {
    font-size: 0.75rem;
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.75rem;
    border: 2px solid var(--primary-blue);
    background-color: transparent;
    color: var(--primary-blue);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(0, 102, 204, 0.25);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card.featured {
    border: 1px solid rgba(0, 102, 204, 0.25);
    box-shadow: 0 18px 40px -18px rgba(0, 51, 102, 0.4);
}

.product-card .product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--gray-medium);
}

.product-card .product-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.product-card .product-meta i {
    color: var(--primary-blue);
}

.product-card .product-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.product-card .product-actions .btn {
    flex: 1;
    justify-content: center;
}

.product-category-section {
    padding: 90px 0;
}

.product-category-section:nth-child(even) {
    background: var(--white);
}

.product-category-section:nth-child(odd) {
    background: var(--light-blue);
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.category-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--dark-blue);
}

.category-header p {
    max-width: 600px;
    margin: 0;
    color: var(--gray-medium);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.category-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.category-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.category-card .btn {
    align-self: flex-start;
}

.product-faq {
    padding: 80px 0 120px;
    background: linear-gradient(180deg, rgba(0, 102, 204, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
}

.product-faq h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.85rem;
    color: var(--dark-blue);
}

.faq-item p {
    margin: 0;
    color: var(--gray-medium);
}

.product-cta-banner {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(0, 102, 204, 0.8));
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/products/bearing-1.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.product-cta-banner h2 {
    position: relative;
    z-index: 1;
}

.product-cta-banner p,
.product-cta-banner .btn-group {
    position: relative;
    z-index: 1;
}

.product-cta-banner .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-cta-banner .btn-group .btn {
    min-width: 180px;
}

.product-downloads {
    padding: 90px 0;
}

.product-downloads h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.download-card {
    background: var(--white);
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.download-card i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.download-card strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--dark-blue);
}

.download-card span {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.products-page .products-grid {
    margin-top: 2.5rem;
}

.products-page .product-card {
    padding: 2.25rem 2rem;
}

.products-page .product-card .product-description {
    min-height: 72px;
}

.products-page .filter-btn {
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
}

.product-inquiry-panel {
    margin-top: 3rem;
}

.product-inquiry-panel .panel-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.product-inquiry-panel .panel-card {
    background: var(--white);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-inquiry-panel .panel-card i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.product-inquiry-panel .panel-card a {
    font-weight: 600;
    color: var(--primary-blue);
}

.product-inquiry-panel .panel-card a:hover {
    text-decoration: underline;
}

.product-filters.sticky {
    position: sticky;
    top: 105px;
    z-index: 20;
}

@media (max-width: 992px) {
    .products-hero {
        padding: 90px 0 60px;
        /* better crop on smaller screens */
        background-position: center top;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-cta-banner {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .products-hero {
        padding: 70px 0 50px;
        background-position: center top;
    }

    /* Slightly increase overlay on small screens to keep text legible over busy images */
    .products-hero::before {
        background: rgba(0,0,0,0.52);
    }

    /* show the inline hero image on small screens for better clarity */
    .products-hero .hero-image {
        display: block;
    }

    .product-cta-banner .btn-group {
        flex-direction: column;
        align-items: stretch;
    }
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: var(--border-soft);
}

.product-info {
    flex: 1;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-img {
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 1rem;
}

.product-img:hover img {
    transform: scale(1.05);
}

.product-img i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.product-actions .btn {
    width: 100%;
    justify-content: center;
}

.product-details {
    margin: 1.5rem 0;
}

.product-details h3 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.product-details ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.product-details li {
    margin-bottom: 0.25rem;
    color: var(--gray-dark);
}

.product-actions-modal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.product-actions-modal .btn {
    justify-content: center;
}

/* Cross-Selling Styles */
.cross-sell-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.cross-sell-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cross-sell-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.cross-sell-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.cross-sell-item:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.cross-sell-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.cross-sell-placeholder {
    width: 100%;
    height: 80px;
    background: var(--light-blue);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
    font-size: 2rem;
}

.cross-sell-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
    line-height: 1.3;
}

.cross-sell-price {
    font-size: 0.8rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.cross-sell-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.btn-sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    line-height: 1;
}

/* Stock Indicator */
.stock-indicator {
    display: none;
}

.stock-indicator.in-stock {
    background: rgba(40, 167, 69, 0.9);
    color: white;
}

.stock-indicator.out-of-stock {
    background: rgba(220, 53, 69, 0.9);
    color: white;
}

/* Product Applications */
.product-applications {
    font-size: 0.85rem;
    color: var(--gray-medium);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.product-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: center;
    padding: 0.5rem;
    background: var(--light-blue);
    border-radius: 6px;
}

/* Product Detail Modal */
.product-detail-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
    backdrop-filter: blur(5px);
}

.product-detail-modal {
    background: white;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.product-detail-header {
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}

.product-detail-header h2 {
    color: var(--dark-blue);
    font-size: 1.75rem;
}

.product-detail-close {
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-medium);
    line-height: 1;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.product-detail-close:hover {
    background: #f8f9fa;
    color: var(--dark-blue);
}

.product-detail-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.product-detail-image {
    position: relative;
}

.product-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.product-detail-placeholder {
    width: 100%;
    height: 300px;
    background: var(--light-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 4rem;
}

.product-detail-section {
    margin-bottom: 2rem;
}

.product-detail-section h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 0.5rem;
}

.applications-list {
    list-style: none;
    padding: 0;
}

.applications-list li {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    background: var(--light-blue);
    border-radius: 6px;
    border-left: 4px solid var(--primary-blue);
}

.specifications-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.specifications-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #e9ecef;
}

.specifications-table td:first-child {
    font-weight: 600;
    color: var(--dark-blue);
    width: 40%;
}

.product-detail-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
    padding: 1rem;
    background: var(--light-blue);
    border-radius: 8px;
}

.product-detail-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.related-products-section {
    padding: 2rem;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.related-products-section h3 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

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

.related-product-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.related-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.related-product-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.related-product-placeholder {
    width: 100%;
    height: 120px;
    background: var(--light-blue);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-size: 3rem;
}

.related-product-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.related-product-info p {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 400px;
    animation: slideInRight 0.3s ease;
}

.notification.notification-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.notification.notification-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.notification.notification-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    margin-left: auto;
    opacity: 0.7;
}

.notification-close:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--gray-light);
}

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

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-blue);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray-medium);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--white);
    border: var(--border-soft);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.contact-btn {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.contact-btn i {
    margin-right: 0.5rem;
}

.location-btn {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Map Section */
.map-section {
    padding: 80px 0;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.map {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Custom Map Embed Styles */
.custom-map-embed {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.custom-map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.location-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-card {
    background-color: var(--white);
    border: var(--border-soft);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.location-card.active {
    border-left: 4px solid var(--primary-blue);
}

.location-card h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.location-card p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

/* Footer */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

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

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

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

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-medium);
}

.close:hover {
    color: var(--dark-blue);
}

.quote-form {
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        display: none;
    }
    
    .social-media {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        padding: 4rem 0;
        text-align: center;
    }

    .hero-subheading::before {
        display: none;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-media {
        order: -1;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-carousel {
        flex-direction: column;
        gap: 1rem;
    }
    
    .product-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0.5rem 0;
        background: transparent;
    }

    .dropdown-link {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
} 