/* ============================================================
   OMEGASTAY LUXURY HOSPITALITY - COMPLETE DESIGN SYSTEM
   Part 1: Core Layout, Typography, Animations & Global Styles
   ============================================================ */

/* ============================================================
   1. COLOR PALETTE - LUXURY HOSPITALITY
   ============================================================ */

:root {
    /* PRIMARY COLORS - Luxury & Trust */
    color-primary-navy: #1a1f3a;
    --color-primary-dark: #0f1419;
    --color-primary-light: #232b3b;
    
    /* SECONDARY COLORS - Premium & Warmth */
    --color-secondary-gold: #d4af37;
    --color-secondary-gold-light: #e8c547;
    --color-secondary-gold-dark: #b8941f;
    
    /* ACCENT COLORS - African Heritage */
    --color-accent-terracotta: #c85a3a;
    --color-accent-terracotta-light: #d97548;
    --color-accent-burnt-sienna: #8b4513;
    
    /* FUNCTIONAL COLORS */
    --color-success: #10b981;
    --color-success-light: #6ee7b7;
    --color-warning: #f39c12;
    --color-warning-light: #f8c471;
    --color-error: #e74c3c;
    --color-error-light: #ec7063;
    --color-info: #3498db;
    --color-info-light: #5dade2;
    
    /* NEUTRAL COLORS - Clean & Readable */
    --color-white: #f9f8f6;
    --color-white-secondary: #ede8e0;
    --color-gray-light: #d4cec3;
    --color-gray-medium: #8b9199;
    --color-gray-dark: #5a6470;
    --color-text-primary: #1a1f3a;
    --color-text-secondary: #5a6470;
    --color-text-muted: #8b9199;
    
    /* BACKGROUND GRADIENTS */
    --gradient-luxury: linear-gradient(135deg, #0f1419 0%, #1a1f3a 50%, #1a1a2e 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37, #e8c547);
    --gradient-accent: linear-gradient(135deg, #c85a3a, #d97548);
    --gradient-premium: linear-gradient(135deg, #1a1f3a, #232b3b);
    
    /* PREMIUM FUTURISTIC GRADIENTS */
    --gradient-purple: linear-gradient(135deg, #6366f1, #8b5cf6);
    --gradient-purple-accent: linear-gradient(135deg, #7c3aed, #22d3ee);
    --gradient-red-accent: linear-gradient(135deg, #ff0000, #ff00aa);
    
    /* SHADOWS - Premium Depth */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.35);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 12px 32px rgba(212, 175, 55, 0.25);
    --shadow-purple: 0 12px 32px rgba(99, 102, 241, 0.35);
    
    /* BORDER COLORS */
    --border-light: rgba(255, 255, 255, 0.1);
    --border-medium: rgba(212, 175, 55, 0.2);
    --border-dark: rgba(26, 31, 58, 0.3);
    --border-purple: rgba(99, 102, 241, 0.2);
    
    /* TRANSITIONS */
    --transition-smooth: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: all 0.25s ease;
}

/* ============================================================
   2. GLOBAL TYPOGRAPHY & SIZING
   ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

body {
    background: var(--gradient-luxury) !important;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
    color: #e5e7eb;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(200, 90, 58, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.app-container {
    position: relative;
    z-index: 1;
}

/* ============================================================
   3. ANIMATIONS - LUXURY & PREMIUM
   ============================================================ */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(400px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(400px);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatingAnimation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
    }
}

@keyframes smoothSlideRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes progressBar {
    from { width: 100%; }
    to { width: 0%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(60px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 0%;
    }
}

/* ============================================================
   4. BADGE STYLES - NOTIFICATIONS & COUNTS
   ============================================================ */

.badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--gradient-accent);
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-error);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* ============================================================
   5. PROMO MODAL - PROMOTIONAL OFFERS
   ============================================================ */

.promo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeInScale 0.4s ease-out;
}

.promo-modal-overlay.active {
    display: flex;
}

.promo-modal-content {
    background: var(--gradient-premium);
    border: 1px solid var(--border-purple);
    border-radius: 28px;
    padding: 0;
    box-sizing: border-box;
    max-width: 360px;
    width: min(92vw, 360px);
    max-height: calc(100vh - 100px);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 10px 30px rgba(99, 102, 241, 0.2);
    animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.promo-modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
    transition: var(--transition-fast);
}

.promo-modal-close-btn:hover {
    transform: scale(1.05);
    background: rgba(99, 102, 241, 0.3);
}

.promo-modal-header {
    background: var(--gradient-purple);
    padding: 26px 18px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: floatingAnimation 6s ease-in-out infinite;
}

.promo-modal-header::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: floatingAnimation 8s ease-in-out infinite reverse;
}

.promo-icon-large {
    font-size: 64px;
    color: white;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    animation: floatingAnimation 3s ease-in-out infinite;
}

.promo-modal-header h2 {
    color: white;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.promo-modal-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.promo-modal-body {
    padding: 20px 18px 20px;
}

.promo-description {
    text-align: center;
    margin-bottom: 16px;
}

.promo-description h3 {
    font-size: 15px;
    color: #f1f5f9;
    margin: 0 0 6px 0;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.promo-description p {
    font-size: 12px;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
}

.promo-discount-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fef08a 100%);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 18px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.2);
}

.promo-discount-value {
    font-size: 34px;
    font-weight: 800;
    color: #f59e0b;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.8px;
}

.promo-discount-text {
    font-size: 12px;
    color: #92400e;
    margin: 6px 0 0 0;
    font-weight: 700;
}

.promo-terms {
    display: none;
}

.promo-code-box {
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid var(--border-purple);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.promo-code-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    outline: none;
}

.promo-copy-btn {
    background: #6366f1;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.promo-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

.promo-modal-footer {
    padding: 0 18px 18px;
    display: flex;
    gap: 12px;
}

.promo-skip-btn {
    background: rgba(99, 102, 241, 0.1);
    color: #818cf8;
    border: 1px solid var(--border-purple);
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    flex: 1;
}

.promo-skip-btn:hover {
    background: rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}

.promo-claim-btn {
    background: var(--gradient-purple);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-purple);
    flex: 1;
}

.promo-claim-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.45);
}

.promo-claim-btn:active {
    transform: translateY(-1px);
}

.promo-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.promo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.promo-dot.active {
    background: #6366f1;
    width: 24px;
    border-radius: 4px;
}

/* ============================================================
   6. FLOATING ACTION BUTTONS - STICKY CONTROLS
   ============================================================ */

.cart-button {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: var(--gradient-gold);
    color: white;
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    z-index: 50;
    animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: var(--transition-smooth);
    font-size: 24px;
}

.cart-button:hover {
    transform: scale(1.12);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.45);
}

.return-to-top {
    position: fixed;
    bottom: 90px;
    left: 20px;
    background: var(--gradient-accent);
    color: white;
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(200, 90, 58, 0.4);
    z-index: 50;
    animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: var(--transition-smooth);
    font-size: 20px;
}

.return-to-top:hover {
    transform: scale(1.12);
    box-shadow: 0 16px 40px rgba(200, 90, 58, 0.5);
}

.return-to-top.show {
    display: flex;
}

/* ============================================================
   7. INFO BUTTON & MODAL - PROPERTY DETAILS
   ============================================================ */

.info-btn {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 3;
    font-size: 18px;
}

.info-btn:hover {
    transform: scale(1.05);
    background: #ffffff;
}

.info-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: 20px;
}

.info-modal-overlay.active {
    display: flex;
}

.info-modal-content {
    width: min(420px, 100%);
    background: var(--gradient-premium);
    border: 1px solid var(--border-purple);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: slideInUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.info-modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.info-modal-close-btn:hover {
    transform: scale(1.05);
    background: rgba(99, 102, 241, 0.3);
}

.info-modal-body {
    padding: 24px;
}

.info-modal-body h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #f1f5f9;
    font-weight: 700;
}

.info-modal-body p {
    font-size: 14px;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.info-modal-meta {
    font-size: 13px;
    color: #9ca3af;
    font-weight: 700;
}

/* ============================================================
   8. SECTION HEADER & CAROUSEL WRAPPER
   ============================================================ */

.section-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 0 4px;
    animation: slideInUp 0.6s ease-out;
}

.section-header-bar h2 {
    font-size: 18px;
    font-weight: 800;
    color: #e5e7eb;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.3px;
}

.section-header-bar h2 i {
    color: #d4af37;
    font-size: 18px;
}

.see-more-link {
    font-size: 13px;
    font-weight: 700;
    color: #d4af37;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 4px;
}

.see-more-link:hover {
    color: #e8c547;
    transform: translateX(2px);
}

.carousel-section {
    animation: slideInUp 0.6s ease-out;
}

.carousel-wrapper {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    margin-left: 10px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.carousel-wrapper-inner {
    display: flex;
    gap: 16px;
    padding: 16px;
    transition: transform 0.3s ease;
}

.carousel-wrapper-inner > * {
    scroll-snap-align: start;
}

/* ============================================================
   9. CAROUSEL STYLES - HORIZONTAL SCROLL
   ============================================================ */

.trending-destinations-carousel,
.featured-hotels-carousel,
.horizontal-carousel,
.vertical-carousel {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 10px 6px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    will-change: scroll-position;
}

.trending-destinations-carousel::-webkit-scrollbar,
.featured-hotels-carousel::-webkit-scrollbar,
.horizontal-carousel::-webkit-scrollbar,
.vertical-carousel::-webkit-scrollbar {
    display: none;
}

.trending-destinations-carousel > *,
.featured-hotels-carousel > *,
.horizontal-carousel > *,
.vertical-carousel > * {
    scroll-snap-align: start;
    flex: 0 0 auto;
    transition: var(--transition-smooth);
}

@media (min-width: 768px) {
    .trending-destinations-carousel > *,
    .featured-hotels-carousel > *,
    .horizontal-carousel > * {
        cursor: grab;
    }

    .trending-destinations-carousel > *:hover,
    .featured-hotels-carousel > *:hover,
    .horizontal-carousel > *:hover {
        transform: translateY(-6px) scale(1.02);
    }
}

.carousel-with-controls {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    margin-bottom: 22px;
    animation: fadeUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.carousel-with-controls::before,
.carousel-with-controls::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    z-index: 5;
}

.carousel-with-controls::before {
    left: 0;
    background: linear-gradient(to right, rgba(5, 8, 22, 1), transparent);
}

.carousel-with-controls::after {
    right: 0;
    background: linear-gradient(to left, rgba(5, 8, 22, 1), transparent);
}

.carousel-scroll-btn {
    background: var(--gradient-purple);
    color: white;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
    z-index: 10;
    font-size: 16px;
    flex-shrink: 0;
}

.carousel-scroll-btn:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.5);
}

.carousel-scroll-btn:active {
    transform: scale(0.95);
}

.carousel-scroll-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .carousel-scroll-btn {
        display: none;
    }

    .carousel-with-controls::before,
    .carousel-with-controls::after {
        width: 20px;
    }

    .trending-destinations-carousel,
    .featured-hotels-carousel,
    .horizontal-carousel {
        padding: 10px 12px;
        gap: 12px;
    }
}

/* ============================================================
   10. RESPONSIVE DESIGN - MOBILE FIRST
   ============================================================ */

@media (max-width: 1024px) {
    h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.5rem;
    }

    .section-header-bar {
        margin-bottom: 12px;
        padding: 0 2px;
    }

    .section-header-bar h2 {
        font-size: 16px;
    }

    .section-header-bar h2 i {
        font-size: 14px;
    }

    .see-more-link {
        font-size: 12px;
    }

    .cart-button {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .return-to-top {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .section-header-bar h2 {
        font-size: 14px;
    }

    .section-header-bar h2 i {
        font-size: 12px;
    }

    .see-more-link {
        font-size: 11px;
    }

    .cart-button {
        width: 44px;
        height: 44px;
        font-size: 18px;
        bottom: 70px;
        right: 12px;
    }

    .return-to-top {
        width: 44px;
        height: 44px;
        font-size: 16px;
        bottom: 70px;
        left: 12px;
    }
}

/* ============================================================
   11. ACCESSIBILITY & DARK MODE SUPPORT
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        color-scheme: dark;
    }
}

/* Focus visible for keyboard navigation */
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

.promo-modal-close-btn:focus-visible,
.info-btn:focus-visible,
.info-modal-close-btn:focus-visible {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

/*part2*/
/* ============================================================
   OMEGASTAY LUXURY HOSPITALITY - COMPLETE DESIGN SYSTEM
   Part 2: Cards, Modals, Product Details & Footer
   ============================================================ */

/* ============================================================
   1. DESTINATION CARD - PREMIUM SHOWCASE
   ============================================================ */

.destination-card {
    min-width: 200px;
    max-width: 200px;
    background: linear-gradient(135deg, #1f2937 0%, #1a2644 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(212, 175, 55, 0.08);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    border: 1px solid var(--border-medium);
}

.destination-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(212, 175, 55, 0.15);
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.destination-card:hover::before {
    opacity: 1;
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.5);
}

.destination-image {
    position: relative;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.destination-card:hover .destination-image img {
    transform: scale(1.12);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 16px;
    color: white;
    z-index: 1;
}

.destination-info-overlay h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px 0;
    letter-spacing: -0.3px;
}

.destination-info-overlay p {
    font-size: 12px;
    margin: 0;
    opacity: 0.9;
}

.destination-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient-gold);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    z-index: 2;
}

.destination-stats {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.stat-item {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(200, 90, 58, 0.9));
    backdrop-filter: blur(10px);
    padding: 4px 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 700;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.destination-price {
    font-size: 14px;
    font-weight: 800;
    color: #d4af37;
    background: linear-gradient(135deg, #d4af37, #e8c547);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .destination-card {
        min-width: calc((100% - 16px) / 2);
        max-width: calc((100% - 16px) / 2);
    }
}

/* ============================================================
   2. FEATURED HOTEL CARD - PREMIUM LUXURY
   ============================================================ */

.featured-hotel-card {
    min-width: 280px;
    max-width: 290px;
    background: linear-gradient(135deg, #1f2937 0%, #1a2644 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.3), 0 6px 22px rgba(212, 175, 55, 0.12);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    border: 1px solid var(--border-medium);
}

.featured-hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    z-index: 1;
    transition: all 0.3s ease;
}

.featured-hotel-card:hover::before {
    height: 6px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.featured-hotel-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 12px 32px rgba(212, 175, 55, 0.2);
}

.featured-hotel-image {
    position: relative;
    overflow: hidden;
}

.featured-hotel-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.featured-hotel-card:hover .featured-hotel-image img {
    transform: scale(1.1);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(200, 90, 58, 0.08) 100%);
    z-index: 1;
}

.featured-info-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.featured-badge-top {
    background: var(--gradient-gold);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.featured-price-tag,
.featured-price-tag-new {
    background: var(--gradient-purple);
    color: white;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow-purple);
}

.featured-price-tag-new {
    background: var(--gradient-gold);
    box-shadow: var(--shadow-gold);
}

.featured-rating-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.featured-hotel-details {
    padding: 20px;
}

.featured-hotel-details h3 {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px 0;
    letter-spacing: -0.3px;
}

.featured-destination {
    font-size: 13px;
    color: #d1d5db;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.featured-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 16px 0;
    line-height: 1.6;
}

.featured-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.amenity-tag {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(200, 90, 58, 0.15));
    color: #d4af37;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.amenity-tag:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(200, 90, 58, 0.25));
    border-color: rgba(212, 175, 55, 0.4);
}

.featured-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.review-count {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 600;
}

.view-btn {
    background: var(--gradient-gold);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-gold);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.view-btn:active {
    transform: translateY(0);
}

/* ============================================================
   3. HOTEL CARD - COMPACT LUXURY
   ============================================================ */

.hotel-card {
    min-width: 230px;
    max-width: 230px;
    background: linear-gradient(135deg, #1f2937 0%, #1a2644 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 5px 16px rgba(212, 175, 55, 0.08);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    border: 1px solid var(--border-medium);
}

.hotel-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(212, 175, 55, 0.15);
}

.hotel-image {
    position: relative;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.12);
}

.hotel-price-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient-gold);
    color: white;
    padding: 6px 12px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
    z-index: 2;
}

.favorite-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.favorite-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    transform: scale(1.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.favorite-btn i {
    color: #ef4444;
    font-size: 16px;
}

.hotel-info {
    padding: 16px;
}

.hotel-info h3 {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px 0;
    letter-spacing: -0.3px;
}

.hotel-destination {
    font-size: 13px;
    color: #d1d5db;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.hotel-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stars {
    color: #d4af37;
    font-size: 12px;
    letter-spacing: 1px;
}

.rating-value {
    font-size: 13px;
    font-weight: 700;
    color: #d4af37;
}

/* ============================================================
   4. ROOM TAB STYLES - ROOM TYPE SELECTION
   ============================================================ */

.room-tab {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(200, 90, 58, 0.1));
    color: var(--color-gray-light);
    border: 1px solid var(--border-medium);
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: -0.2px;
}

.room-tab:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(200, 90, 58, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.room-tab.active {
    background: var(--gradient-gold);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px) scale(1.05);
}

/* ============================================================
   5. PRODUCT MODAL - ULTRA PREMIUM DETAIL VIEW
   ============================================================ */

:root {
    --modal-bg: #050816;
    --modal-glass: rgba(255, 255, 255, 0.06);
    --modal-glass-strong: rgba(255, 255, 255, 0.12);
    --modal-stroke: rgba(255, 255, 255, 0.12);
    --modal-text: #ffffff;
    --modal-text-muted: rgba(255, 255, 255, 0.75);
    --modal-primary: #7c3aed;
    --modal-accent: #22d3ee;
}

* {
    color: var(--modal-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.modal-detail {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(28px) saturate(180%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-detail.open {
    opacity: 1;
    visibility: visible;
}

.modal-detail-content {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 92vh;
    background: linear-gradient(180deg, #070b18, #050816 60%);
    border: 1px solid var(--modal-stroke);
    backdrop-filter: blur(35px) saturate(160%);
    border-radius: 28px 28px 0 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 -40px 100px rgba(0, 0, 0, 0.75), 0 10px 60px rgba(212, 175, 55, 0.18);
    transform: translateY(90px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-detail.open .modal-detail-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: var(--transition-fast);
}

.modal-close-btn i {
    color: #ffffff;
    font-size: 16px;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    transform: scale(1.08) rotate(90deg);
    background: rgba(255, 255, 255, 0.12);
}

.modal-close-btn:hover i {
    color: #ff5a5f;
}

/* Modal Hero Image */
.modal-360-section {
    position: relative;
    overflow: hidden;
    height: 200px;
    margin: 10px;
    border-radius: 20px;
}

.modal-360-section .mod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-360-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    z-index: 1;
    border-radius: 20px;
}

.modal-detail-content:hover .modal-360-section .mod-img {
    transform: scale(1.08);
}

/* Modal Body */
.modal-detail-body {
    flex: 1;
    overflow-y: auto;
    padding: 5px;
}

.modal-detail-body::-webkit-scrollbar {
    width: 7px;
}

.modal-detail-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d4af37, #c85a3a);
    border-radius: 20px;
}

.modal-detail-body2 {
    padding: 16px;
}

/* Hotel Header */
.hotel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
}

.hotel-header h2 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.6px;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin: 0;
}

.hotel-header::before {
    content: '✨';
    font-size: 16px;
}

.hotel-header .favorite-btn {
    position: relative;
    margin-left: auto;
    background: rgba(239, 68, 68, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(239, 68, 68, 0.2);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 2;
}

.hotel-header .favorite-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: scale(1.1);
    border-color: rgba(239, 68, 68, 0.4);
}

.hotel-header .favorite-btn i {
    color: #ef4444;
    font-size: 18px;
}

/* Rating Section */
.rating-section {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 12px 0;
    padding: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(200, 90, 58, 0.1));
    border-radius: 12px;
    border: 1px solid var(--border-medium);
}

.rating-stars {
    color: #d4af37;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    animation: glowPulse 2.5s infinite;
}

.hotel-location-detailed {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    gap: 6px;
    align-items: center;
    margin: 8px 0;
}

/* Amenities */
.amenity-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--modal-stroke);
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    transition: var(--transition-fast);
}

.amenity-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.amenity-item i {
    color: #d4af37;
    font-size: 16px;
    min-width: 16px;
}

.amenity-item span {
    color: var(--modal-text-muted);
    font-size: 13px;
    font-weight: 600;
}

/* Hotel Description */
.hotel-description h3 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 16px 0 12px 0;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hotel-description p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* Reviews */
.review-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--modal-stroke);
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.review-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
}

/* Modal Footer */
.modal-footer {
    padding: 18px;
    border-top: 1px solid var(--modal-stroke);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, transparent, rgba(5, 8, 22, 0.9));
    gap: 12px;
}

.modal-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.modal-price .price {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37, #e8c547);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-price .period {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.modal-footer .btn {
    padding: 14px 28px;
    border-radius: 14px;
    background: var(--gradient-gold);
    color: white;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}

.modal-footer .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.45);
}

.modal-footer .btn:active {
    transform: translateY(-1px);
}

/* Empty Cart State */
.cart-empty {
    text-align: center;
    padding: 70px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cart-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #d4af37, #c85a3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: float 2.5s infinite ease-in-out;
}

.cart-empty h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.cart-empty p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 280px;
}

/* Video Panel */
.video-panel {
    height: 0;
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 16px;
    margin-top: 10px;
}

.video-panel.active {
    height: 180px;
}

.video-panel iframe {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: none;
}

/* Modal Mobile Responsive */
@media (max-width: 520px) {
    .modal-detail-content {
        border-radius: 26px 26px 0 0;
        max-width: 100%;
    }

    .hotel-header h2 {
        font-size: 20px;
    }

    .modal-close-btn {
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
    }

    .modal-footer {
        flex-direction: column;
    }

    .modal-footer .btn {
        width: 100%;
    }

    .modal-price {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   6. PREMIUM FOOTER - LUXURY BRANDING
   ============================================================ */

.modern-footer {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f3a 50%, #1a1a2e 100%);
    color: white;
    margin-top: 80px;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #d4af37, #c85a3a, #10b981, #f39c12);
    background-size: 200% 100%;
    animation: gradientShift 8s ease infinite;
}

.modern-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(200, 90, 58, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-section {
    display: flex;
    flex-direction: column;
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

.footer-brand {
    margin-bottom: 28px;
}

.footer-logo {
    width: 56px;
    height: 56px;
    background: var(--gradient-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 16px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-smooth);
}

.footer-logo:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.45);
}

.footer-brand h3 {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #f9f8f6 0%, #e8c547 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.8px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(200, 90, 58, 0.2));
    border: 1px solid var(--border-medium);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    transition: var(--transition-smooth);
    text-decoration: none;
    font-size: 16px;
}

.social-link:hover {
    background: var(--gradient-gold);
    color: white;
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-gold);
    border-color: transparent;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin: 0 0 24px 0;
    position: relative;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section h4::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 14px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.footer-section a:hover {
    color: #d4af37;
    transform: translateX(4px);
}

.footer-section a::before {
    content: '→';
    opacity: 0;
    transition: var(--transition-smooth);
    width: 0;
}

.footer-section a:hover::before {
    opacity: 1;
    width: auto;
}

.footer-bottom {
    border-top: 1px solid var(--border-medium);
    padding-top: 32px;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-weight: 600;
}

.footer-apps {
    display: flex;
    gap: 16px;
}

.app-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(200, 90, 58, 0.15));
    border: 1px solid var(--border-medium);
    border-radius: 12px;
    color: #d4af37;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.app-link:hover {
    background: var(--gradient-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    border-color: transparent;
}

.app-link i {
    font-size: 16px;
}

/* ============================================================
   7. FOOTER RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 60px 0 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-section h4::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-apps {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .modern-footer {
        padding: 50px 0 20px;
    }

    .footer-content {
        padding: 0 16px;
        gap: 24px;
    }

    .footer-brand h3 {
        font-size: 22px;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .footer-apps {
        flex-direction: column;
        width: 100%;
    }

    .app-link {
        justify-content: center;
        padding: 12px 16px;
        width: 100%;
    }

    .footer-section h4 {
        font-size: 14px;
    }

    .footer-section a {
        font-size: 12px;
    }
}