
        :root {
            --primary-pink: #F8BBD0;
            --pure-white: #FFFFFF;
            --luxury-gold: #D4AF37;
            --dark-gray: #333333;
            --light-gray: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-gray);
            line-height: 1.6;
        }

        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 20px 0;
            transition: all 0.3s ease;
            position: absolute;
            width: 100%;
            z-index: 1000;
        }

        .navbar-brand {
            font-size: 28px;
            font-weight: bold;
            color: var(--luxury-gold) !important;
            display: flex;
            align-items: center;
        }

        .navbar-brand i {
            margin-right: 10px;
            font-size: 32px;
        }

        .navbar-nav .nav-link {
            color: var(--pure-white) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .navbar-nav .nav-link:hover {
            color: var(--luxury-gold) !important;
        }

        .btn-navbar-cta {
            background: var(--luxury-gold);
            color: var(--pure-white) !important;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .btn-navbar-cta:hover {
            background: #B8941F;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero-content {
            color: var(--pure-white);
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-title {
            font-size:90px;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }

        .hero-subtitle {
            font-size: 20px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
        }

        .btn-hero {
            background: var(--luxury-gold);
            color: var(--pure-white);
            padding: 15px 40px;
            font-size: 18px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
        }

        .btn-hero:hover {
            background: #B8941F;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
            color: var(--pure-white);
        }

        /* Section Styles */
        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 36px;
            font-weight: bold;
            color: var(--dark-gray);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--luxury-gold);
        }

        .section-subtitle {
            color: #666;
            font-size: 18px;
            margin-bottom: 40px;
        }

        /* About Section */
        .about-content {
            font-size: 16px;
            /*line-height: 1.8;*/
            color: #555;
        }

        .about-image {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            width: 100%;
            height: auto;
        }

        .btn-read-more {
            background: var(--luxury-gold);
            color: var(--pure-white);
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            margin-top: 20px;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-read-more:hover {
            background: #B8941F;
            transform: translateY(-2px);
            color: var(--pure-white);
        }

        /* Counter Section */
        .counter-section {
            background: black;
            padding: 60px 0;
        }

        .counter-item {
            text-align: center;
            color: var(--pure-white);
        }

        .counter-icon {
            font-size: 40px;
            margin-bottom: 15px;
            color: var(--luxury-gold);
        }

        .counter-number {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .counter-label {
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Vision & Mission */
        .vision-mission-card {
            background: var(--pure-white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: transform 0.3s ease;
        }

        .vision-mission-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        }

        .vision-mission-icon {
            font-size: 36px;
            color: var(--luxury-gold);
            margin-bottom: 20px;
        }

        .vision-mission-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--dark-gray);
        }

        /* Why Choose Us */
        .feature-card {
            text-align: center;
            padding: 30px 20px;
            background: var(--pure-white);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            border-top: 3px solid var(--luxury-gold);
        }

        .feature-icon {
            font-size: 48px;
            color: var(--luxury-gold);
            margin-bottom: 20px;
        }

        .feature-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--dark-gray);
        }

        .feature-desc {
            color: #666;
            font-size: 15px;
            line-height: 1.6;
        }

        /* Services Section */
        .service-card {
            background: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .service-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-title {
            font-size: 20px;
            font-weight: bold;
            color: var(--dark-gray);
            margin-bottom: 15px;
        }

        .service-desc {
            color: #666;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .btn-service {
            background: var(--luxury-gold);
            color: var(--pure-white);
            padding: 10px 25px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            align-self: flex-start;
        }

        .btn-service:hover {
            background: #B8941F;
            transform: translateY(-2px);
            color: var(--pure-white);
        }

        /* Booking Form */
        .booking-form {
            background: var(--pure-white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--luxury-gold);
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
        }

        .btn-booking {
            background: var(--luxury-gold);
            color: var(--pure-white);
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            width: 100%;
            font-size: 16px;
        }

        .btn-booking:hover {
            background: #B8941F;
            transform: translateY(-2px);
        }

        /* Reviews */
        .review-card {
            background: var(--pure-white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        }

        .review-stars {
            color: var(--luxury-gold);
            font-size: 20px;
            margin-bottom: 15px;
        }

        .review-text {
            color: #666;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .review-author {
            display: flex;
            align-items: center;
        }

        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-pink);
            color: var(--dark-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 15px;
        }

        .review-info h5 {
            margin: 0;
            font-weight: 600;
            color: var(--dark-gray);
        }

        .review-info small {
            color: #999;
        }

        /* FAQ Section */
        .accordion-button {
            background: var(--pure-white);
            color: var(--dark-gray);
            font-weight: 600;
            border: none;
            padding: 20px;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-pink);
            color: var(--dark-gray);
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--luxury-gold);
        }

        .accordion-item {
            border: none;
            margin-bottom: 10px;
            border-radius: 8px !important;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        /* CTA Section */
        .cta-section {
            background: black;
            padding: 80px 0;
            text-align: center;
        }

        .cta-title {
            font-size: 36px;
            font-weight: bold;
            color: var(--pure-white);
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .cta-subtitle {
            font-size: 18px;
            color: var(--pure-white);
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }

        .btn-primary-hero {
            background: var(--luxury-gold);
            color: var(--pure-white);
            padding: 15px 40px;
            font-size: 18px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
        }

        .btn-primary-hero:hover {
            background: #B8941F;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
            color: var(--pure-white);
        }

        /* Contact Section */
        .contact-section {
            background: var(--light-gray);
        }

        .contact-info {
            background: var(--pure-white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-pink);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--luxury-gold);
            font-size: 20px;
        }

        .contact-text h5 {
            margin: 0;
            font-weight: 600;
            color: var(--dark-gray);
        }

        .contact-text p {
            margin: 0;
            color: #666;
        }

        /* Footer */
        footer {
            background: var(--dark-gray);
            color: var(--pure-white);
            padding: 60px 0 20px;
        }

        .footer-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 20px;
            color: var(--luxury-gold);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--luxury-gold);
        }

        .footer-form {
            display: flex;
            margin-top: 20px;
        }

        .footer-form input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
        }

        .footer-form button {
            background: var(--luxury-gold);
            color: var(--pure-white);
            border: none;
            padding: 10px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .footer-form button:hover {
            background: #B8941F;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #444;
        }

        .footer-bottom a {
            color: var(--luxury-gold);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 32px;
            }
            
            .navbar-nav .nav-link {
                margin: 5px 10px;
            }
            
            .section {
                padding: 60px 0;
            }
        }
