/* Base Variables & Reset */
:root {
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --navy-dark: #121A2F;
    --navy-medium: #1E2533;
    --accent-gold: #D4AF6A;
    --accent-gold-hover: #C39D54;
    --text-dark: #2D3748;
    --text-gray: #718096;
    --text-white: #FFFFFF;
    --text-white-muted: #E2E8F0;
    --transition-speed: 0.35s;
    --system-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

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

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: var(--system-font);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Animations */
.opacity-0 {
    opacity: 0;
    transform: translateY(15px);
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity var(--transition-speed) ease-out, transform var(--transition-speed) ease-out;
}

/* Header */
.site-header {
    background-color: var(--bg-white);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    scale: 110%;
    text-decoration: none;
}

.site-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-placeholder {
    display: flex;
    gap: 2.5rem;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    position: relative;
    padding: 0.5rem 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width var(--transition-speed) ease;
}

.nav-item:hover::after {
    width: 100%;
}

@media (max-width: 860px) {
    .nav-placeholder {
        display: none;
    }
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-divider {
    width: 1px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.1);
}

.dubai-logo {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #25D366;
    color: white;
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    color: white;
}

.whatsapp-btn svg {
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .whatsapp-btn span {
        display: none;
    }

    .whatsapp-btn {
        padding: 0.65rem;
        border-radius: 50%;
    }

    .logo-divider {
        margin: 0 0.5rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--navy-dark);
    padding: 8rem 0;
    overflow: hidden;
    min-height: calc(100vh - 84px);
    /* Full height minus header */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Abstract representation of a professional background image */
    background: linear-gradient(135deg, rgba(30, 37, 51, 1) 0%, rgba(18, 26, 47, 1) 100%);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-svg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Sits just above hero-background under the soft overlay */
    opacity: 0.6;
    pointer-events: none;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 75% 30%, rgba(212, 175, 106, 0.05) 0%, transparent 60%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 26, 47, 0.65);
    /* Soft dark overlay for text legibility */
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
}

.hero-kicker-wrapper {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.kicker-line {
    flex-shrink: 0;
}

.hero-kicker {
    color: var(--accent-gold);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-section h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-white-muted);
    margin-bottom: 2.5rem;
    max-width: 650px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    scale: 150%;
    height: auto;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-kicker-wrapper {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
}



/* Info Section */
.section-divider-wrapper {
    width: 100%;
    margin-top: -1px;
    /* Align to remove gaps */
    background-color: var(--bg-light);
    padding-top: 2rem;
    z-index: 5;
    position: relative;
    display: flex;
    justify-content: center;
}

.section-divider {
    max-width: 1280px;
}

.info-section {
    padding: 4rem 0 6rem 0;
    background-color: var(--bg-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
}

.info-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.info-block p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.text-link {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.text-link:hover {
    color: var(--accent-gold-hover);
}

/* Footer */
.site-footer {
    background-color: var(--bg-white);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.site-footer p {
    color: var(--text-gray);
    font-size: 0.875rem;
}

@media (max-width: 640px) {


    .hero-section {
        padding: 5rem 0;
        min-height: auto;
    }

    .info-section {
        padding: 4rem 0;
    }
}