    body {
            box-sizing: border-box;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #42524e;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(241, 171, 171, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
            position: relative;
        }

        .logo {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            font-weight: 900;
            color: #a68d00;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #2f2a10;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #f57f7f;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, #937e07, #a0957f);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #1b3a45;
            color: #1f3942;
        }

        .btn-outline:hover {
            background: #213c46;
            color: rgb(49, 25, 25);
            transform: translateY(-2px);
        }

   .hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #171a2a 0%, #764ba2 100%);
}

/* Full Background Image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1);
    animation: fadeInBg 3s ease forwards, floatBg 20s ease-in-out infinite;
}

/* Floating background animation */
@keyframes floatBg {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.05) translateY(-20px); }
}

/* Fade-in background */
@keyframes fadeInBg {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    color: rgb(91, 38, 38);
}

/* Text Animations */
.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn-primary {
    background-color: #4f46e5;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); }

.btn-outline {
    border: 2px solid #4f46e5;
    color: #4f46e5;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s, color 0.3s;
}
.btn-outline:hover {
    transform: translateY(-3px);
    background-color: #4f46e5;
    color: white;
}

/* Responsive */
@media (max-width: 900px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
}

        /* Image Marquee */
        .image-marquee {
            overflow: hidden;
            white-space: nowrap;
            padding: 3rem 0;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .marquee-content {
            display: inline-block;
            animation: marquee 40s linear infinite;
        }

        .marquee-item {
            display: inline-block;
            margin-right: 2rem;
            width: 250px;
            height: 180px;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            transition: all 0.4s ease;
            border: 3px solid rgba(255, 215, 0, 0.3);
        }

        .marquee-item:hover {
            transform: scale(1.15) rotate(3deg);
            z-index: 10;
            border-color: #6b6438;
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }

        .marquee-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.2), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
            z-index: 2;
        }

        .marquee-item:hover::before {
            transform: translateX(100%);
        }

        .marquee-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .marquee-item:hover img {
            transform: scale(1.3);
            filter: brightness(1.3) saturate(1.4) contrast(1.1);
        }

        .marquee-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 1rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            z-index: 3;
        }

        .marquee-item:hover .marquee-overlay {
            transform: translateY(0);
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* About Section */
        .about {
            padding: 8rem 0;
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="paw" cx="50%" cy="50%"><stop offset="0%" style="stop-color:gold;stop-opacity:0.1"/><stop offset="100%" style="stop-color:gold;stop-opacity:0"/></radialGradient></defs><circle cx="100" cy="100" r="20" fill="url(%23paw)"/><circle cx="300" cy="200" r="15" fill="url(%23paw)"/><circle cx="500" cy="150" r="25" fill="url(%23paw)"/><circle cx="700" cy="300" r="18" fill="url(%23paw)"/><circle cx="900" cy="250" r="22" fill="url(%23paw)"/></svg>') repeat;
            animation: pawFloat 20s ease-in-out infinite;
        }

        @keyframes pawFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-family: 'Cinzel', serif;
            font-size: 3.5rem;
            margin-bottom: 2rem;
            color: #333;
        }

        .about-text p {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: #555;
            line-height: 1.8;
        }

        .about-image {
            position: relative;
            border-radius: 25px;
            overflow: hidden;
            height: 500px;
            transition: all 0.4s ease;
        }

        .about-image:hover {
            transform: scale(1.05) rotate(2deg);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .about-image:hover img {
            transform: scale(1.2);
            filter: brightness(1.1) saturate(1.2);
        }

        /* Services Section */
        .services {
            padding: 10rem 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            position: relative;
            overflow: hidden;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="sparkle" cx="50%" cy="50%"><stop offset="0%" style="stop-color:gold;stop-opacity:0.3"/><stop offset="100%" style="stop-color:gold;stop-opacity:0"/></radialGradient></defs><circle cx="100" cy="100" r="3" fill="url(%23sparkle)"/><circle cx="300" cy="200" r="2" fill="url(%23sparkle)"/><circle cx="500" cy="150" r="4" fill="url(%23sparkle)"/><circle cx="700" cy="300" r="2" fill="url(%23sparkle)"/><circle cx="900" cy="250" r="3" fill="url(%23sparkle)"/></svg>') repeat;
            animation: sparkle 15s ease-in-out infinite;
        }

        @keyframes sparkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.1); }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .section-title {
            font-family: 'Cinzel', serif;
            font-size: 4rem;
            text-align: center;
            margin-bottom: 4rem;
            color: #333;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 4rem;
            margin-bottom: 6rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border-radius: 30px;
            padding: 4rem;
            text-align: center;
            transition: all 0.5s ease;
            border: 3px solid rgba(255, 215, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .service-card:hover::before {
            transform: translateX(100%);
        }

        .service-card:hover {
            transform: translateY(-20px) scale(1.03);
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
            border-color: #FFD700;
        }

        .service-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            overflow: hidden;
            position: relative;
            border: 5px solid #FFD700;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-image {
            transform: rotate(360deg) scale(1.15);
            border-color: #A8DCEF;
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.3);
            filter: brightness(1.2) saturate(1.3);
        }

        .service-icon {
            font-size: 5rem;
            margin-bottom: 2rem;
            display: block;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.3) rotate(15deg);
            text-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .service-card h3 {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            margin-bottom: 2rem;
            color: #333;
            transition: color 0.3s ease;
        }

        .service-card:hover h3 {
            color: #FFD700;
        }

        .service-card p {
            font-size: 1.2rem;
            line-height: 1.9;
            color: #666;
        }

        /* Features Section */
        .features {
            padding: 8rem 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            padding: 3rem;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .feature-card:hover::before {
            transform: translateX(100%);
        }

        .feature-card:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .feature-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            overflow: hidden;
            border: 3px solid rgba(255, 255, 255, 0.3);
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-image {
            transform: scale(1.2) rotate(360deg);
            border-color: #FFD700;
        }

        .feature-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-image img {
            transform: scale(1.3);
            filter: brightness(1.2);
        }

        /* Gallery Section */
        .gallery {
            padding: 10rem 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .gallery-item {
            position: relative;
            height: 300px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            border: 3px solid rgba(255, 215, 0, 0.3);
        }

        .gallery-item:hover {
            transform: scale(1.08) rotate(2deg);
            border-color: #FFD700;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, #FFD700, #A8DCEF);
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover::before {
            opacity: 0.9;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.2);
            filter: brightness(1.2) saturate(1.3);
        }

        .gallery-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            color: white;
            z-index: 2;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-content {
            transform: translateY(0);
        }

        /* Stats Section */
        .stats {
            padding: 6rem 0;
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .stat-card {
            text-align: center;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            padding: 3rem;
            transition: all 0.4s ease;
            border: 2px solid rgba(255, 215, 0, 0.2);
        }

        .stat-card:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-color: #FFD700;
        }

        .stat-number {
            font-family: 'Cinzel', serif;
            font-size: 4rem;
            font-weight: 700;
            color: #FFD700;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .stat-card:hover .stat-number {
            transform: scale(1.2);
            text-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }

        /* Booking Section */
        .booking {
            padding: 10rem 0;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            position: relative;
            overflow: hidden;
        }

        .booking::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="heart" cx="50%" cy="50%"><stop offset="0%" style="stop-color:white;stop-opacity:0.1"/><stop offset="100%" style="stop-color:white;stop-opacity:0"/></radialGradient></defs><circle cx="200" cy="200" r="30" fill="url(%23heart)"/><circle cx="600" cy="300" r="25" fill="url(%23heart)"/><circle cx="400" cy="500" r="35" fill="url(%23heart)"/><circle cx="800" cy="600" r="20" fill="url(%23heart)"/></svg>') repeat;
            animation: heartFloat 25s ease-in-out infinite;
        }

        @keyframes heartFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
        }

        .booking-form {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border-radius: 30px;
            padding: 4rem;
            max-width: 700px;
            margin: 0 auto;
            border: 3px solid rgba(255, 255, 255, 0.3);
            transition: all 0.4s ease;
        }

        .booking-form:hover {
            transform: scale(1.02);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: 600;
            color: #333;
            font-size: 1.1rem;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 1.2rem;
            border: 3px solid #e1e5e9;
            border-radius: 15px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.9);
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #FFD700;
            transform: scale(1.02);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
        }

        /* Testimonials */
        .testimonials {
            padding: 10rem 0;
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="star" cx="50%" cy="50%"><stop offset="0%" style="stop-color:gold;stop-opacity:0.2"/><stop offset="100%" style="stop-color:gold;stop-opacity:0"/></radialGradient></defs><circle cx="150" cy="150" r="10" fill="url(%23star)"/><circle cx="350" cy="250" r="8" fill="url(%23star)"/><circle cx="550" cy="200" r="12" fill="url(%23star)"/><circle cx="750" cy="350" r="9" fill="url(%23star)"/><circle cx="850" cy="150" r="11" fill="url(%23star)"/></svg>') repeat;
            animation: starTwinkle 20s ease-in-out infinite;
        }

        @keyframes starTwinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.8; }
        }

        .testimonial-slider {
            display: flex;
            gap: 3rem;
            overflow-x: auto;
            padding: 2rem 0;
        }

        .testimonial-card {
            min-width: 400px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            padding: 3rem;
            text-align: center;
            transition: all 0.4s ease;
            border: 3px solid rgba(255, 215, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .testimonial-card:hover::before {
            transform: translateX(100%);
        }

        .testimonial-card:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
            border-color: #FFD700;
        }

        .testimonial-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FFD700, #A8DCEF);
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            transition: all 0.4s ease;
            border: 4px solid rgba(255, 255, 255, 0.5);
            overflow: hidden;
        }

        .testimonial-card:hover .testimonial-avatar {
            transform: scale(1.15) rotate(360deg);
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        /* Process Section */
        .process {
            padding: 8rem 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .process-step {
            text-align: center;
            position: relative;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            padding: 3rem;
            transition: all 0.4s ease;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .process-step:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
            border-color: #FFD700;
        }

        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            transition: all 0.4s ease;
        }

        .process-step:hover .step-number {
            transform: scale(1.2) rotate(360deg);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
        }

        .step-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            overflow: hidden;
            border: 3px solid rgba(255, 255, 255, 0.3);
            transition: all 0.4s ease;
        }

        .process-step:hover .step-image {
            transform: scale(1.15);
            border-color: #FFD700;
        }

        .step-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .process-step:hover .step-image img {
            transform: scale(1.2);
            filter: brightness(1.2);
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            max-height: 80vh;
            overflow-y: auto;
        }

        .modal-content::-webkit-scrollbar {
            width: 8px;
        }

        .modal-content::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }

        .modal-content::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .modal-content::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #FFA500, #FF8C00);
            transform: scale(1.1);
        }

        .modal-content:hover {
            transform: scale(1.02);
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: #666;
            transition: all 0.3s ease;
        }

        .close-modal:hover {
            color: #FFD700;
            transform: scale(1.2);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 6rem 0 3rem;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="footerStar" cx="50%" cy="50%"><stop offset="0%" style="stop-color:white;stop-opacity:0.1"/><stop offset="100%" style="stop-color:white;stop-opacity:0"/></radialGradient></defs><circle cx="100" cy="100" r="5" fill="url(%23footerStar)"/><circle cx="300" cy="200" r="3" fill="url(%23footerStar)"/><circle cx="500" cy="150" r="7" fill="url(%23footerStar)"/><circle cx="700" cy="300" r="4" fill="url(%23footerStar)"/><circle cx="900" cy="250" r="6" fill="url(%23footerStar)"/></svg>') repeat;
            animation: footerFloat 30s ease-in-out infinite;
        }

        @keyframes footerFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
        }

        .footer-section {
            transition: all 0.3s ease;
        }

        .footer-section:hover {
            transform: translateY(-5px);
        }

        .footer-section h3 {
            font-family: 'Cinzel', serif;
            margin-bottom: 2rem;
            color: #FFD700;
            font-size: 1.5rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 1rem;
        }

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .footer-section ul li a:hover {
            color: #FFD700;
            transform: translateX(10px);
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .newsletter-form input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.02);
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .social-links a {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            color: white;
            text-decoration: none;
            transition: all 0.4s ease;
            font-size: 1.5rem;
        }

        .social-links a:hover {
            background: #FFD700;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 3rem;
            border-top: 2px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.1rem;
            position: relative;
            z-index: 2;
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(15px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 3rem;
                transition: right 0.4s ease;
                z-index: 1000;
                box-shadow: -5px 0 20px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                font-size: 1.3rem;
                color: #333;
                padding: 1rem;
                border-radius: 10px;
                transition: all 0.3s ease;
            }

            .nav-links a:hover {
                background: rgba(255, 215, 0, 0.1);
                transform: scale(1.05);
            }

            .auth-buttons {
                flex-direction: column;
                gap: 0.5rem;
            }

            .auth-buttons .btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .section-title {
                font-size: 2.5rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .marquee-item {
                width: 200px;
                height: 150px;
            }

            .modal-content {
                width: 95%;
                padding: 2rem;
            }

            .booking-form {
                padding: 2rem;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 0 1rem;
            }

            .logo {
                font-size: 1.5rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .service-card, .feature-card {
                padding: 2rem;
            }
        }

        /* User greeting */
        .user-greeting {
            color: #333;
            font-weight: 500;
        }

        .hidden {
            display: none;
        }

        /* Additional hover effects */
        .btn:hover {
            animation: pulse 0.6s ease-in-out;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }