/* --- LUXURY BRAND DESIGN SYSTEM --- */
:root {
    --bg-obsidian: #05070B;
    --bg-card: rgba(13, 20, 35, 0.6);
    --border-glass: rgba(212, 175, 55, 0.15);
    --border-glass-hover: rgba(212, 175, 55, 0.4);
    --royal-blue: #0A4C9B;
    --royal-blue-glow: rgba(10, 76, 155, 0.3);
    --gold: #D4AF37;
    --gold-bright: #F3E5AB;
    --text-white: #FFFFFF;
    --text-muted: #A0AEC0;
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Cinzel', serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & BASIC BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-obsidian);
    color: var(--text-white);
    font-family: var(--font-primary);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* --- GLASSMORPHISM SYSTEM --- */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-glass-hover);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.05);
    transform: translateY(-4px);
}

/* --- PREMIUM NAV BAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 7, 11, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-white);
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--text-white) 30%, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-sub {
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

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

/* --- BUTTONS --- */
.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #B8860B 100%);
    color: #000;
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: inline-block;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    box-shadow: 0 0 25px var(--gold);
    transform: scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: inline-block;
    border: 1px solid var(--border-glass-hover);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--gold);
}

.nav-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.nav-btn:hover {
    background: var(--gold);
    color: #000;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    background: radial-gradient(circle at 50% 30%, #06152d 0%, var(--bg-obsidian) 70%);
}

.hero-bg-glow {
    position: absolute;
    top: 25%;
    width: 450px;
    height: 450px;
    background: var(--royal-blue-glow);
    filter: blur(120px);
    border-radius: 50%;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 2rem;
}

.gold-icon {
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.text-gradient-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.hero-scroller {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse-icon {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.6s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 18px; }
}

/* --- GLOBAL SECTION TYPOGRAPHY --- */
section {
    padding: 8rem 0;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

h2 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

/* --- ABOUT SECTION & EMIRATI EXECUTIVE VISUAL SYSTEM --- */
.about-section {
    background: linear-gradient(180deg, var(--bg-obsidian) 0%, #080d16 100%);
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.about-features .about-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.about-feature-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-top: 0.25rem;
}

.about-feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.about-feature-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.executive-image-container {
    position: relative;
    width: 100%;
    max-width: 480px;      
    height: 340px;         
    border-radius: 14px;
    overflow: hidden;      
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.executive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;     
    object-position: center 15%; 
    transition: var(--transition-smooth);
}

.executive-image-container:hover .executive-img {
    transform: scale(1.03);
}

/* Floating Glassmorphism Over Image */
.premium-showcase-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 5;
    max-width: 260px;
    padding: 1.25rem;
    background: rgba(13, 20, 35, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    pointer-events: none;
}

.premium-showcase-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--text-white);
}

.premium-showcase-overlay .gold-text {
    margin-top: 0;
    font-size: 0.75rem;
    line-height: 1.4;
}

/* --- SERVICES GRID --- */
.services-section {
    background: #080d16;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(10, 76, 155, 0.2);
    border: 1px solid var(--royal-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: var(--transition-smooth);
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--gold);
}

.service-card:hover .icon-box {
    background: var(--gold);
    border-color: var(--gold);
}

.service-card:hover .icon-box i {
    color: #000;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.full-width-card {
    grid-column: span 3;
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    background: linear-gradient(90deg, rgba(13, 20, 35, 0.8) 0%, rgba(10, 76, 155, 0.1) 100%);
}

.full-width-card .icon-box {
    margin-bottom: 0;
    flex-shrink: 0;
}

/* --- WHY CHOOSE US --- */
.why-section {
    background: linear-gradient(180deg, #080d16 0%, var(--bg-obsidian) 100%);
}

.abstract-shield {
    border: 2px dashed rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.abstract-shield i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.abstract-shield span {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.why-list {
    list-style: none;
}

.why-list li {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1.75rem;
}

.why-list li i {
    color: var(--gold);
    font-size: 1.25rem;
    margin-top: 0.2rem;
}

.why-list li div {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.why-list li strong {
    color: var(--text-white);
    display: block;
    margin-bottom: 0.25rem;
}

/* --- STATS SECTION --- */
.stats-section {
    background: var(--bg-obsidian);
    padding: 5rem 0;
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 2rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* --- SHOWCASE BANNER --- */
.showcase-banner {
    position: relative;
    padding: 5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 76, 155, 0.2) 0%, rgba(5, 7, 11, 0.8) 100%);
    overflow: hidden;
}

.showcase-banner h2 {
    position: relative;
    z-index: 2;
}

.showcase-banner p {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* --- TESTIMONIALS --- */
.testimonials-section {
    background: #080d16;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.testimonial-user h4 {
    font-size: 1.05rem;
    font-weight: 600;
}

.testimonial-user .user-title {
    font-size: 0.85rem;
    color: var(--gold);
}

/* --- CONTACT & MAP --- */
.contact-section {
    background: var(--bg-obsidian);
}

.contact-form-container {
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.form-group input, .form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.85rem 1.2rem;
    color: var(--text-white);
    font-family: var(--font-primary);
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
}

.form-submit {
    width: 100%;
    margin-top: 0.5rem;
}

.contact-divider {
    text-align: center;
    margin: 2rem 0;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.2);
    position: relative;
}

.whatsapp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #25D366;
    color: #FFF;
    text-decoration: none;
    padding: 0.9rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.whatsapp-cta:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

.map-container {
    padding: 0;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
}

.map-container iframe {
    filter: grayscale(1) invert(0.92) contrast(1.1);
    opacity: 0.75;
    transition: var(--transition-smooth);
}

.map-container:hover iframe {
    opacity: 0.95;
    filter: grayscale(0.4) invert(0.92);
}

/* --- FOOTER --- */
.footer {
    background: #030508;
    padding: 5rem 0 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 350px;
}

.footer-links h4, .footer-contact-info h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 4px;
}

.footer-contact-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 2rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.25);
    font-size: 0.8rem;
}

/* --- RESPONSIVE ADAPTATIONS --- */
@media(max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .full-width-card {
        grid-column: span 2;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media(max-width: 768px) {
    .nav-menu {
        display: none; 
    }
    .mobile-toggle {
        display: block;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .full-width-card {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    .executive-image-container {
        height: 280px;
        max-width: 100%;
    }
    .premium-showcase-overlay {
        bottom: 15px;
        left: 15px;
        max-width: 220px;
        padding: 0.85rem;
    }
}