:root {
    /* Colors */
    --primary: #0093E9;
    --primary-dark: #006eb3;
    --secondary: #80D0C7;
    --accent: #D4AF37;
    --accent-hover: #b8962c;
    --text-main: #0F172A;
    --text-light: #64748B;
    --bg-main: #F8FAFC;
    --bg-white: #FFFFFF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0093E9 0%, #80D0C7 100%);
    --gradient-text: linear-gradient(135deg, #0093E9 0%, #006eb3 100%);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(0, 147, 233, 0.4);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.journey-glass {
    background: linear-gradient(
        90deg, 
        #0093E9 0%, 
        #80D0C7 20%, 
        #D4AF37 40%, 
        #FFFFFF 50%, 
        #D4AF37 60%, 
        #80D0C7 80%, 
        #0093E9 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    animation: shine 4s linear infinite;
    font-weight: 800;
    display: inline-block;
    /* Glassy depth effects */
    filter: drop-shadow(0px 2px 4px rgba(0, 147, 233, 0.3));
    letter-spacing: 1px;
}

@keyframes shine {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: 0% center;
    }
}

.section {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--bg-white);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a:not(.btn) {
    color: var(--text-main);
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--text-main);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1001;
}

.logo i {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    color: white;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    z-index: 1001;
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--text-main);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1540541338287-41700207dee6?q=80&w=3840&auto=format&fit=crop') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    color: white;
    width: 100%;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero h1 .text-gradient {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Section Common */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Resorts Carousel */
.resorts-carousel {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 1rem 1rem 3rem 1rem;
    margin: 0 -1rem; /* Allow clipping to edge of container gracefully */
    scroll-snap-type: x mandatory;
    scroll-padding: 1rem;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE/Edge */
    scrollbar-width: none; /* Firefox */
    cursor: grab;
}
.resorts-carousel:active {
    cursor: grabbing;
}
.resorts-carousel::-webkit-scrollbar {
    display: none;
}
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: white;
    box-shadow: var(--shadow-sm);
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-btn:hover {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.resort-card {
    width: 85vw;
    max-width: 380px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.resort-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.resort-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.resort-card:hover .resort-img {
    transform: scale(1.05);
}

.resort-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    backdrop-filter: blur(5px);
}

.resort-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.resort-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.location {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex: 1;
}

.resort-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.price {
    font-size: 0.9rem;
    color: var(--text-light);
}

.price strong {
    font-size: 1.3rem;
    color: var(--text-main);
}

/* Why Us Section */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.why-content > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefits-list li {
    display: flex;
    gap: 1.5rem;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(0, 147, 233, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.benefits-list li:hover .icon-box {
    background: var(--gradient-primary);
    color: white;
    transform: rotate(10deg);
}

.benefits-list h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefits-list p {
    color: var(--text-light);
}

.premium-card {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.5);
    position: relative;
}

.premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.quote-text {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.quote-author h5 {
    font-size: 1.1rem;
}

.quote-author span {
    font-size: 0.9rem;
    color: #cbd5e1;
}

/* Contact Section */
.contact-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 2fr 3fr;
}

.contact-info {
    background: url('https://images.unsplash.com/photo-1540541338287-41700207dee6?q=80&w=3840&auto=format&fit=crop') center/cover;
    position: relative;
    padding: 4rem 3rem;
    color: white;
}

.contact-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(0, 147, 233, 0.8) 100%);
}

.contact-info > * {
    position: relative;
    z-index: 10;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 5px;
}

.contact-method span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.25rem;
}

.contact-method strong {
    font-size: clamp(0.8rem, 3.5vw, 1.1rem);
    word-break: normal;
}

.contact-method a {
    white-space: nowrap;
}

.contact-method > div {
    min-width: 0;
    max-width: 100%;
}

.contact-form-wrapper {
    padding: 4rem 3rem;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.date-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .date-row {
        grid-template-columns: 1fr;
    }
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f8fafc;
    box-sizing: border-box;
}

input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    min-height: 3.2rem;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 147, 233, 0.1);
    background-color: white;
}

.hidden {
    display: none !important;
}

.form-success {
    text-align: center;
    padding: 3rem 0;
}

.form-success i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--text-light);
}

/* City Exclusives Glass Section */
.city-exclusives {
    background: url('https://images.unsplash.com/photo-1571003123894-1f0594d2b5d9?q=80&w=3000&auto=format&fit=crop') center/cover no-repeat fixed;
    position: relative;
    padding: 8rem 0;
}

.city-exclusives::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
}

.glass-window {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 4rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.glass-window::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 45%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 55%,
        transparent 100%
    );
    transform: rotate(25deg);
    pointer-events: none;
}

.city-header {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.city-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.city-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.city-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.city-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 30px;
    transition: var(--transition);
    text-align: center;
    color: white;
}

.city-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: var(--accent);
}

.city-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.city-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.city-card p {
    opacity: 0.8;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .city-grid {
        grid-template-columns: 1fr;
    }
    .glass-window {
        padding: 2.5rem 1.5rem;
    }
    .city-card {
        padding: 2rem;
    }
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-item h4::before {
    content: "Q:";
    color: var(--primary);
    font-weight: 800;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer */
footer {
    background: #0F172A;
    color: white;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: #94a3b8;
    max-width: 300px;
}

.footer-links h4, .footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after, .footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #94a3b8;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

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

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #64748B;
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-card {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        border-left: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a:not(.btn) {
        color: var(--text-main);
        font-size: 1.2rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .navbar.scrolled .mobile-menu-btn {
        color: var(--text-main);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 2.5rem 1.5rem;
    }
    
    .premium-card {
        padding: 2rem 1.5rem;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
/* City Exclusives Glass Section */
.city-exclusives {
    background: url('https://images.unsplash.com/photo-1571003123894-1f0594d2b5d9?q=80&w=3000&auto=format&fit=crop') center/cover no-repeat fixed !important;
    position: relative;
    padding: 8rem 0;
}

.city-exclusives::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4) !important;
}

.glass-window {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 40px;
    padding: 4rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.glass-window::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 45%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 55%,
        transparent 100%
    );
    transform: rotate(25deg);
    pointer-events: none;
}

.city-header {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.city-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.city-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.city-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.city-card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 3rem;
    border-radius: 30px;
    transition: var(--transition);
    text-align: center;
    color: white;
}

.city-card:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-10px);
    border-color: var(--accent) !important;
}

.city-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.city-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.city-card p {
    opacity: 0.8;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .city-grid {
        grid-template-columns: 1fr;
    }
    .glass-window {
        padding: 2.5rem 1.5rem;
    }
    .city-card {
        padding: 2rem;
    }
}
/* Final Mobile Optimization for City Section */
@media (max-width: 768px) {
    .city-exclusives {
        padding: 4rem 0 !important;
        background-attachment: scroll !important;
    }
    .glass-window {
        padding: 2.5rem 1.25rem !important;
        border-radius: 24px !important;
        margin: 0 0.75rem !important;
        backdrop-filter: blur(15px) saturate(160%) !important;
        -webkit-backdrop-filter: blur(15px) saturate(160%) !important;
    }
    .city-header {
        margin-bottom: 2.5rem !important;
    }
    .city-header h2 {
        font-size: 1.85rem !important;
        line-height: 1.3 !important;
    }
    .city-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    .city-card {
        padding: 2rem 1.5rem !important;
        border-radius: 20px !important;
    }
    .city-icon {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
}
.city-title-premium {
    background: linear-gradient(
        90deg, 
        #D4AF37 0%, 
        #80D0C7 25%, 
        #FFFFFF 50%, 
        #80D0C7 75%, 
        #D4AF37 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    animation: slowShine 8s linear infinite;
    font-weight: 800;
    display: inline-block;
    filter: drop-shadow(0px 2px 4px rgba(212, 175, 55, 0.2));
    letter-spacing: 1px;
}

@keyframes slowShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.city-title-premium {
    background: linear-gradient(
        90deg, 
        #B8860B 0%, 
        #D4AF37 45%, 
        #FFFFFF 50%, 
        #D4AF37 55%, 
        #B8860B 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    animation: goldSweep 4s linear infinite;
    font-weight: 800;
    display: inline-block;
    filter: drop-shadow(0px 2px 4px rgba(184, 134, 11, 0.3));
}

@keyframes goldSweep {
    0% { background-position: -200% center; }
    100% { background-position: 0% center; }
}
.city-title-premium {
    background: linear-gradient(
        90deg, 
        #D4AF37 0%, 
        #80D0C7 20%, 
        #FFFFFF 45%, 
        #FFFFFF 55%, 
        #80D0C7 80%, 
        #D4AF37 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    /* Speed set to 3s for a sharper sweep, direction strictly left-to-right */
    animation: glassyFlow 3s linear infinite;
    font-weight: 800;
    display: inline-block;
    /* Glass depth/refraction effects */
    filter: drop-shadow(0px 2px 5px rgba(128, 208, 199, 0.4));
    letter-spacing: 0.5px;
}

@keyframes glassyFlow {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: 0% center;
    }
}
.city-title-premium {
    background: linear-gradient(
        90deg, 
        #D4AF37 0%, 
        #D4AF37 30%, 
        #80D0C7 45%, 
        #FFFFFF 50%, 
        #80D0C7 55%, 
        #D4AF37 70%, 
        #D4AF37 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    /* Slower speed (6s) for a premium, calm sweep */
    animation: goldGlassyFlow 6s linear infinite;
    font-weight: 800;
    display: inline-block;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.15));
}

@keyframes goldGlassyFlow {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: 0% center;
    }
}
.city-title-premium {
    background: linear-gradient(
        90deg, 
        #80D0C7 0%, 
        #FFFFFF 35%, 
        #D4AF37 50%, 
        #FFFFFF 65%, 
        #80D0C7 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    /* Balanced speed for modern sleekness */
    animation: modernGlassFlow 5s linear infinite;
    font-weight: 800;
    display: inline-block;
    /* High-end glass clarity */
    filter: drop-shadow(0px 2px 6px rgba(128, 208, 199, 0.3));
    letter-spacing: 0.2px;
}

@keyframes modernGlassFlow {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: 0% center;
    }
}
.city-title-premium {
    background: linear-gradient(
        90deg, 
        #0093E9 0%, 
        #80D0C7 20%, 
        #FFFFFF 40%, 
        #D4AF37 60%, 
        #80D0C7 80%, 
        #0093E9 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    animation: multiColorFlow 5s linear infinite;
    font-weight: 800;
    display: inline-block;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.15));
    letter-spacing: 0.2px;
}

@keyframes multiColorFlow {
    0% { background-position: 200% center; }
    100% { background-position: 0% center; }
}
