
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, sans-serif;
        }

        :root {
            --primary: #4a6cf7;
            --primary-dark: #3a5ce5;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
            --gray-light: #e2e8f0;
            --theme-80: #1e293b;
        }

        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        /* Header Styles */
        header {
            background-color: rgba(30, 41, 59, 0.9);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
            transition: background-color 0.3s;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i {
            font-size: 28px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        .nav-links a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .cta-button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .cta-button:hover {
            background-color: var(--primary-dark);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        /* Full-Screen Video Background */
        .video-background {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .video-background::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
            z-index: 1;
        }
        
        .background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('img/caa-exterior.jpeg');
            background-size: cover;
            background-position: center;
            z-index: -1;
        }

        .videoEmbed {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100vw;
            height: 100vh;
            transform: translate(-50%, -50%);
            object-fit: cover;
            z-index: 0;
        }

        .video-overlay {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
        }

        .video-overlay h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }

        .video-overlay p {
            font-size: 20px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }

        /* Package Offers Section */
        .package-offers {
            padding: 120px 0 80px;
            background-color: #f0f4ff;
            color: var(--dark);
            width: 100%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 36px;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .section-title p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .package-slider {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding: 10px 0 30px;
            scrollbar-width: thin;
            scrollbar-color: var(--primary) var(--gray-light);
        }

        .package-slider::-webkit-scrollbar {
            height: 8px;
        }

        .package-slider::-webkit-scrollbar-track {
            background: var(--gray-light);
            border-radius: 10px;
        }

        .package-slider::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        .package-item {
            min-width: 300px;
            max-width: 400px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            flex-shrink: 0;
        }

        .package-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .package-image {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .package-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .package-item:hover .package-image img {
            transform: scale(1.05);
        }

        .package-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--theme-80);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .package-content {
            padding: 20px;
        }

        .package-content h3 {
            font-size: 18px;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .package-content p {
            font-size: 14px;
            color: var(--gray);
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .package-price {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 5px;
        }

        .price-original {
            text-decoration: line-through;
            color: var(--gray);
            font-size: 16px;
        }

        .price-current {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
        }

        .price-label {
            font-size: 12px;
            color: var(--gray);
        }

        /* Rooms Section */
        .rooms-section {
            padding: 80px 0;
            background-color: darkgray;
            color: var(--dark);
            width: 100%;
        }

        .rooms-slider {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding: 10px 0 30px;
            scrollbar-width: thin;
            scrollbar-color: var(--primary) var(--gray-light);
        }

        .rooms-slider::-webkit-scrollbar {
            height: 8px;
        }

        .rooms-slider::-webkit-scrollbar-track {
            background: var(--gray-light);
            border-radius: 10px;
        }

        .rooms-slider::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        .room-item {
            min-width: 300px;
            max-width: 400px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            flex-shrink: 0;
            position: relative;
            height: 400px;
        }

        .room-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .room-image {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .room-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .room-item:hover .room-image img {
            transform: scale(1.05);
        }

        .room-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 20px;
        }

        .room-badge {
            background: white;
            color: black;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 10px;
        }

        .room-overlay h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .room-overlay p {
            font-size: 14px;
            opacity: 0.9;
        }

        /* Mosaic Grid Section */
        .mosaic-grid {
            padding: 80px 0;
            background-color: var(--dark);
            color: white;
            width: 100%;
        }

        .mosaic-title {
            font-size: 36px;
            margin-bottom: 40px;
        }

        .mosaic-container {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-auto-rows: 200px;
            gap: 20px;
        }

        .mosaic-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s;
        }

        .mosaic-item:hover {
            transform: translateY(-5px);
        }

        .mosaic-item.large {
            grid-column: span 6;
            grid-row: span 2;
        }

        .mosaic-item.medium {
            grid-column: span 4;
            grid-row: span 2;
        }

        .mosaic-item.small {
            grid-column: span 3;
            grid-row: span 1;
        }

        .mosaic-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .mosaic-item:hover .mosaic-image {
            transform: scale(1.05);
        }

        .mosaic-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 20px;
        }

        .mosaic-badge {
            background: white;
            color: black;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 10px;
        }

        .mosaic-overlay h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .mosaic-overlay p {
            font-size: 14px;
            opacity: 0.9;
        }

        /* Hotel Description Section */
        .hotel-description {
            padding: 80px 0;
            background-color: white;
            color: var(--dark);
            width: 100%;
        }

        .description-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        @media (min-width: 768px) {
            .description-grid {
                grid-template-columns: 1fr 2fr;
                gap: 60px;
            }
        }

        .description-title {
            font-size: 36px;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .description-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .description-image {
            border-radius: 10px;
            overflow: hidden;
            height: 400px;
        }

        .description-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .description-image:hover img {
            transform: scale(1.05);
        }

        .description-text {
            font-size: 18px;
            line-height: 1.6;
            color: var(--gray);
        }

        .info-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--primary);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s;
            width: fit-content;
        }

        .info-button:hover {
            background-color: var(--primary-dark);
        }

        /* Activities Section */
        .activities-section {
            padding: 80px 0;
            background-color: var(--dark);
            color: white;
            width: 100%;
            position: relative;
            background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .activities-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1;
        }

        .activities-section .container {
            position: relative;
            z-index: 2;
        }

        .activities-title {
            font-size: 36px;
            margin-bottom: 40px;
        }

        .activities-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        @media (min-width: 768px) {
            .activities-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .activity-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 400px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .activity-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .activity-item:hover .activity-image {
            transform: scale(1.05);
        }

        .activity-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 30px;
        }

        .activity-badge {
            background: white;
            color: black;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 15px;
        }

        .activity-overlay h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .activity-overlay p {
            font-size: 14px;
            opacity: 0.9;
            display: none;
        }

        @media (min-width: 768px) {
            .activity-overlay p {
                display: block;
            }
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
            width: 100%;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .social-links a:hover {
            background-color: var(--primary);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #94a3b8;
            font-size: 14px;
        }

        /* Google Map Section */
        .map-section {
            width: 100%;
            padding: 0;
            background-color: #f0f4ff;
        }

        .map-container {
            width: 100%;
            height: 500px;
            position: relative;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .map-info {
            position: absolute;
            top: 20px;
            right: 20px;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            max-width: 300px;
            z-index: 10;
        }

        .map-info h3 {
            color: var(--dark);
            margin-bottom: 10px;
            font-size: 18px;
        }

        .map-info p {
            color: var(--gray);
            font-size: 14px;
            margin-bottom: 5px;
        }

        .map-info i {
            color: var(--primary);
            margin-right: 8px;
            width: 16px;
        }

        .map-info a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
            margin-top: 10px;
        }

        .map-info a:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .package-item, .room-item {
                min-width: 280px;
            }
            
            .mosaic-container {
                grid-template-columns: repeat(6, 1fr);
            }
            
            .mosaic-item.large {
                grid-column: span 3;
            }
            
            .mosaic-item.medium {
                grid-column: span 2;
            }
            
            .mosaic-item.small {
                grid-column: span 2;
            }

            .map-container {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                gap: 15px;
            }
            
            .nav-links {
                flex-direction: column;
                gap: 15px;
                text-align: center;
                display: none;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            
            .package-offers, .rooms-section, .hotel-description, .activities-section, .mosaic-grid {
                padding: 60px 0;
            }
            
            .section-title h2, .activities-title, .description-title, .mosaic-title {
                font-size: 30px;
            }
            
            .video-overlay h1 {
                font-size: 36px;
            }
            
            .video-overlay p {
                font-size: 18px;
            }
            
            .package-item, .room-item {
                min-width: 260px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .mosaic-container {
                grid-template-columns: 1fr;
                grid-auto-rows: 250px;
            }
            
            .mosaic-item.large, .mosaic-item.medium, .mosaic-item.small {
                grid-column: span 1;
                grid-row: span 1;
            }
            
            .activities-section {
                background-attachment: scroll;
            }

            .map-container {
                height: 350px;
            }

            .map-info {
                position: relative;
                top: 0;
                right: 0;
                max-width: 100%;
                border-radius: 0;
                box-shadow: none;
                padding: 20px;
                background-color: white;
            }
        }

                .package-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .package-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }
        
        .package-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .package-item:hover .package-image img {
            transform: scale(1.05);
        }
        
        .package-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #e74c3c;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .package-content {
            padding: 25px;
        }
        
        .package-content h3 {
            font-size: 20px;
            color: #1a3a6d;
            margin-bottom: 15px;
            font-weight: 600;
            line-height: 1.4;
        }
        
        .package-content p {
            color: #666;
            margin-bottom: 20px;
            font-size: 15px;
        }
        
        .package-price {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
        }
        
        .price-original {
            text-decoration: line-through;
            color: #999;
            font-size: 18px;
            margin-right: 10px;
        }
        
        .price-current {
            font-size: 24px;
            font-weight: 700;
            color: #e74c3c;
        }
        
        .price-label {
            font-size: 13px;
            color: #888;
        }
        
        /* Owl Carousel Navigation */
        .owl-nav {
            position: absolute;
            top: -70px;
            right: 0;
        }
        
        .owl-nav button {
            background: #1a3a6d !important;
            color: white !important;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-left: 10px;
            font-size: 20px !important;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .owl-nav button:hover {
            background: #e74c3c !important;
        }
        
        .owl-dots {
            text-align: center;
            margin-top: 30px;
        }
        
        .owl-dots button.owl-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd !important;
            margin: 0 5px;
            transition: all 0.3s ease;
        }
        
        .owl-dots button.owl-dot.active {
            background: #1a3a6d !important;
            width: 30px;
            border-radius: 10px;
        }

        @media (max-width: 480px) {
            .package-item, .room-item {
                min-width: 220px;
            }
            
            .package-content {
                padding: 15px;
            }
            
            .video-overlay h1 {
                font-size: 28px;
            }
            
            .video-overlay p {
                font-size: 16px;
            }
            
            .room-item, .activity-item {
                height: 350px;
            }

            .map-container {
                height: 300px;
            }

             .section-title h2 {
                font-size: 28px;
            }
            
            .package-content {
                padding: 20px;
            }
            
            .package-content h3 {
                font-size: 18px;
            }
            
            .owl-nav {
                position: static;
                text-align: center;
                margin-top: 20px;
            }
        }
