/* ====================== الهيدر ====================== */

.main-header {
    background: #000;          /* خلفية سوداء */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.main-header .container {
    width: 92%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}

/* القائمة */
.nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    transition: 0.2s;
}

.nav ul li a:hover {
    color: #ffd700;
}

/* زر الجوال */
.menu-toggle {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* ====================== موبايل ====================== */
@media(max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: #111;
        padding: 20px 0;
        text-align: center;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .menu-toggle {
        display: block;
    }

    .nav.active {
        display: block;
    }
}


body {
    margin: 0;
    background: #fffaf0;
    font-family: "Tahoma", sans-serif;
}

/* =========== الهيدر =========== */

.hero {
    position: relative;
    background: url("image/Tagmil.jpg") center/cover no-repeat;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.logo {
    width: 110px;
    margin-bottom: 15px;
}

.cta-buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 5px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
}

.btn.call {
    background: #ff5c5c;
    color: #fff;
}

.btn.whatsapp {
    background: #25d366;
    color: #fff;
}

/* =========== لماذا نحن =========== */

.why-us {
    text-align: center;
    padding: 40px 20px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    padding: 20px;
}

.why-card {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 12px #ccc;
}

/* =========== الأقسام =========== */

.sections {
    text-align: center;
    padding: 40px 20px;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 20px;
}

.sec-card {
    background: white;
    border-radius: 18px;
    box-shadow: 0 0 12px #ccc;
    text-decoration: none;
    color: navy;
    padding-bottom: 15px;
}

.sec-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
}

/* =========== المميزات =========== */

.features {
    background: #f0f8ff;
    padding: 40px 20px;
}

.features ul {
    list-style: square;
    padding: 20px;
    font-size: 18px;
}

/* =========== الموقع الجغرافي =========== */

.map-section {
    text-align: center;
    padding: 40px 20px;
}

.map-img {
    width: 300px;
    border-radius: 15px;
    box-shadow: 0 0 12px #aaa;
    margin-top: 15px;
}

/* =========== الفوتر =========== */

.footer {
    background: navy;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 40px;
}

.designer {
    background: #fff0f5;
    color: navy;
    padding: 8px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 8px;
}

/* ===== الأزرار العائمة ===== */

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* شكل الأزرار */
.float-btn {
    background-color: #0b5cd9;
    color: #fff;
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    width: 120px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: 0.25s ease-in-out;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* لون مميز لكل زر */
.float-btn.whatsapp {
    background-color: #25d366;
}

.float-btn.call {
    background-color: #0b5cd9;
}

