/* Template hotel Styles */
/* FORCE VISIBILITY */
        [data-aos] { 
            opacity: 1 !important; 
            transform: none !important; 
            visibility: visible !important; 
        }
        .aos-animate { opacity: 1 !important; }
        section { padding: 60px 0 !important; }
        .hero-section, section[style*="min-height: 100vh"] { padding: 0 !important; }

        :root {

            --primary-color: #1a4d6d;
            --secondary-color: #c9a961;
            --accent-color: #8b7355;
            --dark-color: #0d1b2a;
            --light-bg: #f8f6f3;
            --white: #ffffff;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
            --font-title: 'Raleway', sans-serif;
            --font-body: 'Montserrat', sans-serif;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            line-height: 1.8;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-title);
            font-weight: 700;
            color: var(--dark-color);
            line-height: 1.3;
        }
        
        /* === NAVBAR PREMIUM LUUXURY === */
        .navbar {
            background: #0d1b2a !important;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
            padding: 16px 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: none !important;
        }
        
        .navbar.scrolled {
            padding: 12px 0;
            background: #09131e !important;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        }
        
        .navbar-brand {
            font-family: var(--font-title);
            font-size: 1.4rem;
            font-weight: 700;
            color: #ffffff !important;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-brand span {
            color: var(--secondary-color);
            font-weight: 300;
        }
        
        .navbar-nav {
            gap: 10px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 600;
            font-size: 0.76rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 16px !important;
            margin: 0 4px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--secondary-color) !important;
            opacity: 1;
        }
        
        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link:hover::before,
        .navbar-nav .nav-link.active::before {
            width: 70%;
        }
        
        /* === BUTTONS PREMIUM === */
        .navbar .btn-primary {
            padding: 8px 20px !important;
            font-size: 0.75rem !important;
            font-weight: 600 !important;
            border-radius: 30px !important;
            box-shadow: 0 4px 15px rgba(26, 77, 109, 0.3) !important;
            letter-spacing: 0.8px !important;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2a5d7f 100%);
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(26, 77, 109, 0.3);
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(26, 77, 109, 0.4);
            background: linear-gradient(135deg, #2a5d7f 0%, var(--primary-color) 100%);
        }
        
        .btn-outline-primary {
            border: 2px solid #ffffff;
            color: #0d1b2a !important;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            background: #ffffff !important;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-outline-primary:hover {
            background: var(--secondary-color) !important;
            border-color: var(--secondary-color) !important;
            color: #ffffff !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(201, 169, 97, 0.35);
        }
        
        /* === SECTION TITLES === */
        .section-title-wrapper {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }
        
        .section-subtitle {
            font-family: 'Lato', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            border-radius: 2px;
        }
        
        .section-description {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 30px auto 0;
            line-height: 1.8;
        }
        
        /* === DECORATIVE ELEMENTS === */
        .decorative-line {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
            margin: 80px 0;
        }
        
        .corner-decoration {
            position: absolute;
            width: 60px;
            height: 60px;
            border: 2px solid var(--secondary-color);
            opacity: 0.3;
        }
        
        .corner-decoration.top-left {
            top: 20px;
            left: 20px;
            border-right: none;
            border-bottom: none;
        }
        
        .corner-decoration.bottom-right {
            bottom: 20px;
            right: 20px;
            border-left: none;
            border-top: none;
        }
        
        /* === FOOTER PREMIUM === */
        footer {
            background: linear-gradient(135deg, #0d1b2a 0%, #1a2332 100%);
            color: rgba(255,255,255,0.8);
            padding: 80px 0 30px;
            margin-top: 100px;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
        }
        
        footer h5 {
            font-family: 'Playfair Display', serif;
            color: var(--secondary-color);
            font-size: 1.4rem;
            margin-bottom: 30px;
            font-weight: 700;
        }
        
        footer a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 20px;
        }
        
        footer a::before {
            content: '›';
            position: absolute;
            left: 0;
            transition: left 0.3s ease;
        }
        
        footer a:hover {
            color: var(--secondary-color);
            padding-left: 25px;
        }
        
        footer a:hover::before {
            left: 5px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(201, 169, 97, 0.3);
            border-radius: 50%;
            margin-right: 12px;
            transition: all 0.4s ease;
            padding: 0;
        }
        
        .social-links a::before {
            display: none;
        }
        
        .social-links a:hover {
            background: var(--secondary-color);
            border-color: var(--secondary-color);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
            padding: 0;
        }
        
        /* === ANIMATIONS === */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* === SCROLL EFFECTS === */
        .parallax-bg {
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
        }
        
        /* === UTILITY CLASSES === */
        .shadow-premium {
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }
        
        .shadow-hover {
            transition: all 0.4s ease;
        }
        
        .shadow-hover:hover {
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
            transform: translateY(-5px);
        }
        
        .text-gold {
            color: var(--secondary-color);
        }
        
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
        #preloader.fade-out {
            opacity: 0;
            visibility: hidden;
        }
        .loader-spinner {
            width: 60px;
            height: 60px;
            border: 3px solid rgba(201, 169, 97, 0.1);
            border-top: 3px solid var(--secondary-color);
            border-radius: 50%;
            animation: spin 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
            margin-bottom: 20px;
        }
        .loader-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            color: var(--primary-color);
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 700;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
    
        /* Mobile Menu Optimization - Titan Elite Global Patch */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: white !important;
                padding: 40px !important;
                margin-top: 15px !important;
                box-shadow: 0 40px 100px rgba(0,0,0,0.2) !important;
                border-top: 4px solid var(--primary-color, var(--pizza-red, var(--acc-navy, var(--gym-green, #000)))) !important;
                max-height: 85vh !important;
                overflow-y: auto !important;
                border-radius: 0 0 20px 20px !important;
            }
            .navbar-nav .nav-link {
                color: #333 !important;
                padding: 15px 0 !important;
                border-bottom: 1px solid rgba(0,0,0,0.05) !important;
                text-align: center !important;
            }
            .navbar-nav li:last-child .nav-link { border-bottom: none !important; }
            .navbar-brand { font-size: 1.4rem !important; }
            .navbar-toggler { border: none !important; padding: 10px !important; }
        }

