
        /* ========================================
           CSS VARIABLES & RESET
        ======================================== */
        :root {
            --primary-color: #0077b6;
            --secondary-color: #00b4d8;
            --accent-color: #48cae4;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
            --white: #ffffff;
            --light-bg: #f8f9fa;
            --success-color: #28a745;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* ========================================
           UTILITY CLASSES
        ======================================== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        .section-title p {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 20px auto 0;
        }

        /* ========================================
           ANIMATION KEYFRAMES
        ======================================== */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(0, 119, 182, 0.4);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 0 0 15px rgba(0, 119, 182, 0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink {
            50% { border-color: transparent; }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8) translateY(-20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        /* ========================================
           HEADER
        ======================================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--white);
            box-shadow: var(--shadow);
            z-index: 1000;
            transition: var(--transition);
        }

        .header.scrolled {
            padding: 10px 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            animation: float 3s ease-in-out infinite;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .logo-text span {
            color: var(--secondary-color);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 30px;
            list-style: none;
        }

        .nav-link {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            position: relative;
            transition: var(--transition);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--primary-color);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .header-cta {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            animation: pulse 2s infinite;
        }

        .header-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 119, 182, 0.3);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
            transition: var(--transition);
        }

        /* ========================================
           HERO SECTION
        ======================================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #e6f4f9 0%, #f0f9ff 50%, #e0f2fe 100%);
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 50px 20px;
        }

        .hero-text {
            animation: fadeInUp 1s ease forwards;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(0, 119, 182, 0.1);
            color: var(--primary-color);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 20px;
            animation: fadeIn 0.8s ease 0.2s forwards;
            opacity: 0;
        }

        .hero-title {
            font-size: 3.5rem;
            line-height: 1.2;
            color: var(--text-dark);
            margin-bottom: 20px;
            animation: fadeInUp 1s ease 0.4s forwards;
            opacity: 0;
        }

        .hero-title span {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.6s forwards;
            opacity: 0;
        }

        .hero-services {
            background: var(--white);
            padding: 15px 25px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
            animation: fadeInUp 1s ease 0.8s forwards;
            opacity: 0;
        }

        .hero-services span {
            color: var(--primary-color);
            font-weight: 600;
        }

        .services-loop {
            display: inline-block;
            overflow: hidden;
            white-space: nowrap;
            animation: typing 8s steps(40, end) infinite;
            border-right: 2px solid var(--primary-color);
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            animation: fadeInUp 1s ease 1s forwards;
            opacity: 0;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 119, 182, 0.3);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary-color);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 2px solid var(--primary-color);
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-secondary:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        .hero-image {
            position: relative;
            animation: zoomIn 1s ease 0.5s forwards;
            opacity: 0;
        }

        .hero-image-main {
            width: 100%;
            max-width: 500px;
            height: 500px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: morphing 8s ease-in-out infinite;
        }

        @keyframes morphing {
            0%, 100% {
                border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            }
            25% {
                border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
            }
            50% {
                border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
            }
            75% {
                border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
            }
        }

        .hero-image-icon {
            font-size: 8rem;
            color: var(--white);
        }

        .floating-card {
            position: absolute;
            background: var(--white);
            padding: 15px 25px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: 15px;
            animation: float 3s ease-in-out infinite;
        }

        .floating-card-1 {
            top: 20%;
            left: -30px;
            animation-delay: 0s;
        }

        .floating-card-2 {
            bottom: 20%;
            right: -30px;
            animation-delay: 1.5s;
        }

        .floating-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
        }

        .floating-text h4 {
            font-size: 1rem;
            color: var(--text-dark);
        }

        .floating-text p {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        /* ========================================
           ABOUT SECTION
        ======================================== */
        .about {
            padding: 100px 0;
            background: var(--white);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            position: relative;
            animation: fadeInLeft 1s ease forwards;
        }

        .about-image-main {
            width: 100%;
            height: 450px;
            background: linear-gradient(135deg, #e6f4f9 0%, #d0e8f0 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .about-image-icon {
            font-size: 8rem;
            color: var(--primary-color);
        }

        .about-badge {
            position: absolute;
            bottom: 30px;
            left: -30px;
            background: var(--white);
            padding: 20px 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: 15px;
            animation: bounce 2s infinite;
        }

        .about-badge-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--success-color), #34ce57);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
        }

        .about-badge-text h4 {
            font-size: 1.8rem;
            color: var(--primary-color);
        }

        .about-badge-text p {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .about-text {
            animation: fadeInRight 1s ease forwards;
        }

        .about-text h4 {
            color: var(--primary-color);
            font-size: 1.1rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .about-text p {
            color: var(--text-light);
            margin-bottom: 30px;
            font-size: 1.05rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .about-feature {
            text-align: center;
            padding: 25px 15px;
            background: var(--light-bg);
            border-radius: 15px;
            transition: var(--transition);
        }

        .about-feature:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }

        .about-feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .about-feature h4 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .about-feature p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 0;
        }

        .about-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        /* ========================================
           SERVICES SECTION
        ======================================== */
        .services {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            transform: scaleX(0);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(0, 119, 182, 0.1), rgba(0, 180, 216, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.5rem;
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            transform: scale(1.1);
        }

        .service-card:hover .service-icon::before {
            color: var(--white);
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .service-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* ========================================
           WHY CHOOSE US SECTION
        ======================================== */
        .why-us {
            padding: 100px 0;
            background: var(--white);
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
        }

        .why-us-card {
            text-align: center;
            padding: 30px 20px;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(20px);
        }

        .why-us-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .why-us-card:hover {
            transform: translateY(-5px);
        }

        .why-us-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--white);
            font-size: 1.8rem;
            transition: var(--transition);
        }

        .why-us-card:hover .why-us-icon {
            animation: bounce 1s ease;
        }

        .why-us-card h3 {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .why-us-card p {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* ========================================
           PLANS SECTION
        ======================================== */
        .plans {
            padding: 100px 0;
            background: linear-gradient(135deg, #e6f4f9 0%, #f0f9ff 100%);
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .plan-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: scale(0.9);
        }

        .plan-card.visible {
            opacity: 1;
            transform: scale(1);
        }

        .plan-card.featured {
            transform: scale(1.05);
            border: 3px solid var(--primary-color);
        }

        .plan-card.featured.visible {
            transform: scale(1.1);
        }

        .plan-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 5px 40px;
            font-size: 0.8rem;
            font-weight: 600;
            transform: rotate(45deg);
        }

        .plan-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .plan-card h3 {
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .plan-card p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 25px;
        }

        .plan-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .plan-price span {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 400;
        }

        .plan-btn {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 30px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .plan-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 119, 182, 0.3);
        }

        .plans-note {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            background: rgba(0, 119, 182, 0.1);
            border-radius: 15px;
        }

        .plans-note p {
            color: var(--primary-color);
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* ========================================
           BOOKING SECTION
        ======================================== */
        .booking {
            padding: 100px 0;
            background: var(--white);
        }

        .booking-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .booking-form {
            background: var(--light-bg);
            padding: 50px;
            border-radius: 25px;
            animation: fadeInUp 1s ease forwards;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            position: relative;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--text-dark);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 1rem;
            transition: var(--transition);
            background: var(--white);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 10px;
        }

        .form-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 119, 182, 0.3);
        }

        .confirmation-message {
            display: none;
            background: linear-gradient(135deg, #d4edda, #c3e6cb);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            animation: slideDown 0.5s ease forwards;
        }

        .confirmation-message.show {
            display: block;
        }

        .confirmation-icon {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .confirmation-message h3 {
            color: var(--success-color);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        /* ========================================
           TESTIMONIALS SECTION
        ======================================== */
        .testimonials {
            padding: 100px 0;
            background: linear-gradient(135deg, #e6f4f9 0%, #f0f9ff 100%);
        }

        .testimonials-container {
            overflow: hidden;
            position: relative;
        }

        .testimonials-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }

        .testimonial-card {
            min-width: calc(33.333% - 20px);
            background: var(--white);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow);
        }

        .testimonial-quote {
            font-size: 4rem;
            color: var(--primary-color);
            opacity: 0.3;
            margin-bottom: 20px;
        }

        .testimonial-card p {
            font-size: 1.1rem;
            color: var(--text-dark);
            font-style: italic;
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            font-weight: 600;
        }

        .testimonial-info h4 {
            font-size: 1.1rem;
            color: var(--text-dark);
        }

        .testimonial-info p {
            font-size: 0.9rem;
            color: var(--text-light);
            font-style: normal;
        }

        .testimonials-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

        .testimonial-nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid var(--primary-color);
            background: var(--white);
            color: var(--primary-color);
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .testimonial-nav-btn:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        /* ========================================
           CONTACT SECTION
        ======================================== */
        .contact {
            padding: 100px 0;
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .contact-card {
            text-align: center;
            padding: 40px 30px;
            background: var(--light-bg);
            border-radius: 20px;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(20px);
        }

        .contact-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--white);
        }

        .contact-card h3 {
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .contact-card p {
            color: var(--text-light);
            font-size: 1rem;
        }

        .contact-card a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-card a:hover {
            color: var(--secondary-color);
        }

        /* ========================================
           MODALS
        ======================================== */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .modal-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            background: var(--white);
            padding: 50px;
            border-radius: 25px;
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            transform: scale(0.8);
            transition: var(--transition);
        }

        .modal-overlay.show .modal {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-light);
            transition: var(--transition);
        }

        .modal-close:hover {
            color: var(--text-dark);
        }

        .modal h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            text-align: center;
        }

        .modal-form .form-group {
            margin-bottom: 20px;
        }

        .modal-form .btn-primary {
            width: 100%;
            justify-content: center;
            padding: 15px;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .checkbox-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
        }

        .modal-content-text {
            line-height: 1.8;
            color: var(--text-dark);
        }

        .modal-content-text h4 {
            color: var(--primary-color);
            margin: 20px 0 10px;
        }

        /* ========================================
           NEWSLETTER POPUP
        ======================================== */
        .newsletter-popup .modal {
            max-width: 450px;
            text-align: center;
        }

        .newsletter-popup .modal-icon {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .newsletter-popup .modal h3 {
            font-size: 2rem;
        }

        .newsletter-popup .modal p {
            color: var(--text-light);
            margin-bottom: 25px;
        }

        /* ========================================
           FOOTER
        ======================================== */
        .footer {
            background: var(--text-dark);
            padding: 80px 0 30px;
            color: var(--white);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-brand .logo {
            margin-bottom: 20px;
        }

        .footer-brand .logo-text {
            color: var(--white);
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .social-link:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            color: var(--white);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }

        /* ========================================
           RESPONSIVE DESIGN
        ======================================== */
        @media (max-width: 1200px) {
            .plans-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .plan-card.featured {
                transform: scale(1);
            }

            .plan-card.featured.visible {
                transform: scale(1.05);
            }
        }

        @media (max-width: 992px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image {
                display: none;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .about-image {
                order: 1;
            }

            .about-text {
                order: 2;
                text-align: center;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-us-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .testimonial-card {
                min-width: calc(50% - 15px);
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow);
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-toggle {
                display: flex;
            }

            .header-cta {
                display: none;
            }

            .hero-title {
                font-size: 2rem;
            }

            .services-grid,
            .plans-grid {
                grid-template-columns: 1fr;
            }

            .why-us-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .form-group.full-width {
                grid-column: span 1;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero-services {
                font-size: 0.9rem;
                padding: 10px 20px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .why-us-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-card {
                min-width: 100%;
            }

            .booking-form {
                padding: 30px 20px;
            }

            .modal {
                padding: 30px 20px;
            }
        }
    