@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');


:root {
    --primary: #d32f2f;
    --primary-dark: #b71c1c;
    --accent: #d32f2f;
    --primary-blue: #d32f2f;
    --secondary-blue: #d32f2f;
    --accent-blue: #ff5252;
    --dark: #0f1419;
    --darker-bg: #000000;
    --pure-white: #f5f5f5;
    --light-bg: #f5f5f5;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-dark: #333333;
}

body {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin: 0;
    padding: 0;
}

/* ================= HEADER ================= */

.main-header {
    background: rgba(0, 0, 0, 0.95);
    padding: 25px 0;
    /* position: fixed; */
    z-index: 999;
    transition: 0.3s ease;
    width: 100%;
}

a {
    color: #ffffff;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ================= LOGO ================= */

.logo img {
    max-height: 69px;
    width: auto;
    transition: 0.3s ease;
}

@media (max-width: 992px) {
    .logo img {
        max-height: 50px;
    }
}

@media (max-width: 576px) {
    .logo img {
        max-height: 45px;
    }
}

/* ================= DESKTOP MENU ================= */

.desktop-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 28px;
}

.desktop-menu ul li a {
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    position: relative;
    transition: 0.3s ease;
}

/* Hover Underline Animation */
.desktop-menu ul li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 3px;
    bottom: -6px;
    left: 0;
    background: var(--primary);
    transition: 0.3s ease;
}

.desktop-menu ul li a:hover::after {
    width: 100%;
}

.desktop-menu ul li a:hover {
    color: var(--primary);
}

/* ================= RIGHT SECTION ================= */

.right-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info {
    display: flex;
    gap: 15px;
    font-size: 13px;
}

.contact-info span {
    color: var(--primary);
}

.contact-info i {
    color: var(--primary);
    margin-right: 5px;
}

.flags img {
    width: 60px;
    margin-left: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.flags img:hover {
    transform: scale(1.08);
}

/* ================= MOBILE TOGGLE ================= */

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
    .contact-info {
        display: none;
    }
}

@media (max-width: 992px) {
    .desktop-menu {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .flags {
        display: none;
    }
}

/* ================= MOBILE MENU ================= */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: #ffffff;
    padding: 30px 20px;
    box-shadow: 3px 0 20px rgba(0, 0, 0, 0.15);
    transition: 0.4s ease;
    z-index: 9999;
    transform: translateX(-100%);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.mobile-menu-header h5 {
    color: var(--primary);
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    margin-bottom: 18px;
}

.mobile-menu ul li a {
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    font-size: 14px;
    transition: 0.3s ease;
}

.mobile-menu ul li a:hover {
    color: var(--primary-dark);
}

body.no-scroll {
    overflow: hidden;
}

/* ================= HERO SECTION ================= */

.hero-section {
    padding: 80px 0;
    background-image: url('https://img.freepik.com/free-photo/man-try-fix-car-engine-problem-local-road_1150-10666.jpg?t=st=1770995719~exp=1770999319~hmac=ca17a7084b76181951c53302b25eded63be5e69c9cad71d71701f0ca2588c0bd&w=1480');
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 160px;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark) !important;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary);
}

.hero-description {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

/* Buttons */

.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    padding: 12px 22px;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s ease;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: #fff;
}

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 22px;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: #fff;
}

.btn-accent-custom {
    background: var(--primary);
    color: #fff;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 6px;
    transition: 0.3s ease;
}

.btn-accent-custom:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* Hero Image */

.hero-image img {
    max-width: 100%;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsive */

@media (max-width: 992px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
        padding-top: 120px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* Section Styling */
.why-choose-us {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.section-title h2 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Card Styling */
.feature-card {
    position: relative;
    background: #ffffff;
    border: none;
    border-radius: 15px;
    padding: 40px 30px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    z-index: 1;
}

.feature-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
    z-index: -2;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-card:hover .feature-card-bg {
    opacity: 1;
    transform: scale(1.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card h5,
.feature-card p,
.feature-card .icon-box {
    transition: all 0.3s ease;
}

.feature-card:hover h5,
.feature-card:hover p {
    color: #ffffff !important;
}

.feature-card:hover .icon-box {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

/* Icon Styling */
.icon-box {
    width: 70px;
    height: 70px;
    background: #f1f3f5;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 25px;
    font-size: 28px;
}

.type-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    padding: 40px 30px;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
    border: none;
    color: #ffffff;
}

.type-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 20, 25, 0.74), rgba(0, 0, 0, 0.90));
    z-index: 1;
}

.type-content {
    position: relative;
    z-index: 2;
}

.type-card:hover {
    transform: translateY(-10px);
}

/* Background Image Classes */
/* .bg-two-way {
    background-image: url('https://img.freepik.com/premium-photo/automotive-generator-armature-carbon-fiber_65301-378.jpg?w=1480');
}

.bg-three-way {
    background-image: url('https://img.freepik.com/premium-photo/close-up-side-view-bundle-wire-sticking-out-unidentified-plastic-equipment-manufacture_212944-11290.jpg?ga=GA1.1.621217989.1755096630&semt=ais_user_personalization&w=740&q=80');
}

.bg-oem {
    background-image: url('https://img.freepik.com/premium-photo/electric-motor-pump-control-valves-with-hoses-hydraulic-machine-close-up_533998-4266.jpg?w=1480');
}

.bg-aftermarket {
    background-image: url('https://img.freepik.com/free-photo/man-with-tools-truck-worker-uniform-faulty-truck_1157-46522.jpg?t=st=1771023297~exp=1771026897~hmac=0c84f077f99aefecbe9ee27b82db0c9d5777090cda296ce4b48b97bd519690b0&w=1480');
}

.bg-direct-fit {
    background-image: url('https://img.freepik.com/premium-psd/electric-motors-3d-rendering-isolated-transparent-background_823159-21117.jpg?w=1480');
} */

.type-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.feature-list {
    list-style: inside;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.feature-list li {
    margin-bottom: 8px;
}

/* Contact Strip */
.support-strip {
    background: var(--light-bg);
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    padding: 30px;
    margin-top: 50px;
    text-align: center;
}

.phone-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
    display: block;
    margin-top: 10px;
}

.brands-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.82) 0%, rgba(30, 30, 30, 0.75) 50%, rgba(15, 20, 25, 0.82) 100%),
        url('img/hero-img.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    border-bottom: 1px solid rgb(107, 107, 107);
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 17px;
    color: #ffffff;
    line-height: 1.6;
}

/* Brand Grid */
.brand-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.brand-item {
    padding: 12px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    background: var(--light-bg);
    transition: 0.3s ease;
}

.brand-item:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #ffffff;
}

.brand-item.highlight {
    background: var(--primary);
    border: none;
    color: white;
}

.vehicle-coverage {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.vehicle-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #ffffff;
    padding: 22px 30px;
    border-radius: 12px;
    border: 1px solid #e6edf5;
    transition: 0.3s ease;
    min-width: 320px;
}

.vehicle-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(211, 47, 47, 0.12);
}

.vehicle-card i {
    font-size: 24px;
    color: var(--primary);
    background: rgba(211, 47, 47, 0.08);
    padding: 14px;
    border-radius: 10px;
}

.vehicle-text h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

@media (max-width: 768px) {
    .vehicle-card {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

.replace-section {
    background: var(--light-bg);
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.replace-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    color: #0B1120;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-subtext {
    font-size: 18px;
    color: #4B5563;
}

.replace-checklist ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 40px;
}

.replace-checklist li {
    font-size: 16px;
    color: #111827;
    position: relative;
    padding-left: 28px;
}

.replace-checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.replace-highlight {
    margin-top: 50px;
    padding: 22px 30px;
    background: #ffffff;
    border-left: 5px solid var(--primary);
    font-weight: 600;
    font-size: 18px;
    color: #0B1120;
}

@media (max-width: 992px) {
    .replace-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .replace-checklist ul {
        grid-template-columns: 1fr;
    }

    .section-heading {
        font-size: 26px;
    }
}

.diag-section {
    padding: 100px 0;
    background: var(--darker-bg);
    color: #fff;
}

.diag-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.diag-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.diag-card:hover {
    background: rgba(211, 47, 47, 0.1);
    border-color: var(--primary);
    transform: translateY(-10px);
}

.diag-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.diag-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.support-banner {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.support-banner::after {
    content: '';
    position: absolute;
    right: -50px;
    top: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.testimonial-card {
    background: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.12);
}

.quote-icon {
    font-size: 2rem;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 25px;
}

.customer-info {
    display: flex;
    align-items: center;
    border-top: 1px solid #f1f3f5;
    padding-top: 20px;
}

.customer-details h6 {
    margin: 0;
    font-weight: 700;
    color: #1a202c;
}

.star-rating {
    color: #ffc107;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.verified-badge {
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.quote-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-container {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #cbd5e0;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}

.form-label {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: rgba(211, 47, 47, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.submit-btn {
    padding: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .form-container {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .submit-btn {
        padding: 12px 10px !important;
        font-size: 0.9rem !important;
        letter-spacing: 0;
    }

    .form-container {
        padding: 20px 15px !important;
    }

    .form-container h4 {
        font-size: 1.25rem !important;
        margin-bottom: 20px !important;
    }

    .form-label {
        margin-bottom: 4px;
        font-size: 0.85rem;
    }
}

.trust-section {
    padding: 90px 20px;
    background: var(--light-bg);
}

.trust-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.trust-heading {
    font-size: 36px;
    font-weight: 700;
    color: #0B1120;
    margin-bottom: 30px;
    line-height: 1.3;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-list li {
    font-size: 17px;
    margin-bottom: 18px;
    padding-left: 28px;
    position: relative;
    color: #111827;
}

.trust-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

/* RIGHT SIDE CTA */
.cta-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    max-width: 420px;
}

.cta-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0B1120;
    margin-bottom: 15px;
}

.cta-subtext {
    font-size: 16px;
    color: #4B5563;
    margin-bottom: 25px;
}

.cta-phones {
    font-weight: 600;
    margin-bottom: 25px;
}

.cta-phones a {
    color: var(--primary);
    text-decoration: none;
    font-size: 18px;
}

.cta-phones span {
    margin: 0 8px;
    color: #9CA3AF;
}

.cta-button {
    display: inline-block;
    padding: 14px 28px;
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-dark);
    color: #ffffff;
}

@media (max-width: 992px) {
    .trust-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .cta-box {
        width: 100%;
        max-width: 100%;
    }

    .trust-heading {
        font-size: 26px;
    }
}

/* ================= FOOTER ================= */

.site-footer {
    background-color: var(--darker-bg);
    color: var(--text-secondary);
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer-logo-area img {
    max-width: 250px;
    margin-bottom: 20px;
    background-color: white;
}

.footer-header {
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-link-list {
    list-style: none;
    padding: 0;
}

.footer-link-list li {
    margin-bottom: 12px;
}

.footer-link-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link-list a:hover {
    color: var(--text-primary);
}

.support-info-item {
    margin-bottom: 20px;
}

.support-icon {
    color: var(--primary);
    margin-right: 10px;
}

.phone-number-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom {
    border-top: 1px solid #2d2d2d;
    margin-top: 50px;
    padding-top: 25px;
}

.payment-icons img {
    height: 30px;
    margin-left: 15px;
    opacity: 0.8;
}

.social-icons a {
    color: #ffffff;
    background: #1a1a1a;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 10px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary);
}

.font-custom {
    font-size: 18px;
}

/* ================= FLOATING CALL BUTTON ================= */

.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: #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 rgba(211, 47, 47, 0.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);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pulse-ring,
.pulse-ring-delayed {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: var(--primary);
    opacity: 0.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: 0.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%;
    }
}

/* =============================================
   ENHANCED HERO SECTION
============================================= */

/* .hero-section-enhanced {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
   
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 120px 0 80px;
} */

.hero-bg-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    /* background: radial-gradient(circle, rgba(211, 47, 47, 0.15), transparent); */
    animation: float-circle 20s ease-in-out infinite;
}

.bg-circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    /* background: radial-gradient(circle, rgba(183, 28, 28, 0.12), transparent); */
    animation-delay: 3s;
}

.bg-circle-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 30%;
    /* background: radial-gradient(circle, rgba(255, 82, 82, 0.08), transparent); */
    animation-delay: 6s;
}

@keyframes float-circle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25%       { transform: translate(30px, -30px) scale(1.05); }
    50%       { transform: translate(-20px, 20px) scale(0.95); }
    75%       { transform: translate(20px, 30px) scale(1.02); }
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-content {
    color: var(--text-primary);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(211, 47, 47, 0.1);
    border: 1px solid rgba(211, 47, 47, 0.35);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #ff5252;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(211, 47, 47, 0.2); }
    50%       { box-shadow: 0 0 30px rgba(211, 47, 47, 0.45); }
}

.hero-main-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f5c6c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: title-entrance 1s ease-out;
}

@keyframes title-entrance {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-main-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, #ff5252 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
    margin-top: 8px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    max-width: 540px;
    animation: subtitle-entrance 1s ease-out 0.2s both;
}

@keyframes subtitle-entrance {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: cta-entrance 1s ease-out 0.6s both;
}

@keyframes cta-entrance {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: none;
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.35);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-hero:hover::before {
    left: 100%;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.5);
}

.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-outline-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-primary);
    transform: translateY(-3px);
}

/* Form Card */
.hero-form-wrapper {
    animation: form-entrance 1s ease-out 0.8s both;
}

@keyframes form-entrance {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

.hero-form-card {
    background: var(--text-primary);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-header p {
    color: #6b7280;
    font-size: 14px;
}

.form-grid {
    display: grid;
    gap: 18px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--darker-bg) 0%, #1a0a0a 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 12px;
    color: #6b7280;
}

.security-badge i {
    color: #10b981;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff5252, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

@media (max-width: 992px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-main-title {
        font-size: 42px;
    }

    .hero-section-enhanced {
        padding: 100px 0 60px;
    }

    .hero-form-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 36px;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-primary-hero,
    .btn-outline-hero {
        width: 100%;
        justify-content: center;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero-main-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .form-header h3 {
        font-size: 22px;
    }

    .hero-form-card {
        padding: 25px 20px;
    }
}

/* Terms Page */
.terms-section {
    padding: 120px 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;
}

/* VAZ Form Card */
.vaz-rf-card {
    background: #ffffff !important;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 450px;
    margin-left: auto;
}

.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: 0.95rem;
}

.vaz-rf-submit {
    width: 100%;
    background: var(--primary) !important;
    color: #ffffff !important;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.vaz-rf-submit:hover {
    background: var(--primary-dark) !important;
}

.logo i {
    color: var(--primary);
    font-size: 28px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: rgb(255, 255, 255);
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--text-primary);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

 .feature-card:hover .hover-text {
        color: white;
    }


    .fab.fa-whatsapp {
    transition: transform 0.3s ease;
}

.fab.fa-whatsapp:hover {
    transform: scale(1.1);
}
@media (max-width: 420px) {
    .hero-content-wrapper {
        display: flex ;
        flex-direction: column ;
    }
    #leadForm .col-6, #leadForm .col-8 , #leadForm .col-4{
        width: 100%;
}
#why-us .row.g-4 > .col-md-4:nth-child(3) .feature-card > p:first-of-type {
       bottom: 195px !important;
    left: 130px !important;
}
}



/* 1140px */
@media (max-width: 1140px) {
  #why-us .row.g-4 > .col-md-4:nth-child(3) .feature-card > p:first-of-type {
    bottom: 172px !important;
    left: 147px !important;
  }
}

/* 940px */
@media (max-width: 940px) {
  #why-us .row.g-4 > .col-md-4:nth-child(3) .feature-card > p:first-of-type {
    bottom: 194px !important;
    left: 88px !important;
  }
}

/* 766px */
@media (max-width: 766px) {
  #why-us .row.g-4 > .col-md-4:nth-child(3) .feature-card > p:first-of-type {
    bottom: 147px !important;
    left: 88px !important;
  }
}

/* 320px */
@media (max-width: 320px) {
  #why-us .row.g-4 > .col-md-4:nth-child(3) .feature-card > p:first-of-type {
    bottom: 188px !important;
    left: 88px !important;
  }
}
