:root {
    --gold: #D4AF37;
    --dark-gold: #AA8C2C;
    --white: #ffffff;
    --text: #333333;
    --bg-light: #f9f9f9;
}

body {
    font-family: 'Tajawal', sans-serif;
    margin: 0;
    padding: 0;
    direction: rtl;
    background-color: var(--bg-light);
    color: var(--text);
}

/* Header & Banner */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem;
    text-align: center;
}
.logo-img { max-width: 150px; }

.hero {
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}
.hero::after {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.5);
}
.hero-content { position: relative; z-index: 2; }
.hero h1 { color: var(--gold); font-size: 2.5rem; margin-bottom: 10px; }
.hero p { font-size: 1.2rem; }

/* Buttons */
.btn-gold {
    background: var(--gold);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
    margin-top: 20px;
}
.btn-gold:hover { background: var(--dark-gold); transform: scale(1.05); }

/* Branch Selection */
.branch-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px 20px;
    flex-wrap: wrap;
}
.branch-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    width: 250px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}
.branch-card:hover { border-color: var(--gold); transform: translateY(-10px); }
.branch-icon { width: 80px; height: 80px; margin-bottom: 15px; }

/* Form */
.booking-form {
    max-width: 500px;
    margin: 50px auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; }
.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-sizing: border-box;
}
.form-control:focus { border-color: var(--gold); outline: none; }

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 40px 20px;
    text-align: center;
}
.map-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.map-frame { width: 300px; height: 200px; border: 2px solid var(--gold); }