/* ========================================
   My Sasta Insurance - Home Page Styles
   Modern Glassmorphic Design
   ======================================== */

/* Color Variables */
:root {
    --primary: #009688;
    --secondary: #263238;
    --accent: #FFCA28;
    --background: #F9FAFB;
    --white: #FFFFFF;
    --text-dark: #263238;
    --text-light: #6B7280;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow: rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Glass Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px var(--shadow);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 15px 0;
}

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

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

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
}

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

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

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

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

.cta-button {
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.cta-button:hover {
    background: #00796B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 150, 136, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInUp 0.8s ease;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #00796B);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.badge-logo {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.policybazaar-text {
    display: inline-block;
    font-family: 'Cambria', 'Georgia', serif;
    letter-spacing: -0.5px;
    position: relative;
    font-style: normal;
}

.policy-blue {
    color: #0073FF;
    font-weight: 400;
    font-style: normal;
}

.bazaar-dark {
    color: #2D3E50;
    font-weight: 400;
    font-style: normal;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    padding: 20px 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.3;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.primary-button {
    background: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.primary-button:hover {
    background: #00796B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 150, 136, 0.4);
}

.secondary-button {
    background: var(--white);
    color: var(--primary);
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Price Comparison Card */
.hero-visual {
    animation: fadeInRight 0.8s ease;
}

.price-comparison-slider {
    perspective: 1000px;
}

.comparison-card {
    padding: 30px;
    max-width: 450px;
    animation: float 3s ease-in-out infinite;
}

.vehicle-image {
    text-align: center;
    margin-bottom: 25px;
    overflow: hidden;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-image img {
    width: 180px;
    height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.price-details {
    margin-bottom: 20px;
}

.price-row,
.cashback-row,
.final-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.price-row .label,
.cashback-row .label,
.final-row .label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.cashback {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

.final-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--text-light), transparent);
    margin: 20px 0;
}

.vehicle-type {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(0, 150, 136, 0.1);
    padding: 10px;
    border-radius: 10px;
    transition: opacity 0.3s ease;
}

.price-disclaimer {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 202, 40, 0.1);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-light);
}

.price-disclaimer svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent);
}

.price-disclaimer span {
    flex: 1;
}

/* Background Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(60px);
}

.shape1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary), #4DB6AC);
    top: -200px;
    right: -100px;
}

.shape2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent), #FFD54F);
    bottom: -150px;
    left: -100px;
}

.shape3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary), #26C6DA);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Insurance Types Section */
.insurance-types {
    padding: 80px 0;
    background: var(--white);
}

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

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

.insurance-card {
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.insurance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px var(--shadow);
}

.insurance-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

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

.insurance-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.card-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #00796B;
    text-decoration: underline;
}

/* Partners Section */
.partners {
    padding: 40px 0 20px;
    background: linear-gradient(135deg, var(--background) 0%, #E8F5F4 100%);
    position: relative;
    overflow: hidden;
}

.partners-full-width {
    max-width: 100%;
    padding: 0;
}

.partners .section-title,
.partners .section-subtitle {
    padding: 0 20px;
    margin-bottom: 8px;
}

.partners .section-subtitle {
    margin-bottom: 15px;
}

.partners-visualization {
    background: transparent;
    padding: 5px 0 5px;
    border-radius: 0;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#bubbleChart {
    width: 100%;
    height: 700px;
}

.view-all-partners {
    text-align: center;
    margin-top: 8px;
    padding: 0 20px;
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 15px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    font-size: 32px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-text a,
.contact-text p {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Contact Form */
.contact-form-container {
    padding: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid rgba(0, 150, 136, 0.2);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 150, 136, 0.1);
}

.form-group textarea {
    resize: vertical;
}
.insurance-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.insurance-type-btn {
    padding: 12px 16px;
    background: var(--white);
    border: 2px solid rgba(0, 150, 136, 0.2);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-align: center;
}

.insurance-type-btn:hover {
    border-color: var(--primary);
    background: rgba(0, 150, 136, 0.05);
    transform: translateY(-2px);
}

.insurance-type-btn.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.submit-button {
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
}

.submit-button:hover {
    background: #00796B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 150, 136, 0.4);
}

/* Inline Form Groups */
.form-group-inline {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    align-items: center;
}

.form-group-inline label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
    text-align: left;
    white-space: nowrap;
}

.form-group-inline input,
.form-group-inline textarea {
    padding: 12px 16px;
    border: 2px solid rgba(0, 150, 136, 0.2);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group-inline input:focus,
.form-group-inline textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 150, 136, 0.1);
}

.form-group-inline textarea {
    resize: vertical;
    min-height: 70px;
}

/* Submit Buttons Row */
.submit-buttons-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 5px;
}

.whatsapp-submit {
    background: #25D366 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-submit:hover {
    background: #20BA5A !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-submit .whatsapp-text-full {
    display: inline;
}

.whatsapp-submit .whatsapp-text-short {
    display: none;
}

/* Social Links in Hero Section */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.social-link.facebook {
    background: #1877F2;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    color: white;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Footer Social Links */
.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link.facebook {
    background: #1877F2;
    color: white;
}

.footer-social-link.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    color: white;
}

.footer-social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Contact Section Social Links */
.contact-social-section {
    margin-top: 30px;
}

.contact-social-section h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

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

.contact-social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-social-link.facebook {
    background: #1877F2;
    color: white;
}

.contact-social-link.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    color: white;
}

.contact-social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Animated Phone Icon */
.phone-icon {
    animation: phoneVibrate 0.5s ease-in-out infinite;
}

@keyframes phoneVibrate {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: rotate(-3deg);
    }
    20%, 40%, 60%, 80% {
        transform: rotate(3deg);
    }
}

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

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    color: var(--accent) !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

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

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

    .logo img {
        height: 40px;
    }

    .logo-text {
        font-size: 16px;
    }

    .cta-button {
        padding: 10px 18px;
        font-size: 14px;
        gap: 6px;
    }

    .cta-button svg {
        width: 16px;
        height: 16px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat-card {
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 11px;
    }

    .comparison-card {
        max-width: 100%;
    }

    .insurance-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .insurance-card {
        padding: 20px 15px;
    }

    .insurance-icon {
        font-size: 48px;
    }

    .insurance-card h3 {
        font-size: 16px;
    }

    .insurance-card p {
        font-size: 13px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-details {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .contact-item {
        padding: 15px;
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        font-size: 28px;
        min-width: 40px;
    }

    .contact-icon svg {
        width: 24px;
        height: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .partners {
        padding: 40px 0 20px;
    }

    .partners .section-title {
        margin-bottom: 6px;
    }

    .partners .section-subtitle {
        margin-bottom: 12px;
    }

    .partners-visualization {
        padding: 15px 0 15px;
        min-height: 500px;
    }

    #bubbleChart {
        height: 500px;
    }
}

@media (max-width: 640px) {
    .logo img {
        height: 35px;
    }

    .logo-text {
        font-size: 14px;
    }

    .cta-button {
        padding: 8px 14px;
        font-size: 12px;
        gap: 4px;
    }

    .cta-button svg {
        width: 14px;
        height: 14px;
    }

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

    .hero h1 {
        font-size: 28px;
    }

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

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 30px;
    }

    .stat-card {
        padding: 10px 6px;
    }

    .stat-number {
        font-size: 16px;
    }

    .stat-label {
        font-size: 9px;
    }

    .hero-cta {
        flex-direction: row;
        gap: 8px;
    }

    .primary-button,
    .secondary-button {
        width: auto;
        flex: 1;
        text-align: center;
        justify-content: center;
        padding: 12px 16px;
        font-size: 13px;
        white-space: nowrap;
    }

    .primary-button svg {
        width: 16px;
        height: 16px;
    }

    .insurance-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .insurance-card {
        padding: 15px 10px;
    }

    .insurance-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .insurance-card h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .insurance-card p {
        font-size: 11px;
        margin-bottom: 12px;
        display: none;
    }

    .card-link {
        font-size: 13px;
    }

    .contact-details {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .contact-item {
        padding: 12px;
        gap: 12px;
    }

    .contact-icon {
        font-size: 24px;
        min-width: 35px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-text h4 {
        font-size: 14px;
    }

    .contact-text a,
    .contact-text p {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .submit-button {
        padding: 12px 24px;
        font-size: 14px;
    }

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

    .partners {
        padding: 10px 0 5px;
    }

    .partners .section-title {
        font-size: 28px;
        margin-bottom: 2px;
    }

    .partners .section-subtitle {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .partners-visualization {
        padding: 2px 0 2px;
        min-height: 600px;
    }

    #bubbleChart {
        height: 600px;
    }

    .view-all-partners {
        margin-top: 3px;
    }

    .view-all-partners .secondary-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ========================================
   NEW SECTIONS STYLES
   ======================================== */

/* Mobile Phone Link in Nav */
.mobile-only {
    display: none;
}

.phone-link {
    color: var(--primary) !important;
    font-weight: 600 !important;
    font-size: 16px;
}

/* Trust Stats Section */
.trust-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.05), rgba(255, 202, 40, 0.05));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-stat-card {
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow);
}

.trust-stat-card .stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-stat-card .stat-icon svg {
    width: 100%;
    height: 100%;
}

.trust-stat-card .stat-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
}

.trust-stat-card .stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

/* How It Works Section - Timeline Design */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, #F0F9F8 100%);
    position: relative;
}

.timeline-container {
    max-width: 900px;
    margin: 60px auto 40px;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), #FFCA28);
    transform: translateX(-50%);
    border-radius: 10px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #00796B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(0, 150, 136, 0.1), 0 4px 20px rgba(0, 150, 136, 0.3);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 0 12px rgba(0, 150, 136, 0.15), 0 6px 25px rgba(0, 150, 136, 0.4);
}

.dot-number {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.timeline-content {
    width: 45%;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-item .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-item.reverse .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.timeline-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.1), rgba(0, 150, 136, 0.05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.timeline-icon-wrapper.success {
    background: linear-gradient(135deg, rgba(255, 202, 40, 0.2), rgba(255, 202, 40, 0.1));
}

.timeline-icon-wrapper svg {
    width: 30px;
    height: 30px;
    color: var(--primary);
}

.timeline-icon-wrapper.success svg {
    color: #F57C00;
}

.timeline-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.process-note {
    padding: 25px 30px;
    background: rgba(0, 150, 136, 0.05);
    border-left: 4px solid var(--primary);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.process-note svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.process-note p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--background);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-answer ul,
.faq-answer ol {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 8px;
}

.faq-answer strong {
    color: var(--primary);
}

/* Floating Call Button */
.call-float {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #009688, #00796B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 150, 136, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.call-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 150, 136, 0.6);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(0, 150, 136, 0.4);
    }

    50% {
        box-shadow: 0 6px 30px rgba(0, 150, 136, 0.7), 0 0 0 15px rgba(0, 150, 136, 0.1);
    }
}

/* Hide call button on desktop */
@media (min-width: 969px) {
    .call-float {
        display: none;
    }
}

/* Responsive Styles for New Sections */
@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .trust-stat-card {
        padding: 30px 20px;
    }

    .trust-stat-card .stat-value {
        font-size: 36px;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-item,
    .timeline-item.reverse {
        flex-direction: row;
    }

    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 100px !important;
        margin-right: 0 !important;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px 25px;
    }

    .faq-answer {
        padding: 0 25px;
    }

    .faq-item.active .faq-answer {
        padding: 0 25px 20px;
    }
}

@media (max-width: 640px) {
    .mobile-only {
        display: list-item;
    }

    .contact {
        padding: 50px 0;
    }

    .contact-info h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .contact-info p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .trust-stats {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .trust-stat-card {
        padding: 25px 15px;
    }

    .trust-stat-card .stat-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 12px;
    }

    .trust-stat-card .stat-value {
        font-size: 28px;
    }

    .trust-stat-card .stat-label {
        font-size: 13px;
    }

    .how-it-works {
        padding: 50px 0;
    }

    .timeline-container {
        margin: 40px auto 30px;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
        width: 40px;
        height: 40px;
    }

    .dot-number {
        font-size: 16px;
    }

    .timeline-content {
        width: calc(100% - 70px);
        margin-left: 70px !important;
        padding: 20px 15px;
    }

    .timeline-icon-wrapper {
        width: 45px;
        height: 45px;
        border-radius: 10px;
        margin-bottom: 12px;
    }

    .timeline-icon-wrapper svg {
        width: 22px;
        height: 22px;
    }

    .timeline-content h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .timeline-content p {
        font-size: 13px;
        line-height: 1.5;
    }

    .timeline-item {
        margin-bottom: 30px;
    }

    .process-note {
        padding: 20px;
        gap: 15px;
    }

    .process-note p {
        font-size: 14px;
    }

    .faq-section {
        padding: 50px 0;
    }

    .faq-question {
        font-size: 15px;
        padding: 18px 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 14px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .call-float {
        bottom: 85px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .call-float svg {
        width: 24px;
        height: 24px;
    }

    /* Compact Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-section p {
        font-size: 13px;
        line-height: 1.5;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .footer-section ul li a {
        font-size: 13px;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .disclaimer {
        font-size: 11px;
    }

    /* Update insurance grid to 3 columns on mobile */
    .insurance-type-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .insurance-type-btn {
        padding: 10px 12px;
        font-size: 13px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-form-container {
        padding: 18px 15px;
    }

    .contact-form {
        gap: 12px;
    }

    .form-group {
        gap: 6px;
    }

    .form-group label {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
        border-radius: 8px;
    }

    .form-group textarea {
        min-height: 70px;
    }

    /* Inline form groups on mobile - KEEP INLINE */
    .form-group-inline {
        grid-template-columns: 100px 1fr;
        gap: 10px;
        align-items: center;
    }

    .form-group-inline label {
        font-size: 13px;
        text-align: left;
        white-space: nowrap;
    }

    .form-group-inline input,
    .form-group-inline textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .form-group-inline textarea {
        min-height: 60px;
    }

    /* Keep buttons side by side on mobile */
    .submit-buttons-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .submit-button,
    .whatsapp-submit {
        padding: 11px 16px;
        font-size: 13px;
    }

    .whatsapp-submit svg {
        width: 16px;
        height: 16px;
    }

    /* Show shorter WhatsApp text on mobile */
    .whatsapp-submit .whatsapp-text-full {
        display: none;
    }

    .whatsapp-submit .whatsapp-text-short {
        display: inline;
    }

    /* Insurance type grid - 3 in a row */
    .insurance-type-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .insurance-type-btn {
        padding: 10px 8px;
        font-size: 13px;
    }

    .social-links {
        margin-top: 20px;
        justify-content: center;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .contact-social-section {
        margin-top: 20px;
        text-align: center;
    }

    .contact-social-section h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .contact-social-links {
        justify-content: center;
    }

    .contact-social-link {
        width: 45px;
        height: 45px;
    }

    .contact-social-link svg {
        width: 20px;
        height: 20px;
    }
}

/* Extra small mobile devices */
@media (max-width: 380px) {
    .hero-cta {
        gap: 6px;
    }

    .primary-button,
    .secondary-button {
        padding: 10px 12px;
        font-size: 12px;
        gap: 4px;
    }

    .primary-button svg {
        width: 14px;
        height: 14px;
    }

    .contact-form-container {
        padding: 15px 12px;
    }

    .contact-form {
        gap: 10px;
    }

    /* Keep inline layout on small screens too */
    .form-group-inline {
        grid-template-columns: 85px 1fr;
        gap: 8px;
    }

    .form-group-inline label {
        font-size: 12px;
    }

    .form-group-inline input,
    .form-group-inline textarea {
        padding: 9px 10px;
        font-size: 13px;
    }

    .form-group-inline textarea {
        min-height: 55px;
    }

    /* Buttons stay side by side */
    .submit-buttons-row {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .submit-button,
    .whatsapp-submit {
        padding: 10px 12px;
        font-size: 12px;
    }

    .whatsapp-submit svg {
        width: 14px;
        height: 14px;
    }

    /* Keep shorter WhatsApp text */
    .whatsapp-submit .whatsapp-text-full {
        display: none;
    }

    .whatsapp-submit .whatsapp-text-short {
        display: inline;
    }

    /* Insurance grid stays 3 columns */
    .insurance-type-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .insurance-type-btn {
        padding: 9px 6px;
        font-size: 12px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group textarea {
        padding: 9px 10px;
        font-size: 13px;
    }

    .insurance-type-grid {
        gap: 6px;
    }

    .insurance-type-btn {
        padding: 9px 10px;
        font-size: 12px;
    }

    .submit-button {
        padding: 11px 20px;
        font-size: 13px;
    }

    .form-group-inline input,
    .form-group-inline textarea {
        padding: 9px 10px;
        font-size: 13px;
    }

    .form-group-inline label {
        font-size: 12px;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .social-link svg {
        width: 16px;
        height: 16px;
    }
}

/* Confirmation Modal Styles */
.confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.confirm-modal-content {
    background: #2d2d2d;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.confirm-modal-header {
    padding: 20px 25px;
    background: #3a3a3a;
    border-bottom: 1px solid #4a4a4a;
}

.confirm-modal-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}

.confirm-modal-body {
    padding: 30px 25px;
    color: #ffffff;
}

.confirm-title {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

.confirm-details {
    background: #252525;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.confirm-details p {
    margin: 12px 0;
    font-size: 14px;
    line-height: 1.6;
}

.confirm-details strong {
    color: #9da5b4;
    display: inline-block;
    min-width: 120px;
}

.confirm-question {
    font-size: 15px;
    margin: 0;
    font-weight: 500;
}

.confirm-modal-footer {
    padding: 20px 25px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    background: #3a3a3a;
    border-top: 1px solid #4a4a4a;
}

.confirm-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.confirm-ok {
    background: #60a5fa;
    color: #ffffff;
    border: 2px solid #3b82f6;
}

.confirm-ok:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.confirm-cancel {
    background: #1e3a5f;
    color: #ffffff;
    border: 2px solid #2563eb;
}

.confirm-cancel:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

@media (max-width: 600px) {
    .confirm-modal-content {
        width: 95%;
        margin: 0 10px;
    }

    .confirm-modal-body {
        padding: 20px 15px;
    }

    .confirm-modal-footer {
        flex-direction: column-reverse;
    }

    .confirm-btn {
        width: 100%;
    }
}