/* Luxury Enhancements CSS */

/* Enhanced Typography */
body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif !important;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.7;
    color: #2c3e50;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', serif !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #1a2f4b;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem !important;
}

h2 {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #1a2f4b;
}

h3 {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

h4 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
}

h5 {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.5;
}

h6 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
}

p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

/* Enhanced text classes */
.fs-18 {
    font-size: 18px !important;
    font-weight: 400;
    line-height: 1.7;
}

.fs-32 {
    font-size: 32px !important;
    font-weight: 600;
    line-height: 1.3;
}

/* Typography improvements */
.subtitle {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    color: #d4af37 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 1rem !important;
}

/* Text colors */
.text-light {
    color: #ffffff !important;
}

.text-muted {
    color: #6c757d !important;
    font-weight: 400;
}

/* Hero text specific styling */
.hero-title {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase;
    margin-bottom: 1.5rem !important;
    color: #1a2f4b !important;
    text-shadow: none !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

/* Header section title - different from hero */
#section-hero .hero-title {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 3px !important;
}

/* Float animation improvements */
.float-animation {
    animation: luxuryFloat 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

h2 {
    font-size: 2.5rem;
    color: var(--luxury-navy);
    margin-bottom: 2rem;
}

/* Color Classes */
.text-luxury-navy {
    color: var(--luxury-navy) !important;
}

.text-luxury-gold {
    color: var(--secondary-color) !important;
}

/* Premium Gradients and Backgrounds */
.gradient-luxury {
    background: linear-gradient(135deg, #1a2f4b 0%, #2c4a73 50%, #d4af37 100%);
}

.gradient-gold {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #f7e7ce 100%);
}

.bg-luxury-navy {
    background-color: var(--luxury-navy);
}

.bg-luxury-champagne {
    background-color: var(--luxury-champagne);
}

/* Enhanced Buttons - Luxury Style with Better Design */
.btn-main {
    background: #1a2f4b;
    border: 2px solid #d4af37;
    border-radius: 3px;
    color: #d4af37 !important;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(26, 47, 75, 0.2);
    position: relative;
    overflow: hidden;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    text-decoration: none !important;
    display: inline-block;
    z-index: 1;
}

.btn-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #d4af37;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-main:hover::before {
    left: 0;
}

.btn-main:hover {
    color: #1a2f4b !important;
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    text-decoration: none !important;
}

.btn-main:focus,
.btn-main:active {
    color: #1a2f4b !important;
    text-decoration: none !important;
    outline: none;
}

/* Specific button variations */
.btn-line {
    background: transparent !important;
    border: 2px solid #d4af37;
    color: #d4af37 !important;
}

.btn-line::before {
    background: #d4af37;
}

.btn-line:hover {
    background: #d4af37 !important;
    color: #1a2f4b !important;
}

/* Button with blur background */
.bg-blur {
    backdrop-filter: blur(10px);
    background: rgba(26, 47, 75, 0.8) !important;
}

.bg-blur:hover {
    background: #d4af37 !important;
}

/* Additional button states and improvements */
input[type="submit"].btn-main,
button.btn-main {
    border: 2px solid #d4af37;
    background: #1a2f4b;
    color: #d4af37 !important;
    cursor: pointer;
}

input[type="submit"].btn-main:hover,
button.btn-main:hover {
    background: #d4af37 !important;
    color: #1a2f4b !important;
}

/* Fix for links styled as buttons */
a.btn-main {
    display: inline-block;
    text-decoration: none !important;
}

a.btn-main:visited {
    color: #d4af37 !important;
}

a.btn-main:hover,
a.btn-main:focus,
a.btn-main:active {
    color: #1a2f4b !important;
    text-decoration: none !important;
}

/* Enhanced Cards and Sections */
.luxury-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(26, 47, 75, 0.1);
    transition: all 0.3s ease;
}

.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(26, 47, 75, 0.2);
}

/* Tab Navigation - Fixed Design */
.d-tab-nav {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-bottom: 2rem !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
}

.d-tab-nav li {
    background: linear-gradient(135deg, #f7e7ce, #d4af37) !important;
    border-radius: 30px !important;
    margin: 0 !important;
    padding: 12px 25px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2) !important;
    border: none !important;
    cursor: pointer !important;
    display: inline-block !important;
    white-space: nowrap !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #1a2f4b !important;
    min-width: auto !important;
    width: auto !important;
    flex: none !important;
}

.d-tab-nav li:hover,
.d-tab-nav li.active-tab {
    background: linear-gradient(135deg, #d4af37, #b8860b) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4) !important;
    color: white !important;
}

/* Fix container issues */
.de-tab.pill {
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.de-tab.pill .d-tab-nav {
    overflow: visible !important;
    height: auto !important;
}

/* Remove any conflicting styles */
.d-tab-nav li a {
    color: inherit !important;
    text-decoration: none !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.d-tab-nav li.active-tab a,
.d-tab-nav li:hover a {
    color: white !important;
}

/* Gallery Enhancements */
.image-popup {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.image-popup:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(26, 47, 75, 0.3);
}

/* Contact Form Enhancements - No Glow */
.form-control {
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    font-size: 16px;
    padding: 15px;
}

.form-control:focus {
    border-color: #d4af37;
    box-shadow: none;
    transform: none;
    background: white;
    outline: none;
}

/* Animations */
@keyframes luxuryFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: luxuryFloat 3s ease-in-out infinite;
}

/* Icon Enhancements - Reduced Effects */
.w-70px {
    filter: none;
    transition: all 0.3s ease;
}

.w-70px:hover {
    transform: scale(1.05);
}

/* Image Standardization - Only for specific sections */
#section-overview img:not(.w-70px) {
    width: 100% !important;
    height: 80px !important;
    object-fit: contain !important;
    border-radius: 5px;
}

#section-gallery img {
    width: 100% !important;
    height: 570px !important;
    object-fit: cover !important;
    border-radius: 10px;
}

/* Gallery specific images */
#section-gallery .col-md-4 img,
#section-gallery .col-sm-6 img {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
}

/* Subtitle Styling */
.subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #b8860b);
}

/* Video Section - No Glow */
.player.circle {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Nearby Places Cards */
.overflow-hidden.relative {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 47, 75, 0.2);
    transition: all 0.3s ease;
}

.overflow-hidden.relative:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 47, 75, 0.3);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .btn-main {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .d-tab-nav li {
        padding: 10px 20px !important;
        font-size: 12px !important;
        margin: 5px !important;
    }
    
    .d-tab-nav {
        gap: 5px !important;
    }
}

@media (max-width: 576px) {
    .d-tab-nav li {
        padding: 8px 15px !important;
        font-size: 11px !important;
        flex: 1 1 auto !important;
        text-align: center !important;
    }
}

/* Gallery Slider - Show on all devices */
.gallery-slider-container {
    display: block;
    position: relative;
    margin-top: 2rem;
    margin-bottom: 120px;
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 570px; /* Updated height for desktop */
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--color-navy), #1a365d);
    border: 3px solid var(--color-gold);
}

/* Hide desktop grid - show slider instead */
.gallery-grid {
    display: none;
}

.gallery-slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.gallery-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.9);
}

.gallery-slide:hover .gallery-image img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 3rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-slide:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin: 0 0 1rem 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-overlay p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Mobile: Adjust slider for smaller screens */
@media (max-width: 768px) {
    .gallery-grid {
        display: none;
    }
    
    .gallery-slider-container {
        display: block;
        margin-bottom: 80px;
    }
    
    .gallery-slider {
        height: 350px;
        margin-bottom: 80px;
        border-radius: 15px;
        border-width: 2px;
    }
    
    .gallery-nav {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        bottom: -80px;
        border-width: 3px;
    }
    
    .gallery-nav.prev,
    .gallery-prev {
        left: calc(50% - 80px);
    }
    
    .gallery-nav.next,
    .gallery-next {
        left: calc(50% + 20px);
    }
    
    .gallery-overlay {
        padding: 2rem;
    }
    
    .gallery-overlay h3 {
        font-size: 1.5rem;
    }
    
    .gallery-overlay p {
        font-size: 1rem;
    }
    
    .gallery-indicators {
        bottom: 20px;
        gap: 12px;
        padding: 10px 16px;
    }
    
    .indicator {
        width: 14px;
        height: 14px;
    }
}

.gallery-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 47, 75, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay .view-btn {
    background: #d4af37;
    color: #1a2f4b;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.gallery-overlay .view-btn:hover {
    background: white;
    transform: scale(1.1);
}

/* Gallery Navigation - Enhanced for Desktop */
.gallery-nav {
    position: absolute;
    bottom: -100px;
    background: linear-gradient(135deg, var(--color-navy), #1a365d);
    border: 4px solid var(--color-gold);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s ease;
    z-index: 15;
    color: var(--color-gold);
    font-size: 1.8rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    left: 50%;
    transform: translateX(-50%);
}

.gallery-nav:hover {
    background: linear-gradient(135deg, var(--color-gold), #d4af37);
    color: var(--color-navy);
    transform: translateX(-50%) scale(1.25);
    box-shadow: 0 20px 50px rgba(218, 165, 32, 0.6);
    border-color: var(--color-navy);
}

.gallery-nav.prev,
.gallery-prev {
    left: calc(50% - 110px);
}

.gallery-nav.next,
.gallery-next {
    left: calc(50% + 30px);
}

.gallery-nav::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, var(--color-gold), transparent, var(--color-gold));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-nav:hover::before {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

.gallery-nav::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 60%, rgba(218, 165, 32, 0.2) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-nav:hover::after {
    opacity: 1;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.1; }
}

/* Slide Indicators - Enhanced */
.gallery-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--color-gold);
    transform: scale(1.3);
    border-color: white;
    box-shadow: 0 0 15px rgba(218, 165, 32, 0.6);
}

.indicator:hover {
    background: var(--color-gold);
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Auto-slide pause on hover */
.gallery-slider:hover .auto-slide-paused {
    animation-play-state: paused;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .room-slide img {
        height: 300px;
    }
    
    .room-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .room-slider-nav.prev {
        left: 10px;
    }
    
    .room-slider-nav.next {
        right: 10px;
    }
    
    .room-slider-dots {
        bottom: 10px;
    }
    
    .gallery-slide {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
    
    .gallery-slider {
        margin-bottom: 100px;
    }
    
    .gallery-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: -70px;
    }
    
    .gallery-nav.prev,
    .gallery-prev {
        left: calc(50% - 70px);
    }
    
    .gallery-nav.next,
    .gallery-next {
        left: calc(50% + 20px);
    }
    
    .gallery-slider-container {
        margin-bottom: 80px;
    }
    
    .gallery-nav {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .gallery-nav.prev {
        left: 10px;
    }
    
    .gallery-nav.next {
        right: 10px;
    }
}

/* Hero Section Mobile Fix */
@media (max-width: 768px) {
    .swiper-slide .swiper-inner {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        min-height: 100vh !important;
        display: flex !important;
        align-items: center !important;
    }
    
    #section-hero {
        min-height: 100vh !important;
        position: relative !important;
    }
    
    #section-hero .container {
        position: relative !important;
        z-index: 3 !important;
    }
    
    #section-hero .row {
        min-height: 80vh;
        align-items: center;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        text-align: center !important;
        margin-bottom: 2rem !important;
    }
    
    #section-hero p {
        text-align: center !important;
        font-size: 16px !important;
    }
    
    #section-hero .btn-main {
        margin: 0 auto !important;
        display: block !important;
        width: fit-content !important;
    }
    
    /* Ensure swiper images are properly displayed */
    .swiper {
        height: 100vh !important;
    }
    
    .swiper-slide {
        height: 100vh !important;
    }
    
    .swiper-wrapper {
        height: 100vh !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    #section-hero p {
        font-size: 14px !important;
    }
    
    .swiper-slide .swiper-inner {
        min-height: 100vh !important;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* VISIT DUBAI Section */
.visit-dubai-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('../images/dubai.webp');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
}

.visit-dubai-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 47, 75, 0.8), rgba(26, 47, 75, 0.6));
    z-index: 1;
}

.visit-dubai-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.visit-dubai-content {
    position: relative;
    z-index: 3;
    padding: 80px 0;
}

.visit-dubai-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.text-gold {
    color: var(--color-gold) !important;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.visit-dubai-description {
    max-width: 800px;
    margin: 0 auto;
}

.visit-dubai-description .lead {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.visit-dubai-journey {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.visit-dubai-cta {
    margin-top: 3rem;
}

.btn-luxury {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin: 0 8px;
    border: 2px solid transparent;
}

.btn-luxury span {
    position: relative;
    z-index: 2;
}

.btn-luxury i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn-luxury:hover i {
    transform: translateX(5px);
}

.btn-discover {
    background: linear-gradient(135deg, var(--color-gold), #d4af37);
    color: var(--color-navy);
    border-color: var(--color-gold);
}

.btn-discover:hover {
    background: linear-gradient(135deg, #d4af37, var(--color-gold));
    color: var(--color-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.4);
}

.btn-portfolio {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-portfolio:hover {
    background: white;
    color: var(--color-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-luxury:hover::before {
    left: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .visit-dubai-section {
        min-height: 80vh;
        background-attachment: scroll;
    }
    
    .visit-dubai-content {
        padding: 60px 0;
    }
    
    .visit-dubai-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .text-gold {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .visit-dubai-description .lead {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .visit-dubai-journey {
        font-size: 1rem;
    }
    
    .btn-luxury {
        padding: 14px 24px;
        font-size: 0.9rem;
        margin: 8px 4px;
        display: block;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .visit-dubai-cta {
        margin-top: 2rem;
    }
}

/* Consultation Modal Styles */
.consultation-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    margin: 3% auto;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalSlideIn 0.5s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #d4af37;
    background: rgba(255, 255, 255, 1);
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    min-height: 500px;
    max-height: 80vh;
    overflow: hidden;
}

.modal-left {
    flex: 1;
    background: linear-gradient(135deg, #1a2f4b 0%, #2c4661 50%, #1a2f4b 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modal-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/background/1.webp') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.logo-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
}

.modal-logo {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.modal-right {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.form-container {
    max-width: 400px;
    width: 100%;
}

.form-title {
    font-family: 'Playfair Display', serif;
    color: #1a2f4b;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    color: #666;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a2f4b;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group input[type="time"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    transform: translateY(-1px);
}

.radio-label {
    margin-bottom: 1rem !important;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 0.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin-bottom: 0 !important;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4af37;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group.half {
    flex: 1;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a2f4b;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(0);
}

/* Modal Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-body {
        flex-direction: column;
        min-height: auto;
    }
    
    .modal-left {
        min-height: 200px;
    }
    
    .modal-right {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .logo-overlay {
        padding: 20px;
    }
    
    .modal-logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 2% auto;
        width: 98%;
    }
    
    .modal-right {
        padding: 20px 15px;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
}