:root {
    --blue: #1E4D8C;
    --navy: #0F172A;
    --white: #ffffff;
    --light-bg: #f8fafc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Cairo', sans-serif; direction: rtl; overflow-x: hidden; background: #fff; }

/* Sticky Social */
.sticky-social { position: fixed; right: 15px; top: 60%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 12px; z-index: 2000; }
.s-btn { width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.8rem; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: 0.3s; }
.s-wa { background: #25D366; }
.s-fb { background: #1877F2; }

/* Navbar (تكبير الشعار بناءً على طلبك) */
.navbar { background: white; border-bottom: 6px solid var(--blue); position: sticky; top: 0; z-index: 1500; padding: 15px 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: auto; padding: 0 20px; }
.main-logo { height: 140px; width: auto; }
.company-name-full { font-size: 1.8rem; font-weight: 900; color: var(--navy); line-height: 1.1; }
.company-slogan { font-size: 0.95rem; font-weight: 700; color: var(--blue); }

.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--navy); font-weight: 800; font-size: 1.1rem; }
.menu-toggle { display: none; font-size: 2.5rem; background: none; border: none; color: var(--blue); }

/* Slider */
.slider { height: 75vh; position: relative; background: #000; }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: 1.5s; }
.slide.active { opacity: 1; }

/* من نحن */
.about-premium { padding: 80px 20px; background: white; }
.about-flex { display: flex; align-items: center; gap: 60px; max-width: 1200px; margin: auto; }
.floating-about-logo { width: 100%; max-width: 350px; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)); animation: float 6s infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.about-p { font-size: 1.25rem; color: #333; line-height: 1.8; margin-bottom: 20px; text-align: justify; }
.title-divider-right { width: 100px; height: 6px; background: var(--blue); margin-bottom: 30px; border-radius: 10px; }

/* الضمان والدفع */
.guarantee-box { padding: 80px 20px; background: var(--light-bg); }
.g-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.g-item { background: white; padding: 40px; border-radius: 25px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; }
.g-item i { font-size: 3rem; color: var(--blue); margin-bottom: 20px; }
.g-item h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 15px; }

/* شريط العمل */
.work-bar { background: var(--blue); color: white; display: flex; justify-content: center; gap: 50px; padding: 22px; font-weight: 700; font-size: 1.2rem; }

/* الوكالات (إلغاء خاصية الأبيض والأسود) */
.agency-details { padding: 80px 20px; }
.agency-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; }
.agency-card { background: #fff; padding: 35px; border-radius: 25px; border: 1px solid #eee; text-align: center; transition: 0.3s; }
.agency-logo-wrap { height: 80px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.agency-logo-wrap img { max-height: 60px; width: auto; }

/* اتصل بنا (التعديل الجديد: عمودي) */
.dark-section { background: var(--navy); padding: 80px 20px; }
.contact-vertical-stack { display: flex; flex-direction: column; align-items: center; gap: 50px; }
.phone-numbers-vertical { display: flex; flex-direction: column; gap: 15px; width: 100%; max-width: 500px; margin: 30px auto; }
.btn-phone-large { display: block; background: none; border: 3px solid var(--blue); color: white; padding: 20px; font-size: 2.2rem; font-weight: 900; text-decoration: none; border-radius: 20px; transition: 0.3s; }
.btn-phone-large:hover { background: var(--blue); transform: scale(1.02); }
.map-container-full { width: 100%; border-radius: 30px; overflow: hidden; border: 8px solid white; box-shadow: 0 15px 40px rgba(0,0,0,0.5); }

.footer { background: #000; color: #888; padding: 35px; text-align: center; }

@media (max-width: 768px) {
    .main-logo { height: 90px; }
    .company-name-full { font-size: 1.3rem; }
    .about-flex { flex-direction: column; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: white; padding: 20px; }
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
    .btn-phone-large { font-size: 1.8rem; }
    .work-bar { flex-direction: column; gap: 12px; }
}