        body {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #FAF9F6;
            color: #37474F;
            overflow-x: hidden;
        }

        /* Animated gradient background */
        .gradient-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #FAF9F6, #B2EBF2, #FAF9F6, #FFC857);
            background-size: 400% 400%;
            animation: gradientShift 12s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            25% { background-position: 100% 50%; }
            50% { background-position: 100% 100%; }
            75% { background-position: 0% 100%; }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: white;
            backdrop-filter: blur(15px);
            padding: 1rem 2rem;
            z-index: 1000;
            border-bottom: 1px solid rgba(178, 235, 242, 0.3);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #37474F;
            cursor: pointer;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            text-decoration: none;
            color: #37474F;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }

        .nav-links a:hover, .nav-links a.active {
            color: #FFC857;
            background: rgba(255, 200, 87, 0.1);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: #FFC857;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after, .nav-links a.active::after {
            width: 80%;
        }

        /* Page container */
        .page {
            display: none;
            min-height: 100vh;
            padding-top: 80px;
        }

        .page.active {
            display: block;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            padding: 0 2rem;
        }

        .hero-text {
            font-family: 'Georgia', serif;
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 2rem;
            opacity: 0;
            position: relative;
        }

        .hero-text.animate {
            animation: strokeReveal 2s ease-out forwards;
        }

        @keyframes strokeReveal {
            0% {
                opacity: 0;
                transform: translateY(50px);
            }
            50% {
                opacity: 0.5;
                transform: translateY(0);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-sequence {
            font-family: 'Georgia', serif;
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 2rem;
            min-height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .word-fade {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
            margin: 0 0.2rem;
        }

        .word-fade.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-tagline {
            font-size: 1.5rem;
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeInUp 1s ease-out 3s forwards;
            color: #37474F;
        }

        .cta-buttons {
            display: flex;
            gap: 2rem;
            opacity: 0;
            animation: fadeInUp 1s ease-out 3.5s forwards;
        }

        .cta-btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-primary {
            background: #FFC857;
            color: #37474F;
            box-shadow: 0 4px 20px rgba(255, 200, 87, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s ease;
        }

        .cta-primary:hover::before {
            left: 100%;
        }

        .cta-primary:hover {
            background: #FFB627;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 200, 87, 0.5);
        }

        .cta-secondary {
            background: transparent;
            color: #37474F;
            border: 2px solid #B2EBF2;
        }

        .cta-secondary:hover {
            background: #B2EBF2;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(178, 235, 242, 0.3);
        }

        /* Wave divider */
        .wave-divider {
            position: relative;
            height: 100px;
            overflow: hidden;
        }

        .wave-divider svg {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            animation: waveMove 8s ease-in-out infinite;
        }

        @keyframes waveMove {
            0%, 100% { transform: translateX(0) scale(1); }
            33% { transform: translateX(-30px) scale(1.02); }
            66% { transform: translateX(30px) scale(0.98); }
        }

        /* Services Section */
        .services {
            padding: 5rem 2rem;
            background: rgba(178, 235, 242, 0.05);
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-family: 'Georgia', serif;
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            opacity: 0;
        }

        .section-title.animate {
            animation: fadeInUp 1s ease-out forwards;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: #FFC857;
            transition: width 1s ease;
        }

        .section-title.animate::after {
            width: 120px;
            animation: glowUnderline 2s ease-in-out infinite 1s;
        }

        @keyframes glowUnderline {
            0%, 100% { 
                box-shadow: 0 0 5px #FFC857;
                background: #FFC857;
            }
            50% { 
                box-shadow: 0 0 25px #FFC857, 0 0 35px #FFC857;
                background: #FFD700;
            }
        }

        .services-scroll {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            padding: 2rem 0;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .services-scroll::-webkit-scrollbar {
            display: none;
        }

        .service-card {
            min-width: 320px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 25px;
            padding: 2.5rem;
            text-align: center;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(178, 235, 242, 0.3);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(50px) scale(0.9);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .service-card.animate {
            animation: slideInUp 0.8s ease-out forwards;
        }

        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.4s; }
        .service-card:nth-child(4) { animation-delay: 0.6s; }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(178, 235, 242, 0.4);
            background: rgba(255, 255, 255, 0.95);
        }

        .service-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            display: block;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .service-card:nth-child(2) .service-icon { animation-delay: 0.5s; }
        .service-card:nth-child(3) .service-icon { animation-delay: 1s; }
        .service-card:nth-child(4) .service-icon { animation-delay: 1.5s; }

        .service-title {
            font-size: 1.6rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: #37474F;
            font-family: 'Georgia', serif;
        }

        .service-desc {
            color: #666;
            line-height: 1.7;
            font-size: 1.1rem;
        }

        /* About Section */
        .about {
            padding: 5rem 2rem;
            background: rgba(255, 200, 87, 0.05);
        }

        .about-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about-text {
            font-size: 1.4rem;
            line-height: 1.9;
            margin-bottom: 2.5rem;
            opacity: 0;
            transform: translateY(30px);
        }

        .about-text.animate {
            animation: fadeInUp 1s ease-out forwards;
        }

        .about-text:nth-child(2) { animation-delay: 0.3s; }
        .about-text:nth-child(3) { animation-delay: 0.6s; }
        .about-text:nth-child(4) { animation-delay: 0.9s; }

        /* Testimonials Section */
        .testimonials {
            padding: 5rem 0;
            background: rgba(178, 235, 242, 0.05);
            overflow: hidden;
        }

        .testimonials-wave {
            display: flex;
            animation: testimonialFlow 30s linear infinite;
            gap: 4rem;
            padding: 2rem 0;
        }

        @keyframes testimonialFlow {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .testimonial-card {
            min-width: 400px;
            background: rgba(255, 255, 255, 0.9);
            padding: 2rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(178, 235, 242, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .testimonial-card:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 200, 87, 0.3);
            animation-play-state: paused;
            background: rgba(255, 255, 255, 0.95);
        }

        .testimonials-wave:hover {
            animation-play-state: paused;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .testimonial-author {
            font-weight: bold;
            color: #FFC857;
        }

        /* Contact Section */
        .contact {
            padding: 5rem 2rem;
            background: rgba(178, 235, 242, 0.05);
        }

        .contact-container {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info {
            background: rgba(255, 255, 255, 0.9);
            padding: 3rem;
            border-radius: 30px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(178, 235, 242, 0.3);
            transform: rotate(-2deg);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .emergency-hotline {
            background: #FFC857;
            color: #37474F;
            padding: 2rem;
            border-radius: 25px;
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }

        .emergency-hotline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 3px solid #FFB627;
            border-radius: 25px;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { 
                transform: scale(1);
                opacity: 1;
            }
            50% { 
                transform: scale(1.05);
                opacity: 0.7;
            }
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.9);
            padding: 3rem;
            border-radius: 30px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(178, 235, 242, 0.3);
            transform: rotate(1deg);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #37474F;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(178, 235, 242, 0.3);
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
            font-family: inherit;
            font-size: 1rem;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #FFC857;
            box-shadow: 0 0 15px rgba(255, 200, 87, 0.4);
            background: rgba(255, 255, 255, 1);
        }

        /* Login Section */
        .login {
            padding: 5rem 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 80vh;
        }

        .login-orb {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 4rem;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
            text-align: center;
            max-width: 400px;
            width: 100%;
            animation: float 6s ease-in-out infinite;
        }

        .login-greeting {
            font-family: 'Georgia', serif;
            font-size: 1.8rem;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.5s forwards;
        }

        /* Footer */
        footer {
            background: #37474F;
            color: #FAF9F6;
            padding: 3rem 2rem 1rem;
            position: relative;
        }

        .footer-wave {
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 50px;
            overflow: hidden;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            color: #FFC857;
            margin-bottom: 1rem;
            font-family: 'Georgia', serif;
        }

        .footer-section a {
            color: #FAF9F6;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            padding: 0.3rem 0;
        }

        .footer-section a:hover {
            color: #FFC857;
            transform: translateX(5px);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: #FFC857;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #37474F;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-icon:hover {
            background: #B2EBF2;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(178, 235, 242, 0.4);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-text, .hero-sequence {
                font-size: 2.5rem;
            }

            .hero-tagline {
                font-size: 1.2rem;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-info, .contact-form {
                transform: none;
            }

            .services-scroll {
                padding: 1rem 0;
            }

            .service-card {
                min-width: 280px;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .testimonial-card {
                min-width: 300px;
            }
        }
