:root {
    --gold: #C5A023;
    --black: #000000;
    --white: #FFFFFF;
    --grey: #f9f9f9;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Cairo', sans-serif; scroll-behavior: smooth; }

/* Header & Brand Layout */
.main-header {
    background-color: var(--black);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--gold);
}
.container { width: 90%; margin: auto; display: flex; justify-content: space-between; align-items: center; }
.container-small { width: 80%; margin: auto; } /* لتوسيط المحتوى أكثر */

.brand-container { display: flex; flex-direction: column; align-items: center; }
.main-logo-img { height: 85px; width: auto; object-fit: contain; }
.brand-name { color: var(--white); font-weight: 700; font-size: 0.9rem; margin-top: 5px; }

/* Navigation */
.nav-menu ul { list-style: none; display: flex; }
.nav-menu ul li { margin: 0 15px; }
.nav-menu ul li a { color: var(--white); text-decoration: none; font-weight: 700; transition: 0.3s; }
.nav-menu ul li a:hover, .nav-menu ul li a.active { color: var(--gold); }
.btn-gold-call { background: var(--gold); color: var(--black); padding: 10px 20px; border-radius: 5px; text-decoration: none; font-weight: bold; }

/* Hero */
.hero {
    height: 70vh;
    background: url('images.jpg') no-repeat center center/cover;
    display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); position: relative;
    margin-top: 110px;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); }
.hero-content { position: relative; z-index: 1; }
.hero-content h1 { font-size: 3.5rem; color: var(--gold); font-weight: 900; }
.hero-content h2 { font-size: 1.8rem; margin-top: 10px; }

/* About Section */
.about-section { padding: 100px 0; background: var(--white); }
.section-title { text-align: center; margin-bottom: 50px; }
.title-line { width: 70px; height: 4px; background: var(--gold); margin: 10px auto; }
.about-intro-text { text-align: center; max-width: 900px; margin: 0 auto 60px; line-height: 2; font-size: 1.15rem; color: #444; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.about-card { background: var(--grey); padding: 40px 20px; border-radius: 12px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border-top: 5px solid var(--gold); }
.icon-gold { font-size: 2.5rem; color: var(--gold); margin-bottom: 15px; }
.goals-list { list-style: none; text-align: right; margin-top: 15px; font-size: 0.95rem; }
.goals-list li::before { content: "✔ "; color: var(--gold); font-weight: bold; }

/* Services Horizontal (توسيط كامل) */
.services-section { padding: 100px 0; background: var(--grey); }
.services-horizontal-list { display: flex; flex-direction: column; gap: 40px; }
.service-h-card { 
    display: flex; 
    background: var(--white); 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
    align-items: center;
    border: 1px solid #eee;
}
.service-h-img { flex: 1; height: 320px; }
.service-h-img img { width: 100%; height: 100%; object-fit: cover; }
.service-h-info { flex: 1.5; padding: 50px; }
.service-h-info h3 { color: var(--gold); font-size: 2rem; margin-bottom: 20px; font-weight: 700; }
.service-h-info p { font-size: 1.1rem; line-height: 1.9; color: #555; }

/* Contact Horizontal */
.contact-section { padding: 100px 0; background: var(--white); }
.contact-horizontal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.contact-h-item { background: var(--grey); padding: 40px; text-align: center; border-radius: 15px; text-decoration: none; color: black; transition: 0.3s; }
.contact-h-item i { font-size: 2.5rem; color: var(--gold); margin-bottom: 15px; }
.contact-h-item:hover { background: var(--gold); color: white; transform: translateY(-5px); }
.contact-h-item:hover i { color: white; }

/* Footer */
.main-footer { background: var(--black); color: white; text-align: center; padding: 40px; border-top: 3px solid var(--gold); }

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .contact-horizontal-grid { grid-template-columns: 1fr; }
    .service-h-card { flex-direction: column; }
    .service-h-img { width: 100%; height: 250px; }
    .container-small { width: 95%; }
}