/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&display=swap');

/* --- Variables & Base --- */
:root {
    --primary-color: #1a2a3a; /* Deeper, richer blue */
    --secondary-color: #f8f9fa; /* Cleaner light grey */
    --accent-color: #c5a47e; /* Softer, elegant gold */
    --whatsapp-green: #25D366;
    --text-color: #343a40;
    --light-text: #fff;
    --font-arabic: 'Tajawal', sans-serif;
    --shadow-light: 0 4px 15px rgba(0,0,0,0.06);
    --shadow-dark: 0 8px 25px rgba(0,0,0,0.1);
    --border-radius: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-arabic); color: var(--text-color); background-color: #fff; line-height: 1.8; direction: rtl; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; overflow: hidden; }
.section-bg { background-color: var(--secondary-color); }

.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.8rem; font-weight: 800; color: var(--primary-color); margin-bottom: 10px; position: relative; display: inline-block; padding-bottom: 10px; }
.section-title h2::after { content: ''; position: absolute; display: block; width: 60px; height: 4px; background: var(--accent-color); bottom: 0; left: 50%; transform: translateX(-50%); }
.section-title p { font-size: 1.2rem; color: #6c757d; max-width: 600px; margin: 0 auto; }

/* --- Header --- */
#header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); padding: 15px 0; transition: all 0.3s ease; z-index: 999; position: sticky; top: 0; box-shadow: var(--shadow-light); }
#header .container { display: flex; justify-content: space-between; align-items: center; }
.logo a { font-size: 1.8rem; font-weight: 700; color: var(--primary-color); text-decoration: none; font-family: 'Montserrat', sans-serif; }
#header nav { display: flex; align-items: center; }
#header nav a { margin: 0 15px; text-decoration: none; color: var(--primary-color); font-weight: 500; transition: color 0.3s; font-size: 1rem; }
#header nav a:hover { color: var(--accent-color); }
.header-buttons { display: flex; gap: 10px; }
.header-buttons .btn { display: flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: all 0.3s; font-size: 0.9rem; }
.btn-call-header { background: var(--accent-color); color: var(--light-text); }
.btn-call-header:hover { background: var(--primary-color); }
.btn-whatsapp-header { background: var(--whatsapp-green); color: var(--light-text); }
.btn-whatsapp-header:hover { background: #1EBE57; }

/* --- Hero Section --- */
#hero { background: linear-gradient(rgba(26, 42, 58, 0.75), rgba(26, 42, 58, 0.75)), url('images/hero-bg.jpg') no-repeat center center/cover; color: var(--light-text); height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-content h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 15px; }
.hero-content p { font-size: 1.3rem; max-width: 700px; margin: 0 auto; font-weight: 400; opacity: 0.9; }

/* --- Services Section --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; text-align: center; }
.service-item { background: #fff; padding: 30px 20px; border-radius: var(--border-radius); box-shadow: var(--shadow-light); transition: all 0.3s ease; }
.service-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-dark); }
.service-item i { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 15px; }
.service-item h3 { font-size: 1.3rem; color: var(--primary-color); font-weight: 700; }

/* --- Pricing Section --- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; align-items: center; }
.pricing-card { background: #fff; border-radius: var(--border-radius); box-shadow: var(--shadow-light); text-align: center; transition: all 0.3s; }
.pricing-card.featured { transform: scale(1.05); box-shadow: 0 15px 40px rgba(197, 164, 126, 0.3); z-index: 10; }
.pricing-header { padding: 30px; border-bottom: 1px solid #eee; }
.pricing-header h3 { font-size: 1.6rem; color: var(--primary-color); font-weight: 700; }
.pricing-header p { font-size: 2.5rem; font-weight: 800; color: var(--accent-color); margin-top: 10px; }
.pricing-header p span { font-size: 1rem; font-weight: 500; color: #6c757d; }
.pricing-card.featured .pricing-header { background: var(--primary-color); border-radius: var(--border-radius) var(--border-radius) 0 0; }
.pricing-card.featured .pricing-header h3 { color: var(--accent-color); }
.pricing-card.featured .pricing-header p { color: #fff; }
.pricing-body { padding: 30px; }
.pricing-body ul { list-style: none; margin-bottom: 30px; }
.pricing-body ul li { margin-bottom: 15px; display: flex; align-items: center; justify-content: flex-start; text-align: right; }
.pricing-body ul li i { color: var(--accent-color); font-size: 1.2rem; margin-left: 10px; }
.pricing-body .btn { width: 100%; padding: 12px; font-size: 1.1rem; background: var(--accent-color); color: #fff; border: none; border-radius: 5px; text-decoration: none; display: block; }
.pricing-card.featured .btn { background: var(--accent-color); }

/* --- Gallery --- */
.gallery-grid-large { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
.gallery-item { overflow: hidden; border-radius: var(--border-radius); box-shadow: var(--shadow-light); }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s ease, filter 0.4s; }
.gallery-item:hover img { transform: scale(1.1); filter: brightness(1.1); }

/* --- Locations Map Section --- */
#locations-map { padding-bottom: 40px; }
.map-container {
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    margin-bottom: 30px;
}
.map-container iframe {
    border: none;
}
.location-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.location-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s;
}
.location-link-btn:hover {
    background-color: var(--accent-color);
}
.location-link-btn i {
    font-size: 1.2rem;
}

/* --- FAQ Section --- */
.faq-item { background: #fff; margin-bottom: 15px; padding: 20px; border-radius: var(--border-radius); border-right: 4px solid var(--accent-color); box-shadow: var(--shadow-light); }
.faq-item h4 { font-size: 1.3rem; color: var(--primary-color); margin-bottom: 5px; }

/* --- Contact Section --- */
#contact { background-color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: flex-start; }
.contact-box { background: var(--secondary-color); padding: 30px; border-radius: var(--border-radius); text-align: center; margin-bottom: 20px; box-shadow: var(--shadow-light); }
.contact-box i { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 10px; }
.contact-box h3 { font-size: 1.5rem; color: var(--primary-color); }
.contact-box p { color: #6c757d; margin-bottom: 15px; }
.contact-box a { text-decoration: none; font-size: 1.4rem; font-weight: 700; color: var(--primary-color); }
.contact-form-wrapper { background: var(--secondary-color); padding: 30px; border-radius: var(--border-radius); box-shadow: var(--shadow-light); }
.contact-form-wrapper h3 { text-align: center; margin-bottom: 20px; font-size: 1.5rem; color: var(--primary-color); }
.form-group { margin-bottom: 15px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ced4da; border-radius: 5px; font-family: var(--font-arabic); font-size: 1rem; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent-color); outline: none; box-shadow: 0 0 0 2px rgba(197, 164, 126, 0.25); }
.contact-form-wrapper button { width: 100%; padding: 12px; font-size: 1.1rem; background: var(--accent-color); color: #fff; border: none; border-radius: 5px; cursor: pointer; transition: background 0.3s; }
.contact-form-wrapper button:hover { background: var(--primary-color); }

/* --- Footer --- */
footer { background: var(--primary-color); color: #adb5bd; padding: 20px 0; text-align: center; font-size: 0.9rem; }

/* --- Floating Buttons --- */
.floating-buttons { position: fixed; bottom: 20px; left: 20px; z-index: 1000; display: flex; flex-direction: column; gap: 10px; }
.floating-buttons a { display: flex; align-items: center; justify-content: center; width: 55px; height: 55px; border-radius: 50%; color: white; text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.2); transition: all 0.3s ease; }
.floating-buttons a i { font-size: 1.6rem; }
.float-call { background-color: var(--accent-color); }
.float-call:hover { transform: scale(1.1); }
.float-whatsapp { background-color: var(--whatsapp-green); }
.float-whatsapp:hover { transform: scale(1.1); }

/* --- Responsive --- */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
}
.header-buttons .btn {
    padding: 8px 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-buttons .btn i {
    font-size: 16px;
}

.header-buttons .btn span {
    display: inline !important;
    font-weight: bold;
}

@media (max-width: 360px) {
    .header-buttons .btn span {
        display: none;
    }
}