/* تنسيق لكل صفح الابادة */

/* =====================================================
   BED BUG PAGE
===================================================== */

.bedbug-page {
    direction: rtl;
    font-family: "Alexandria", sans-serif;
    color: #e8e8e8;
    background: #f4f4f4;
    overflow: hidden;
}


/* =====================================================
   CONTAINER
===================================================== */

.bedbug-container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =====================================================
   HERO
===================================================== */

.bedbug-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            90deg,
            rgba(10, 10, 10, .96),
            rgba(16, 16, 16, .78),
            rgba(10, 10, 10, .94)
        ),
        url("../images/bed-bug-hero.jpg");

    background-size: cover;
    background-position: center;
}


.bedbug-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(255, 184, 0, .08),
            transparent 45%
        );
}


.bedbug-hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
    text-align: center;

    padding: 100px 20px;
}


/* =====================================================
   BREADCRUMB
===================================================== */

.bedbug-breadcrumb {
    color: #a9a9a9;
    font-size: 14px;
    margin-bottom: 25px;
}


.bedbug-breadcrumb span {
    color: #fbbf24;
    margin: 0 8px;
}


/* =====================================================
   BADGE
===================================================== */

.bedbug-badge {
    width: fit-content;
    margin: 0 auto 25px;

    padding: 10px 20px;

    display: flex;
    align-items: center;
    gap: 10px;

    background: rgba(255, 183, 0, .08);

    border: 1px solid rgba(255, 183, 0, .3);

    border-radius: 50px;

    color: #fbbf24;
}


.bedbug-badge i {
    font-size: 18px;
}


/* =====================================================
   HERO TITLE
===================================================== */

.bedbug-hero h1 {
    margin: 0;

    font-size: clamp(38px, 6vw, 75px);

    line-height: 1.3;

    font-weight: 800;

    color: #ffffff;
}


.bedbug-hero h1 span {
    display: block;

    color: #fbbf24;

    margin-top: 5px;
}


.bedbug-hero p {
    max-width: 750px;

    margin: 25px auto;

    color: #c8c8c8;

    font-size: 18px;

    line-height: 2;
}


/* =====================================================
   BUTTONS
===================================================== */

.bedbug-hero-buttons,
.bedbug-cta-buttons {
    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 35px;
}


.bedbug-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 190px;

    padding: 16px 25px;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 700;

    transition: .3s ease;
}


.bedbug-btn-primary {
    color: #151515;

    background: #fbbf24;

    box-shadow:
        0 10px 30px
        rgba(251, 191, 36, .18);
}


.bedbug-btn-primary:hover {
    transform: translateY(-4px);

    background: #ffc72c;
}


.bedbug-btn-outline {
    color: #ffffff;

    border: 1px solid
    rgba(255, 255, 255, .3);

    background:
    rgba(255, 255, 255, .05);
}


.bedbug-btn-outline:hover {
    border-color: #fbbf24;

    color: #fbbf24;

    transform: translateY(-4px);
}


/* =====================================================
   HERO FEATURES
===================================================== */

.bedbug-hero-features {
    margin-top: 35px;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 25px;

    color: #d8d8d8;

    font-size: 14px;
}


.bedbug-hero-features div {
    display: flex;

    align-items: center;

    gap: 7px;
}


.bedbug-hero-features i {
    color: #fbbf24;
}


/* =====================================================
   GENERAL SECTION
===================================================== */

.bedbug-section {
    padding: 110px 0;

    background: #f6f6f6;

    color: #1f1f1f;
}


.bedbug-section-heading {
    margin-bottom: 55px;
}


.bedbug-section-heading.center {
    text-align: center;
}


.bedbug-small-title {
    display: inline-block;

    margin-bottom: 12px;

    color: #b8860b;

    font-size: 14px;

    font-weight: 700;
}


.bedbug-section-heading h2 {
    margin: 0;

    font-size: clamp(28px, 4vw, 46px);

    line-height: 1.5;

    color: #202020;
}


.bedbug-section-heading h2 span {
    color: #d89b00;
}


.bedbug-section-heading p {
    max-width: 700px;

    margin: 20px auto 0;

    color: #777;

    line-height: 2;
}


/* =====================================================
   INTRO
===================================================== */

.bedbug-intro-grid {
    display: grid;

    grid-template-columns:
    1.3fr .7fr;

    gap: 50px;

    align-items: center;
}


.bedbug-intro-content p {
    color: #666;

    line-height: 2.2;

    margin-bottom: 20px;

    font-size: 16px;
}


.bedbug-highlight {
    margin-top: 35px;

    padding: 22px;

    display: flex;

    align-items: center;

    gap: 18px;

    background: #202020;

    color: #fff;

    border-radius: 16px;

    border-right:
    4px solid #fbbf24;
}


.bedbug-highlight i {
    font-size: 35px;

    color: #fbbf24;
}


.bedbug-highlight h3 {
    margin: 0 0 8px;
}


.bedbug-highlight p {
    margin: 0;

    color: #aaa;
}


/* =====================================================
   INFO CARD
===================================================== */

.bedbug-info-card {
    background: #222;

    color: #fff;

    padding: 40px;

    border-radius: 22px;

    position: relative;

    overflow: hidden;

    box-shadow:
        0 25px 50px
        rgba(0, 0, 0, .12);
}


.bedbug-info-card::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    top: -120px;
    left: -120px;

    border-radius: 50%;

    background:
    rgba(251, 191, 36, .08);
}


.bedbug-info-card h3 {
    font-size: 25px;

    margin-bottom: 18px;
}


.bedbug-info-card p {
    color: #aaa;

    line-height: 2;
}


.bedbug-info-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    background:
    rgba(251, 191, 36, .12);

    border-radius: 15px;

    color: #fbbf24;

    font-size: 30px;
}


.bedbug-info-card ul {
    list-style: none;

    padding: 0;

    margin: 25px 0 0;
}


.bedbug-info-card li {
    margin-bottom: 15px;

    color: #d0d0d0;
}


.bedbug-info-card li i {
    color: #fbbf24;

    margin-left: 8px;
}


/* =====================================================
   DARK SECTION
===================================================== */

.bedbug-dark-section {
    padding: 110px 0;

    background: #151515;

    color: #fff;
}


.bedbug-dark-section .bedbug-section-heading h2 {
    color: #fff;
}


.bedbug-dark-section .bedbug-section-heading p {
    color: #aaa;
}


/* =====================================================
   SIGNS
===================================================== */

.bedbug-signs-grid {
    display: grid;

    grid-template-columns:
    repeat(4, 1fr);

    gap: 20px;
}


.bedbug-sign-card {
    position: relative;

    padding: 35px 25px;

    background: #202020;

    border: 1px solid
    rgba(255, 255, 255, .06);

    border-radius: 18px;

    transition: .3s ease;
}


.bedbug-sign-card:hover {
    transform: translateY(-8px);

    border-color:
    rgba(251, 191, 36, .4);
}


.bedbug-sign-card > i {
    display: block;

    font-size: 32px;

    color: #fbbf24;

    margin-bottom: 20px;
}


.bedbug-sign-card h3 {
    margin-bottom: 15px;

    font-size: 20px;
}


.bedbug-sign-card p {
    color: #999;

    line-height: 1.9;

    font-size: 14px;
}


.bedbug-number {
    position: absolute;

    top: 20px;
    left: 20px;

    color: rgba(251, 191, 36, .25);

    font-size: 20px;

    font-weight: 800;
}


/* =====================================================
   PROCESS
===================================================== */

.bedbug-process {
    display: grid;

    grid-template-columns:
    repeat(2, 1fr);

    gap: 25px;
}


.bedbug-process-item {
    display: flex;

    gap: 20px;

    padding: 30px;

    background: #fff;

    border-radius: 16px;

    border: 1px solid #eee;

    transition: .3s;
}


.bedbug-process-item:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, .08);
}


.bedbug-process-number {
    flex-shrink: 0;

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fbbf24;

    color: #222;

    font-size: 22px;

    font-weight: 800;
}


.bedbug-process-item h3 {
    margin: 5px 0 12px;

    font-size: 20px;
}


.bedbug-process-item p {
    margin: 0;

    color: #777;

    line-height: 1.9;
}


/* =====================================================
   FEATURES
===================================================== */

.bedbug-features-section {
    padding: 110px 0;

    background: #ececec;
}


.bedbug-features-grid {
    display: grid;

    grid-template-columns:
    repeat(4, 1fr);

    gap: 20px;
}


.bedbug-feature {
    background: #fff;

    padding: 35px 25px;

    border-radius: 18px;

    text-align: center;

    transition: .3s;
}


.bedbug-feature:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, .08);
}


.bedbug-feature-icon {
    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 18px;

    background:
    rgba(251, 191, 36, .15);

    color: #c88f00;

    font-size: 30px;
}


.bedbug-feature h3 {
    margin-bottom: 12px;

    color: #222;
}


.bedbug-feature p {
    color: #777;

    line-height: 1.8;

    font-size: 14px;
}


/* =====================================================
   FAQ
===================================================== */

.bedbug-faq {
    max-width: 900px;

    margin: auto;
}


.bedbug-faq-item {
    padding: 28px;

    margin-bottom: 15px;

    background: #fff;

    border-radius: 15px;

    border-right:
    4px solid #fbbf24;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, .04);
}


.bedbug-faq-item h3 {
    margin: 0 0 12px;

    font-size: 19px;

    color: #222;
}


.bedbug-faq-item p {
    margin: 0;

    color: #777;

    line-height: 2;
}


/* =====================================================
   CTA
===================================================== */

.bedbug-cta {
    position: relative;

    padding: 110px 0;

    background:
    linear-gradient(
        135deg,
        #111,
        #242424
    );

    overflow: hidden;
}


.bedbug-cta::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    top: -250px;
    right: -150px;

    background:
    rgba(251, 191, 36, .08);
}


.bedbug-cta-overlay {
    position: absolute;

    inset: 0;

    background:
    radial-gradient(
        circle at center,
        rgba(251, 191, 36, .05),
        transparent 55%
    );
}


.bedbug-cta-content {
    position: relative;

    z-index: 2;

    text-align: center;

    max-width: 800px;

    margin: auto;

    color: #fff;
}


.bedbug-cta-icon {
    width: 80px;
    height: 80px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 25px;

    border-radius: 22px;

    background:
    rgba(251, 191, 36, .12);

    color: #fbbf24;

    font-size: 38px;
}


.bedbug-cta h2 {
    font-size: clamp(30px, 4vw, 48px);

    margin-bottom: 20px;
}


.bedbug-cta p {
    color: #aaa;

    line-height: 2;

    font-size: 17px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .bedbug-signs-grid,
    .bedbug-features-grid {
        grid-template-columns:
        repeat(2, 1fr);
    }

}


@media (max-width: 850px) {

    .bedbug-intro-grid {
        grid-template-columns: 1fr;
    }


    .bedbug-process {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .bedbug-section,
    .bedbug-dark-section,
    .bedbug-features-section,
    .bedbug-cta {
        padding: 75px 0;
    }


    .bedbug-signs-grid,
    .bedbug-features-grid {
        grid-template-columns: 1fr;
    }


    .bedbug-hero {
        min-height: 600px;
    }


    .bedbug-hero h1 {
        font-size: 38px;
    }


    .bedbug-hero p {
        font-size: 15px;
    }


    .bedbug-btn {
        width: 100%;
    }


    .bedbug-hero-buttons,
    .bedbug-cta-buttons {
        flex-direction: column;
    }


    .bedbug-process-item {
        padding: 22px;
    }

}

/* =====================================================
   BREADCRUMB LINKS
===================================================== */

.bedbug-breadcrumb a {
    color: #fbbf24;
    text-decoration: none;
    transition: 0.3s ease;
}

.bedbug-breadcrumb a:hover {
    color: #ffffff;
}




