
        :root {
            --primary-dark: #0B1120;
            --accent-green: #10B981;
            --accent-pink: #F472B6;
            --bg-light: #F8FAFC;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-light);
            color: var(--primary-dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* 2026 Design Trends - Organic Gradients & Nature-Inspired Effects */
        .organic-glass {
            background: rgba(248, 250, 252, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 24px;
        }

        .nature-gradient {
            background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-pink) 100%);
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-pink) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .floating-element {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        .leaf-pattern {
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c-8 0-15 7-15 15s7 25 15 25 15-17 15-25-7-15-15-15zm0 35c-4 0-8-10-8-15s4-10 8-10 8 5 8 10-4 15-8 15z' fill='%2310B981' opacity='0.08'/%3E%3C/svg%3E");
            background-repeat: repeat;
        }

        /* Navbar Styles */
        .navbar {
            padding: 1.25rem 0;
            transition: var(--transition);
            background: transparent !important;
            z-index: 1000;
        }

        .navbar.scrolled {
            background: rgba(248, 250, 252, 0.98) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(11, 17, 32, 0.08);
            padding: 0.75rem 0;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .navbar-brand i {
            color: var(--accent-green);
            font-size: 1.8rem;
        }

        .nav-link {
            color: var(--primary-dark) !important;
            font-weight: 500;
            margin: 0 0.4rem;
            position: relative;
            transition: var(--transition);
            padding: 0.5rem 0.75rem !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-green);
            transition: var(--transition);
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 80%;
        }

        .btn-cta {
            background: var(--nature-gradient);
            background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-pink) 100%);
            color: white;
            border: none;
            padding: 0.75rem 1.75rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(16, 185, 129, 0.25);
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
            color: white;
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(11, 17, 32, 0.92) 0%, rgba(16, 185, 129, 0.85) 40%, rgba(244, 114, 182, 0.75) 100%), 
                        url('https://www.pharmakhabar.com/storage/files/in/4519/thumb-new-816x460-024ce31bc3c59b939640e87ee98e1a40.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(244, 114, 182, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 4.2rem;
            font-weight: 800;
            line-height: 1.05;
            margin-bottom: 1.5rem;
            color: white;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2.5rem;
            max-width: 650px;
            font-weight: 300;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 0.6rem 1.75rem;
            border-radius: 50px;
            color: white;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.25);
            font-weight: 500;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-green);
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.85);
        }

        /* Section Styles */
        section {
            padding: 6.5rem 0;
        }

        .section-title {
            font-size: 2.6rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-dark);
        }

        .section-subtitle {
            color: #64748B;
            font-size: 1.15rem;
            margin-bottom: 3.5rem;
            max-width: 600px;
        }

        /* About Section */
        .about-img {
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(11, 17, 32, 0.12);
            position: relative;
            height: 100%;
        }

        .about-img::before {
            content: '';
            position: absolute;
            top: -25px;
            left: -25px;
            right: 25px;
            bottom: 25px;
            border: 4px solid var(--accent-green);
            border-radius: 28px;
            z-index: -1;
            opacity: 0.3;
        }

        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .about-img:hover img {
            transform: scale(1.03);
        }

        .about-content p {
            line-height: 1.85;
            color: #475569;
            margin-bottom: 1.1rem;
            font-size: 1.05rem;
        }

        /* Counter Section */
        .counter-section {
            background: var(--primary-dark);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .counter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-pink) 100%);
            opacity: 0.08;
        }

        .counter-section::after {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(244, 114, 182, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .counter-item {
            text-align: center;
            padding: 2.5rem 1.5rem;
            position: relative;
            z-index: 1;
        }

        .counter-number {
            font-size: 4rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-pink) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .counter-label {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 400;
        }

        /* Vision & Mission */
        .vision-mission-card {
            background: white;
            padding: 3.5rem;
            border-radius: 28px;
            box-shadow: 0 15px 50px rgba(11, 17, 32, 0.08);
            height: 100%;
            transition: var(--transition);
            border: 1px solid rgba(16, 185, 129, 0.1);
            position: relative;
            overflow: hidden;
        }

        .vision-mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-green), var(--accent-pink));
        }

        .vision-mission-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 70px rgba(11, 17, 32, 0.15);
        }

        .vm-icon {
            width: 75px;
            height: 75px;
            background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-pink) 100%);
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin-bottom: 1.75rem;
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
        }

        /* Why Choose Us */
        .feature-card {
            padding: 2.25rem;
            background: white;
            border-radius: 22px;
            box-shadow: 0 8px 30px rgba(11, 17, 32, 0.06);
            transition: var(--transition);
            height: 100%;
            border: 1px solid rgba(16, 185, 129, 0.08);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-green), var(--accent-pink));
            opacity: 0;
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(11, 17, 32, 0.12);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-pink) 100%);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
        }

        /* Work Process */
        .process-step {
            text-align: center;
            padding: 2.5rem 1.5rem;
            position: relative;
        }

        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 60px;
            right: -50%;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-green), var(--accent-pink));
            opacity: 0.25;
        }

        .process-number {
            width: 85px;
            height: 85px;
            background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-pink) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.2rem;
            font-weight: 700;
            margin: 0 auto 1.75rem;
            position: relative;
            z-index: 1;
            box-shadow: 0 12px 35px rgba(16, 185, 129, 0.35);
        }

        .contact-section input{
            border:1px solid #0B1120;
        }

              .contact-section textarea{
            border:1px solid #0B1120;
        }

        /* Services Cards */
        .service-card {
            background: var(--bg-light);
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 15px 45px rgba(11, 17, 32, 0.08);
            transition: var(--transition);
            height: 100%;
            border: 1px solid rgba(16, 185, 129, 0.08);
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 60px rgba(11, 17, 32, 0.15);
        }

        .service-img {
            height: 350px;
            overflow: hidden;
            position: relative;
        }

        .service-img::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60%;
            background: linear-gradient(to top, rgba(11, 17, 32, 0.4), transparent);
            z-index: 1;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .service-card:hover .service-img img {
            transform: scale(1.08);
        }

        .service-content {
            padding: 2.25rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-title {
            font-size: 1.45rem;
            font-weight: 700;
            margin-bottom: 1.1rem;
            color: var(--primary-dark);
        }

        .service-desc {
            color: #64748B;
            line-height: 1.75;
            margin-bottom: 1.75rem;
            flex-grow: 1;
        }

        /* Booking Form */
        .booking-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1E293B 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .booking-section::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -15%;
            width: 700px;
            height: 700px;
            background: var(--accent-green);
            border-radius: 50%;
            opacity: 0.08;
            filter: blur(80px);
        }

        .booking-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: var(--accent-pink);
            border-radius: 50%;
            opacity: 0.08;
            filter: blur(70px);
        }

        .booking-form {
            background: rgba(248, 250, 252, 0.08);
            backdrop-filter: blur(15px);
            padding: 3.5rem;
            border-radius: 28px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            position: relative;
            z-index: 1;
        }

        .form-control {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 1.1rem 1.25rem;
            border-radius: 14px;
            transition: var(--transition);
            font-size: 1rem;
        }

        .form-control:focus {
            background: rgba(255, 255, 255, 0.18);
            border-color: var(--accent-green);
            color: white;
            box-shadow: 0 0 0 0.25rem rgba(16, 185, 129, 0.25);
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.65);
        }

        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1.25rem center;
            padding-right: 2.5rem;
        }

        /* Reviews */
        .review-card {
            background: white;
            padding: 2.5rem;
            border-radius: 24px;
            box-shadow: 0 12px 40px rgba(11, 17, 32, 0.08);
            height: 100%;
            transition: var(--transition);
            border: 1px solid rgba(16, 185, 129, 0.08);
        }

        .review-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 55px rgba(11, 17, 32, 0.12);
        }

        .review-stars {
            color: #F59E0B;
            margin-bottom: 1.25rem;
            font-size: 1.1rem;
        }

        .review-text {
            color: #475569;
            font-style: italic;
            margin-bottom: 1.75rem;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-pink) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 1.2rem;
        }

        .reviewer-name {
            font-weight: 600;
            color: var(--primary-dark);
            font-size: 1.1rem;
        }

        .reviewer-location {
            color: #94A3B8;
            font-size: 0.95rem;
        }

        /* FAQ Section */
        .accordion-item {
            border: none;
            margin-bottom: 1.25rem;
            border-radius: 18px !important;
            overflow: hidden;
            box-shadow: 0 6px 25px rgba(11, 17, 32, 0.06);
            background: white;
            border: 1px solid rgba(16, 185, 129, 0.08);
        }

        .accordion-button {
            background: white;
            color: var(--primary-dark);
            font-weight: 600;
            padding: 1.5rem 1.75rem;
            border: none;
            font-size: 1.1rem;
        }

        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-pink) 100%);
            color: white;
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: none;
        }

        .accordion-button::after {
            filter: invert(1);
        }

        .accordion-button:not(.collapsed)::after {
            filter: invert(0);
        }

        .accordion-body {
            padding: 1.5rem 1.75rem;
            background: white;
            color: #64748B;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-pink) 100%);
            color: white;
            text-align: center;
            padding: 5.5rem 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><circle cx="40" cy="40" r="3" fill="rgba(255,255,255,0.08)"/></svg>');
            opacity: 0.6;
        }

        .cta-title {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            position: relative;
            z-index: 1;
        }

        .btn-cta-white {
            background: white;
            color: var(--accent-green);
            border: none;
            padding: 1.1rem 3.25rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.15rem;
            transition: var(--transition);
            position: relative;
            z-index: 1;
            margin-top: 2.25rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .btn-cta-white:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
            color: var(--accent-green);
        }

        /* Contact Section */
        .contact-info-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 12px 35px rgba(11, 17, 32, 0.08);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
            transition: var(--transition);
            border: 1px solid rgba(16, 185, 129, 0.08);
        }

        .contact-info-card:hover {
            transform: translateX(8px);
            box-shadow: 0 18px 50px rgba(11, 17, 32, 0.12);
        }

        .contact-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-pink) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            flex-shrink: 0;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
        }

        .contact-details h5 {
            font-weight: 600;
            margin-bottom: 0.4rem;
            color: var(--primary-dark);
            font-size: 1.15rem;
        }

        .contact-details p {
            color: #64748B;
            margin: 0;
            line-height: 1.7;
            font-size: 1.02rem;
        }

        .contact-form {
            background: white;
            padding: 3.5rem;
            border-radius: 28px;
            box-shadow: 0 15px 50px rgba(11, 17, 32, 0.08);
            border: 1px solid rgba(16, 185, 129, 0.08);
        }

        /* Footer */
        footer {
            background: var(--primary-dark);
            color: white;
            padding: 5.5rem 0 2.5rem;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.4), transparent);
        }

        .footer-col h4 {
            font-weight: 700;
            margin-bottom: 1.75rem;
            color: white;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-green), var(--accent-pink));
            border-radius: 2px;
        }

        .footer-col p {
            color: #94A3B8;
            line-height: 1.85;
            font-size: 1.02rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.85rem;
        }

        .footer-links a {
            color: #94A3B8;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1.02rem;
        }

        .footer-links a:hover {
            color: var(--accent-green);
            padding-left: 6px;
        }

        .footer-links a i {
            font-size: 0.8rem;
            color: var(--accent-green);
        }

        .newsletter-form {
            position: relative;
        }

        .newsletter-form input {
            width: 100%;
            padding: 1.1rem 1.25rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            color: white;
            margin-bottom: 1rem;
            font-size: 1rem;
            transition: var(--transition);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--accent-green);
            background: rgba(255, 255, 255, 0.15);
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.65);
        }

        .newsletter-form button {
            width: 100%;
            padding: 1.1rem;
            background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-pink) 100%);
            border: none;
            border-radius: 14px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.05rem;
        }

        .newsletter-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
            font-size: 1.1rem;
        }

        .social-links a:hover {
            background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-pink) 100%);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 3.5rem;
            padding-top: 2.25rem;
            text-align: center;
            color: #94A3B8;
            font-size: 1rem;
        }

        .footer-bottom a {
            color: var(--accent-green);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }

        .footer-bottom a:hover {
            color: var(--accent-pink);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Alert Styles */
        .alert {
            border-radius: 14px;
            border: none;
            padding: 1.1rem 1.5rem;
            font-weight: 500;
        }

        .alert-success {
            background: rgba(16, 185, 129, 0.12);
            color: var(--accent-green);
            border: 1px solid var(--accent-green);
        }

        .alert-danger {
            background: rgba(239, 68, 68, 0.12);
            color: #EF4444;
            border: 1px solid #EF4444;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3.2rem;
            }
            
            .section-title {
                font-size: 2.3rem;
            }
            
            .process-step:not(:last-child)::after {
                display: none;
            }
            
            .cta-title {
                font-size: 2.4rem;
            }
            
            .booking-form {
                padding: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.6rem;
            }
            
            .hero-subtitle {
                font-size: 1.15rem;
            }
            
            .hero-stats {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .counter-number {
                font-size: 3.2rem;
            }
            
            .vision-mission-card,
            .contact-form,
            .booking-form {
                padding: 2.5rem;
            }
        }

        @media (max-width: 576px) {
            section {
                padding: 4.5rem 0;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .navbar-brand {
                font-size: 1.3rem;
            }
            
            .btn-cta {
                padding: 0.65rem 1.5rem;
                font-size: 0.95rem;
            }
        }
