/* Base Styles & Variables */
:root {
    --primary-color: #6a0dad;
    --primary-dark: #5a0b9f;
    --primary-light: #7b1fa2;
    --secondary-color: #ff6b00;
    --accent-color: #ffc107;
    --text-dark: #333333;
    --text-medium: #555555;
    --text-light: #777777;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-dark);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 20 8px; /* smaller left + right padding */
}

.top-bar a {
    color: #fff;          /* match top bar text color */
    text-decoration: none;
}

.top-bar a:hover {
    text-decoration: underline; /* optional hover effect */
}


.contact-info span {
    margin-right: 1.5rem;
}

.contact-info i {
    margin-right: 0.5rem;
}

.social-links a {
    color: white;
    margin-left: 1rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Header */
.header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 110px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;     /* same as top bar */
    padding: 0 8px;      /* reduce left and right padding */
    justify-content: space-between;
    height: 70px;
    
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;

}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px; /* small spacing between logo image + text */
}

.logo img {
    height: 70px;
    margin-right: 8px;
    object-fit: contain;
    gap: 25px;
    width: 120px;
}

.logo span {
    color: #5a0fc8; /* your purple */
    font-weight: 600;
}


.main-nav ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav li {
    margin-left: 1.8rem;
    position: relative;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav i {
    margin-left: 0.3rem;
    font-size: 0.8rem;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    width: 220px;
    box-shadow: var(--shadow);
    border-radius: 5px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
}

.dropdown-content a {
    padding: 0.5rem 1.5rem;
    display: block;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.dropdown-content a:hover {
    color: var(--primary-color);
    background-color: var(--bg-light);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    margin-left: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
/* Hero Slider */
.hero-slider {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 4rem 2rem;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin: 20px 0;
}

/* Typography */
.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* Buttons */
.hero-btns {
    margin-top: 20px;
}

.hero-btns .btn {
    margin-right: 10px;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.hero-cta .btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 75vh;
    }

    .slide {
        padding: 3rem 1rem;
        align-items: flex-end;
        justify-content: center;
    }

     .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    .hero-content {
        top: 55%;
        transform: translateY(-55%);
        width: 100%;
    }

    .hero-content h1 {
        font-size: 28px;
        text-align: center;
    }

    .hero-content p {
        font-size: 16px;
        text-align: center;
    }

    .hero-btns {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .hero-btns .btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}


/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(106, 13, 173, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Products Section */
.products {
    padding: 5rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12)
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-content p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.product-price {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.product-price span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Price Insurance Section */
.price-insurance {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.price-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(106, 13, 173, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.price-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.price-tag {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: rgba(106, 13, 173, 0.1);
    position: absolute;
    top: -1rem;
    left: -1rem;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info {
    margin-left: 1rem;
}

.author-info strong {
    display: block;
    color: var(--primary-color);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #cccccc;
}

.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-col h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-about p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-logo img {
    height: 40px;
    margin-right: 0.8rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 0.8rem;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 0.3rem;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 0.8rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-bottom {
    background-color: #111111;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal a {
    margin-left: 1.5rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        margin-bottom: 0.5rem;
    }
    
   .header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

    .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
    height: 90px; /* universal, clean height */
}
    
    .main-nav {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        display: none;
    }
    
    .main-nav.active {
        display: block;
        display: flex;
        align-items: center;
    }
    
    .main-nav ul {
        flex-direction: column;
    }

    .main-nav ul li {
    list-style: none;
}
    
    .main-nav li {
        margin: 0;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 0.5rem 1rem;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        height: auto;
        padding: 6rem 0;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
    }
    
    .footer-legal {
        margin-top: 1rem;
    }
    
    .footer-legal a {
        margin: 0 0.75rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .btn {
       flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

/* Page Header */
.page-header {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.header-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    margin-top: 120px;
}

.page-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45); /* overlay */
    z-index: 1;
}


/* Breadcrumbs */
.breadcrumbs {
    padding: 1rem 0;
    background-color: var(--bg-light);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--primary-color);
}

.breadcrumbs span {
    color: var(--text-medium);
}

/* About Intro */
.about-intro {
    padding: 5rem 0;
}

.about-intro-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-intro-text {
    flex: 1;
}

.about-intro-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-intro-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Our Model */
.our-model {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.model-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.model-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.model-image img {
    width: 100%;
    height: auto;
    display: block;
}

.model-text {
    flex: 1;
}

.model-text p {
    margin-bottom: 1.5rem;
}

/* Industry Impact */
.industry-impact {
    padding: 5rem 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.impact-card:hover {
    transform: translateY(-10px);
}

.impact-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(106, 13, 173, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.impact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.impact-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Mission Statement */
.mission-statement {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-statement h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.mission-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 3rem;
    }
    
    .about-intro-content,
    .model-content {
        flex-direction: column;
    }
    
    .about-intro-image,
    .model-image {
        order: -1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 40vh;
        min-height: 300px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .mission-statement h2 {
        font-size: 2rem;
    }
    
    .mission-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

/* Subscription Intro */
.subscription-intro {
    padding: 5rem 0;
    text-align: center;
}

.subscription-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.subscription-intro .lead {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

/* Subscription Products */
.subscription-products {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.product-features {
    margin-bottom: 1.5rem;
}

.product-features li {
    margin-bottom: 0.6em;
    font-size: 0.95rem;
    color: var(--text-medium);
    display: flex;
    align-items: flex-start;
}

.product-features i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.product-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 15x;
}

.product-cta .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
}

@media (max-width: 600px) {

    .product-card {
        border-radius: 10px;
    }

    .product-content {
        padding: 12px;
    }

    .product-content h3 {
        font-size: 1.1rem;
    }

    .product-features li {
        font-size: 0.9rem;
    }

    /* Stack CTAs vertically on small screens */
    .product-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}


/* How It Works */
.how-it-works {
    padding: 5rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-card p {
    color: wheat;
    font-size: 0.95rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .product-cta .btn {
        flex: 100%;
    }
}

@media (max-width: 768px) {
    .subscription-intro {
        padding: 3rem 0;
    }
    
    .subscription-products {
        padding: 3rem 0;
    }
    
    .how-it-works {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .product-cta .btn {
        flex: 1;
    }
}

.price-how p {
    color: #000;
    font: bold;
}


/* Price Insurance Intro */
.price-insurance-intro {
    padding: 5rem 0;
    text-align: center;
}

.price-insurance-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.price-insurance-intro .lead {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

/* Price Insurance Products */
.price-insurance-products {
    padding: 5rem 0;
    background-color: var(--bg-light);
}


.benefits-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #faf7ff, #f3f7ff);
}

.benefits-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.benefits-text {
    flex: 1 1 450px;
}

.benefits-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #4b0082;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.5;
}

.benefits-list i {
    color: #7c3aed; /* Purple brand color */
    font-size: 1.3rem;
    margin-top: 2px;
}

.benefits-image {
    flex: 1 1 450px;
}

.benefits-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
    
/* Responsive */
@media (max-width: 768px) {
    .benefits-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .benefits-list li {
        justify-content: center;
        text-align: left;
    }
}


/* Product Hero */
.product-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf7ff, #f3f7ff);
}

.product-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
}

.product-hero-text {
    flex: 1 1 480px;
}

.product-hero-text h1 {
    font-size: 2.6rem;
    color: #4b0082;
    line-height: 1.2;
    margin-bottom: 15px;
}

.product-hero-text .lead {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.6;
}

.product-price {
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.product-price span {
    font-weight: 700;
    color: #7c3aed;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.btn.btn-secondary i {
    margin-right: 8px;
}

/* Hero Image */
.product-hero-image {
    flex: 1 1 450px;
}

.product-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .product-hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .product-hero-text h1 {
        font-size: 2.2rem;
    }
}


/* Product Features */
.product-features {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(106, 13, 173, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #faf7ff;
}

.benefits-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.benefits-text {
    flex: 1 1 480px;
}

.benefits-title {
    font-size: 2.3rem;
    color: #4b0082;
    margin-bottom: 15px;
    line-height: 1.2;
}

.benefits-subtitle {
    margin-bottom: 25px;
    color: #444;
    font-size: 1.1rem;
}

/* Updated benefits list */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 22px;
    gap: 15px;
}

.benefits-list li i {
    font-size: 1.4rem;
    color: #7c3aed;
    margin-top: 4px;
}

.benefits-list strong {
    font-size: 1.1rem;
    color: #333;
}

.benefits-list p {
    margin: 4px 0 0;
    color: #555;
    line-height: 1.5;
}

/* Photo section */
.benefits-image {
    flex: 1 1 420px;
}

.benefits-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    object-fit: cover;
}

/* Price Insurance - Benefit Cards */
.price-benefits .benefit-card {
    background: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 14px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.price-benefits .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.price-benefits .benefit-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #f4f0ff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: #6b4ce6;
}

.price-benefits h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
    font-weight: 600;
}

.price-benefits p {
    color: #444;   /* Strong contrast */
    font-size: 15px;
    line-height: 1.6;
}


/* Responsive */
@media (max-width: 768px) {
    .benefits-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .benefits-list li {
        justify-content: center;
        text-align: left;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.faq-grid {
    margin-top: 3rem;
}

.faq-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.faq-question i {
    transition: var(--transition);
}

.faq-card.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-card.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* Dark Background How It Works */
.how-it-works.dark-bg {
    background-color: var(--primary-dark);
    color: white;
}

.how-it-works.dark-bg .section-header h2,
.how-it-works.dark-bg .section-header p {
    color: white;
}

.how-it-works.dark-bg .step-card {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.how-it-works.dark-bg .step-card h3 {
    color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .product-hero-content,
    .benefits-content {
        flex-direction: column;
    }
    
    .product-hero-image,
    .benefits-image {
        order: -1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .product-hero-text h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .hero-cta .btn {
        flex: 100%;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Quote Form Section */
.quote-form-section {
    padding: 4rem 0;
}

.form-container {
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 3rem;
}

.form-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
}

.form-header h2 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.form-header p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.form-header i {
    margin-right: 0.8rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.form-section {
    margin-bottom: 1.5rem;
}

.form-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 13, 173, 0.1);
}

.radio-group {
    display: flex;
    gap: 1.5rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.radio-group input[type="radio"]:checked {
    border-color: var(--primary-color);
}

.radio-group input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 2px;
    left: 2px;
}

.form-footer {
    padding: 1.5rem 2rem;
    background-color: var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.privacy-notice {
    font-size: 0.85rem;
    color: var(--text-medium);
    max-width: 60%;
}

.privacy-notice a {
    color: var(--primary-color);
    text-decoration: underline;
}

.quote-benefits {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.quote-benefits h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quote-benefits ul {
    list-style: none;
}

.quote-benefits li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.quote-benefits i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-footer {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .privacy-notice {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .radio-group {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Claims Form Section */
.claims-form-section {
    padding: 4rem 0;
}

.form-container {
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 3rem;
}

.form-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
}

.form-header h2 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.form-header p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.form-header i {
    margin-right: 0.8rem;
}

.form-step {
    padding: 2rem;
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input.error {
    border-color: #e74c3c;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 13, 173, 0.1);
}

.form-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.btn-next, .btn-prev {
    min-width: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
}

/* Review Section */
.review-section {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.review-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.review-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.review-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.review-item p {
    margin-bottom: 0.5rem;
}

/* Claims Assistance */
.claims-assistance {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.claims-assistance h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.claims-assistance ul {
    list-style: none;
}

.claims-assistance li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.claims-assistance i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-next, .btn-prev {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .form-step {
        padding: 1.5rem;
    }
    
    .review-item p {
        font-size: 0.9rem;
    }
}

/* Universal Quotation Form Section */
.quote-form-section {
    padding: 4rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.form-container {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.form-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
}

.form-header h2 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.form-header p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.form-intro {
    padding: 1.5rem 1.5rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.required {
    color: #e74c3c;
    font-weight: bold;
}

fieldset {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem;
    position: relative;
}

fieldset legend {
    font-weight: 600;
    color: var(--primary-color);
    padding: 0 0.5rem;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input.error {
    border-color: #e74c3c;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 13, 173, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 0.5rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

.form-submit {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0 1.5rem 1.5rem;
}

/* Quote Sidebar */
.quote-sidebar {
    width: 320px;
}

.sidebar-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.sidebar-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.sidebar-card li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.sidebar-card i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.sidebar-card .btn {
    width: 100%;
    text-align: center;
}

.product-links h4 {
    color: var(--text-dark);
    margin: 1rem 0 0.5rem;
    font-size: 1rem;
}

.product-links ul {
    margin-bottom: 0.5rem;
}

.product-links li {
    margin-bottom: 0.3rem;
}

.product-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.product-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Dynamic Fields Container */
#dynamicFieldsContainer {
    margin-top: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .quote-form-section {
        flex-direction: column;
    }
    
    .quote-sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .sidebar-card {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .form-submit {
        flex-direction: column;
    }
    
    .form-submit .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    fieldset {
        padding: 1rem;
        margin: 1rem;
    }
    
    .form-intro, .form-header {
        padding: 1rem;
    }
    
    .form-header h2 {
        font-size: 1.3rem;
    }
}

/*price insure cards*/
.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-link .info-card {
    cursor: pointer;
}

