/* style.css */

:root {
    --primary-orange: #EB5B00; /* Main orange brand color */
    --orange-hover: #CC4E00;
    --dark-blue: #082A4D; /* Main dark blue color */
    --darker-blue: #051A30;
    --light-cream: #FFF5EC; /* Background cream color */
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-muted: #555555;
    --text-light: #999999;
    --border-color: #E6E6E6;
    --green-accent: #00B23D; /* Checkmarks, buttons, bottom strip */
    --red-accent: #E53E3E; /* Cross marks */
    
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

/* ================= Reset & Global ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-blue);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

.mb-50 {
    margin-bottom: 50px;
}

.highlight {
    color: var(--primary-orange);
}

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

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

.btn-outline-green:hover {
    background-color: var(--green-accent);
    color: var(--white);
}

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

.btn-orange:hover {
    background-color: var(--orange-hover);
}

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

.btn-dark:hover {
    background-color: var(--darker-blue);
}

/* ================= Header ================= */
.header {
    background-color: var(--light-cream);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.logo a {
    font-size: 28px;
    font-weight: 900;
    color: var(--dark-blue);
    letter-spacing: -0.5px;
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.nav a:hover, .nav a.active {
    color: var(--primary-orange);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info i {
    font-size: 24px;
    color: var(--dark-blue);
}

.contact-info .contact-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info .contact-number {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-orange);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: var(--dark-blue);
    cursor: pointer;
}

/* ================= Hero Section ================= */
.hero {
    padding: 120px 0 160px;
    position: relative;
    background: linear-gradient(rgba(0, 42, 77, 0.7), rgba(0, 42, 77, 0.7)), url("https://c.ndtvimg.com/2025-10/faj2743s_bmw_625x300_12_October_25.jpg?im=FeatureCrop,algorithm=dnn,width=1200,height=600") no-repeat center center/cover;
    background-attachment: fixed; /* Optional parallax effect */
    display: flex;
    align-items: center;
    height: 90vh;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.hero-content h1 {
    font-size: 59px;
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.badge {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-orange);
}

.badge i {
    font-size: 18px;
    margin-top: 3px;
}

.badge small {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-desc {
    font-size: 15px;
    color: var(--text-muted);
    width: 100%;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
}

/* ================= Quiz Section ================= */
.quiz-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.quiz-step {
    display: none;
    width: 100%;
}

.quiz-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.quiz-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    flex-direction: column;
}

.quiz-option {
    background-color: var(--primary-orange);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.quiz-option:hover {
    border-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* Loading Spinner */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light-cream);
    border-top: 5px solid var(--primary-orange);
    border-radius: 50%;
    margin: 0 auto 30px;
    animation: spin 1s linear infinite;
}

/* Result Styles */
.congrats-icon {
    font-size: 60px;
    color: var(--green-accent);
    /* margin-bottom: 20px; */
}

.result-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.4;
}

.cta-box {
    background-color: var(--light-cream);
    padding: 10px;
    border-radius: 12px;
    border: 2px dashed var(--primary-orange);
}

.cta-phone {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-orange);
    margin-top: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.cta-phone:hover {
    color: var(--orange-hover);
    transform: scale(1.05);
}

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

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

.btn-submit {
    min-width: 160px;
    padding: 14px 30px;
}

/* ================= Banner Section ================= */
.banner-section {
    padding: 100px 0;
    background-color: var(--white);
}

.banner-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.banner-section p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 16px;
}

/* ================= Steps Section ================= */
.steps-section {
    background-color: var(--dark-blue);
    padding: 80px 0;
    color: var(--white);
}

.steps-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.steps-title {
    flex: 1;
}

.steps-title h2 {
    color: var(--white);
    font-size: 42px;
}

.steps-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 450px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-num {
    width: 40px;
    height: 40px;
    background-color: var(--primary-orange);
    color: var(--white);
    font-weight: 800;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-text {
    font-size: 18px;
    font-weight: 500;
}

/* ================= Features Section ================= */
.features-section {
    padding: 100px 0;
    background-color: var(--white);
}

.features-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
}

.features-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.feature-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* ================= Comparison Table Section ================= */
.comparison-section {
    padding: 80px 0;
    background-color: var(--light-cream);
}

.comparison-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.table-container {
    background-color: var(--white);
    border-radius: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background-color: var(--white);
    padding: 25px 20px;
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-blue);
    text-transform: uppercase;
    border-bottom: 2px solid var(--border-color);
}

.comparison-table th:first-child {
    text-align: left;
    padding-left: 40px;
    width: 40%;
}

.comparison-table th:not(:first-child) {
    text-align: center;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    font-weight: 600;
}

.comparison-table td:first-child {
    padding-left: 40px;
    color: var(--dark-blue);
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background-color: #FAFAFA;
}

.comparison-table .check {
    color: var(--green-accent);
    font-size: 20px;
}

.comparison-table .cross {
    color: var(--red-accent);
    font-size: 20px;
}

/* ================= Stats Section ================= */
.stats-section {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stats-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.stats-content h2 {
    color: var(--white);
    font-size: 38px;
    font-weight: 500;
    line-height: 1.4;
}

.stats-content strong {
    font-weight: 900;
}

.stats-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

.stats-image img {
    max-width: 500px;
}

/* ================= Partners Section ================= */
.partners-section {
    padding: 60px 0;
    background-color: var(--white);
}

.partners-title {
    font-size: 24px;
    margin-bottom: 40px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partners-logos:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.logo-item img {
    height: 40px;
    width: auto;
}

/* ================= Reviews & CTA Split Sections ================= */
.reviews-section, .cta-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.review-left, .review-right, .cta-left, .cta-right {
    flex: 1 1 50%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

/* Review Left - Card styling */
.review-left {
    background-color: var(--dark-blue);
    position: relative;
}

.review-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    max-width: 450px;
    position: relative;
    z-index: 2;
}

.stars {
    color: var(--primary-orange);
    font-size: 20px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 16px;
    color: var(--dark-blue);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 30px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 18px;
    margin-bottom: 2px;
}

.reviewer-info p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Review Right - Quote Mark */
.review-right {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.review-right h2 {
    font-size: 48px;
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.quote-mark {
    position: absolute;
    right: 10%;
    top: 20%;
    font-size: 350px;
    font-family: serif;
    line-height: 1;
    color: #FFF0DF;
    z-index: 1;
}

/* CTA Section Left - Illustration */
.cta-left {
    background-color: var(--white);
}

.cta-left img {
    max-width: 450px;
}

/* CTA Section Right - Orange Form */
.cta-right {
    background-color: var(--primary-orange);
    color: var(--white);
}

.cta-content {
    max-width: 450px;
}

.cta-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-content h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-form {
    display: flex;
    gap: 10px;
}

.cta-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
}

/* ================= Footer ================= */
.footer {
    background-color: var(--darker-blue);
    color: var(--white);
    padding-top: 80px;
    position: relative;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col-main {
    flex: 2;
    min-width: 280px;
    margin-bottom: 30px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-logo {
    display: inline-block;
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col-main p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    max-width: 350px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px 80px; /* Extra bottom padding for promo bar */
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
}

.social-links a:hover {
    background-color: var(--primary-orange);
}

/* Bottom Promo Bar */
.promo-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--green-accent);
    color: var(--white);
    text-align: center;
    padding: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.promo-tag {
    background-color: var(--white);
    color: var(--green-accent);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ================= Responsive Design ================= */
@media (min-width: 769px) {
    .nav {
        display: block !important;
        position: static !important;
        background-color: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
    }
    
    .nav ul {
        flex-direction: row !important;
    }
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-inner, .stats-inner {
        gap: 30px;
    }
    
    .hero-image img, .stats-image img {
        max-width: 100%;
        height: auto;
    }

    .steps-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .steps-list {
        align-items: center;
        text-align: left;
    }
    
    .quote-form {
        flex-direction: column;
    }
    
    .features-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .feature-card {
        flex: 1 1 40%;
    }
    
    .comparison-table th, .comparison-table td {
        padding: 15px;
    }
    
    .review-left, .review-right, .cta-left, .cta-right {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .contact-info {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-right .btn {
        display: none;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .container {
        padding: 0 25px;
    }
    
    .hero {
        padding-top: 40px;
    }
    
    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-desc {
        margin: 0 auto;
    }
    
    .quote-card {
        padding: 25px;
    }
    
    .stats-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .features-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .feature-card {
        flex: 1 1 100%;
    }
    
    .review-left, .review-right, .cta-left, .cta-right {
        flex: 1 1 100%;
        min-height: auto;
    }
    
    .banner-section h2, .steps-title h2, .features-section h2, .comparison-section h2, .cta-content h2 {
        font-size: 32px;
    }
    
    .review-right h2 {
        font-size: 32px;
    }
    
    .stats-content h2 {
        font-size: 30px;
    }

    .quote-mark {
        font-size: 150px;
        top: -20px;
        right: 10%;
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    .comparison-table {
        min-width: 800px;
    }
    
    .comparison-table th, .comparison-table td {
        padding: 12px 10px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .comparison-table th:first-child, .comparison-table td:first-child {
        padding-left: 15px;
        width: auto;
    }
    
    .footer-col-main, .footer-col {
        flex: 1 1 100%;
        text-align: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content h1 br {
        display: none;
    }
    
    .quote-card {
        padding: 15px;
    }
    
    .banner-section h2, .steps-title h2, .features-section h2, .comparison-section h2, .cta-content h2 {
        font-size: 26px;
    }
    
    .stats-content h2 {
        font-size: 24px;
    }
    
    .footer-inner {
        flex-direction: column;
    }
}
