/* UAE Smart Visa Funnel & Assessment Portal - Modern Premium Design System */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&family=Tajawal:wght@400;500;700;800&display=swap');

:root {
    --primary: #0b1727;
    --primary-light: #162a45;
    --uae-green: #006500;
    --uae-green-light: #088450;
    --uae-brown: #9B6131;
    --accent-emerald: #00732f;
    --accent-emerald-light: #00963e;
    --accent-gold: #c5a059;
    --accent-gold-light: #e2be79;
    --accent-gold-glow: rgba(197, 160, 89, 0.25);
    --danger: #dc2626;
    --danger-light: #f87171;
    --warning: #d97706;
    --success: #10b981;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-page: #f8f9fa;
    --bg-card: #ffffff;
    --border-card: #e2e8f0;
    --shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.05), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 12px 28px -4px rgba(0, 0, 0, 0.1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-page);
    color: var(--text-main);
    direction: rtl;
    text-align: right;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Top Official Gov Header */
.official-gov-bar {
    background: linear-gradient(90deg, #0b1727 0%, #162a45 100%);
    color: #ffffff;
    padding: 10px 16px;
    border-bottom: 2px solid var(--accent-gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.gov-branding {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gov-falcon-emblem {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(197, 160, 89, 0.5));
}

.gov-title {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.gov-sub {
    font-size: 0.72rem;
    color: var(--accent-gold-light);
    display: block;
}

.official-badge {
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Hero Section */
.hero-wrapper {
    background: linear-gradient(180deg, #162a45 0%, #0b1727 100%);
    color: #ffffff;
    padding: 30px 16px 45px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero-wrapper::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 30px;
    background: var(--bg-page);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.hero-content {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 115, 47, 0.3);
    border: 1px solid var(--accent-emerald-light);
    color: #a7f3d0;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.hero-tag span.pulse {
    width: 8px;
    height: 8px;
    background-color: #34d399;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.hero-title {
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 12px;
}

.hero-title span.gold {
    color: var(--accent-gold-light);
    text-shadow: 0 0 12px rgba(226, 190, 121, 0.4);
}

.hero-desc {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Stepper Progress Bar */
.stepper-container {
    max-width: 650px;
    margin: -10px auto 25px;
    padding: 0 16px;
    position: relative;
    z-index: 5;
}

.stepper-track {
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-card);
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 14px;
    left: -50%;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.step-item.active:not(:last-child)::after,
.step-item.completed:not(:last-child)::after {
    background: var(--accent-emerald);
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-item.active .step-num {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(11, 23, 39, 0.15);
}

.step-item.completed .step-num {
    background: var(--accent-emerald);
    color: #ffffff;
}

.step-text {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
}

.step-item.active .step-text {
    color: var(--primary);
    font-weight: 800;
}

/* Main Container */
.main-wrapper {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px 40px;
    flex: 1;
}

.card-box {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-soft);
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
}

.card-box.border-gold {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.18);
}

/* Forms */
.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-label span.req {
    color: var(--danger);
    margin-right: 4px;
}

.input-field, .select-field {
    width: 100%;
    padding: 13px 14px;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text-main);
    transition: all 0.25s ease;
}

.input-field:focus, .select-field:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--accent-emerald);
    box-shadow: 0 0 0 3px rgba(0, 115, 47, 0.12);
}

.form-hint {
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

/* Passport Drag & Drop Scanner */
.passport-upload-zone {
    border: 2px dashed #94a3b8;
    background: #f8fafc;
    border-radius: var(--radius-md);
    padding: 22px 16px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all 0.25s ease;
}

.passport-upload-zone:hover {
    border-color: var(--accent-gold);
    background: #fffdf9;
}

.passport-upload-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
    display: block;
}

.passport-preview-box {
    display: none;
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-top: 10px;
    border: 1px solid #cbd5e1;
}

.passport-preview-img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    display: block;
    background: #000;
}

/* Scanner Beam Effect */
.scanner-laser {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(0,255,100,0) 0%, rgba(0,255,100,1) 50%, rgba(0,255,100,0) 100%);
    box-shadow: 0 0 15px 4px #00ff64;
    animation: scanAnim 2s infinite alternate ease-in-out;
}

@keyframes scanAnim {
    0% { top: 0%; }
    100% { top: 95%; }
}

/* Primary Button */
.btn-primary-action {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #00732f 0%, #00963e 100%);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(0, 115, 47, 0.3);
    transition: all 0.25s ease;
    margin-top: 20px;
}

.btn-primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 115, 47, 0.4);
    background: linear-gradient(135deg, #008135 0%, #00a846 100%);
}

.btn-gold-action {
    background: linear-gradient(135deg, #c5a059 0%, #dfba73 100%);
    color: #0b1727;
    box-shadow: 0 6px 18px rgba(197, 160, 89, 0.35);
}

.btn-gold-action:hover {
    background: linear-gradient(135deg, #d3ad64 0%, #ecd091 100%);
}

/* Verification Radar / Scanning Stage */
.radar-stage {
    text-align: center;
    padding: 30px 10px;
}

.radar-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid rgba(0, 115, 47, 0.2);
    border-top-color: var(--accent-emerald);
    border-bottom-color: var(--accent-gold);
    animation: spinRadar 1.5s infinite linear;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@keyframes spinRadar {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.radar-icon {
    font-size: 2rem;
    animation: pulseIcon 1.5s infinite alternate;
}

@keyframes pulseIcon {
    0% { transform: scale(0.9); }
    100% { transform: scale(1.1); }
}

.radar-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.radar-status-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    min-height: 24px;
    margin-bottom: 20px;
}

.progress-bar-wrap {
    background: #e2e8f0;
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
    max-width: 320px;
    margin: 0 auto;
}

.progress-bar-fill {
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-emerald) 100%);
    height: 100%;
    width: 0%;
    transition: width 0.4s ease;
}

/* Teaser / Lock Section */
.teaser-card {
    text-align: center;
    padding: 20px 10px;
}

.lock-badge {
    width: 70px;
    height: 70px;
    background: #fef9c3;
    border: 2px solid var(--accent-gold);
    color: #854d0e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 15px;
    box-shadow: 0 0 20px var(--accent-gold-glow);
}

.teaser-masked-score {
    background: #f8fafc;
    border: 2px dashed var(--accent-gold);
    padding: 16px;
    border-radius: var(--radius-md);
    display: inline-block;
    margin: 15px 0;
    min-width: 240px;
}

.masked-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 2px;
}

.teaser-warning-box {
    background: #fffbeb;
    border: 1px solid #fef3c7;
    border-right: 4px solid var(--warning);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    text-align: right;
    margin: 15px 0 20px;
    font-size: 0.88rem;
    color: #92400e;
    line-height: 1.5;
}

/* Vodafone Cash Payment Box */
.voda-pay-box {
    background: #ffffff;
    border-radius: var(--radius-md);
}

.voda-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
    margin-bottom: 18px;
}

.voda-logo-icon {
    width: 44px;
    height: 44px;
    background: #e60000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(230, 0, 0, 0.3);
}

.voda-number-box {
    background: #fff5f5;
    border: 2px dashed #e60000;
    padding: 16px;
    border-radius: var(--radius-md);
    text-align: center;
    margin: 15px 0;
}

.voda-num-display {
    font-size: 1.6rem;
    font-weight: 900;
    color: #e60000;
    letter-spacing: 2px;
    direction: ltr;
    display: inline-block;
    margin-bottom: 8px;
}

.btn-copy-num {
    background: #e60000;
    color: #ffffff;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-copy-num:hover {
    background: #b30000;
}

.voda-quick-code {
    background: #f1f5f9;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-main);
    margin-top: 10px;
    display: inline-block;
    direction: ltr;
    font-family: monospace;
    font-weight: 700;
}

/* 5-Minute Waiting Room State */
.waiting-room-box {
    text-align: center;
    padding: 25px 15px;
}

.countdown-timer-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #f8fafc;
    border: 4px solid var(--accent-emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(0, 115, 47, 0.15);
}

.timer-digits {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    direction: ltr;
    font-family: monospace;
}

.waiting-live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Results Display (High Qualification - 96%) */
.result-certificate-box {
    background: #ffffff;
    border: 2px solid var(--accent-emerald);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(0, 115, 47, 0.12);
    padding: 24px 20px;
}

.cert-header {
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cert-stamp {
    background: #ecfdf5;
    border: 1.5px solid var(--accent-emerald);
    color: var(--accent-emerald);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
}

.score-gauge-box {
    text-align: center;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.score-huge-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-emerald);
    line-height: 1;
    margin-bottom: 5px;
}

.score-huge-number.score-low {
    color: var(--danger);
}

.score-huge-number span.pct {
    font-size: 2rem;
    color: var(--text-muted);
}

.score-badge-text {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.95rem;
}

.badge-vip-high {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.badge-low-risk {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 18px 0;
}

.price-card {
    border: 1.5px solid #cbd5e1;
    border-radius: var(--radius-sm);
    padding: 14px 12px;
    text-align: center;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
}

.price-card.featured {
    border-color: var(--accent-emerald);
    background: #f0fdf4;
    box-shadow: 0 4px 12px rgba(0, 115, 47, 0.1);
}

.price-card.selected {
    border-color: var(--accent-emerald);
    box-shadow: 0 0 0 3px rgba(0, 115, 47, 0.2);
}

.badge-pop {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-emerald);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 10px;
}

.price-val {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
    margin: 6px 0;
}

/* Agreement Checkbox */
.agreement-box {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    padding: 14px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.agreement-box input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-emerald);
    margin-top: 2px;
}

/* Toast Notifications */
.toast-msg {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #0b1727;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    display: none;
    border: 1px solid var(--accent-gold);
}

/* Footer */
.portal-footer {
    background: #0b1727;
    color: #94a3b8;
    text-align: center;
    padding: 24px 16px;
    font-size: 0.8rem;
    border-top: 1px solid #1e293b;
    margin-top: auto;
}

/* Landing Page Features Grid */
.landing-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin: 15px 0 25px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    box-shadow: var(--shadow-soft);
    text-align: right;
    transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.trust-banner {
    background: #ecfdf5;
    border: 1.5px solid #a7f3d0;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.08);
}

/* u.ae Official Portal Layout & Components */
.uae-portal-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.uae-portal-logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.uae-portal-logo-area img.uae-official-logo {
    height: 48px;
    width: auto;
}

.uae-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    font-size: 0.84rem;
    color: #64748b;
    margin: 18px 0 14px;
    flex-wrap: wrap;
    align-items: center;
}

.uae-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-right: 8px;
    color: #94a3b8;
}

.uae-breadcrumb a {
    color: var(--uae-green);
    text-decoration: none;
    font-weight: 600;
}

.uae-breadcrumb a:hover {
    text-decoration: underline;
}

.uae-page-title {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.35;
    margin-bottom: 14px;
}

.uae-warning-callout {
    background: #fffbeb;
    border: 1.5px solid #fde68a;
    border-right: 6px solid #b45309;
    border-radius: var(--radius-sm);
    padding: 20px 22px;
    margin: 22px 0 28px;
    box-shadow: 0 4px 16px rgba(180, 83, 9, 0.08);
    text-align: right;
}

.uae-warning-title {
    font-size: 1.12rem;
    font-weight: 900;
    color: #92400e;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.uae-warning-text {
    font-size: 0.96rem;
    color: #78350f;
    line-height: 1.75;
}

.uae-warning-text strong.cost-highlight {
    background: #fee2e2;
    color: #991b1b;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 900;
    border: 1px solid #fca5a5;
    display: inline-block;
}

.uae-article-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 24px 22px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
    text-align: right;
}

.uae-article-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

.uae-article-card h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 65px;
    height: 2px;
    background: var(--uae-green);
}

.uae-article-card p {
    font-size: 0.94rem;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 14px;
}

.uae-article-card ul {
    margin-right: 20px;
    margin-bottom: 16px;
    color: #334155;
    font-size: 0.92rem;
    line-height: 1.8;
}

.uae-btn-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--uae-green);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.12rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 101, 0, 0.28);
    transition: all 0.25s ease;
    width: 100%;
    max-width: 420px;
}

.uae-btn-service:hover {
    background: #004d00;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 101, 0, 0.38);
}

@media (max-width: 480px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 1.35rem;
    }
    .landing-features-grid {
        grid-template-columns: 1fr;
    }
    .uae-page-title {
        font-size: 1.35rem;
    }
}


