 /* CSS STYLES */

        /* --- 1. Global & Variables --- */
        :root {
            --primary-color: #f20032;
            --primary-dark: #f20032;
            --secondary-color: #1aca7f;
            --bg-light: #f8f9fa;
            --bg-dark: #343a40;
            --text-dark: #212529;
            --text-light: #ffffff;
            --border-color: #dee2e6;
            --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            line-height: 1.6;
            color: var(--text-dark);
        }

        .container {
            max-width: 1100px;
            margin: auto;
            padding: 0 20px;
        }

        section {
            padding: 60px 0;
        }

        section:nth-child(even) {
            background-color: var(--bg-light);
        }

        h1, h2, h3 {
            margin-bottom: 20px;
            font-weight: 600;
        }

        h2 {
            text-align: center;
            font-size: 2.5rem;
            color: var(--text-dark);
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--primary-color);
            color: var(--text-light);
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }

        .btn:hover {
            background-color: var(--primary-dark);
        }

        .btn-secondary {
            background-color: var(--secondary-color);
        }

        .btn-secondary:hover {
            background-color: #1aca7f;
        }
        
        .confirmation-message {
            display: none;
            padding: 15px;
            margin-top: 20px;
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            border-radius: 5px;
            text-align: center;
        }

        /* --- 2. Header & Navigation --- */
        header {
            background: var(--text-light);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }
        .logo i {
            margin-right: 8px;
        }

        nav ul {
            list-style: none;
            display: flex;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: var(--primary-color);
        }

        #menu-btn {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }

        /* --- 3. Hero Section --- */
        #hero {
            background: linear-gradient(rgba(242, 0, 50, 0.7), rgba(242, 0, 50, 0.7)), url('../img/hero.jpg') no-repeat center center/cover;
            height: 90vh;
            color: var(--text-light);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        #hero .container {
            max-width: 800px;
        }

        #hero h1 {
            font-size: 3.5rem;
            margin-bottom: 15px;
        }

        #hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        /* --- 4. About Section --- */
        #about .container {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        #about .about-content {
            flex: 1;
        }
        #about .about-image {
            flex: 1;
        }
        #about img {
            width: 100%;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        /* --- 5. Services Section --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .service-card {
            background: var(--text-light);
            padding: 30px;
            text-align: center;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .service-card i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        /* --- 6. Why Choose Us Section --- */
        #why-us {
            background: var(--bg-light);
        }
        .why-us-grid {
             display: grid;
             grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
             gap: 30px;
             margin-top: 40px;
        }
        .why-us-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }
        .why-us-item i {
            font-size: 2.5rem;
            color: var(--secondary-color);
        }

        /* --- 7. Health Care Plans Section --- */
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .plan-card {
            background: var(--text-light);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            text-align: center;
            border: 2px solid var(--border-color);
            transition: transform 0.3s, border-color 0.3s;
        }
        
        .plan-card.featured {
            border-color: var(--primary-color);
            transform: scale(1.05);
        }

        .plan-card .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .plan-card .price span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-dark);
        }

        .plan-card ul {
            list-style: none;
            margin: 20px 0;
            text-align: left;
        }

        .plan-card ul li {
            margin-bottom: 10px;
        }
        
        .plan-card ul li i {
            color: var(--secondary-color);
            margin-right: 10px;
        }


        /* --- 8. Contact & Quote Form --- */
        #contact .container {
          max-width: 800px;
        }

        #quote-form {
            margin-top: 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .full-width {
            grid-column: 1 / -1;
        }

        #quote-form label {
            margin-bottom: 5px;
            font-weight: 600;
        }

        #quote-form input,
        #quote-form select,
        #quote-form textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            font-size: 1rem;
        }

        #quote-form button {
            grid-column: 1 / -1;
            padding: 15px;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
        }

        /* --- 9. Testimonials Section --- */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .testimonial-card {
            background: var(--text-light);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            border-left: 5px solid var(--primary-color);
        }

        .testimonial-card .quote {
            font-style: italic;
            margin-bottom: 15px;
        }

        .testimonial-card .author {
            font-weight: 700;
            text-align: right;
            color: var(--primary-color);
        }

        /* --- 10. Footer --- */
        footer {
            background: var(--bg-dark);
            color: var(--text-light);
            padding: 50px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            margin-bottom: 20px;
            font-size: 1.2rem;
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 50px;
            height: 2px;
            background: var(--primary-color);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a, .footer-col p {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-col ul li a:hover {
            color: var(--primary-color);
        }
        
        .social-links a {
            display: inline-block;
            height: 40px;
            width: 40px;
            background: rgba(255, 255, 255, 0.2);
            margin-right: 10px;
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            color: var(--text-light);
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--primary-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #4a4a4a;
        }

        .footer-bottom a {
            color: var(--text-light);
            margin: 0 10px;
        }

        /* --- 11. Modals --- */
        .modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            display: none; /* Hidden by default */
            justify-content: center;
            align-items: center;
        }

        .modal-backdrop.active {
            display: flex; /* Shown when active */
        }
        
        .modal {
            background: var(--text-light);
            padding: 30px;
            border-radius: 10px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.8rem;
            cursor: pointer;
            color: #888;
        }

        .modal-close:hover {
            color: #000;
        }
        
        #newsletter-form .form-group {
            margin-bottom: 15px;
        }
        
        #newsletter-form label {
            font-weight: 600;
            display: block;
            margin-bottom: 5px;
        }
        
        #newsletter-form input[type="text"],
        #newsletter-form input[type="email"],
        #newsletter-form input[type="date"] {
            width: 100%;
            padding: 10px;
            border: 1px solid var(--border-color);
            border-radius: 5px;
        }
        
        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        #newsletter-form button {
            width: 100%;
            padding: 12px;
            border: none;
            cursor: pointer;
        }

        /* --- 12. Responsive Design --- */
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }

            #menu-btn {
                display: block;
            }

            header nav {
                position: absolute;
                top: 100%;
                left: -100%; /* Hidden off-screen */
                width: 100%;
                background: var(--text-light);
                padding: 20px;
                box-shadow: var(--shadow);
                transition: left 0.3s ease;
            }
            
            header nav.active {
                left: 0; /* Slide in */
            }

            header nav ul {
                flex-direction: column;
                align-items: center;
            }

            header nav ul li {
                margin: 10px 0;
            }

            #about .container {
                flex-direction: column;
            }
            
            #quote-form {
                grid-template-columns: 1fr;
            }

            .footer-grid {
              grid-template-columns: 1fr;
              text-align: center;
            }

            .footer-col h4::after {
              left: 50%;
              transform: translateX(-50%);
            }
        }