/* ========== RESET & VARIABLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #D4AF37;
    --primary-dark: #b48c2c;
    --primary-light: #f5d97b;
    --secondary: #0A2342;
    --secondary-light: #1a3456;
    --accent: #F05A28;
    --bg-light: #faf9f6;
    --text-dark: #1e2a3a;
    --text-muted: #4f5b66;
    --white: #ffffff;
    --black: #111111;
    --shadow-sm: 0 10px 30px -15px rgba(0,0,0,0.2);
    --shadow-md: 0 20px 40px -15px rgba(0,0,0,0.3);
    --shadow-lg: 0 30px 60px -15px rgba(0,0,0,0.4);
    --shadow-gold: 0 15px 35px -10px rgba(212, 175, 55, 0.4);
    --transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --border-radius: 24px;
    --border-radius-sm: 16px;
}

body {
    font-family: 'Cairo', 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

[dir="ltr"] body {
    font-family: 'Poppins', 'Cairo', sans-serif;
}

/* ========== PROGRESS BAR ========== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--primary);
    z-index: 10000;
    transition: width 0.2s ease;
    box-shadow: var(--shadow-gold);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--white);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--secondary);
    color: var(--primary);
}

/* ========== FLOATING WHATSAPP ICON ========== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--white);
    text-decoration: none;
    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); }
}

.floating-whatsapp:hover {
    transform: scale(1.15);
    background: #128C7E;
}

/* ========== SHARE BUTTON ========== */
.share-button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary);
}

.share-button:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: scale(1.1);
}

.share-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    border: 1px solid var(--primary);
}

.share-button:hover .share-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

/* ========== UTILITY CLASSES ========== */
.section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: -1px;
    text-align: center;
}

.section-title span {
    color: var(--primary);
    display: inline-block;
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary);
    opacity: 0.2;
    z-index: -1;
}

.section-subhead {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-weight: 400;
}

/* ========== ANIMATIONS ========== */
@keyframes glowPulse {
    0% { filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.6)); }
    100% { filter: drop-shadow(0 0 30px rgba(212, 175, 55, 1)); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@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); }
}

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes slideshow {
    0%, 2% { opacity: 0; transform: scale(1); }
    3%, 18% { opacity: 1; transform: scale(1.05); }
    19%, 100% { opacity: 0; transform: scale(1.1); }
}

/* عناصر متحركة */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* ========== POPUP STYLES ========== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(135deg, var(--white), #f8f8f8);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg), 0 0 0 3px var(--primary);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s ease;
    border: 1px solid var(--primary);
}

.popup-overlay.active .popup-container {
    transform: scale(1);
}

.popup-header {
    background: linear-gradient(135deg, var(--secondary), #0f2a4a);
    padding: 20px 30px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid var(--primary);
}

.popup-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.popup-logo img {
    height: 50px;
    width: auto;
    border-radius: 10px;
}

.popup-logo h2 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.popup-close {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.popup-close:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: rotate(90deg);
}

.popup-content {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.popup-content::-webkit-scrollbar {
    width: 8px;
}

.popup-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.popup-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.popup-message {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.popup-message p {
    margin-bottom: 20px;
}

.popup-message strong {
    color: var(--primary);
}

.popup-message .highlight {
    background: rgba(212,175,55,0.1);
    padding: 15px;
    border-radius: 15px;
    border-right: 4px solid var(--primary);
    margin: 20px 0;
}

.popup-footer {
    padding: 20px 30px;
    background: #f5f2ec;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 1px solid rgba(212,175,55,0.3);
}

.popup-btn {
    background: var(--primary);
    color: var(--secondary);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.popup-btn:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.popup-btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.popup-btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    transition: all 0.4s ease;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
}

.navbar.scrolled {
    background: var(--secondary);
    padding: 10px 5%;
    box-shadow: var(--shadow-md);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    height: 50px;
    transition: var(--transition);
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}

.navbar.scrolled .logo {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.lang-toggle-nav {
    display: flex;
    gap: 5px;
    background: rgba(255,255,255,0.15);
    padding: 5px;
    border-radius: 40px;
    backdrop-filter: blur(5px);
}

.lang-btn-nav {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 6px 15px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.9rem;
}

.lang-btn-nav.active {
    background: var(--primary);
    color: var(--secondary);
}

/* ========== HERO SECTION - HOME ========== */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideshow 30s infinite;
}

.hero-slide:nth-child(1) { background-image: url('./images/photo1.jpg'); animation-delay: 0s; }
.hero-slide:nth-child(2) { background-image: url('./images/photo2.jpg'); animation-delay: 5s; }
.hero-slide:nth-child(3) { background-image: url('./images/photo3.jpg'); animation-delay: 10s; }
.hero-slide:nth-child(4) { background-image: url('./images/photo4.jpg'); animation-delay: 15s; }
.hero-slide:nth-child(5) { background-image: url('./images/photo5.jpg'); animation-delay: 20s; }
.hero-slide:nth-child(6) { background-image: url('./images/photo6.jpg'); animation-delay: 25s; }
.hero-slide:nth-child(7) { background-image: url('./images/photo7.jpg'); animation-delay: 30s; }
.hero-slide:nth-child(8) { background-image: url('./images/photo8.jpg'); animation-delay: 35s; }
.hero-slide:nth-child(9) { background-image: url('./images/photo9.jpg'); animation-delay: 40s; }
.hero-slide:nth-child(10) { background-image: url('./images/photo10.jpg'); animation-delay: 45s; }
.hero-slide:nth-child(11) { background-image: url('./images/photo11.jpg'); animation-delay: 50s; }
.hero-slide:nth-child(12) { background-image: url('./images/photo12.jpg'); animation-delay: 55s; }
.hero-slide:nth-child(13) { background-image: url('./images/photo13.jpg'); animation-delay: 60s; }
.hero-slide:nth-child(14) { background-image: url('./images/photo14.jpg'); animation-delay: 65s; }
.hero-slide:nth-child(15) { background-image: url('./images/photo15.jpg'); animation-delay: 70s; }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(10,35,66,0.6), rgba(0,0,0,0.8));
    z-index: -1;
}

.hero-content {
    max-width: 1000px;
    padding: 0 20px;
    z-index: 10;
    animation: scaleIn 1.5s ease;
}

.hero-welcome {
    display: inline-block;
    background: rgba(212,175,55,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary);
    padding: 10px 30px;
    border-radius: 60px;
    font-size: 1.1rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--primary);
    animation: float 3s infinite ease-in-out;
}

.hero-logo {
    width: 120px;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    animation: glowPulse 3s infinite alternate;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

.hero-title-line {
    display: block;
}

.hero-title-line:first-child {
    font-size: 0.45em;
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
}

.hero-description {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 45px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
    transform: translateY(-5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

/* ========== WELCOME SECTION ========== */
.welcome-section {
    background: linear-gradient(135deg, var(--secondary), #0f2a4a);
    color: var(--white);
    padding: 80px 5%;
    margin-top: -1px;
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.welcome-content p {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 40px;
    opacity: 0.95;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.welcome-feature {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.welcome-feature:hover {
    transform: translateY(-10px);
    background: rgba(212,175,55,0.1);
}

.welcome-feature i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.welcome-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.welcome-feature p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* ========== ABOUT / PANORAMA SECTION ========== */
.about-panorama {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    animation: slideInLeft 1s ease;
}

.about-content .section-title {
    text-align: right;
}

.about-content .section-subhead {
    text-align: right;
    margin-right: 0;
}

.btn-gallery {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--secondary);
    padding: 14px 40px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gallery:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.panorama-slider {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
    position: relative;
    background: var(--secondary);
    animation: slideInRight 1s ease;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1.5s ease, transform 6s ease;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.slider-img.active {
    opacity: 1;
    transform: scale(1.05);
}

/* ========== FEATURES SECTION ========== */
.features-section {
    background: #f5f2ec;
    padding: 100px 5%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 50px auto 0;
}

.feature-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border-bottom: 5px solid transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transition: height 0.5s ease;
    z-index: -1;
    opacity: 0.1;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-bottom-color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 50px 0;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--secondary), transparent);
    color: white;
    padding: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

/* ========== SPECIAL OFFERS SECTION ========== */
.offers-section {
    background: linear-gradient(135deg, var(--secondary), #0f2a4a);
    padding: 100px 5%;
    color: var(--white);
}

.offers-section .section-title {
    color: var(--white);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.offer-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 40px 25px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary), transparent 30%);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.offer-card:hover::before {
    opacity: 0.1;
}

.offer-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary);
}

.offer-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.offer-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.offer-card p {
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.7;
}

.offer-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
}

.btn-offer {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-offer:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-5px);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 100px 5%;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
}

.author-info h4 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: var(--primary);
    margin-top: 10px;
}

/* ========== EXPERIENCES SECTION ========== */
.experiences-section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.exp-card {
    background: var(--secondary);
    color: white;
    padding: 40px 25px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.exp-card::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--primary);
    opacity: 0.2;
    border-radius: 50%;
    transition: all 0.8s ease;
}

.exp-card:hover::after {
    transform: scale(8);
    opacity: 0.1;
}

.exp-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-gold);
}

.exp-icon {
    font-size: 3.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.exp-card:hover .exp-icon {
    transform: rotate(10deg);
    color: var(--white);
}

.exp-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.exp-card p {
    color: #cbd5e0;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    line-height: 1.7;
}

/* ========== LATEST NEWS SECTION ========== */
.latest-news {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f5f2ec, #e8e4da);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.news-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-gold);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
}

.news-date {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.news-content h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.news-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

.news-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.news-link:hover {
    gap: 15px;
    color: var(--accent);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    background: var(--secondary);
    color: var(--white);
    border-radius: 60px 60px 0 0;
    padding: 100px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 30px;
    font-weight: 900;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info i {
    color: var(--primary);
    font-size: 1.6rem;
    width: 35px;
}

.email-highlight {
    background: rgba(212,175,55,0.1);
    padding: 5px 15px;
    border-radius: 30px;
    border: 1px solid var(--primary);
    display: inline-block;
    margin-top: 5px;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 18px 40px;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 30px;
    border: 2px solid transparent;
}

.whatsapp-btn:hover {
    background: transparent;
    border-color: #25D366;
    color: #25D366;
    transform: scale(1.05);
}

.map-container {
    background: #1d3557;
    border-radius: var(--border-radius);
    padding: 15px;
    box-shadow: var(--shadow-lg);
    height: 350px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-sm);
}

/* ========== NEWSLETTER SECTION ========== */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary), #c9a227);
    padding: 80px 5%;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 900;
}

.newsletter-content p {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-family: inherit;
    outline: none;
}

.newsletter-form button {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 0 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.newsletter-form button:hover {
    background: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
}

/* ========== FOOTER ========== */
.footer {
    background: #05101f;
    color: #9aa9b9;
    padding: 60px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #9aa9b9;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.footer ul li a:hover {
    color: var(--primary);
    padding-right: 8px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.4rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #1f2f3f;
    color: #7a8a9a;
    font-size: 0.95rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========== ABOUT PAGE STYLES ========== */
.about-hero {
    height: 80vh;
    min-height: 700px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.about-hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/photo2.jpg');
    background-size: cover;
    background-position: center;
    animation: kenburns 20s infinite alternate ease-in-out;
    z-index: -2;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(10,35,66,0.8), rgba(0,0,0,0.95));
    z-index: -1;
}

.about-hero-content {
    max-width: 1000px;
    padding: 0 20px;
    z-index: 10;
    animation: scaleIn 1.5s ease;
}

.about-hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-shadow: 0 5px 30px rgba(0,0,0,0.8);
}

.about-hero-title span {
    color: var(--primary);
    display: block;
    font-size: 0.5em;
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 15px;
    text-shadow: 0 0 20px var(--primary);
}

.about-hero-subtitle {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.8;
}

/* ========== STORY SECTION ========== */
.story-section {
    padding: 100px 5%;
    background: var(--white);
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.story-content {
    animation: slideInLeft 1s ease;
}

.story-content .section-title {
    text-align: right;
    margin-bottom: 20px;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.story-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    border-right: 4px solid var(--primary);
    padding-right: 20px;
    margin: 30px 0;
}

.story-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
    position: relative;
    animation: slideInRight 1s ease;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--primary);
    border-radius: var(--border-radius-sm);
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.story-image:hover::before {
    opacity: 1;
    transform: scale(0.95);
}

/* ========== MISSION & VISION ========== */
.mission-section {
    background: linear-gradient(135deg, var(--secondary), #0f2a4a);
    color: var(--white);
    padding: 100px 5%;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary), transparent 30%);
    animation: rotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mission-card:hover::before {
    opacity: 0.1;
}

.mission-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary);
}

.mission-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.mission-card h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.mission-card p {
    color: #e0e0e0;
    line-height: 1.9;
    font-size: 1.1rem;
}

/* ========== VALUES SECTION ========== */
.values-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f5f2ec, #e8e4da);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.value-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, var(--primary), transparent);
    transition: height 0.5s ease;
    opacity: 0.1;
}

.value-card:hover::before {
    height: 100%;
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-gold);
}

.value-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent);
}

.value-card h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* ========== JOURNEY SECTION ========== */
.journey-section {
    padding: 100px 5%;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.journey-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.journey-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border-bottom: 4px solid transparent;
}

.journey-card:hover {
    transform: translateY(-20px);
    border-bottom-color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.journey-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--secondary);
    font-size: 2rem;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.journey-card h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.journey-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.journey-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 50%;
    line-height: 36px;
    font-weight: 900;
    color: var(--primary);
    transition: var(--transition);
}

.journey-card:hover .journey-number {
    background: var(--primary);
    color: var(--secondary);
}

/* ========== ACHIEVEMENTS SECTION ========== */
.achievements-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--secondary), #0f2a4a);
    color: var(--white);
}

.achievements-section .section-title {
    color: var(--white);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.achievement-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.achievement-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary);
}

.achievement-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.achievement-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.achievement-card p {
    color: #e0e0e0;
    line-height: 1.8;
}

.achievement-badge {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 25px;
    background: rgba(212,175,55,0.2);
    border-radius: 40px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid var(--primary);
}

/* ========== PARTNERS SECTION ========== */
.partners-section {
    padding: 100px 5%;
    background: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.partner-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0.8;
}

.partner-card:hover {
    opacity: 1;
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.partner-icon {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.partner-card h4 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.partner-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========== TEAM SECTION ========== */
.team-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f5f2ec, #e8e4da);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.team-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-gold);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.team-info p {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: var(--transition);
    text-decoration: none;
}

.team-social a:hover {
    background: var(--primary);
    color: white;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), #c9a227);
    padding: 100px 5%;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 900;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== WHATSAPP CTA SECTION ========== */
.whatsapp-cta-section {
    background: linear-gradient(135deg, #0A2342, #1a3456);
    padding: 80px 5%;
    text-align: center;
    border-top: 5px solid var(--primary);
    border-bottom: 5px solid var(--primary);
}

.whatsapp-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.whatsapp-cta-content h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 900;
}

.whatsapp-cta-content p {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.8;
}

.whatsapp-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #25D366;
    color: white;
    padding: 20px 60px;
    border-radius: 60px;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: 3px solid transparent;
    box-shadow: var(--shadow-lg);
}

.whatsapp-cta-button:hover {
    background: transparent;
    border-color: #25D366;
    color: #25D366;
    transform: scale(1.05);
}

.whatsapp-cta-button i {
    font-size: 2.5rem;
}

.whatsapp-cta-note {
    margin-top: 30px;
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

/* ========== RESORT PAGE STYLES ========== */
.resort-hero {
    height: 100vh;
    min-height: 700px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.resort-hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/photo1.jpg');
    background-size: cover;
    background-position: center;
    animation: kenburns 20s infinite alternate ease-in-out;
    z-index: -2;
}

.resort-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(10,35,66,0.7), rgba(0,0,0,0.9));
    z-index: -1;
}

.resort-hero-content {
    max-width: 1000px;
    padding: 0 20px;
    z-index: 10;
    animation: scaleIn 1.5s ease;
}

.resort-hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-shadow: 0 5px 30px rgba(0,0,0,0.8);
}

.resort-hero-title span {
    color: var(--primary);
    display: block;
    font-size: 0.4em;
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 10px;
    text-shadow: 0 0 20px var(--primary);
}

.resort-hero-subtitle {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
    line-height: 1.8;
}

.resort-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== VIRTUAL TOUR SECTION ========== */
.virtual-tour {
    padding: 80px 5%;
    background: var(--white);
}

.tour-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 50px auto 0;
    align-items: center;
}

.tour-content {
    animation: slideInLeft 1s ease;
}

.tour-content h3 {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.tour-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.tour-360 {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
    animation: slideInRight 1s ease;
}

.tour-360 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}

.tour-360:hover img {
    transform: scale(1.1);
}

.tour-360-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,35,66,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.tour-360:hover .tour-360-overlay {
    opacity: 1;
}

.tour-360-btn {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    border: 3px solid var(--white);
}

.tour-360-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.btn-room {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--secondary);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    font-weight: 700;
}

.btn-room:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ========== ROOMS SECTION ========== */
.rooms-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f5f2ec, #e8e4da);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.room-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.room-card:hover {
    transform: translateY(-20px);
    box-shadow: var(--shadow-gold);
}

.room-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.room-content {
    padding: 30px;
}

.room-content h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.room-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.room-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.room-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary);
    font-size: 0.95rem;
}

.room-feature i {
    color: var(--primary);
}

/* ========== DINING SECTION ========== */
.dining-section {
    padding: 100px 5%;
    background: var(--white);
}

.dining-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.dining-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    height: 400px;
}

.dining-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-gold);
}

.dining-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.dining-card:hover img {
    transform: scale(1.1);
}

.dining-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--secondary), transparent);
    color: white;
    padding: 40px 30px 30px;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.dining-card:hover .dining-overlay {
    transform: translateY(0);
}

.dining-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.dining-overlay p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0;
    transition: opacity 0.5s ease 0.2s;
}

.dining-card:hover .dining-overlay p {
    opacity: 1;
}

.dining-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* ========== AMENITIES SECTION ========== */
.amenities-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--secondary), #0f2a4a);
    color: var(--white);
}

.amenities-section .section-title {
    color: var(--white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.amenity-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 40px 25px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.amenity-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary);
}

.amenity-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.amenity-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.amenity-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
}

/* ========== PACKAGES SECTION ========== */
.packages-section {
    padding: 100px 5%;
    background: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.package-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 50px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary), transparent 30%);
    animation: rotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.package-card:hover::before {
    opacity: 0.1;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-gold);
}

.package-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.package-card h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.package-features {
    list-style: none;
    margin: 20px 0;
    text-align: right;
}

.package-features li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.package-features i {
    color: var(--primary);
    margin-left: 10px;
}

.package-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
}

.btn-package {
    background: var(--primary);
    color: var(--secondary);
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-package:hover {
    background: transparent;
    border: 2px solid var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ========== GALLERY SECTION (RESORT) ========== */
.gallery-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f5f2ec, #e8e4da);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    z-index: 5;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--secondary), transparent);
    color: white;
    padding: 30px 20px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-badge i {
    font-size: 1rem;
}

/* ========== MAP SECTION ========== */
.map-section {
    padding: 80px 5%;
    background: var(--white);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== EVENTS SECTION ========== */
.events-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--secondary), #0f2a4a);
    color: var(--white);
}

.events-section .section-title {
    color: var(--white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.event-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.event-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary);
}

.event-date {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.event-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.event-card p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.event-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.event-link:hover {
    gap: 15px;
    color: var(--white);
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.98);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--white);
}

.lightbox-close:hover {
    transform: rotate(90deg);
    background: var(--accent);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--white);
}

.lightbox-nav.prev {
    left: -80px;
}

.lightbox-nav.next {
    right: -80px;
}

.lightbox-nav:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-info {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    color: white;
    text-align: center;
    font-size: 1.2rem;
}

.lightbox-info span {
    color: var(--primary);
    font-weight: 700;
}

/* ========== BUDGET PAGE STYLES ========== */
.budget-hero {
    height: 50vh;
    min-height: 400px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.budget-hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/photo1.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    z-index: -2;
}

.budget-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,35,66,0.9), rgba(0,0,0,0.8));
    z-index: -1;
}

.budget-hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 10;
    animation: scaleIn 1.5s ease;
}

.budget-hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

.budget-hero-title span {
    color: var(--primary);
    display: block;
    font-size: 0.8em;
    font-weight: 700;
    letter-spacing: 5px;
    margin-top: 10px;
    text-shadow: 0 0 20px var(--primary);
}

.budget-hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.8;
}

/* ========== COMING SOON SECTION ========== */
.coming-soon-section {
    padding: 80px 5% 100px;
    background: linear-gradient(135deg, #f5f2ec, #e8e4da);
}

.coming-soon-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.coming-soon-icon {
    font-size: 8rem;
    color: var(--primary);
    margin-bottom: 30px;
    animation: float 3s infinite ease-in-out;
}

.coming-soon-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.coming-soon-title span {
    color: var(--primary);
}

.coming-soon-text {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* ========== EMPTY TABLE SECTION ========== */
.table-section {
    padding: 0 5% 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.table-container {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 2px solid var(--primary);
}

.table-header {
    background: var(--secondary);
    color: var(--white);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.table-header i {
    font-size: 2rem;
    color: var(--primary);
}

.table-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.empty-table {
    padding: 80px 30px;
    text-align: center;
    background: var(--bg-light);
}

.empty-icon {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-title {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 700;
}

.empty-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 30px;
}

.empty-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary);
    padding: 10px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--secondary);
}

.dash-line {
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--primary), var(--primary) 10px, transparent 10px, transparent 20px);
    margin: 10px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: var(--secondary);
    color: var(--white);
}

th {
    padding: 18px 15px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
}

td {
    padding: 20px 15px;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.empty-row td {
    padding: 60px 15px;
}

/* ========== CONTACT PAGE STYLES ========== */
.contact-hero {
    height: 80vh;
    min-height: 650px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.contact-hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/photo4.jpg');
    background-size: cover;
    background-position: center;
    animation: kenburns 20s infinite alternate ease-in-out;
    z-index: -2;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(10,35,66,0.8), rgba(0,0,0,0.95));
    z-index: -1;
}

.hero-floating-badge {
    position: absolute;
    top: 150px;
    right: 50px;
    background: var(--primary);
    color: var(--secondary);
    padding: 15px 30px;
    border-radius: 60px;
    font-weight: 900;
    font-size: 1.5rem;
    transform: rotate(5deg);
    box-shadow: var(--shadow-gold);
    animation: float 3s infinite ease-in-out;
    border: 3px solid var(--white);
    z-index: 20;
}

.hero-floating-badge i {
    margin-left: 10px;
}

.hero-countdown {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary);
    border-radius: 100px;
    padding: 20px 40px;
    display: inline-flex;
    gap: 30px;
    margin-bottom: 40px;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.contact-hero-content {
    max-width: 1000px;
    padding: 0 20px;
    z-index: 10;
    animation: scaleIn 1.5s ease;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 0 5px 25px rgba(0,0,0,0.8);
}

.contact-hero-title span {
    color: var(--primary);
    display: block;
    font-size: 0.5em;
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 10px;
    text-shadow: 0 0 20px var(--primary);
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-hero {
    padding: 18px 50px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-hero-primary {
    background: var(--primary);
    color: var(--secondary);
}

.btn-hero-primary:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-hero-outline:hover {
    background: var(--white);
    color: var(--secondary);
    transform: translateY(-5px);
}

/* ========== INFO CARDS SECTION ========== */
.info-cards {
    padding: 80px 5%;
    background: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 20;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 40px 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, var(--primary), transparent);
    transition: height 0.5s ease;
    opacity: 0.1;
}

.info-card:hover::before {
    height: 100%;
}

.info-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-gold);
}

.info-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent);
}

.info-card h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-card .small-text {
    font-size: 0.9rem;
    color: var(--primary);
    margin-top: 10px;
}

/* ========== BOOKING PROGRESS ========== */
.booking-progress {
    padding: 50px 5% 0;
    max-width: 1200px;
    margin: 0 auto;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #e0e0e0;
    transform: translateY(-50%);
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--text-muted);
    border: 3px solid #e0e0e0;
    transition: var(--transition);
}

.progress-step.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
    box-shadow: var(--shadow-gold);
}

.progress-step.completed {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.step-label {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

/* ========== BOOKING FORM SECTION ========== */
.booking-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f5f2ec, #e8e4da);
}

.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.booking-form {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.room-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.room-option {
    position: relative;
    cursor: pointer;
}

.room-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.room-card {
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px 10px;
    text-align: center;
    transition: var(--transition);
}

.room-option input:checked + .room-card {
    border-color: var(--primary);
    background: rgba(212,175,55,0.05);
    box-shadow: var(--shadow-gold);
}

.room-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.room-card h4 {
    font-size: 1rem;
    color: var(--secondary);
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
}

.extra-item input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.btn-book {
    background: var(--primary);
    color: var(--secondary);
    border: none;
    padding: 18px 40px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    border: 2px solid transparent;
}

.btn-book:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

/* ========== QR SIDEBAR ========== */
.qr-sidebar {
    background: linear-gradient(135deg, var(--secondary), #0f2a4a);
    border-radius: var(--border-radius);
    padding: 40px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.qr-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

.qr-container {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.qr-badge {
    position: absolute;
    top: -10px;
    right: 50%;
    transform: translateX(50%);
    background: var(--accent);
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    border: 2px solid var(--white);
    z-index: 10;
}

.qr-code {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    background: var(--white);
    padding: 15px;
    border-radius: 20px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.qr-code:hover {
    transform: scale(1.05);
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-description {
    text-align: center;
    margin: 25px 0;
    font-size: 1rem;
    line-height: 1.8;
}

.qr-description ul {
    list-style: none;
    margin-top: 15px;
    text-align: right;
}

.qr-description li {
    margin-bottom: 8px;
}

.qr-description i {
    color: var(--primary);
    margin-left: 8px;
}

.qr-cta {
    background: rgba(255,255,255,0.1);
    border: 2px solid var(--primary);
    border-radius: 60px;
    padding: 15px;
    text-align: center;
    margin-top: 20px;
    transition: var(--transition);
}

.qr-cta:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-5px);
}

.qr-cta a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
}

/* ========== CONTACT FORM SECTION ========== */
.contact-form-section {
    padding: 100px 5%;
    background: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.contact-form h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 30px;
}

.submit-btn {
    background: var(--primary);
    color: var(--secondary);
    border: none;
    padding: 16px 40px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: 2px solid transparent;
}

.submit-btn:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.contact-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 500px;
    position: relative;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.contact-image:hover img {
    transform: scale(1.05);
}

.contact-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--primary);
    border-radius: var(--border-radius-sm);
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.contact-image:hover::before {
    opacity: 1;
    transform: scale(0.95);
}

/* ========== MAP SECTION (CONTACT) ========== */
.map-section {
    padding: 80px 5%;
    background: var(--white);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(10,35,66,0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 15px 25px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--primary);
}

.map-overlay i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* ========== WORKING HOURS SECTION ========== */
.hours-section {
    padding: 80px 5%;
    background: var(--white);
}

.hours-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.hours-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.hours-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.hours-header i {
    font-size: 2.5rem;
    color: var(--primary);
}

.hours-header h3 {
    font-size: 1.5rem;
    color: var(--secondary);
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.hours-list .day {
    color: var(--secondary);
    font-weight: 600;
}

.hours-list .time {
    color: var(--primary);
    font-weight: 700;
}

.emergency-note {
    margin-top: 25px;
    padding: 12px;
    background: rgba(212,175,55,0.1);
    border-radius: 40px;
    text-align: center;
    color: var(--secondary);
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f5f2ec, #e8e4da);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(212,175,55,0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--secondary);
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* ========== GUARANTEE SECTION ========== */
.guarantee-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--primary), #c9a227);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.guarantee-item {
    text-align: center;
    color: var(--secondary);
}

.guarantee-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    border: 3px solid var(--secondary);
}

.guarantee-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.guarantee-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ========== RTL / LTR ADJUSTMENTS ========== */
[dir="ltr"] .navbar {
    direction: ltr;
}

[dir="ltr"] .nav-left {
    flex-direction: row;
}

[dir="ltr"] .about-content .section-title,
[dir="ltr"] .about-content .section-subhead,
[dir="ltr"] .story-content .section-title {
    text-align: left;
}

[dir="ltr"] .footer ul li a:hover {
    padding-left: 8px;
    padding-right: 0;
}

[dir="ltr"] .floating-whatsapp {
    left: auto;
    right: 30px;
}

[dir="ltr"] .back-to-top {
    right: auto;
    left: 30px;
}

[dir="ltr"] .share-button {
    right: auto;
    left: 30px;
}

[dir="ltr"] .share-tooltip {
    right: auto;
    left: 70px;
}

[dir="ltr"] .share-button:hover .share-tooltip {
    right: auto;
    left: 80px;
}

[dir="ltr"] .story-highlight {
    border-right: none;
    border-left: 4px solid var(--primary);
    padding-right: 0;
    padding-left: 20px;
}

[dir="ltr"] .hero-floating-badge {
    right: auto;
    left: 50px;
}

[dir="ltr"] .map-overlay {
    left: auto;
    right: 30px;
}

[dir="ltr"] .package-features {
    text-align: left;
}

[dir="ltr"] .event-link i {
    transform: rotate(180deg);
}

[dir="ltr"] .gallery-badge {
    right: auto;
    left: 15px;
}

[dir="ltr"] .lightbox-nav.prev {
    left: auto;
    right: -80px;
}

[dir="ltr"] .lightbox-nav.next {
    right: auto;
    left: -80px;
}

[dir="ltr"] .lightbox-close {
    right: auto;
    left: -40px;
}

[dir="ltr"] .faq-question i {
    transform: rotate(90deg);
}

[dir="ltr"] .faq-item.active .faq-question i {
    transform: rotate(-90deg);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
    .features-grid,
    .experiences-grid,
    .welcome-features,
    .offers-grid,
    .testimonials-grid,
    .news-grid,
    .values-grid,
    .journey-container,
    .achievements-grid,
    .partners-grid,
    .team-grid,
    .rooms-grid,
    .dining-grid,
    .amenities-grid,
    .packages-grid,
    .events-grid,
    .gallery-grid,
    .info-grid,
    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-panorama,
    .contact-section,
    .footer-grid,
    .story-container,
    .mission-grid,
    .tour-container,
    .booking-container,
    .contact-container,
    .hours-container {
        grid-template-columns: 1fr;
    }

    .qr-sidebar {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 5%;
    }

    .nav-links {
        display: none;
    }

    .hero-buttons,
    .cta-buttons,
    .resort-hero-buttons,
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn,
    .btn-hero,
    .btn-cta-primary,
    .btn-cta-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .features-grid,
    .experiences-grid,
    .welcome-features,
    .offers-grid,
    .testimonials-grid,
    .news-grid,
    .values-grid,
    .journey-container,
    .achievements-grid,
    .partners-grid,
    .team-grid,
    .rooms-grid,
    .dining-grid,
    .amenities-grid,
    .packages-grid,
    .events-grid,
    .gallery-grid,
    .info-grid,
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .contact-section,
    .footer-grid,
    .form-row,
    .room-selector,
    .extras-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .logo {
        height: 40px;
    }

    .navbar.scrolled .logo {
        height: 35px;
    }

    .popup-container {
        width: 95%;
    }

    .popup-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .popup-logo {
        flex-direction: column;
    }

    .popup-footer {
        flex-direction: column;
    }

    .popup-btn {
        width: 100%;
        justify-content: center;
    }

    .scroll-indicator,
    .hero-floating-badge,
    .map-overlay {
        display: none;
    }

    .about-hero,
    .resort-hero,
    .contact-hero {
        min-height: 500px;
    }

    .about-hero-title,
    .resort-hero-title,
    .budget-hero-title,
    .contact-hero-title {
        font-size: 2.5rem;
    }

    .story-image,
    .contact-image {
        height: 350px;
    }

    .tour-360 {
        height: 300px;
    }

    .hero-countdown {
        padding: 15px 20px;
        gap: 15px;
        flex-wrap: wrap;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .whatsapp-cta-button {
        font-size: 1.3rem;
        padding: 15px 30px;
    }

    .whatsapp-cta-button i {
        font-size: 1.8rem;
    }

    .qr-code {
        width: 150px;
        height: 150px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-nav.prev {
        left: 10px;
    }

    .lightbox-nav.next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    .coming-soon-title {
        font-size: 2.5rem;
    }

    .coming-soon-icon {
        font-size: 5rem;
    }

    .table-header h3 {
        font-size: 1.4rem;
    }

    .empty-title {
        font-size: 1.5rem;
    }

    .empty-icon {
        font-size: 3.5rem;
    }
}