:root {
            --gold: #ffd700;
            --dark-blue: #0a2342;
            --sky-blue: #87ceeb;
            --sunset-orange: #ff7e5f;
            --twilight-purple: #6a5acd;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #f5f5f5;
            padding-top: 80px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .main-content {
            flex: 1;
        }
        
        /* Sky Gradient Background */
        .sky-background {
            background: linear-gradient(135deg, var(--sky-blue) 0%, var(--twilight-purple) 100%);
            background-attachment: fixed;
        }
        
        /* Navbar Styles */
        .navbar {
            background: rgba(10, 35, 66, 0.9);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background: rgba(10, 35, 66, 0.95);
            padding: 10px 0;
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: bold;
            color: var(--gold);
            letter-spacing: 2px;
            position: relative;
        }
        
        .navbar-brand:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }
        
        .navbar-brand:hover:after {
            width: 100%;
        }
        
        .navbar-nav .nav-link {
            color: white;
            font-weight: 600;
            letter-spacing: 1px;
            margin: 0 10px;
            position: relative;
            padding: 5px 0;
        }
        
        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover:after,
        .navbar-nav .nav-link.active:after {
            width: 100%;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(10, 35, 66, 0.7), rgba(10, 35, 66, 0.7)), 
                        url('https://images.unsplash.com/photo-1534274988757-a28bf1a57c17?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 150px 0;
            color: white;
            text-align: center;
            position: relative;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 1s ease forwards 0.5s;
        }
        
        @keyframes fadeInUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .hero-section h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            position: relative;
            display: inline-block;
        }
        
        .hero-section h1:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--gold);
        }
        
        .hero-section p {
            font-size: 1.5rem;
            max-width: 700px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }
        
        .hero-section .btn {
            background-color: var(--gold);
            border: none;
            padding: 12px 30px;
            font-weight: bold;
            color: var(--dark-blue);
            border-radius: 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            z-index: 1;
        }
        
        .hero-section .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            z-index: -1;
        }
        
        .hero-section .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .hero-section .btn:hover:before {
            left: 0;
        }
        
        /* Info Section */
        .info-section {
            padding: 100px 0;
            background-color: white;
            position: relative;
        }
        
        .info-section:before {
            content: '';
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: white;
            clip-path: polygon(0 0, 100% 0, 50% 100%, 0 0);
        }
        
        .info-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            margin-bottom: 30px;
        }
        
        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .info-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .info-card:hover img {
            transform: scale(1.05);
        }
        
        .info-card-body {
            padding: 30px;
        }
        
        .info-card h3 {
            font-family: 'Playfair Display', serif;
            color: var(--dark-blue);
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .info-card h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--gold);
        }
        
        .info-card p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .info-card .btn {
            background: var(--dark-blue);
            color: white;
            border: none;
            border-radius: 30px;
            padding: 8px 20px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .info-card .btn:hover {
            background: var(--gold);
            color: var(--dark-blue);
        }
        
        /* Footer Section */
        .footer {
            background: var(--dark-blue);
            color: white;
            padding: 80px 0 30px;
            position: relative;
            flex-shrink: 0;
        }
        
        .footer:before {
            content: '';
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: var(--dark-blue);
            clip-path: polygon(0 0, 100% 0, 50% 100%, 0 0);
        }
        
        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: bold;
            color: var(--gold);
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-about p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--gold);
            color: var(--dark-blue);
            transform: translateY(-3px);
        }
        
        .footer-links h5 {
            font-family: 'Playfair Display', serif;
            color: var(--gold);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--gold);
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
            position: relative;
            padding-left: 15px;
        }
        
        .footer-links a:before {
            content: '→';
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 20px;
        }
        
        .footer-links a:hover:before {
            opacity: 1;
            left: -5px;
        }
        
        .footer-contact p {
            display: flex;
            align-items: flex-start;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 15px;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--gold);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            margin-top: 50px;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        
        /* Fixed WhatsApp Button */
        .whatsapp-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }
        
        .whatsapp-button:hover {
            transform: scale(1.1);
            animation: none;
        }
        
        .whatsapp-button i {
            font-size: 28px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-section h1 {
                font-size: 3.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 120px 0;
            }
            
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .hero-section p {
                font-size: 1.2rem;
            }
            
            .info-section,
            .gallery-section {
                padding: 70px 0;
            }
            
            .footer {
                padding: 70px 0 20px;
            }
            
            .footer-links {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 1.5rem;
            }
            
            .hero-section {
                padding: 100px 0;
            }
            
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .hero-section p {
                font-size: 1rem;
            }
            
            .whatsapp-button {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }
            
            .whatsapp-button i {
                font-size: 24px;
            }
            
            /* Professional Right-Aligned Mobile Menu */
            .navbar-collapse {
                position: fixed;
                top: 80px;
                right: 20px;
                width: 250px;
                background: rgba(10, 35, 66, 0.95);
                backdrop-filter: blur(10px);
                border-radius: 10px;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
                text-align: right;
                transform: translateX(120%);
                transition: transform 0.3s ease;
            }
            
            .navbar-collapse.show {
                transform: translateX(0);
            }
            
            .navbar-nav {
                align-items: flex-end;
            }
            
            .nav-item {
                margin-bottom: 15px;
            }
            
            .navbar-toggler {
                border: none;
                padding: 0.5rem;
            }
            
            .navbar-toggler:focus {
                box-shadow: none;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }