/* General Styles */
:root {
    --primary-color: #007bff;
    --secondary-color: #e6f7ff;
    --text-color: #333;
    --header-bg: #ffffff;
    --footer-bg: #343a40;
    --red-text: #d9534f;
    --green-text: #5cb85c;
}

/* 1. تطبيق خط 'Cairo' على كل عناصر الموقع */
body {
    font-family: 'Cairo', sans-serif; /* <-- هذا هو السطر الوحيد المسؤول عن توحيد نوع الخط */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f9ff;
    color: #333; 
    text-align: right;
    /* --- تم حذف تغييرات الحجم من هنا --- */
}


.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

/* 2. ضمان أن تكون العناوين واضحة وبنفس نوع الخط */
h1, h2, h3, h4, h5, h6 {
    font-family: inherit; /* تجعل العناوين ترث الخط من body تلقائياً */
    font-weight: 700;     /* نجعل الخط عريض (Bold) للوضوح، وهذا ما أعجبك */
    text-align: center;
    /* --- تم حذف تغييرات الحجم من هنا --- */
}

/* 3. يمكننا الإبقاء على هذا اللون المميز للعناوين الرئيسية إن أردت */
h2 {
   color: #e5007d;
}




/* Header */
.main-header {
    background: var(--header-bg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 24px;
    font-weight: bold;
}

.logo img {
    height: 50px;
    margin-left: 10px;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav ul li {
    margin-right: 25px;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    transition: color 0.3s;
}

.main-nav ul li a:hover {
    color: var(--primary-color);
}

/* Offers Section */
.offers-section {
    padding: 40px 0;
}

.offers-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.offer-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 320px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s;
}

.offer-card:hover {
    transform: translateY(-10px);
}

.offer-header {
    padding: 10px;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.offer-header-9 { background-color: #4CAF50; } /* Green */
.offer-header-7 { background-color: #2196F3; } /* Blue */
.offer-header-6 { background-color: #f44336; } /* Red */

.offer-header img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.offer-header p { margin: 5px 0 0; }

.offer-body {
    padding: 20px;
}

.offer-title {
    font-size: 22px;
    font-weight: bold;
    margin-top: 0;
}

.offer-subtitle {
    font-size: 16px;
    color: #555;
}

.offer-price {
    margin: 20px 0;
}

.offer-price .new-price {
    font-size: 48px;
    font-weight: bold;
    color: var(--text-color);
}
.offer-price .new-price span { font-size: 24px; }

.offer-price .old-price {
    font-size: 20px;
    text-decoration: line-through;
    color: #999;
}

.offer-duration {
    background: #f1f1f1;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    font-size: 18px;
}
.whatsapp-button:hover {
    background-color: #128C7E;
}

.btn-blue {
    background-color: #2196F3;
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

/* Other Sections */
.info-section {
    padding: 40px 0;
    background-color: #fff;
    margin-top: 40px;
    text-align: center;
}

.info-section h2 {
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
    text-align: right;
}

.features-list li {
    font-size: 18px;
    margin-bottom: 15px;
}

.features-list li strong {
    color: var(--red-text);
}

.cta-section {
    padding: 40px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 28px;
}

.cta-section p {
    font-size: 18px;
    color: #555;
}

.contact-info {
    margin: 20px 0;
    font-size: 20px;
}

.contact-info a {
    color: var(--text-color);
    text-decoration: none;
}
.contact-info i {
    margin-left: 8px;
    color: var(--green-text);
}

/* Generic Page Styles */
.page-container {
    min-height: 60vh;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-container h1 {
    margin-top: 0;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.page-container p, .page-container ul {
    line-height: 1.8;
}

/* Footer */
.main-footer {
    background: var(--footer-bg);
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
.social-links a {
    color: white;
    margin: 0 10px;
    font-size: 24px;
}


/* =============================
   About Page Styles
   ============================= */

/* About Hero Section */
.about-hero {
    position: relative;
    height: 40vh;
    width: 100%;
    background-image: url('images/banner-about.jpg'); /* رابط صورة الخلفية الرئيسية */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 4rem;
    color: white;
    margin: 0;
    font-weight: 700;
}

.about-hero .breadcrumbs a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}
.about-hero .breadcrumbs a:hover {
    text-decoration: underline;
}

/* About Intro Section */
.about-intro-section {
    padding: 60px 0;
    background-color: #fff;
    border-radius: 8px;
    margin-top: -50px; /* يسحب القسم للأعلى فوق الهيرو */
    position: relative;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.intro-text h2 {
    color: #e5007d;
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.destinations-container {
    margin-top: 40px;
    width: 100%;
}

.destinations-container h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 30px;
}

.destinations-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.destination-circle {
    text-align: center;
}

.destination-circle img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-circle img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.destination-circle h4 {
    margin-top: 15px;
    color: var(--red-text);
    font-size: 1.3rem;
}

/* Services Section */
.services-section {
    padding: 60px 0;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 30px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.service-card.blue {
    background-color: #0d2c4b; /* Dark Blue */
}

.service-card.orange {
    background-color: #f39c12; /* Orange */
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    height: 60px;
}

.service-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Animation Styles */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}



/* ====================================
   New Services Section Styles (V2)
   ==================================== */

.services-v2-section {
    padding: 60px 0;
    text-align: center;
}

.services-v2-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #e5007d; /* Red/Pink title color */
    margin-bottom: 40px;
}

.services-v2-grid {
    display: grid;
    /* بشكل افتراضي على الشاشات الصغيرة، يعرض عمود أو عمودين */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px; /* تقليل المسافة قليلاً لتناسب 4 أعمدة */
}

/* ميديا كويري للشاشات الكبيرة (Desktop) */
@media (min-width: 1200px) {
    .services-v2-grid {
        /* عند عرض الموقع على شاشة عرضها 1200px أو أكثر، يتم عرض 4 أعمدة متساوية */
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-v2-card {
    padding: 40px 25px;
    border-radius: 35px; /* High border-radius to match the image */
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-v2-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Card Colors */
.service-v2-card.blue {
    background-color: #1e3a56; /* Dark Blue from image */
}

.service-v2-card.orange {
    background-color: #f39c12; /* Orange from image */
}

/* Icon Styles */
.service-v2-icon {
    width: 100px; /* Adjust size as needed */
    height: 100px;
    object-fit: contain;
    margin-bottom: 25px;
}

/* Text Styles */
.service-v2-card h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 15px;
}

.service-v2-card p {
    font-size: 1.1rem; /* Increased font size for readability */
    line-height: 1.7;
    opacity: 0.95;
    max-width: 90%; /* Ensures text does not touch the card edges */
}




/* ====================================
   إصلاح وتنسيق قسم الخدمات (V2)
   ==================================== */

.services-v2-section {
    padding: 60px 0;
    text-align: center;
}

.services-v2-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #e5007d; /* Red/Pink title color */
    margin-bottom: 40px;
}

.services-v2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.service-v2-card {
    padding: 40px 25px;
    border-radius: 35px;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-v2-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ألوان البطاقات */
.service-v2-card.blue {
    background-color: #1e3a56; 
}

.service-v2-card.orange {
    background-color: #f39c12; 
}

/* === هذا هو الجزء الأهم لإصلاح حجم الأيقونات === */
.service-v2-icon {
    width: 120px;   /* عرض الأيقونة */
    height: 120px;  /* طول الأيقونة */
    object-fit: contain; /* يضمن ظهور الصورة كاملة ضمن الأبعاد */
    margin-bottom: 25px;
}
/* =============================================== */

.service-v2-card h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 15px;
}

.service-v2-card p {
    font-size: 1.1rem; 
    line-height: 1.7;
    opacity: 0.95;
    max-width: 90%; 
}


/* =============================
   Slideshow Styles (Updated for Mobile & Fixed Height)
   ============================= */

/* The main container */
.slideshow-container {
    width: 100%; /* العرض 100% دائماً */
    height: 40vh; /* الارتفاع الافتراضي للشاشات الكبيرة (40% من ارتفاع الشاشة) */
    position: relative;
    margin: 0; /* إزالة أي هوامش خارجية */
    overflow: hidden; /* مهم: لإخفاء أي أجزاء من الصورة تخرج عن الإطار */
}

/* كل شريحة بداخل الحاوية */
.mySlides {
    display: none;
    width: 100%;
    height: 100%;
}

/* === هذا هو الجزء الأهم للصور === */
.slideshow-container img {
    width: 100%;
    height: 100%; /* يجعل الصورة تملأ ارتفاع الحاوية بالكامل */
    object-fit: cover; /* الأهم: يجعل الصورة تملأ المساحة مع قص الأجزاء الزائدة بدلاً من ضغطها أو تمديدها */
    object-position: center; /* يضمن أن يكون منتصف الصورة هو الجزء الظاهر عند القص */
}

/* النص على الشريحة */
.slide-text {
    color: #f2f2f2;
    font-size: 28px;
    font-weight: bold;
    padding: 12px 24px;
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2; /* التأكد من أن النص فوق الصورة */
}

/* حاوية النقاط */
.dot-container {
    text-align: center;
    padding: 10px;
    margin-top: -50px;
    position: relative;
    z-index: 5;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}

.active {
    background-color: #717171;
}

/* تأثير التلاشي */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/* === تحسينات نسخة الموبايل === */
@media (max-width: 768px) {
    .slideshow-container {
        /* تقليل الارتفاع على الشاشات الصغيرة حتى لا يأخذ السلايدر مساحة كبيرة */
        height: 25vh;
    }

    .slide-text {
        /* تصغير حجم الخط على الموبايل */
        font-size: 16px;
        padding: 8px 12px;
        bottom: 15px;
    }

    .dot-container {
        margin-top: -40px;
    }

    .dot {
        height: 12px;
        width: 12px;
    }
}




/* =============================
   Header Responsiveness & Logo Size
   ============================= */

/* --- 1. تكبير الشعار على شاشات الديسكتوب --- */
@media (min-width: 769px) {
    .logo img {
        height: 75px; /* زيادة حجم اللوجو بنسبة 50% (50px * 1.5) */
    }
    .logo a {
        font-size: 28px; /* تكبير النص ليتناسب مع اللوجو */
    }
}

/* --- 2. إعدادات قائمة الجوال --- */

/* إخفاء زر قائمة الجوال على شاشات الديسكتوب */
#mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
}

/* --- إعدادات شاشات الجوال (768px أو أقل) --- */
@media (max-width: 768px) {
    /* إظهار زر قائمة الجوال */
    #mobile-menu-toggle {
        display: block;
    }

    /* إخفاء القائمة العادية */
    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; /* تظهر أسفل الهيدر مباشرة */
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    /* تنسيق عناصر القائمة عند فتحها */
    .main-nav.mobile-active ul {
        display: flex; /* إظهار القائمة عند إضافة كلاس mobile-active */
    }

    .main-nav ul li {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .main-nav ul li a {
        padding: 15px;
        display: block;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
}



/* =============================
   Contact Form Styles
   ============================= */

.contact-page p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-form-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    box-sizing: border-box; /* يمنع تغيير حجم العنصر بسبب الـ padding */
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* --- رسائل الحالة --- */
.form-messages {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: center;
}
.form-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.form-error ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}
.form-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* =============================================
   Contact Page Intro (Updated for Centered Layout)
   ============================================= */

/* إلغاء نظام الشبكة واستخدام flex للتوسيط العمودي */
.contact-intro-grid {
    display: flex;
    flex-direction: column; /* ترتيب العناصر بشكل عمودي (النص أولاً ثم الصورة) */
    align-items: center;   /* توسيط العناصر أفقيًا */
    text-align: center;      /* توسيط النص داخل الفقرة */
    margin-bottom: 50px;     /* زيادة المسافة قبل النموذج */
}

/* --- تنسيق النص --- */
.intro-text-column p {
    font-size: 1.5rem; /* تكبير حجم الخط بشكل ملحوظ */
    line-height: 1.8;
    font-weight: bold; /* جعل الخط أعرض وأوضح */
    color: #333; /* لون نص داكن وواضح */
    max-width: 800px; /* تحديد عرض أقصى للنص */
    margin: 0 0 40px 0; /* إضافة مسافة 40px أسفل النص */
}

/* --- تنسيق الصورة والإطار --- */
.floating-image-wrapper {
    position: relative;
    padding: 10px;
    background: linear-gradient(145deg, #e6e6e6, #ffffff);
    border-radius: 50%;
    box-shadow: 10px 10px 20px #d9d9d9, -10px -10px 20px #ffffff;
    width: 200px; 
    height: 200px;
    animation: float 6s ease-in-out infinite;
}

.floating-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* تعريف الحركة العائمة (لا تغيير هنا) */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}


/* =============================
   New Footer Design
   ============================= */

.new-footer {
    background-color: #1e1e1e; /* اللون الأسود الداكن الرئيسي */
    color: #a9a9a9;
    font-size: 14px;
    margin-top: 40px; /* مسافة قبل الفوتر */
}

/* --- Top Bar --- */
.footer-top-bar {
    background-color: #3ca2a2; /* اللون الأخضر/التيلي */
    padding: 10px 0;
}

.footer-top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* للسماح بالالتفاف على الشاشات الصغيرة */
}

.payment-icons img {
    height: 60px; /* زيادة الارتفاع قليلاً لتكون الصورة أوضح */
    width: auto;  /* العرض يكون تلقائي ليحافظ على أبعاد الصورة */
    margin-left: 0; /* لم نعد بحاجة لهامش بين الصور */
}
.social-media-links a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}

.social-media-links a i {
    margin-left: 8px;
    font-size: 18px;
}

/* --- Main Footer --- */
.footer-main {
    padding: 50px 0;
}

.footer-grid {
    display: grid;
    /* 4 أعمدة مع إعطاء مساحة أكبر للعمود الأول */
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-column h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: right;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #a9a9a9;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-column ul li a i {
    color: #8A2BE2; /* اللون البنفسجي للسهم */
    font-size: 12px;
}

.about-column .footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.about-column p {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}

/* --- Bottom Bar --- */
.footer-bottom {
    background-color: #111;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid #333;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    width: 120px;
    height: 50px;
    bottom: 25px;
    left: 25px; /* لأنه باللغة العربية، نضعه يسارًا */
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

.whatsapp-float i {
    margin-left: 8px;
}

/* --- Responsive for Mobile --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* عمودين على التابلت */
    }
}

@media (max-width: 768px) {
    .footer-top-bar .container {
        flex-direction: column;
        gap: 15px;
    }
    .footer-grid {
        grid-template-columns: 1fr; /* عمود واحد على الموبايل */
        text-align: center;
    }
    .footer-column h4, .about-column p {
        text-align: center;
    }
    .footer-column ul li a {
        justify-content: center;
        flex-direction: row-reverse; /* لعكس اتجاه السهم والنص */
    }
    .footer-column ul li a i {
        margin-left: 0;
        margin-right: 8px;
    }
    .about-column .footer-logo {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}