
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0052cc;
    --primary-orange: #ff6b35;
    --secondary-blue: #003d99;
    --light-bg: #f8f9fb;
    --white: #ffffff;
    --dark-text: #1a1a2e;
    --light-text: #666666;
    --accent-green: #06d6a0;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    background: var(--white);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

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

nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fb 0%, #e8f1ff 100%);
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.hero-text h1 .highlight {
    background: linear-gradient(120deg, var(--primary-orange), #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 82, 204, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    padding: 1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    text-align: center;
    animation: float 3s ease-in-out infinite;
    position: absolute;
}

.floating-card:nth-child(1) {
    animation-delay: 0s;
    top: 0;
}

.floating-card:nth-child(2) {
    animation-delay: 0.5s;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.floating-card:nth-child(3) {
    animation-delay: 1s;
    bottom: 0;
    right: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.floating-card p {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* Services Section */
.services {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-blue);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--primary-orange);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.service-card p {
    color: var(--light-text);
    line-height: 1.7;
}

/* Insurance Types */
.insurance-types {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.insurance-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.insurance-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.insurance-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.insurance-item:hover .insurance-header {
    background: linear-gradient(135deg, var(--primary-orange), #ff8c42);
}

.insurance-icon {
    font-size: 2.5rem;
}

.insurance-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.insurance-details {
    padding: 2rem;
}

.insurance-details ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.insurance-details li {
    padding: 0.5rem 0;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.insurance-details li:before {
    content: '✓';
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.learn-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.learn-more:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #f8f9fb 100%);
    border-radius: 20px;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-text);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-orange);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.star-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-text);
}

.testimonial-role {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-text);
}

.faq-item {
    background: var(--white);
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fb 0%, #f0f4ff 100%);
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--white);
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--light-text);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 2rem;
    max-height: 500px;
}

/* Stats Section */
.stats {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 20px;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-box {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Partners Section */
.partners {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 3rem 2rem;
}

.partners h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark-text);
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-blue);
    height: 100px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.partner-logo:hover {
    box-shadow: var(--shadow-hover);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
}

/* Contact Section */
.contact {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 20px;
    color: var(--white);
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.contact-method h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-method p {
    margin: 0;
    font-size: 1.1rem;
}

/* Advantages Section */
.advantages {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-box:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.advantage-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-orange), #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.advantage-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.advantage-box p {
    color: var(--light-text);
    line-height: 1.7;
}

/* Footer */
footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
    font-size: 1.1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

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

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

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

.footer-bottom p a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}


/* WhatsApp Icon */
.whatsapp-btn {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: var(--shadow-hover);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-btn img {
    width: 60px;
    height: 60px;
    border-radius: 20px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}


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




/* ====================================
   RESPONSIVE CSS FOR BHARAT INSURANCE
   ==================================== */

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ====================================
   TABLET DEVICES (768px - 1024px)
   ==================================== */
@media screen and (max-width: 1024px) {
    
    /* Navigation */
    nav {
        padding: 1rem 1.5rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    nav ul {
        gap: 1.5rem;
    }
    
    nav ul li a {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 3rem 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    /* Services */
    .services {
        margin: 4rem auto;
        padding: 0 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        gap: 2rem;
    }
    
    /* Insurance Types */
    .insurance-types {
        margin: 4rem auto;
        padding: 0 1.5rem;
    }
    
    .insurance-grid {
        gap: 1.5rem;
    }
    
    /* Testimonials */
    .testimonials {
        margin: 4rem auto;
        padding: 2.5rem 1.5rem;
    }
    
    .testimonials h2 {
        font-size: 2.2rem;
    }
    
    /* FAQ */
    .faq {
        margin: 4rem auto;
        padding: 0 1.5rem;
    }
    
    .faq h2 {
        font-size: 2.2rem;
    }
    
    /* Stats */
    .stats {
        margin: 4rem auto;
        padding: 3rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Contact */
    .contact {
        margin: 4rem auto;
        padding: 3rem 1.5rem;
    }
    
    .contact h2 {
        font-size: 2.2rem;
    }
    
    /* Advantages */
    .advantages {
        margin: 4rem auto;
        padding: 0 1.5rem;
    }
    
    .advantage-number {
        font-size: 2.5rem;
    }
}

/* ====================================
   MOBILE DEVICES (max-width: 768px)
   ==================================== */
@media screen and (max-width: 768px) {
    
    /* Mobile Navigation */
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    nav {
        padding: 1rem;
        position: relative;
    }
    
    .logo {
        font-size: 1.3rem;
        z-index: 1001;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav ul li {
        width: 100%;
        border-bottom: 1px solid var(--light-bg);
        padding: 1rem 0;
    }
    
    nav ul li a {
        display: block;
        width: 100%;
        font-size: 1.1rem;
    }
    
    nav ul li a::after {
        display: none;
    }
    
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        z-index: 1001;
    }
    
    /* Mobile Overlay */
    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-overlay.active {
        display: block;
        opacity: 1;
    }
    
    /* Hero Section */
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1.5rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .floating-card {
        padding: 1.5rem;
    }
    
    .floating-card h3 {
        font-size: 1.1rem;
    }
    
    .floating-card p {
        font-size: 0.85rem;
    }
    
    /* Services Section */
    .services {
        margin: 3rem auto;
        padding: 0 1rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    /* Insurance Types */
    .insurance-types {
        margin: 3rem auto;
        padding: 0 1rem;
    }
    
    .insurance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .insurance-header {
        padding: 1.5rem;
    }
    
    .insurance-icon {
        font-size: 2rem;
    }
    
    .insurance-header h3 {
        font-size: 1.1rem;
    }
    
    .insurance-details {
        padding: 1.5rem;
    }
    
    /* Testimonials */
    .testimonials {
        margin: 3rem auto;
        padding: 2rem 1rem;
    }
    
    .testimonials h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    /* FAQ Section */
    .faq {
        margin: 3rem auto;
        padding: 0 1rem;
    }
    
    .faq h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }
    
    .faq-toggle {
        font-size: 1.3rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.5rem;
    }
    
    /* Stats Section */
    .stats {
        margin: 3rem auto;
        padding: 2.5rem 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    /* Partners Section */
    .partners {
        margin: 3rem auto;
        padding: 2rem 1rem;
    }
    
    .partners h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .partner-logo {
        height: 80px;
        font-size: 0.9rem;
    }
    
    /* Contact Section */
    .contact {
        margin: 3rem auto;
        padding: 2.5rem 1rem;
    }
    
    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .contact p {
        font-size: 0.95rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .contact-method {
        padding: 1.5rem;
    }
    
    .contact-method h3 {
        font-size: 1.1rem;
    }
    
    .contact-method p {
        font-size: 1rem;
    }
    
    /* Advantages Section */
    .advantages {
        margin: 3rem auto;
        padding: 0 1rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantage-box {
        padding: 2rem;
    }
    
    .advantage-number {
        font-size: 2rem;
    }
    
    .advantage-box h3 {
        font-size: 1.2rem;
    }
    
    /* Footer */
    footer {
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }
}

/* ====================================
   SMALL MOBILE (max-width: 480px)
   ==================================== */
@media screen and (max-width: 480px) {
    
    .logo span {
        font-size: 1.1rem;
    }
    
    .hero-text h1 {
        font-size: 1.7rem;
    }
    
    .section-header h2,
    .testimonials h2,
    .faq h2,
    .contact h2 {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .partner-logos {
        grid-template-columns: 1fr;
    }
    
    .floating-card {
        padding: 1rem;
    }
    
    .floating-card h3 {
        font-size: 1rem;
    }
}

/* ====================================
   LANDSCAPE MODE FIX
   ==================================== */
@media screen and (max-height: 500px) and (orientation: landscape) {
    
    nav ul {
        padding: 3rem 2rem 2rem;
        overflow-y: auto;
    }
    
    nav ul li {
        padding: 0.7rem 0;
    }
}




/* Payment Popup Styles */
.payment-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.payment-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.payment-popup {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.payment-popup-overlay.active .payment-popup {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--light-bg);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: var(--dark-text);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: rotate(90deg);
}

.payment-popup h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.qr-container {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.qr-container img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.qr-note {
    margin-top: 1rem;
    color: var(--light-text);
    font-size: 0.95rem;
}

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

.payment-info p {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 1rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-methods span {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mobile Responsive */
@media screen and (max-width: 480px) {
    .payment-popup {
        padding: 2rem 1.5rem;
    }
    
    .payment-popup h2 {
        font-size: 1.5rem;
    }
    
    .qr-container {
        padding: 1.5rem;
    }
    
    .qr-container img {
        max-width: 220px;
    }
    
    .payment-methods {
        gap: 0.5rem;
    }
    
    .payment-methods span {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

