/* hero Section */
.hero {
    width: 100%;
    /* background: linear-gradient(135deg, var(--helperColor) 0%, #0b1930 50%, var(--primaryColor) 100%); */
    background-attachment: fixed;
    color: #fff;
    /* margin: 0 0 240px 0; */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 0;
    background-position: center;
    background-attachment: fixed;
    margin-top: 100px;
    /* height: 75vh; */
    
}

.hero .slider .slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 0;
    background-position: center;
    background-attachment: fixed;
}

.hero .slider .slide1 .slide-bg{
    background-image: url("../img/hero-bg1.jpg");
}

.hero .slider .slide2 .slide-bg{
    background-image: url("../img/hero-bg2.jpg");
}

.hero .slider .slide3 .slide-bg{
    background-image: url("../img/hero-bg3.jpg");
}

/* افتراض استخدام خط Cairo */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700;800&display=swap');

/* الألوان: الأحمر: var(--primaryColor)، الخط: #333333، الخلفية: var(--white) */

.pest-features-section {
    position: relative;
    background-color: var(--white);
    padding: 100px 0;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    overflow: hidden;
}

.pest-features-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* تصميم GRID للعمودين: صورة (1fr) ومحتوى (1.1fr) */
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    /* لمحاذاة العمودين في الوسط */
}

/* ----------------------------------
   تنسيق الصورة (8)
   ---------------------------------- */
.image-column img {
    width: 100%;
    /* طول وعرض مناسب للصورة */
    /* aspect-ratio: 4 / 3; */
    object-fit: cover;
    border-radius: 8px;
    /* حواف الصورة */
    display: block;
}

/* ----------------------------------
   تنسيق المحتوى الرئيسي
   ---------------------------------- */
.tag {
    background-color: var(--primaryColor);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
}

.pest-features-section h1 {
    color: #333333;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 20px;
}

.main-description {
    color: #555555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
    /* المسافة بين الفقرة و سكاشن المميزات */
}

/* ----------------------------------
   تنسيق شبكة المميزات (Cards Grid) (6, 7)
   ---------------------------------- */
.features-grid {
    display: grid;
    /* تصميم شبكة لـ 4 بطاقات: بطاقتان في كل عمود و صف */
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    /* مسافة عمودية (30px) ومسافة أفقية (20px) */
}

.feature-wrapper {
    /* كل سكشن ميزة هو Flexbox لترتيب الأيقونة والشرح */
    display: flex;
    align-items: flex-start;
    /* محاذاة العناصر من الأعلى */
    gap: 15px;
    /* المسافة بين سكشن الأيقونة وسكشن الشرح (6) */
}

/* ----------------------------------
   تنسيق الأيقونة (5)
   ---------------------------------- */
.icon-card {
    background-color: var(--primaryColor);
    color: var(--white);
    /* تحديد العرض والطول ليكون مربعًا تمامًا */
    width: 55px;
    height: 55px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    /* الأيقونة في المنتصف الأفقي */
    align-items: center;
    /* الأيقونة في المنتصف العمودي */
    flex-shrink: 0;
    /* لمنع تقليص المربع في الشاشات الصغيرة */
    box-shadow: 0 4px 10px var(--primaryColor);
    /* ظل خفيف */
}

.icon-card i {
    font-size: 20px;
    /* حجم الأيقونة */
}

/* ----------------------------------
   تنسيق النص والشرح
   ---------------------------------- */
.text-card {
    text-align: right;
}

.feature-title {
    color: #333333;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.text-card p {
    color: #777777;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ----------------------------------
   نقاط الزخرفة (من التصميم السابق)
   ---------------------------------- */

.moving-dots-container {
    position: absolute;
    top: 50px;
    /* تم تعديل الموضع ليناسب الصورة الثانية */
    left: 0;
    transform: translateY(-50%);
    width: 120px;
    height: 100px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
}

.dots-grid {
    background-image: radial-gradient(#475569 15%, transparent 16%);
    background-size: 20px 20px;
    width: 150%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: transform 0.5s ease-out;
}

.vertical-dots {
    position: absolute;
    left: 5%;
    top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 15px);
    grid-template-rows: repeat(8, 15px);
    gap: 5px;
    /* المسافة بين النقاط */
}

.vertical-dots span {
    width: 6px;
    height: 6px;
    background: #112244;
    border-radius: 50%;
    display: inline-block;
}

/* ----------------------------------
   التصميم المتجاوب (Responsive) (4)
   ---------------------------------- */

/* شاشات التابلت وأحجام اللابتوب الصغيرة (حتى 992px) */
@media (max-width: 992px) {
    .pest-features-section {
        padding: 60px 0;
    }

    .pest-features-section .container {
        /* تحويل التخطيط إلى عمود واحد: الصورة في الأسفل (كما في الصورة الثانية/الثالثة) */
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-column {
        order: 2;
        /* وضع الصورة بعد المحتوى النصي */
        padding: 0 20px;
        /* مسافة حول الصورة */
    }

    .content-column {
        order: 1;
        /* وضع المحتوى النصي في الأعلى */
        padding: 0 20px;
    }

    .pest-features-section h1 {
        font-size: 32px;
    }

    .main-description {
        margin-bottom: 30px;
    }

    /* تعديل شبكة المميزات: 2 عمود ولكن بمحاذاة للوسط */
    .features-grid {
        max-width: 600px;
        margin: 0 auto;
        gap: 25px 15px;
    }

    .moving-dots-container {
        /* إخفاء أو تصغير النقاط قليلاً */
        display: none;
    }
}

/* شاشات الموبايل (Mobile - حتى 576px) */
@media (max-width: 576px) {
    .pest-features-section {
        padding: 40px 0;
    }

    .image-column,
    .content-column {
        padding: 0 15px;
        
    }
    .content-column2 {
        padding: 42px 15px 0 15px;
    }

   .pest-features-section h1 {
        font-size: 26px;
    }

    .main-description {
        font-size: 15px;
    }

    /* تحويل شبكة البطاقات إلى عمود واحد (بطاقة تلو الأخرى) */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-wrapper {
        gap: 10px;
    }

    .icon-card {
        width: 50px;
        height: 50px;
    }

    .icon-card i {
        font-size: 18px;
    }

    .feature-title {
        font-size: 16px;
    }

    .text-card p {
        font-size: 13px;
    }
}
@keyframes slowZoom {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(1.5);
    }
  }
  
  /* الخلفية */
  .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  
  /* كل مرة السلايد تبقى active يشتغل الأنيميشن من الأول */
  .slide.active .slide-bg {
    animation: slowZoom 20s ease-in-out forwards;
  }
  
.hero .bg-hero-overlay {
    background-color: #00000080;
    padding: 10px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero .hero-overlay {
    max-width: 50%;
    text-align: start;
    line-height: 1.6;
    padding: 20px 80px;
    /* height: 80vh; */
    align-content: center;
}

.hero .hero-img {
    width: 50%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .hero-img img {
    width: 60%;
}

.hero h1 {
    font-size: 80px;
    margin-block: 25px;
    position: relative;
    padding-bottom: 8px;
    color: var(--white);
}

.hero h1::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 20%;
    height: 3px;
    background: var(--primaryColor);
    border-radius: 2px;
}

.hero p {
    font-size: 32px;
    margin-bottom: 20px;
}

.hero-overlay a {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 80%;
    margin: auto;
    padding: 10px;
    background: var(--gray);
    color: var(--whatsappColor);
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    border-radius: 25px;
    border: 1px solid var(--whatsappColor);
    /* box-shadow: 0px 4px 6px var(--shadow); */
    transition: transform 0.5s ease-in-out;
    direction: ltr;
}

.hero-overlay a:hover {
    transform: scaleX(1.02);
}

.icon i {
    font-weight: 700;
    font-size: 20px;
}

.stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    text-align: center;
    background: var(--helperColor);
    padding: 50px;
    gap: 50px;
    border-radius: 30px;
    position: absolute;
    left: 10%;
    bottom: -30%;
    width: 35%;
    border-bottom: 2px solid var(--primaryColor);
    z-index: 99;
    display: none;
}

/* .stats::after{
    content: "";
    position: absolute;
    left: 51.2%;
    bottom: 0;
    transform: translateX(-50%);
    width: 73%;
    height: 3px;
    background: var(--primaryColor);
    border-radius: 150px;
} */
.stats h2 {
    font-size: 24px;
    margin: 10px 0;
    color: white;
}

.stats p {
    font-size: 14px;
    color: #ccc;
}

.stats i {
    font-size: 30px;
    color: var(--primaryColor);
    margin-bottom: 8px;
    display: block;
}

/* Slider Base */
.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slide {
    display: none;
    animation: fade 1s ease-in-out;
}

.slide.active {
    display: block;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

/* Controls */
.slider-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.slider-controls span:hover {
    color: var(--primaryColor);
    transform: scale(1.1);
}

/* Indicators (dots) */
.slider-indicators {
    text-align: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
}

.slider-indicators span {
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.slider-indicators span.active {
    background-color: var(--primaryColor);
}
/* العناصر اللي جوه السلايد */
.slide .hero-overlay > * {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
  }
  /* ترتيب التأخيرات */
.slide.active .top-quote {
    animation-delay: 0.3s;
  }
  .slide.active h1 {
    animation-delay: 0.6s;
  }
  .slide.active p {
    animation-delay: 0.9s;
  }
  .slide.active a {
    animation-delay: 1.2s;
  }
.hero .top-quote {
    background-color: var(--primaryColor);
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 35px;
}


/* ====== Animations إضافية ====== */

/* حركة ظهور للفوق عند التحميل */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* حركة تكبير بسيطة عند المرور */
@keyframes pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* تأثير دخول العناصر الرئيسية */
.hero,
.about,
.contact,
.address-container {
    animation: fadeUp 1s ease forwards;
}

/* ترتيب الظهور */
.hero {
    animation-delay: 0.2s;
}

.about {
    animation-delay: 0.4s;
}

.contact {
    animation-delay: 0.6s;
}

.address-container {
    animation-delay: 0.8s;
}

/* حركة على الكروت عند المرور */
.service-card,
.stats div {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


/* حركة أيقونات التواصل */
.icon-contact {
    transition: transform 0.3s ease;
}

.icon-contact:hover {
    animation: pop 0.4s ease;
}


/* Responsive Design */


/* للشاشات المتوسطة مثل التابلت */
@media (max-width: 1500px) {
    .hero {
        flex-direction: column;
        padding: 50px 20px;
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        margin-top: 70px;
    }

    .hero .hero-img {
        display: none;
    }

    .hero .hero-overlay {
        max-width: 100%;
        padding: 0 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 47px;
        font-weight: 700;
    }

    .hero p {
        font-size: 30px;
    }

    .hero h1::after {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    .hero-overlay a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 70%;
        padding: 12px 24px;
        background: var(--gray);
        color: var(--whatsappColor);
        font-weight: 600;
        font-size: 20px;
        text-decoration: none;
        border-radius: 25px;
        border: 1px solid var(--whatsappColor);
        transition: transform 0.3s ease-in-out;
        margin-top: 20px;
    }

    .hero-overlay a i {
        font-weight: 500;
        font-size: 20px;
    }

    .hero-overlay a:hover {
        transform: scale(1.05);
    }

    .stats {
        flex-direction: row;
        width: 80%;
        bottom: -17%;
        padding: 30px 10px;
        gap: 20px;
    }

    .stats div {
        width: 45%;
        min-width: 150px;
    }

    .stats h2 {
        font-size: 24px;
    }

    .stats p {
        font-size: 18px;
    }

    .stats::after {
        display: none;
    }
}

@media (max-width: 1200px){
    .stats {
        flex-direction: row;
        width: 95%;
        left: auto;
        bottom: -17%;
        padding: 30px 10px;
        gap: 20px;
    }
}

@media (max-width: 993px){
    .stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        position: static;
        border-radius: 0px;
    }
    .slider-controls{
        display: none;
    }
    .slider-indicators{
        display: none;
    }

}


/* للشاشات الصغيرة مثل الموبايل */
@media (max-width: 576px) {
    .hero {
        padding: 0px;
        margin-bottom: 0;
    }
    .hero .bg-hero-overlay{
        padding: 40px 0;
    }
    .hero-overlay a {
        width: 80%;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 20px;
    }

    .hero .hero-img img {
        width: 85%;
    }

    .hero-overlay a {
        font-size: 15px;
        padding: 8px 12px;
    }

    .stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .stats::after {
        display: none;
    }

    .stats div {
        width: 100%;
    }

    .stats h2 {
        font-size: 20px;
    }

    .stats p {
        font-size: 15px;
    }
}