:root {
            --primary: #1a1a1a;
            --secondary: #d4af37;
            --accent: #333;
            --light: #f8f9fa;
            --text: #333;
            --text-light: #777;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: var(--text);
            overflow-x: hidden;
        }
        
        /* Header Styles */
        .app-header {
            background: var(--primary);
            color: white;
            padding: 15px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--secondary);
        }
        
        .logo span {
            color: white;
        }
        
        .nav-icons {
            display: flex;
            gap: 20px;
        }
        
        .nav-icons a {
            color: white;
            font-size: 20px;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/img/hero/gallery.png');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 60px;
        }
        
        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .btn-book {
            background: var(--secondary);
            color: var(--primary);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s;
        }
        
        .btn-book:hover {
            background: #b8941f;
            transform: translateY(-2px);
        }
        
        /* Section Styles */
        .section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        /* About Section */
        .about-section {
            background: white;
            border-radius: 20px;
            margin: 40px auto;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        
        .about-content {
            padding: 30px;
        }
        
        .about-image {
            height: 300px;
            background: url('assets/img/gallery/prince.png') center/cover;
            border-radius: 15px;
        }
        
        .about-text {
            margin-top: 20px;
            line-height: 1.6;
            color: var(--text-light);
        }
        
        .read-more-btn {
            color: var(--secondary);
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            margin-top: 15px;
        }
        
        /* Services Section */
        .services-section {
            background: var(--primary);
            color: white;
            border-radius: 20px;
            margin: 40px auto;
            padding: 40px 20px;
        }
        
        .services-section .section-title {
            color: white;
        }
        
        .service-card {
            background: var(--accent);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 20px;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-icon {
            font-size: 40px;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        .service-card h3 {
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .service-card p {
            color: #ccc;
            font-size: 0.9rem;
        }
        
        /* Pricing Section */
        .pricing-section {
            background: white;
            border-radius: 20px;
            margin: 40px auto;
            padding: 40px 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .price-item {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        
        .price-item:last-child {
            border-bottom: none;
        }
        
        .price-name {
            font-weight: 600;
        }
        
        .price-amount {
            color: var(--secondary);
            font-weight: 700;
        }
        
        /* Gallery Section */
        .gallery-section {
            margin: 40px auto;
        }
        
        .gallery-item {
            height: 200px;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 20px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Testimonials Section */
        .testimonials-section {
            background: white;
            border-radius: 20px;
            margin: 40px auto;
            padding: 40px 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .testimonial-card {
            background: #f9f9f9;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 20px;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 15px;
            color: var(--text-light);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            margin-bottom: 5px;
            font-size: 1rem;
        }
        
        .author-info p {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        .stars {
            color: var(--secondary);
            margin-bottom: 10px;
        }
        
        /* Footer */
        .app-footer {
            background: var(--primary);
            color: white;
            padding: 40px 20px;
            text-align: center;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .social-icons a {
            color: white;
            font-size: 20px;
            transition: color 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--secondary);
        }
        
        .copyright {
            color: #777;
            font-size: 0.9rem;
        }
        
        /* Bottom Navigation (Mobile App Style) */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: white;
            display: flex;
            justify-content: space-around;
            padding: 15px 0;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }
        
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--text-light);
            font-size: 0.8rem;
        }
        
        .nav-item.active {
            color: var(--secondary);
        }
        
        .nav-icon {
            font-size: 20px;
            margin-bottom: 5px;
        }
        
        /* Responsive Adjustments */
        @media (min-width: 768px) {
            .hero-content h1 {
                font-size: 4rem;
            }
            
            .service-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            
            .gallery-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            
            .testimonials-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
        }
        
        @media (max-width: 767px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section {
                padding: 40px 15px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }