:root {
    --primary-color: #0F3D2E; /* أخضر زمردي فخم */
    --accent-color: #D4AF37;  /* ذهبي */
    --bg-light: #F8F9FA;
    --text-dark: #2A2A2A;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Tajawal', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}
header {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
}
header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 30px;
}
header nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}
header nav a:hover {
    border-bottom-color: var(--accent-color);
}
.hero {
    background: linear-gradient(135deg, rgba(15,61,46,0.9), rgba(15,61,46,0.7)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 5%;
    text-align: center;
}
.hero h1 { font-size: 2.8rem; margin-bottom: 15px; font-weight: 800; }
.hero p { font-size: 1.3rem; max-width: 600px; margin: 0 auto 30px; }
.btn-gold {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}
.btn-gold:hover { background-color: #fff; color: var(--primary-color); }
.section {
    padding: 60px 5%;
    text-align: center;
}
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}
.about-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}
.bg-white {
    background-color: white;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: right; /* For content inside cards */
}
.service-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    overflow: hidden; /* To make image corners rounded */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.service-content {
    padding: 25px;
    flex-grow: 1; /* Ensures content area grows to fill space */
}
.service-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.25rem;
}
.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 5%;
    text-align: center;
}
.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    text-align: right;
    max-width: 1100px;
    margin: 20px auto 0;
    align-items: center;
}

.contact-details, .map-container {
    flex: 1;
    min-width: 300px;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-top: 0;
    font-size: 1.5rem;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    text-align: center;
    padding: 25px 5%;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    header nav ul {
        flex-direction: column;
        gap: 15px;
    }
    .logo-container h2 {
        font-size: 1.2rem;
    }
    .hero {
        padding: 80px 5%;
    }
    .hero h1 {
        font-size: 2.1rem;
    }
    .section {
        padding: 50px 5%;
    }
    .section-title {
        font-size: 1.9rem;
    }
}
