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

        :root {
            --rose-gold: #E8A87C;
            --rose-gold-light: #F5C2A0;
            --rose-gold-dark: #D4956B;
            --warm-pink: #E879A6;
            --soft-cream: #FAF7F4;
            --elegant-gray: #6B7280;
            --foreground: #1F2937;
            --muted-foreground: #6B7280;
            --background: #FFFFFF;
            --border: #E5E7EB;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--foreground);
            background-color: var(--background);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(229, 231, 235, 0.5);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 4rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--rose-gold), var(--warm-pink));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav {
            display: none;
            gap: 2rem;
        }

        .nav a {
            text-decoration: none;
            color: var(--foreground);
            transition: color 0.3s;
        }

        .nav a:hover {
            color: var(--rose-gold);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 0.5rem;
            font-weight: 500;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-booking {
            background: var(--warm-pink);
            color: white;
        }

        .btn-booking:hover {
            background: #D6699A;
            transform: scale(1.05);
        }

        .btn-soft {
            background: var(--rose-gold-light);
            color: var(--elegant-gray);
        }

        .btn-soft:hover {
            background: var(--rose-gold-dark);
            color: white;
        }

        .btn-elegant {
            background: linear-gradient(135deg, var(--rose-gold), var(--warm-pink));
            color: white;
            box-shadow: 0 10px 30px -10px rgba(232, 168, 124, 0.3);
        }

        .btn-elegant:hover {
            box-shadow: 0 0 40px rgba(245, 194, 160, 0.4);
            transform: scale(1.05);
        }

        .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(245, 194, 160, 0.9), rgba(232, 121, 166, 0.8));
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 4xl;
            animation: fadeIn 0.6s ease-out;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .hero .gradient-text {
            background: linear-gradient(135deg, var(--rose-gold), var(--warm-pink));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
        }

        .hero p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 32rem;
            margin-left: auto;
            margin-right: auto;
        }

        .reviews {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        .stars {
            display: flex;
            gap: 0.25rem;
        }

        .star {
            width: 1.25rem;
            height: 1.25rem;
            fill: #FCD34D;
            color: #FCD34D;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }

        @media (min-width: 640px) {
            .nav {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: none;
            }
            
            .hero-buttons {
                flex-direction: row;
                justify-content: center;
            }
        }

        /* Sections */
        .section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-title p {
            font-size: 1.125rem;
            color: var(--muted-foreground);
            max-width: 32rem;
            margin: 0 auto;
        }

        .grid {
            display: grid;
            gap: 1.5rem;
        }

        .grid-2 {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .grid-4 {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }

        .card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            border: 1px solid var(--border);
            transition: all 0.3s;
        }

        .card:hover {
            box-shadow: 0 10px 30px -10px rgba(232, 168, 124, 0.3);
            transform: translateY(-0.5rem);
        }

        .card-icon {
            width: 4rem;
            height: 4rem;
            background: var(--rose-gold-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            transition: all 0.3s;
        }

        .card:hover .card-icon {
            background: linear-gradient(135deg, var(--rose-gold), var(--warm-pink));
        }

        .card-icon svg {
            width: 2rem;
            height: 2rem;
            color: var(--elegant-gray);
            transition: color 0.3s;
        }

        .card:hover .card-icon svg {
            color: white;
        }

        .gradient-soft {
            background: linear-gradient(180deg, var(--soft-cream), var(--background));
        }

        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .stat-card {
            background: var(--soft-cream);
            border-radius: 0.75rem;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-0.25rem);
            box-shadow: 0 4px 20px -4px rgba(232, 168, 124, 0.2);
        }

        .contact-cta {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 4px 20px -4px rgba(232, 168, 124, 0.2);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-link {
            width: 2.5rem;
            height: 2.5rem;
            background: var(--rose-gold-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: linear-gradient(135deg, var(--rose-gold), var(--warm-pink));
            transform: scale(1.1);
        }

        .floating-elements {
            position: absolute;
            width: 1rem;
            height: 1rem;
            border-radius: 50%;
            animation: float 3s ease-in-out infinite;
        }

        .floating-1 {
            top: 5rem;
            left: 2.5rem;
            background: var(--rose-gold);
            opacity: 0.6;
        }

        .floating-2 {
            bottom: 8rem;
            right: 4rem;
            background: var(--warm-pink);
            opacity: 0.4;
            animation-delay: 1s;
        }

        .floating-3 {
            top: 50%;
            left: 5rem;
            background: var(--rose-gold-light);
            opacity: 0.5;
            animation-delay: 2s;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .mobile-menu {
            display: none;
            padding: 1rem 0;
            border-top: 1px solid rgba(229, 231, 235, 0.5);
        }

        .mobile-menu.show {
            display: block;
        }

        .mobile-menu nav {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mobile-menu a {
            text-decoration: none;
            color: var(--foreground);
            transition: color 0.3s;
        }

        .mobile-menu a:hover {
            color: var(--rose-gold);
        }