/* ==========================================
   ADEPTIX GLOBAL — UAE Page Styles
   ========================================== */

/* ==========================================
   UAE HERO
   ========================================== */
.uae-hero {
    background-color: var(--dark-green);
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
}

.uae-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(74,93,35,0.95) 0%, rgba(74,93,35,0.80) 60%, rgba(74,93,35,0.55) 100%);
    z-index: 0;
}

.uae-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
}

.uae-hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px;
}

.uae-highlight {
    color: var(--gold);
}

.uae-hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 28px;
    line-height: 1.7;
}

.uae-trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    margin-bottom: 32px;
}

.uae-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 500;
}

.uae-badge-item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--gold);
}

.uae-hero-founders {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.uae-founder-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    overflow: hidden;
    flex: 1;
    max-width: 175px;
}

.uae-founder-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.uae-founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.uae-founder-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: rgba(0,0,0,0.2);
}

.uae-founder-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.uae-founder-role {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
}

/* ==========================================
   DEDICATED SUPPORT BANNER
   ========================================== */
.uae-dedicated-banner {
    background: var(--cream);
    padding: 40px 0 36px;
    border-bottom: 3px solid var(--gold);
}

.uae-dedicated-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.uae-dedicated-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.uae-dedicated-desc {
    font-size: 15px;
    color: var(--text-gray);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==========================================
   UAE SERVICES
   ========================================== */
.uae-services-section {
    background: #fff;
    padding: 70px 0;
}

.uae-services-desc {
    text-align: center;
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 44px;
    margin-top: -30px;
}

.uae-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.uae-service-card {
    background: var(--cream);
    border-radius: 8px;
    padding: 24px 20px;
    border: 1px solid var(--border);
}

.uae-service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
}

.uae-service-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--gold);
}

.uae-service-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.uae-service-card ul {
    list-style: disc;
    padding-left: 16px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.75;
}

/* ==========================================
   UAE RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .uae-hero-inner {
        grid-template-columns: 1fr;
    }
    .uae-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .uae-hero {
        padding: 48px 0 56px;
    }
    .uae-hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .uae-hero-content h1 {
        font-size: 26px;
    }
    .uae-trust-badges {
        grid-template-columns: 1fr 1fr;
    }
    .uae-hero-founders {
        justify-content: center;
    }
    .uae-founder-card {
        max-width: 160px;
    }
    .uae-services-grid {
        grid-template-columns: 1fr;
    }
    .uae-dedicated-title {
        font-size: 22px;
    }
}
