/* ================= ROOT VARIABLES ================= */
:root {
    --red: #d32f2f;
    --black: #0f0f0f;
    --white: #ffffff;
    --light: #f5f5f5;
}

/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--light);
    color: #222;
}

/* ================= HEADER / NAVBAR ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* LOGO */
.logo img {
    height: 45px;
    width: auto;
    display: block;
}

/* MENU LINKS */
.navbar nav {
    display: flex;
    align-items: center;
}

.navbar nav a,
.nav-dropdown {
    color: #333;
    margin-left: 35px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

.navbar nav a:hover,
.navbar nav a.active,
.nav-dropdown:hover .drop-btn {
    color: var(--red);
}

/* UNDERLINE EFFECT */
.navbar nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease, left 0.3s ease;
}

.navbar nav a:hover::after,
.navbar nav a.active::after {
    width: 100%;
    left: 0;
}

/* DROPDOWN MENU */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 10px 0;
    z-index: 999;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    margin: 0;
    padding: 12px 20px;
    color: #444;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
    transition: 0.2s;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f9f9f9;
    color: var(--red);
    padding-left: 25px;
}

.dropdown-menu a::after {
    display: none;
}

/* NAVBAR CALL BUTTON */
.nav-btn-call {
    background: var(--red);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
    margin-left: 40px !important;
}

.nav-btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
    color: #fff !important;
}

.nav-btn-call::after {
    display: none !important;
}

/* ================= PAGE HERO (Common for Sub-pages) ================= */
.page-hero {
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 50px;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: auto;
}

.hero-slider {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, #1a1a1a, #000);
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(211, 47, 47, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

/* SLIDER */
.slide {
    display: none;
    width: 100%;
    padding: 0 20px;
    animation: fadeZoom 0.5s ease-out;
}

.slide.active {
    display: block;
}

.hero-content {
    max-width: 800px;
    margin: auto;
}

.hero-slider h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero-slider p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-btn {
    background: var(--red);
    color: #fff;
    padding: 16px 45px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: #e53935;
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.5);
}

@keyframes fadeZoom {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Maintenance Mode Slide */
.maintenance-mode {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1f1c2c, #928DAB);
    /* Premium Dark Gradient */
    height: 100%;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
    text-align: center;
}



.maintenance-icon {
    font-size: 60px;
    color: #ffc107;
    /* Warning Yellow/Gold */
    margin-bottom: 20px;
    animation: floatIcon 3s ease-in-out infinite;
}

.maintenance-mode h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.maintenance-mode p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* SCROLL OFFSET */
.hero-slider,
.products,
.services {
    scroll-margin-top: 80px;
}

/* ================= PRODUCTS ================= */
.products {
    padding: 80px 20px;
    text-align: center;
    background: #fff;
}

.products h2 {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 600;
    color: #222;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.product-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(211, 47, 47, 0.08);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transition: 0.3s;
}

.product-card:hover .icon-box {
    background: var(--red);
}

.icon-box i {
    font-size: 32px;
    color: var(--red);
    transition: 0.3s;
}

.product-card:hover .icon-box i {
    color: #fff;
}

.product-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.product-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.product-card:hover .btn-text {
    gap: 12px;
}

/* ================= SERVICES ================= */
.services {
    padding: 80px 20px;
    background: #f7f7f7;
    text-align: center;
}

.services-container {
    max-width: 1200px;
    margin: auto;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 600;
    color: #222;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--red);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(211, 47, 47, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    transition: 0.3s;
}

.service-item:hover .service-icon {
    background: var(--red);
}

.service-icon i {
    font-size: 28px;
    color: var(--red);
    transition: 0.3s;
}

.service-item:hover .service-icon i {
    color: #fff;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.service-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ================= BRANDS ================= */
.brands {
    background: #f8f8f8;
    padding: 70px 20px;
    text-align: center;
}

.brands-container {
    max-width: 1100px;
    margin: auto;
}

.brands h2 {
    font-size: 36px;
    margin-bottom: 45px;
    color: #333;
    font-weight: 600;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.brand-item {
    background: #fff;
    padding: 35px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    font-size: 24px;
    font-weight: 700;
    color: #444;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default;
}

.brand-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--red);
    color: var(--red);
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .brands h2 {
        font-size: 28px;
    }
}

/* ================= FOOTER ================= */
.footer {
    background: #111;
    color: #b0b0b0;
    padding: 60px 0 0;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--red);
}

.footer-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-links {
    list-style: none;
}

.contact-links li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-links i {
    color: var(--red);
    font-size: 18px;
    margin-top: 3px;
}

.contact-links span,
.contact-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: 0.3s;
}

.contact-links a:hover {
    color: #fff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    border-bottom: 1px solid #222;
    padding-bottom: 8px;
}

.footer-links li:last-child {
    border: none;
}

.footer-bottom {
    background: #000;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    border-top: 1px solid #222;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}

/* ================= WHATSAPP ================= */
/* ================= FLOAT BUTTONS ================= */
.whatsapp-float,
.phone-float {
    position: fixed;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: all 0.3s ease;
}

.whatsapp-float {
    bottom: 20px;
    background: #25D366;
}

.phone-float {
    bottom: 90px;
    background: #007bff;
}

.whatsapp-float:hover,
.phone-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* ================= HAMBURGER MENU ================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    background: #000;
    /* black lines for white header */
    height: 3px;
    width: 25px;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}



.navbar nav.open~.hero-slider {
    display: none;
}




/* ================= ANIMATION ================= */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= MAP SECTION ================= */
.map-section {
    padding: 60px 20px;
    background: var(--white);
    text-align: center;
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.map-section p {
    color: #666;
    margin-bottom: 25px;
    font-size: 15px;
}

.map-container {
    max-width: 1100px;
    margin: auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.map-container iframe {
    width: 100%;
    height: 380px;
    border: 0;
}

.hero-slider button {
    transition: all 0.25s ease;
}

.hero-slider button:active {
    transform: scale(0.97);
}

@media (max-width: 768px) {
    .hero-slider button {
        width: 80%;
        max-width: 260px;
    }
}

/* ================= PRODUCT LISTING PAGES ================= */
.product-listing {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.product-intro-container {
    max-width: 800px;
    margin: 0 auto 50px;
}

.product-intro-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.product-intro-container p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.product-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.product-item {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.prod-image {
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 10px;
}

.prod-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-item:hover .prod-image img {
    transform: scale(1.05);
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--red);
    margin: 10px 0;
}



/* Icon Container */
.prod-icon {
    width: 100px;
    height: 100px;
    background: #fdf2f2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transition: 0.3s;
}

.prod-icon i {
    font-size: 42px;
    color: var(--red);
}

.product-item:hover .prod-icon {
    background: var(--red);
}

.product-item:hover .prod-icon i {
    color: #fff;
}

.product-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
}

/* Specs Badges */
.specs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.spec-badge {
    background: #f4f4f4;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #555;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.spec-badge i {
    color: var(--red);
    font-size: 13px;
}

/* Button */
.btn-enquire {
    padding: 10px 24px;
    border: 2px solid var(--red);
    color: var(--red);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
    background: transparent;
}

.btn-enquire:hover {
    background: var(--red);
    color: #fff;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.2);
}

/* ================= PRODUCT LISTING PAGES ================= */
.product-listing {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.product-intro-container {
    max-width: 800px;
    margin: 0 auto 50px;
}

.product-intro-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.product-intro-container p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}




.product-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
}

/* Specs Badges */
.specs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.spec-badge {
    background: #f4f4f4;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #555;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.spec-badge i {
    color: var(--red);
    font-size: 13px;
}

/* Button */
.btn-enquire {
    padding: 10px 24px;
    border: 2px solid var(--red);
    color: var(--red);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
    background: transparent;
}

.btn-enquire:hover {
    background: var(--red);
    color: #fff;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.2);
}

/* ================= CONTACT PAGE ================= */
.contact-section {
    padding: 0 20px 80px;
    /* Reduced top padding as Hero exists */
    background: #fff;
}

.contact-wrapper {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

/* LEFT INFO */
.contact-info {
    background: linear-gradient(135deg, #1a1a1a, #000);
    color: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.contact-info h3 {
    font-size: 24px;
    color: var(--red);
    margin-bottom: 30px;
    font-weight: 700;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item .icon {
    font-size: 22px;
    margin-top: 2px;
}

.contact-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #ddd;
}

.contact-info a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
}

/* RIGHT FORM */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #222;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 12px 15px 12px 45px;
    /* Space for icon */
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s;
    outline: none;
    background: #f9f9f9;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--black);
    background: #fff;
}

.contact-form textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    /* Space for icon */
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s;
    outline: none;
    background: #f9f9f9;
    resize: none;
    font-family: inherit;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}



.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14.5px;
    transition: 0.25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.12);
}

.contact-form button {
    margin-top: 10px;
    background: var(--red);
    color: #fff;
    padding: 14px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.4);
}

.contact-form button:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}


.contact-form button:hover {
    background: var(--black);
}

/* ================= MAP ================= */
.map-section {
    padding: 70px 20px;
    background: var(--white);
    text-align: center;
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.map-section p {
    color: #666;
    margin-bottom: 25px;
}

.map-container {
    max-width: 1100px;
    margin: auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 380px;
    border: 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-info ::selection {
    background: rgba(211, 47, 47, 0.8);
    color: #fff;
}

/* ===== CONTACT INFO ANIMATION ===== */
.contact-info {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    color: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.contact-info h3 {
    color: var(--red);
    margin-bottom: 25px;
    font-size: 22px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
    transition: transform 0.3s ease, background 0.3s ease;
    padding: 10px;
    border-radius: 10px;
}

.info-item:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.05);
}

.info-item .icon {
    font-size: 22px;
    color: var(--red);
    animation: pulse 2s infinite;
}

.info-item p {
    font-size: 14.5px;
    line-height: 1.6;
}

.info-item a {
    color: #fff;
    text-decoration: none;
}

.info-item a:hover {
    color: var(--red);
}

/* ICON PULSE */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.9;
    }
}

/* ===== SERVICES PAGE ===== */
.services-hero {
    background: linear-gradient(135deg, var(--red), #b71c1c);
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.services-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.services-hero p {
    font-size: 17px;
    opacity: 0.9;
}

/* SERVICES GRID */
.services-page {
    padding: 70px 20px;
    background: #fff;
}

.services-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card .icon {
    font-size: 36px;
    color: var(--red);
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.service-card p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
}

/* CTA */
.service-cta {
    background: var(--black);
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.service-cta h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.service-cta p {
    color: #ccc;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-call,
.btn-whatsapp {
    padding: 14px 34px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
}

.btn-call {
    background: var(--red);
    color: #fff;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-call:hover,
.btn-whatsapp:hover {
    opacity: 0.9;
}

/* MOBILE */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 34px;
    }
}

/* ================= PRODUCTS PAGE ================= */

.products-hero {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}

.products-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.products-hero p {
    font-size: 18px;
    opacity: 0.95;
}

/* MAIN LAYOUT */
/* [Removed conflicting legacy .product-listing grid] */

/* LEFT INFO */
.product-info {
    background: #f2f2f2;
    padding: 35px;
    border-radius: 14px;
}

.product-info h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.product-info p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

.btn-discover {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
}

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

/* BATTERY CARD */
.battery-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.battery-card:hover {
    transform: translateY(-8px);
}

.battery-card img {
    width: 100%;
    max-height: 160px;
    object-fit: contain;
    margin-bottom: 15px;
}

.battery-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.battery-card p {
    font-size: 14px;
    margin: 4px 0;
}

.green {
    color: #2e7d32;
    font-weight: 600;
}

/* CTA */
.product-cta {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.product-cta h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.product-cta p {
    margin-bottom: 20px;
}

.cta-buttons a {
    display: inline-block;
    margin: 0 10px;
    padding: 12px 26px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
}

.btn-call {
    background: #d32f2f;
    color: #fff;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

/* MOBILE */
@media (max-width: 900px) {
    .product-listing {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
}

/* ================= NAV DROPDOWN ================= */

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.drop-btn {
    cursor: pointer;
    font-weight: 500;
    color: #000;
    padding: 8px 0;
}

/* dropdown box */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    display: none;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    /* IMPORTANT */
}

/* dropdown links */
.dropdown-menu a {
    padding: 12px 16px;
    text-decoration: none;
    color: #111;
    font-size: 15px;
    display: block;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #d32f2f;
}

/* Desktop hover */
.nav-dropdown:hover .dropdown-menu {
    display: flex;
}

/* Mobile open */
.nav-dropdown.open .dropdown-menu {
    display: flex;
}

/* ================= MOBILE RESPONSIVENESS ================= */
@media (max-width: 900px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-btn-call {
        margin-left: 0 !important;
        margin-top: 15px;
        display: inline-block;
    }
}

@media (max-width: 768px) {

    /* TYPOGRAPHY */
    h1 {
        font-size: 32px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    h3 {
        font-size: 22px !important;
    }

    p {
        font-size: 15px !important;
    }

    /* LAYOUT SPACING */
    .products,
    .services,
    .brands,
    .product-listing,
    .contact-section,
    .map-section {
        padding: 50px 20px !important;
    }

    /* NAVBAR */
    .menu-toggle {
        display: flex;
        z-index: 2101;
    }

    .navbar nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        overflow-y: auto;
        transition: 0.3s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 2100;
        /* Higher than floating buttons */
    }

    .navbar nav.open {
        right: 0;
    }

    .navbar nav a {
        margin: 15px 0;
        font-size: 18px;
    }

    /* HERO SECTIONS */
    .hero-slider {
        height: 500px;
    }

    .hero-slider h1 {
        font-size: 36px !important;
    }

    .page-hero {
        padding: 60px 20px;
    }

    /* GRIDS */
    .product-grid,
    .service-grid,
    .brands-grid,
    .product-listing-grid,
    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .product-listing-grid {
        grid-template-columns: 1fr !important;
    }

    /* HIDE SIDE INFO ON MOBILE PRODUCTS PAGE IF NEEDED OR STACK IT */
    .product-info {
        order: -1;
        margin-bottom: 30px;
    }

    /* FOOTER */
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-col {
        min-width: 100%;
    }

    .bike-hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .hero-slider h1 {
        font-size: 28px !important;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .hero-image img {
        max-width: 100%;
    }
}