:root {
    --primary: #022c22;     /* Deep Emerald / Dark Green */
    --secondary: #064e3b;   /* Rich Green */
    --accent: #cca35e;      /* Muted Luxury Gold */
    --accent-bright: #eecf8a; /* Bright Gold for hovers */
    --text-light: #f0fdf4;
    --text-dark: #1f2937;
    --font-ar: 'Tajawal', sans-serif;
    --font-en: 'Playfair Display', serif;
}

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

body {
    font-family: var(--font-ar);
    background-color: var(--primary);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: absolute;
    width: 100%;
    top: 0;
    padding: 30px 0;
    z-index: 10;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.logo h1 span {
    color: var(--accent);
}

.logo .subtitle {
    font-family: var(--font-en);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('hero-bg.jpg') center/cover; /* Placeholder logic */
    background-color: #000; /* Fallback */
}

/* Luxury Overlay Gradient */
.hero .overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(2, 44, 34, 0.7) 0%, rgba(2, 44, 34, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-label {
    font-family: var(--font-en);
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-desc {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    font-size: 1rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent), #aa8545);
    color: #000;
    border: 1px solid var(--accent);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--accent-bright), var(--accent));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(204, 163, 94, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--primary);
}

/* General Sections */
.section-padding {
    padding: 100px 0;
}

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

.section-header .en-title {
    display: block;
    font-family: var(--font-en);
    color: var(--accent);
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.section-header h3 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-header h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 15px auto 0;
}

/* About */
.about-content .lead {
    font-size: 1.3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #d1d5db;
    line-height: 1.9;
}

/* Services */
.bg-dark {
    background-color: rgba(0,0,0,0.2);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 4px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent);
    transform: translateY(-8px);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--accent);
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #fff;
}

.service-card .en-sub {
    display: block;
    font-family: var(--font-en);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-style: italic;
}

.service-card p {
    color: #9ca3af;
    font-size: 0.95rem;
}

/* CTA */
.cta {
    background: linear-gradient(to top, #000, #022c22);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.cta-content p {
    font-family: var(--font-en);
    color: var(--accent);
    margin-bottom: 50px;
    font-size: 1.2rem;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    color: #d1d5db;
}

.contact-item strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #6b7280;
    font-family: var(--font-en);
}

/* Animations */
.fade-in, .fade-in-up {
    opacity: 0;
    transition: all 1s ease;
}

.fade-in-up {
    transform: translateY(30px);
}

.fade-in.active, .fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .contact-details { flex-direction: column; gap: 20px; }
}
