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

:root {
    --primary-color: #d32f2f;
    --primary-dark: #b71c1c;
    --secondary-color: #1a237e;
    --dark-bg: #0f1419;
    --darker-bg: #000000;
    --light-bg: #f5f5f5;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-dark: #333333;
    --border-color: #333333;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: var(--darker-bg);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding-top:0px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top:15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo i {
    color: var(--primary-color);
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-color);
    color: var(--text-primary);
    padding: 7px 17px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--darker-bg);
    padding: 20px;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin: 15px 0;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,150 600,300 T1200,300 L1200,600 L0,600 Z" fill="%23d32f2f" opacity="0.05"/></svg>');
    background-size: cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 60px;
    font-weight: 300;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.hero-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.hero-feature:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.hero-feature i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-feature h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-feature p {
    color: var(--text-secondary);
    font-size: 16px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

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

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--darker-bg);
}

.btn-large {
    padding: 18px 45px;
    font-size: 20px;
}

/* Parts Section */
.parts-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.part-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.part-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.part-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.part-card:hover .part-icon {
    transform: scale(1.1) rotate(5deg);
}

.part-icon i {
    font-size: 36px;
    color: white;
}

.part-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.part-card p {
    color: #666;
    font-size: 14px;
}

.parts-cta {
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.parts-cta h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.parts-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.why-us-section .section-header h2 {
    color: var(--text-primary);
}

.why-us-section .section-header p {
    color: var(--text-secondary);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.why-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    transform: scale(1.15) rotate(-5deg);
}

.why-icon i {
    font-size: 42px;
    color: white;
}

.why-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-content .btn-primary {
    background: var(--darker-bg);
    color: var(--text-primary);
}

.cta-content .btn-primary:hover {
    background: var(--dark-bg);
    transform: translateY(-2px);
}

.cta-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.cta-hours i {
    font-size: 20px;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    color: var(--text-primary);
    padding: 80px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--primary-color);
    font-size: 28px;
}

.footer-about h4,
.footer-column h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-about p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.location {
    margin-bottom: 30px;
}

.location h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location h5 i {
    color: var(--primary-color);
}

.location p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        display: none;
    }

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

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .parts-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        /*max-width: 300px;*/
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .header-content {
        padding: 10px 0;
    }

    .logo {
        font-size: 20px;
    }

    .logo i {
        font-size: 24px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .parts-grid {
        grid-template-columns: 1fr;
    }

    .parts-cta {
        padding: 40px 20px;
    }

    .parts-cta h3 {
        font-size: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.part-card,
.why-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}



.terms-section {
    padding: 80px 0 80px;
}
.terms-section h1 {
    font-size: 36px;
    margin-bottom: 40px;
}
 
.terms-section h2 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}
 
.terms-section p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}
 
.terms-section a {
    color: var(--primary);
    text-decoration: none;
}
 
.terms-section a:hover {
    text-decoration: underline;
}
 
.col-12 {
    padding: 20px;
    margin-top: 98px;
}
 
 
/*  Auto Parts Dropdown ── */
.vazz-dropdown-wrap {
    position: relative;
}
 
.vazz-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-primary) !important;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}
 
.vazz-dropdown-trigger:hover {
    color: var(--primary-color) !important;
}
 
/* Hide the underline pseudo-element inherited from .nav-menu a */
.vazz-dropdown-trigger::after {
    display: none !important;
}
 
.vazz-chevron {
    font-size: 11px;
    color: var(--text-secondary);
    transition: transform 0.3s ease, color 0.3s ease;
}
 
.vazz-dropdown-wrap.open .vazz-chevron {
    transform: rotate(180deg);
    color: var(--primary-color);
}
 
/* Dropdown panel */
.vazz-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #111820;
    border: 1px solid rgba(211, 47, 47, 0.3);
    border-radius: 12px;
    min-width: 210px;
    padding: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255,255,255,0.04);
    z-index: 2000;
 
    /* Scrollable after 5 items */
    max-height: calc(5 * 47px + 16px);
    overflow-y: auto;
    overflow-x: hidden;
}
 
/* Desktop scrollbar */
.vazz-dropdown-menu::-webkit-scrollbar {
    width: 4px;
}
.vazz-dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
}
.vazz-dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(211, 47, 47, 0.5);
    border-radius: 4px;
}
.vazz-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
/* Arrow tip */
.vazz-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #111820;
    border-top: 1px solid rgba(211, 47, 47, 0.3);
    border-left: 1px solid rgba(211, 47, 47, 0.3);
    transform: translateX(-50%) rotate(45deg);
}
 
/* Open state */
.vazz-dropdown-wrap.open .vazz-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}
 
/* Dropdown items */
.vazz-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}
 
/* Override the nav-menu a::after underline for dropdown items */
.vazz-dropdown-menu li a::after {
    display: none !important;
}
 
.vazz-dropdown-menu li a:hover {
    color: var(--text-primary);
    background: rgba(211, 47, 47, 0.12);
}
 
.vazz-dd-icon {
    width: 28px;
    height: 28px;
    background: rgba(211, 47, 47, 0.12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: var(--transition);
}
 
.vazz-dropdown-menu li a:hover .vazz-dd-icon {
    background: var(--primary-color);
    color: #fff;
}
 
/* ── Mobile Auto Parts Dropdown ── */
.mobile-vazz-wrap {
    margin: 0 !important;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
 
.mobile-vazz-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* width: 100%; */
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    padding: 15px 0;
    cursor: pointer;
    text-align: left;
}
 
.mobile-vazz-trigger:hover {
    color: var(--primary-color);
}
 
.mobile-vazz-chevron {
    font-size: 13px;
    color: var(--text-secondary);
    transition: transform 0.3s ease, color 0.3s ease;
    pointer-events: none;
}
 
.mobile-vazz-wrap.open .mobile-vazz-chevron {
    transform: rotate(180deg);
    color: var(--primary-color);
}
 
.mobile-vazz-submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
}
 
.mobile-vazz-wrap.open .mobile-vazz-submenu {
    /* Show exactly 5 items, scroll the rest */
    max-height: calc(5 * 47px + 16px);
    overflow-y: auto;
    padding: 6px 0 10px;
}
 
/* Mobile scrollbar */
.mobile-vazz-submenu::-webkit-scrollbar {
    width: 4px;
}
.mobile-vazz-submenu::-webkit-scrollbar-track {
    background: transparent;
}
.mobile-vazz-submenu::-webkit-scrollbar-thumb {
    background: rgba(211, 47, 47, 0.5);
    border-radius: 4px;
}
.mobile-vazz-submenu::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
 
.mobile-vazz-submenu li a {
    display: flex !important;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary) !important;
    text-decoration: none;
    font-size: 15px !important;
    font-weight: 500;
    padding: 10px 14px !important;
    border-radius: 8px;
    transition: var(--transition);
    margin: 0 !important;
}
 
.mobile-vazz-submenu li a:hover {
    color: var(--text-primary) !important;
    background: rgba(211, 47, 47, 0.12);
}
 
.mobile-vazz-submenu li a i {
    width: 18px;
    text-align: center;
    color: var(--primary-color);
    font-size: 13px;
    flex-shrink: 0;
}
 
 
/* ===== FLOATING CALL BUTTON ===== */
.font-custom{font-size:18px}
.fixed-call-wrapper{position:fixed;bottom:30px;z-index:9999;display:flex;align-items:center;justify-content:center}
.floating-call-btn{background:var(--primary-color);color:#fff;text-decoration:none;padding:15px 25px;border-radius:50px;display:flex;align-items:center;gap:12px;font-weight:800;font-family:"Rajdhani",sans-serif;font-size:1.1rem;box-shadow:0 10px 25px rgb(211 47 47/.4);transition:all 0.3s ease;position:relative;z-index:10}
.floating-call-btn i{font-size:1.3rem;animation:phone-shake 2s infinite}
.floating-call-btn:hover{transform:scale(1.05) translateY(-5px);background:#fff;color:var(--primary-color);box-shadow:0 15px 30px rgb(0 0 0/.2)}
.pulse-ring,.pulse-ring-delayed{position:absolute;width:100%;height:100%;border-radius:50px;background:var(--primary-color);opacity:.6;z-index:5;animation:pulse-expand 3s ease-out infinite}
.pulse-ring-delayed{animation-delay:1.5s}
@keyframes pulse-expand{0%{transform:scale(1);opacity:.6}100%{transform:scale(1.5,2);opacity:0}}
@keyframes phone-shake{0%,90%,100%{transform:rotate(0)}92%{transform:rotate(15deg)}94%{transform:rotate(-15deg)}96%{transform:rotate(10deg)}98%{transform:rotate(-10deg)}}
@media (max-width:768px){.fixed-call-wrapper{bottom:20px}.call-text{display:none}.floating-call-btn{padding:18px;border-radius:50%}}




.vaz-rf-hero-section {

    position: relative;

    width: 100%;

    min-height: 60vh;

    display: flex;

    align-items: center;

    background: #191007c4;

    overflow: hidden;

    padding: 150px 0;

}
 
.vaz-rf-bg-image, .vaz-rf-overlay {

    position: absolute;

    top: 0;

    left: 0;

    height: 100%;

    width: 100%;

    z-index: -10;

}
 
.vaz-rf-bg-image, .vaz-rf-overlay {

    position: absolute;

    top: 0;

    left: 0;

    height: 100%;

    width: 100%;

}
 
 
.vaz-rf-status {

    display: inline-flex;

    align-items: center;

    background: rgb(0 242 255 / .1);

    border: 1px solid;

    padding: 8px 16px;

    border-radius: 50px;

    margin-bottom: 20px;

}
 
 
.vaz-rf-dot {

    width: 8px;

    height: 8px;

    background: #00f2ff;

    border-radius: 50%;

    margin-right: 10px;

    box-shadow: 0 0 10px #00f2ff;

}
 
.vaz-rf-title {

    color: #fff !important;

    font-size: clamp(2.2rem, 5vw, 3.8rem);

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 20px;

}
 
.vaz-rf-desc {

    color: #cbd5e1 !important;

    font-size: 1.1rem;

    max-width: 500px;

    margin-bottom: 30px;

}
 
.hero-cta-group {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

    animation: 1s ease-out .6s both cta-entrance;

}
 
.btn-primary-hero {

    background: linear-gradient(135deg, var(--secondary-blue) 0, var(--primary-blue) 100%);

    border-radius: 50px;

    border: none;

    box-shadow: 0 10px 30px rgb(13 110 253 / .3);

    overflow: hidden;

}
 
.btn-outline-hero, .btn-primary-hero {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--pure-white);

    padding: 16px 32px;

    font-weight: 700;

    font-size: 16px;

    text-decoration: none;

    transition: .3s;

}
 
.vaz-rf-card {

    background: #fff !important;

    padding: 35px;

    border-radius: 20px;

    box-shadow: 0 25px 50px -12px rgb(0 0 0 / .5);

    width: 100%;

    max-width: 450px;

    margin-left: auto;

}
 
.error-msg {

    display: block;

    color: #ff0000;

    font-size: 11px;

    margin-top: 12px;

    margin-bottom: 10px;

    height: 12px;

    font-weight: 500;

}
 
.vaz-rf-input {

    width: 100%;

    background: #f8fafc !important;

    border: 1px solid #e2e8f0 !important;

    border-radius: 8px !important;

    padding: 12px 15px !important;

    color: #1e293b !important;

    /*margin-bottom: 12px;*/

    font-size: .95rem;

}
 
.vaz-rf-submit {

    width: 100%;

    background: #0f172a !important;

    border: none;

    padding: 15px;

    border-radius: 8px;

    font-weight: 700;

    cursor: pointer;

    transition: .3s;

}

.feature-card:hover h5, .feature-card:hover p, .vaz-rf-submit {

    color: #fff !important;

}

.desktop-menu ul li a, .mobile-menu ul li a, .section-title h2, .submit-btn, .vaz-rf-submit, li.nav-item {

    text-transform: uppercase;

}
 
 
.iti {

        width: 100%;

    }
 
    /* Ensures phone input fills the column */

    .error-msg {

        display: block;

        color: #ff0000;

        font-size: 11px;

        margin-top: 12px;

        /* Pulls the message up closer to the input */

        margin-bottom: 10px;

        height: 12px;

        font-weight: 500;

    }
 
    .form-control.is-invalid {

        border-color: #ff5e91 !important;

    }
 
    #customer_phone {

        padding-left: 64px !important;

    }

    .custom-header .custom-dropdown{

            height: 200px;

    overflow-y: auto;

    }
 
 
    .vaz-rf-title span {

    color: #ff6b35e6 !important;

}
 
@media (max-width: 991px) {

    .vaz-rf-card {

        margin: 40px auto 0;

    }

    .vaz-rf-status {

        display: flex;

        width: max-content;

        margin: 0 auto 20px;

    }

}
 
@media (max-width: 991px) {

    .vaz-rf-desc, .vaz-rf-title {

        text-align: center;

        margin-left: auto;

        margin-right: auto;

    }

}
 
@media (max-width: 991px) {

    .vaz-rf-desc, .vaz-rf-title {

        text-align: center;

        margin-left: auto;

        margin-right: auto;

    }

    .center-button{

        display: flex;

        justify-content: center; 

        align-items: center;

    }

}
 
@media (max-width: 768px) {

    .btn-outline-hero, .btn-primary-hero {

        width: 100%;

        justify-content: center;

    }

}
 
 
    

    .iti__arrow{

        display: none !important;

    }


    /* Container positioned to the LEFT */

.vaz-floating-support-left {

    position: fixed;

    bottom: 20px;

    left: 20px;

    display: flex;

    flex-direction: column;

    gap: 12px;

    z-index: 9999;

}
 
/* Base button styles */

.vaz-float-btn-left {

    display: flex;

    align-items: center;

    text-decoration: none;

    color: #fff;

    padding: 12px 18px;

    border-radius: 50px;

    font-weight: 600;

    font-size: 14px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.2);

    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    white-space: nowrap;

}
 
/* WhatsApp & Phone Colors */

.vaz-float-btn-left.whatsapp { background: #25D366; }

.vaz-float-btn-left.phone { background: #0078d4; }
 
.vaz-float-btn-left i { font-size: 18px; margin-right: 8px; }
 
/* Online Pulse Dot */

.online-indicator {

    width: 8px;

    height: 8px;

    background-color: #fff;

    border-radius: 50%;

    margin-right: 10px;

    position: relative;

}
 
.online-indicator::after {

    content: '';

    position: absolute;

    width: 100%;

    height: 100%;

    background: inherit;

    border-radius: 50%;

    animation: pulse-live 1.5s infinite;

}
 
@keyframes pulse-live {

    0% { transform: scale(1); opacity: 1; }

    100% { transform: scale(2.5); opacity: 0; }

}
 
.vaz-float-btn-left:hover {

    transform: scale(1.05);

    color: #fff;

}
 
/* Mobile Responsiveness */

@media (max-width: 768px) {

    .vaz-floating-support-left {

        bottom: 15px;

        left: 10px;

        right: 10px; /* Stretch across bottom for mobile */

        flex-direction: row;

    }

    .vaz-float-btn-left {

        flex: 1;

        justify-content: center;

        padding: 15px 5px;

        font-size: 13px;

    }

}
 
img.vaz-rf-bg-image {

    object-fit: cover;

}


@media (max-width:968px){
   .nav.nav{
       display:none;
   }
    
}

@media (max-width:320px){
   .cta-button{
       display:none;
   }
    
}
 
