/* Dubai Market Entry - Premium Styles */
:root {
    --gold-primary: #D4AF37;
    --gold-light: #F4Eeb1;
    --gold-dark: #AA8C2C;
    --dark-bg: #050505;
    --dark-card: #0F0F0F;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
}

body {
    background-color: var(--dark-bg);
}

/* Hero Section Specifics */
.dubai-hero {
    min-height: 100vh;
    background: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.85)), url('dubai_business_context.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.dubai-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--dark-bg), transparent);
    pointer-events: none;
}

.hero-headline-premium {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    background: linear-gradient(135deg, #fff, var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subheadline {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(10, 10, 10, 0.6);
    /* Darker for better text readability */
    backdrop-filter: blur(20px);
    /* Stronger blur */
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    /* Highlight top edge */
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    /* Shadowy bottom edge */
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: 0.6s;
}

.glass-card:hover::before {
    left: 100%;
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    /* Gold border on hover */
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.2);
    /* Soft gold glow */
    background: rgba(20, 20, 20, 0.8);
    background: rgba(20, 20, 20, 0.8);
}

/* Outcome Section Specifics */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.outcome-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.outcome-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.outcome-card .venture-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.4s ease;
}

.outcome-card:hover .venture-icon {
    transform: rotateY(180deg);
    background: var(--gold-primary);
    color: #000;
}

.outcome-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.outcome-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-step {
    border-left: 2px solid var(--gold-primary);
    padding-left: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 18px;
    height: 18px;
    background: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-primary);
}

.faded-map {
    opacity: 0.6;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    transition: opacity 0.5s ease;
}

.faded-map:hover {
    opacity: 0.9;
}

/* Comparison Table / Criteria Section */
.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: stretch;
}

.filter-card {
    padding: 3rem 2.5rem;
    border-radius: 24px;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.filter-card:hover {
    transform: translateY(-5px);
}

.filter-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-card.for {
    background: linear-gradient(145deg, rgba(20, 40, 20, 0.9), rgba(10, 20, 10, 0.95));
    border: 1px solid rgba(80, 250, 123, 0.3);
    box-shadow: 0 0 30px rgba(80, 250, 123, 0.05);
}

.filter-card.for h3 {
    color: #50fa7b;
    text-shadow: 0 0 10px rgba(80, 250, 123, 0.3);
}

.filter-card.not-for {
    background: linear-gradient(145deg, rgba(40, 20, 20, 0.9), rgba(20, 10, 10, 0.95));
    border: 1px solid rgba(255, 85, 85, 0.3);
    box-shadow: 0 0 30px rgba(255, 85, 85, 0.05);
}

.filter-card.not-for h3 {
    color: #ff5555;
    text-shadow: 0 0 10px rgba(255, 85, 85, 0.3);
}

.filter-list {
    padding: 0;
    margin: 0;
}

.filter-list li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #e0e0e0;
    font-weight: 500;
}

.filter-list li i {
    font-size: 1.4rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.filter-card.for li i {
    color: #50fa7b;
}

.filter-card.not-for li i {
    color: #ff5555;
    opacity: 0.8;
}

.filter-list li strong {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Custom CTA */
.cta-diagnostic {
    background: linear-gradient(45deg, var(--gold-dark), var(--gold-primary));
    color: #000;
    font-weight: 700;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.cta-diagnostic:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.problem-bullets {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Modern Animations for Criteria */
@keyframes fadeInUpSmooth {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseSoft {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.filter-list li {
    opacity: 0;
    /* Hidden initially */
    animation: fadeInUpSmooth 0.6s ease-out forwards;
}

/* Staggered Delays for List Items */
.filter-card.for .filter-list li:nth-child(1) {
    animation-delay: 0.2s;
}

.filter-card.for .filter-list li:nth-child(2) {
    animation-delay: 0.4s;
}

.filter-card.for .filter-list li:nth-child(3) {
    animation-delay: 0.6s;
}

.filter-card.not-for .filter-list li:nth-child(1) {
    animation-delay: 0.3s;
}

.filter-card.not-for .filter-list li:nth-child(2) {
    animation-delay: 0.5s;
}

.filter-card.not-for .filter-list li:nth-child(3) {
    animation-delay: 0.7s;
}

/* Icon Pulse */
.filter-card h3 i {
    animation: pulseSoft 2s infinite ease-in-out;
}

/* --- Responsive Design --- */

/* Tablet (Landscape) & Small Laptops */
@media (max-width: 1024px) {
    .hero-headline-premium {
        font-size: 3rem;
    }

    .outcomes-grid {
        gap: 1.5rem;
    }

    .comparison-container {
        gap: 2rem;
    }
}

/* Tablets (Portrait) & Mobile */
@media (max-width: 768px) {
    .dubai-hero {
        padding-top: 100px;
        /* More space for fixed header */
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-headline-premium {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subheadline {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    /* Stack Grids */
    .comparison-container,
    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Adjust Card Padding for Mobile */
    .glass-card,
    .outcome-card,
    .filter-card {
        padding: 2rem 1.5rem;
    }

    /* Process Timeline Adjustments */
    .process-timeline::before {
        left: 0;
    }

    .process-step {
        padding-left: 1.5rem;
        margin-left: 0.5rem;
    }

    .problem-bullets {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .problem-bullets .glass-card {
        width: 100%;
        max-width: 350px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-headline-premium {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-diagnostic {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        display: block;
    }
}