/* ==========================================================================
   CSS Variables & Global Reset
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;800&display=swap');

:root {
    --navy-blue: #1A365D;
    --charcoal: #333333;
    --gold: #C5A059;
    --gold-hover: #D4B26A;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --border-color: #E2E8F0;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Heebo', sans-serif;
    color: var(--charcoal);
    background-color: var(--light-bg);
    line-height: 1.6;
    direction: rtl;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ==========================================================================
   Header (Sticky)
   ========================================================================== */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--gold);
    font-size: 28px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav li {
    position: relative;
    display: flex;
    align-items: center;
}

.main-nav a {
    font-weight: 500;
    color: var(--charcoal);
    padding: 10px 0;
}

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

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 250px;
    border-top: 3px solid var(--gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.dropdown-menu a:hover {
    background-color: var(--light-bg);
    padding-right: 25px; /* Slight indent on hover */
}

/* CTA Button */
.header-cta .btn-call {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-cta .btn-call:hover {
    background-color: var(--gold);
}

/* Mobile Menu Toggle (Hidden on Desktop) */
.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--navy-blue);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.95)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content h1 span {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==========================================================================
   About Section (Quick About)
   ========================================================================== */
.about-quick {
    padding: 80px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    color: var(--navy-blue);
    margin-bottom: 30px;
    position: relative;
    padding-right: 20px;
}

.about-text h2::before {
    content: '';
    position: absolute;
    right: 0;
    top: 5px;
    bottom: 5px;
    width: 5px;
    background-color: var(--gold);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

.about-image {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.about-image i {
    font-size: 80px;
    color: var(--gold);
    margin-bottom: 20px;
}

/* ==========================================================================
   Services Grid Section
   ========================================================================== */
.services-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--navy-blue);
}

.section-header p {
    color: var(--gold);
    font-weight: 500;
    margin-top: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--gold);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 28px;
    transition: var(--transition);
}

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

.service-card h3 {
    font-size: 20px;
    color: var(--navy-blue);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: #CBD5E1;
}

.footer-col ul a:hover {
    color: var(--gold);
    padding-right: 5px;
}

.footer-col ul i {
    margin-left: 8px;
    color: var(--gold);
    width: 16px;
}

.contact-info li {
    display: flex;
    align-items: center;
    color: #CBD5E1;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tags a {
    background-color: rgba(255,255,255,0.05);
    color: #CBD5E1;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.1);
}

.service-tags a:hover {
    background-color: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #94A3B8;
    font-size: 14px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    .main-nav {
        display: none; /* Hide desktop nav */
    }
    .mobile-toggle {
        display: block;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
}