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

        body {
            font-family: 'Playfair Display', serif;
            line-height: 1.7;
            color: #1a202c;
            overflow-x: hidden;
        }

        /* Premium Animation Classes */
        .luxury-fade {
            opacity: 0;
            transform: translateY(60px);
            transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .luxury-fade.active {
            opacity: 1;
            transform: translateY(0);
        }

        .smooth-rise {
            opacity: 0;
            transform: translateY(40px) scale(0.95);
            transition: all 1.8s ease-out;
        }

        .smooth-rise.active {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .elegant-slide {
            opacity: 0;
            transform: translateX(-80px);
            transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .elegant-slide.active {
            opacity: 1;
            transform: translateX(0);
        }

        .premium-reveal {
            opacity: 0;
            transform: scale(0.8) rotate(-3deg);
            transition: all 2s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .premium-reveal.active {
            opacity: 1;
            transform: scale(1) rotate(0);
        }

        .gold-shimmer {
            position: relative;
            overflow: hidden;
        }

        .gold-shimmer::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(227, 24, 54, 0.3), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #1a202c, #2d3748, #000);
            color: white;
            padding: 1.5rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 8px 40px rgba(26, 32, 44, 0.4);
            backdrop-filter: blur(15px);
            border-bottom: 3px solid #f25864;
        }

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

        .logo {
            font-size: 2.5rem;
            font-weight: 600;
            background: linear-gradient(45deg, #f25864, #e31836);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        .nav-links a {
            color: #e2e8f0;
            text-decoration: none;
            transition: all 0.4s ease;
            padding: 1rem 1.5rem;
            border-radius: 30px;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .nav-links a:hover {
            color: #f25864;
            background: rgba(227, 24, 54, 0.1);
            transform: translateY(-3px);
        }

        .cta-btn {
            background: linear-gradient(45deg, #f25864, #e31836);
            color: #1a202c;
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 40px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            box-shadow: 0 8px 25px rgba(227, 24, 54, 0.4);
        }

        .cta-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 40px rgba(227, 24, 54, 0.6);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 30%, #e2e8f0 100%);
            color: #1a202c;
            text-align: center;
            padding: 180px 2rem 160px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="30" cy="30" r="1.5" fill="%23f25864" opacity="0.6"><animate attributeName="r" dur="4s" values="1.5;3;1.5" repeatCount="indefinite"/></circle><circle cx="70" cy="70" r="1" fill="%23f25864" opacity="0.8"><animate attributeName="r" dur="3s" values="1;2.5;1" repeatCount="indefinite"/></circle><circle cx="50" cy="20" r="0.8" fill="%23f25864" opacity="0.7"><animate attributeName="r" dur="5s" values="0.8;2;0.8" repeatCount="indefinite"/></circle></svg>') repeat;
            animation: luxuryFloat 30s infinite linear;
        }

        @keyframes luxuryFloat {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(-150px, -100px) rotate(360deg); }
        }

        .hero-content {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 5rem;
            margin-bottom: 2.5rem;
            font-weight: 300;
            color: #1a202c;
            animation: luxuryHeroSlide 2.5s ease;
            letter-spacing: 2px;
        }

        .hero .premium-accent {
            background: linear-gradient(45deg, #f25864, #e31836);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        .hero p {
            font-size: 1.8rem;
            margin-bottom: 4rem;
            animation: luxuryHeroSlide 2.5s ease 0.8s both;
            color: #4a5568;
            font-weight: 400;
            letter-spacing: 1px;
        }

        @keyframes luxuryHeroSlide {
            from {
                opacity: 0;
                transform: translateY(60px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .hero-buttons {
            animation: luxuryHeroSlide 2.5s ease 1.5s both;
        }

        /* Luxury Wave */
        .luxury-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 140px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,60 C200,100 400,20 600,60 C800,100 1000,20 1200,60 V120 H0 Z" fill="%23ffffff" stroke="%23f25864" stroke-width="2"/></svg>') repeat-x;
            animation: luxuryWave 6s ease-in-out infinite;
        }

        @keyframes luxuryWave {
            0%, 100% { transform: translateX(0) scaleY(1); }
            50% { transform: translateX(-40px) scaleY(1.1); }
        }

        /* Sections */
        .section {
            padding: 140px 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section h2 {
            text-align: center;
            font-size: 4rem;
            margin-bottom: 5rem;
            color: #1a202c;
            font-weight: 300;
            position: relative;
            letter-spacing: 2px;
        }

        .section h2 .premium-accent {
            background: linear-gradient(45deg, #f25864, #e31836);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        .section h2::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(45deg, #f25864, #e31836);
            border-radius: 2px;
        }

        /* About Section */
        .about {
            background: white;
        }

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

        .about-text {
            font-size: 1.4rem;
            line-height: 2.2;
            color: #4a5568;
        }

        .about-text h3 {
            color: #1a202c;
            font-size: 2.5rem;
            margin-bottom: 2.5rem;
            font-weight: 400;
        }

        .premium-display {
            background: linear-gradient(135deg, #1a202c, #2d3748);
            height: 420px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f25864;
            font-size: 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 25px 80px rgba(26, 32, 44, 0.3);
            border: 3px solid #f25864;
        }

        .premium-display::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 48%, #f25864 49%, #f25864 51%, transparent 52%);
            animation: premiumScan 4s linear infinite;
            opacity: 0.1;
        }

        @keyframes premiumScan {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(200%) rotate(45deg); }
        }

        /* Services */
        .services {
            background: linear-gradient(135deg, #f7fafc, #edf2f7);
        }

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

        .service-card {
            background: white;
            padding: 4rem 3rem;
            border-radius: 30px;
            box-shadow: 0 25px 60px rgba(26, 32, 44, 0.1);
            transition: all 0.6s ease;
            border: 2px solid #f25864;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #f25864, #e31836);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .service-card:hover::before {
            opacity: 0.05;
        }

        .service-card:hover {
            transform: translateY(-25px) scale(1.05);
            box-shadow: 0 40px 100px rgba(227, 24, 54, 0.3);
        }

        .service-card h3 {
            color: #1a202c;
            margin-bottom: 2.5rem;
            font-size: 2rem;
            position: relative;
            z-index: 2;
            font-weight: 500;
        }

        .service-card p {
            position: relative;
            z-index: 2;
            line-height: 2;
            color: #4a5568;
            font-size: 1.2rem;
        }

        /* Why Choose Us */
        .why-choose {
            background: linear-gradient(135deg, #1a202c, #2d3748);
            color: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 4rem;
        }

        .feature-item {
            text-align: center;
            padding: 4rem;
            background: rgba(227, 24, 54, 0.1);
            border-radius: 30px;
            backdrop-filter: blur(20px);
            border: 2px solid rgba(227, 24, 54, 0.3);
            transition: all 0.6s ease;
        }

        .feature-item:hover {
            transform: translateY(-20px) scale(1.05);
            background: rgba(227, 24, 54, 0.2);
        }

        .feature-icon {
            width: 140px;
            height: 140px;
            background: rgba(227, 24, 54, 0.2);
            border-radius: 50%;
            margin: 0 auto 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            border: 3px solid rgba(227, 24, 54, 0.4);
            animation: premiumPulse 4s infinite;
        }

        @keyframes premiumPulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 30px rgba(227, 24, 54, 0.3);
            }
            50% { 
                transform: scale(1.1);
                box-shadow: 0 0 50px rgba(227, 24, 54, 0.6);
            }
        }

        .feature-item h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #f25864;
        }

        /* Health Care Plan */
        .healthcare-plan {
            background: white;
        }

        .plan-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 4rem;
        }

        .plan-card {
            background: white;
            padding: 4rem 3rem;
            border-radius: 30px;
            box-shadow: 0 30px 80px rgba(26, 32, 44, 0.1);
            text-align: center;
            transition: all 0.6s ease;
            position: relative;
            overflow: hidden;
            border: 3px solid #f25864;
        }

        .plan-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: linear-gradient(45deg, #f25864, #e31836);
        }

        .plan-card:hover {
            transform: scale(1.08) rotateY(5deg);
            box-shadow: 0 50px 120px rgba(227, 24, 54, 0.3);
        }

        .plan-price {
            font-size: 4rem;
            background: linear-gradient(45deg, #f25864, #e31836);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
            margin: 3rem 0;
        }

        .plan-card h3 {
            color: #1a202c;
            font-size: 2.2rem;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        /* Contact Form */
        .contact {
            background: linear-gradient(135deg, #f7fafc, #edf2f7);
            color: #1a202c;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8rem;
        }

        .contact-info h3 {
            font-size: 3rem;
            margin-bottom: 3rem;
            color: #1a202c;
            font-weight: 400;
        }

        .contact-info p {
            font-size: 1.4rem;
            line-height: 2.5;
            margin-bottom: 2rem;
            color: #4a5568;
        }

        .form-group {
            margin-bottom: 3rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 1.2rem;
            font-weight: bold;
            font-size: 1.3rem;
            color: #1a202c;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1.8rem;
            border: 3px solid #f25864;
            border-radius: 15px;
            font-size: 1.2rem;
            background: rgba(255,255,255,0.9);
            color: #1a202c;
            transition: all 0.4s ease;
            font-family: 'Playfair Display', serif;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #e31836;
            box-shadow: 0 0 30px rgba(227, 24, 54, 0.4);
            transform: scale(1.02);
        }

        .form-group textarea {
            height: 180px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(45deg, #f25864, #e31836);
            color: #1a202c;
            padding: 2rem 4rem;
            border: none;
            border-radius: 40px;
            cursor: pointer;
            font-size: 1.4rem;
            font-weight: bold;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(227, 24, 54, 0.4);
        }

        .submit-btn:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 60px rgba(227, 24, 54, 0.6);
        }

        /* Testimonials */
        .testimonials {
            background: white;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 4rem;
        }

        .testimonial-card {
            background: white;
            padding: 4rem 3rem;
            border-radius: 30px;
            box-shadow: 0 30px 80px rgba(26, 32, 44, 0.1);
            text-align: center;
            transition: all 0.6s ease;
            position: relative;
            border: 3px solid #f25864;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 6rem;
            color: #f25864;
            font-family: serif;
            text-shadow: 0 0 20px rgba(227, 24, 54, 0.3);
        }

        .testimonial-card:hover {
            transform: translateY(-20px) scale(1.03);
            box-shadow: 0 40px 100px rgba(227, 24, 54, 0.2);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 3rem;
            font-size: 1.4rem;
            line-height: 2.2;
            margin-top: 4rem;
            color: #4a5568;
        }

        .testimonial-author {
            font-weight: bold;
            color: #f25864;
            font-size: 1.3rem;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #1a202c, #000, #000);
            color: white;
            padding: 6rem 2rem 3rem;
        }

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

        .footer-section h3 {
            margin-bottom: 2.5rem;
            color: #f25864;
            font-size: 1.8rem;
            font-weight: 500;
        }

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

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

        .footer-section ul li a {
            color: #cbd5e0;
            text-decoration: none;
            transition: all 0.4s ease;
            font-size: 1.1rem;
        }

        .footer-section ul li a:hover {
            color: #f25864;
            padding-left: 15px;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            animation: luxuryModalFadeIn 0.6s ease;
        }

        .modal-content {
            background: linear-gradient(135deg, white, #f7fafc);
            color: #1a202c;
            margin: 2% auto;
            padding: 5rem;
            border-radius: 30px;
            width: 90%;
            max-width: 900px;
            max-height: 90vh;
            overflow-y: auto;
            animation: luxuryModalSlideIn 0.6s ease;
            box-shadow: 0 50px 150px rgba(26, 32, 44, 0.4);
            border: 3px solid #f25864;
        }

        @keyframes luxuryModalFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes luxuryModalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-120px) scale(0.8);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .close {
            color: #f25864;
            float: right;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .close:hover {
            color: #e31836;
            transform: scale(1.3) rotate(15deg);
        }

        .confirmation {
            display: none;
            background: linear-gradient(45deg, #f25864, #e31836);
            color: #1a202c;
            padding: 2.5rem;
            border-radius: 15px;
            margin-top: 2.5rem;
            text-align: center;
            animation: luxuryConfirmation 0.8s ease;
            font-weight: bold;
            font-size: 1.2rem;
        }

        @keyframes luxuryConfirmation {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.8);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 3.2rem;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 5rem;
            }

            .section {
                padding: 100px 1rem;
            }

            .section h2 {
                font-size: 2.8rem;
            }
        }
    