   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            background: #090000;
            color: #ffffff;
        }

        /* =========================
           TOP HEADER
        ========================== */

        .top-header {
            width: 100%;
            background: linear-gradient(90deg, #6e0112, #4d0000, #6e0112);
            border-bottom: 1px solid #8e2020;
            padding: 10px 20px;
        }

        .top-header-inner {
            max-width: 1200px;
            margin: auto;
            min-height: 55px;

            display: grid;
            grid-template-columns: 150px 1fr 150px;
            align-items: center;
            gap: 20px;
        }

        /* WhatsApp */

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;

            min-height: 42px;
            padding: 10px 15px;

            background: #168b3c;
            color: #ffffff;
            text-decoration: none;

            border-radius: 5px;
            font-size: 15px;
            font-weight: bold;

            box-shadow: 0 3px 10px rgba(0,0,0,0.4);
            transition: 0.3s ease;
        }

        .whatsapp-btn:hover {
            background: #20a94d;
            transform: translateY(-2px);
        }

        /* Promotional Text */

        .top-promo {
            text-align: center;
            color: #ffd27a;
            font-size: 17px;
            font-weight: bold;
            line-height: 1.4;
        }

        .top-promo span {
            color: #ffffff;
        }

        /* Call */

        .call-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;

            min-height: 42px;
            padding: 10px 15px;

            background: #a91414;
            color: #ffffff;
            text-decoration: none;

            border-radius: 5px;
            font-size: 15px;
            font-weight: bold;

            box-shadow: 0 3px 10px rgba(0,0,0,0.4);
            transition: 0.3s ease;
        }

        .call-btn:hover {
            background: #d31d1d;
            transform: translateY(-2px);
        }


        /* =========================
           TWO IMAGE LOGO SECTION
        ========================== */

        .logo-section {
            width: 100%;
            background: #fff;
            padding: 18px 15px;
        }

        .logo-container {
            
            margin: auto;

            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            align-items: center;
        }

        .logo-box {
            width: 100%;
            text-align: center;
        }

        .logo-box img {
            display: block;
            width: 100%;
            
            height: auto;
            
          
            margin: auto;
        }


        /* =========================
           PROMOTIONAL TEXT SECTION
        ========================== */

        .promo-section {
            width: 100%;
            padding: 55px 20px;

            background:linear-gradient(90deg, #6e0112, #4d0000, #6e0112);
        }

        .promo-container {
            max-width: 1000px;
            margin: auto;
            text-align: center;
        }

        .promo-section h1 {
            color: #ffd06a;
            font-size: 38px;
            line-height: 1.25;
            margin-bottom: 18px;
        }

        .promo-section h2 {
            color: #ffffff;
            font-size: 24px;
            margin-bottom: 18px;
        }

        .promo-section p {
            color: #eeeeee;
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .promo-highlight {
            margin-top: 25px;
            padding: 18px;

            background: rgba(0,0,0,0.35);
            border: 1px solid #762020;
            border-radius: 8px;

            color: #ffd27a;
            font-size: 18px;
            font-weight: bold;
        }


        /* =========================
           TABLET
        ========================== */

        @media (max-width: 768px) {

            .top-header {
                padding: 10px;
            }

            .top-header-inner {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .whatsapp-btn,
            .call-btn {
                width: 100%;
            }

            .top-promo {
                order: -1;
                font-size: 15px;
                padding: 5px 10px;
            }

            .logo-container {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .logo-box img {
                max-width: 450px;
                max-height: 130px;
            }

            .promo-section {
                padding: 40px 15px;
            }

            .promo-section h1 {
                font-size: 30px;
            }

            .promo-section h2 {
                font-size: 21px;
            }

            .promo-section p {
                font-size: 16px;
                line-height: 1.7;
            }
        }


        /* =========================
           MOBILE
        ========================== */

        @media (max-width: 480px) {

            .top-header {
                padding: 8px;
            }

            .top-header-inner {
                gap: 8px;
            }

            .top-promo {
                font-size: 14px;
                padding: 5px;
            }

            .whatsapp-btn,
            .call-btn {
                min-height: 40px;
                font-size: 14px;
                padding: 9px 12px;
            }

            .logo-section {
                padding: 12px 10px;
            }

            .logo-container {
                gap: 10px;
            }

            .logo-box img {
                max-width: 100%;
                max-height: 110px;
            }

            .promo-section {
                padding: 35px 12px;
            }

            .promo-section h1 {
                font-size: 26px;
            }

            .promo-section h2 {
                font-size: 19px;
            }

            .promo-section p {
                font-size: 15px;
                line-height: 1.65;
            }

            .promo-highlight {
                font-size: 16px;
                padding: 15px;
            }
        }
		 .marquee-section {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        background: linear-gradient(90deg, #6e0112, #4d0000, #6e0112);
        border-top: 1px solid #8b2020;
        border-bottom: 1px solid #8b2020;
        padding: 11px 0;
    }

    .marquee-wrapper {
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
    }

    .marquee-text {
        display: inline-block;
        padding-left: 100%;
        color: #ffd36b;
        font-size: 17px;
        font-weight: 600;
        line-height: 1.5;
        animation: astrologyMarquee 28s linear infinite;
    }

    @keyframes astrologyMarquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    @media (max-width: 768px) {
        .marquee-section {
            padding: 9px 0;
        }

        .marquee-text {
            font-size: 15px;
            animation-duration: 24s;
        }
    }

    @media (max-width: 480px) {
        .marquee-text {
            font-size: 14px;
            animation-duration: 22s;
        }
    }
	.full-banner {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background: #000000;
        line-height: 0;
    }

    .full-banner img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
        object-fit: cover;
    }

    /* Tablet */
    @media (max-width: 768px) {
        .full-banner img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
    }

    /* Mobile */
    @media (max-width: 480px) {
        .full-banner img {
            width: 100%;
            height: auto;
        }
    }
/* =========================================
   SERVICES SECTION
   WHITE BACKGROUND
========================================= */

.services-section {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 70px 20px;

    background: #ffffff;
    background-color: #ffffff;

    overflow: hidden;
}

.services-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   SERVICES HEADING
========================================= */

.services-heading {
    text-align: center;
    margin-bottom: 45px;
}

.services-heading span {
    display: inline-block;

    color: #a71919;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.services-heading h2 {
    margin: 0 0 12px;

    color: #260000;

    font-size: 38px;
    font-weight: 700;

    line-height: 1.3;
}

.services-heading p {
    margin: 0;

    color: #000;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   SERVICES GRID
========================================= */

.services-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* =========================================
   SERVICE CARD
   WHITE / CLEAN BACKGROUND
========================================= */

.service-card {
    position: relative;

    width: 100%;
    max-width: 100%;

    background:linear-gradient(90deg, #6e0112, #4d0000, #6e0112);
    
    border: 1px solid #e2c5c5;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 5px 18px rgba(60, 0, 0, 0.10);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;

    animation: cardAppear 0.8s ease both;
}


/* =========================================
   CARD HOVER EFFECT
========================================= */

.service-card:hover {
    transform: translateY(-10px);

    border-color: #b52a2a;

    box-shadow:
        0 15px 35px rgba(60, 0, 0, 0.18),
        0 0 20px rgba(170, 30, 30, 0.12);
}


/* =========================================
   SERVICE IMAGE
========================================= */

.service-image {
    width: 100%;
   height: 270px;
    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #eeeeee;
}

.service-image img {
    display: block;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    object-fit: cover;

    transition:
        transform 0.6s ease,
        filter 0.6s ease;
}


/* =========================================
   IMAGE HOVER
========================================= */

.service-card:hover .service-image img {
    transform: scale(1.08);

    filter: brightness(1.06);
}


/* =========================================
   SERVICE CONTENT
========================================= */

.service-content {
    width: 100%;

    padding: 22px 20px 20px;

    text-align: center;

   
     
}

.service-content h3 {
    margin: 0 0 12px;

    color: #ffd27a;

    font-size: 23px;
    font-weight: bold;

    line-height: 1.4;
}

.service-content p {
    margin: 0 0 18px;

    color: #fff;

    font-size: 14px;
    line-height: 1.7;
 
}


/* =========================================
   BUTTON AREA
========================================= */

.service-buttons {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;
}

.service-buttons a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 42px;

    padding: 9px 8px;

    border-radius: 5px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================
   CALL BUTTON
========================================= */

.service-call {
    color: #ffffff;

    background: #a71919;
}

.service-call:hover {
    color: #ffffff;

    background: #d32424;

    transform: translateY(-2px);

    box-shadow:
        0 5px 12px rgba(180, 0, 0, 0.30);
}


/* =========================================
   WHATSAPP BUTTON
========================================= */

.service-whatsapp {
    color: #ffffff;

    background: #168b3c;
}

.service-whatsapp:hover {
    color: #ffffff;

    background: #20a94d;

    transform: translateY(-2px);

    box-shadow:
        0 5px 12px rgba(0, 150, 60, 0.25);
}


/* =========================================
   CARD APPEAR ANIMATION
========================================= */

@keyframes cardAppear {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .services-section {
        padding: 60px 18px;

        background: #ffffff;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 20px;
    }

    .services-heading h2 {
        font-size: 32px;
    }
 

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .services-section {
        width: 100%;
        max-width: 100%;

        padding: 50px 12px;

        background: #ffffff;
        background-color: #ffffff;

        overflow: hidden;
    }

    .services-container {
        width: 100%;
        max-width: 100%;
    }

    .services-heading {
        margin-bottom: 30px;
    }

    .services-heading span {
        font-size: 12px;

        letter-spacing: 1.5px;
    }

    .services-heading h2 {
        font-size: 27px;

        line-height: 1.3;
    }

    .services-heading p {
        font-size: 14px;

        line-height: 1.6;
    }

    .services-grid {
        width: 100%;
        max-width: 100%;

        display: grid;

        grid-template-columns: 1fr;

        gap: 20px;
    }

    .service-card {
        width: 100%;
        max-width: 100%;
 
    }

    .service-image {
        width: 100%;
 
    }

    .service-content {
        width: 100%;

        padding: 20px 15px;

        
    }

    .service-content h3 {
        font-size: 20px;
    }

    .service-content p {
        min-height: auto;

        font-size: 14px;

        line-height: 1.65;
    }

    .service-buttons {
        width: 100%;

        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }

    .service-buttons a {
        min-height: 40px;

        padding: 8px 5px;

        font-size: 13px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .services-section {
        padding-left: 10px;
        padding-right: 10px;

        background: #ffffff;
    }

    .services-heading h2 {
        font-size: 24px;
    }

    .service-image {
        height: 190px;
    }

    .service-content {
        padding-left: 12px;
        padding-right: 12px;
    }

    .service-buttons {
        gap: 6px;
    }

    .service-buttons a {
        font-size: 12px;
    }

}
/* =========================================
   ABOUT SECTION
========================================= */

.about-section {
    width: 100%;
    max-width: 100%;

    padding: 80px 20px;

    background: #ffffff;
    background-color: #ffffff;

    overflow: hidden;
}


/* =========================================
   CONTAINER
========================================= */

.about-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 60px;
}


/* =========================================
   ABOUT IMAGE
========================================= */

.about-image {
    width: 100%;

    display: flex;
    justify-content: center;
}

.about-image-frame {
    position: relative;

    width: 100%;
    max-width: 480px;

    padding: 8px;

    border: 1px solid #d9b36c;

    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 12px 30px rgba(50, 0, 0, 0.15);
}

.about-image-frame::before {
    content: "";

    position: absolute;

    top: -10px;
    left: -10px;

    width: 70px;
    height: 70px;

    border-top: 3px solid #a71919;
    border-left: 3px solid #a71919;

    border-radius: 8px 0 0 0;
}

.about-image-frame::after {
    content: "";

    position: absolute;

    right: -10px;
    bottom: -10px;

    width: 70px;
    height: 70px;

    border-right: 3px solid #a71919;
    border-bottom: 3px solid #a71919;

    border-radius: 0 0 8px 0;
}

.about-image-frame img {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 9px;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.about-image-frame:hover img {
    transform: scale(1.02);

    filter: brightness(1.04);
}


/* =========================================
   ABOUT CONTENT
========================================= */

.about-content {
    width: 100%;
}

.about-label {
    display: inline-block;

    color: #a71919;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.about-content h2 {
    margin: 0 0 20px;

    color: #260000;

    font-size: 38px;
    font-weight: 700;

    line-height: 1.3;
}

.about-content p {
    margin: 0 0 15px;

    color: #000;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   FEATURES
========================================= */

.about-features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

    margin-top: 28px;
}

.about-feature {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 15px;

    border: 1px solid #eadada;

    border-radius: 8px;

    background: #ffffff;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-4px);

    border-color: #c58b35;

    box-shadow:
        0 7px 18px rgba(60, 0, 0, 0.10);
}

.feature-icon {
    flex: 0 0 30px;

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #a71919;

    color: #ffffff;

    font-size: 15px;
    font-weight: bold;
}

.about-feature h4 {
    margin: 0 0 5px;

    color: #7f1010;

    font-size: 15px;
}

.about-feature p {
    margin: 0;

    color: #000;

    font-size: 14px;

    line-height: 1.5;
}


/* =========================================
   ABOUT BUTTONS
========================================= */

.about-buttons {
    display: flex;

    gap: 12px;

    margin-top: 30px;
}

.about-buttons a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 145px;
    min-height: 45px;

    padding: 10px 18px;

    border-radius: 5px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.about-call-btn {
    color: #ffffff;

    background: #a71919;
}

.about-call-btn:hover {
    color: #ffffff;

    background: #d32424;

    transform: translateY(-2px);

    box-shadow:
        0 6px 15px rgba(160, 0, 0, 0.25);
}

.about-whatsapp-btn {
    color: #ffffff;

    background: #168b3c;
}

.about-whatsapp-btn:hover {
    color: #ffffff;

    background: #20a94d;

    transform: translateY(-2px);

    box-shadow:
        0 6px 15px rgba(0, 140, 50, 0.25);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .about-section {
        padding: 65px 18px;
    }

    .about-container {
        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }

    .about-content h2 {
        font-size: 31px;
    }

    .about-content p {
        font-size: 15px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .about-section {
        width: 100%;
        max-width: 100%;

        padding: 50px 12px;

        background: #ffffff;

        overflow: hidden;
    }

    .about-container {
        width: 100%;
        max-width: 100%;

        display: grid;

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .about-image {
        width: 100%;
    }

    .about-image-frame {
        width: 100%;
        max-width: 450px;
    }

    .about-content {
        width: 100%;
    }

    .about-label {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .about-content h2 {
        font-size: 27px;
        line-height: 1.35;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-features {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 12px;

        margin-top: 22px;
    }

    .about-feature {
        width: 100%;
    }

    .about-buttons {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 8px;

        margin-top: 25px;
    }

    .about-buttons a {
        width: 100%;

        min-width: 0;

        min-height: 42px;

        padding: 9px 8px;

        font-size: 13px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .about-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 13px;
    }

    .about-feature {
        padding: 12px;
    }

    .about-buttons a {
        font-size: 12px;
    }

}

/* =========================================
   WHY CHOOSE US SECTION
========================================= */

.why-choose-section {
    width: 100%;
    max-width: 100%;

    padding: 75px 20px;

    background:
        linear-gradient(
            135deg,
            #170000 0%,
            #4b0000 50%,
            #210000 100%
        );

    overflow: hidden;
}

.why-choose-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.why-heading {
    max-width: 800px;

    margin: 0 auto 45px;

    text-align: center;
}

.why-heading span {
    display: inline-block;

    color: #f0bd55;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.why-heading h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 38px;
    font-weight: 700;

    line-height: 1.3;
}

.why-heading p {
    margin: 0;

    color: #e3dada;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   FEATURE GRID
========================================= */

.why-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}


/* =========================================
   WHY CARD
========================================= */

.why-card {
    position: relative;

    width: 100%;

    padding: 30px 22px;

    text-align: center;

    background: rgba(0, 0, 0, 0.20);

    border: 1px solid rgba(224, 170, 70, 0.35);

    border-radius: 10px;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease,
        background 0.4s ease;

    animation: whyCardAppear 0.8s ease both;
}


/* CARD HOVER */

.why-card:hover {
    transform: translateY(-8px);

    background: rgba(0, 0, 0, 0.35);

    border-color: #e2ad48;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.40),
        0 0 18px rgba(220, 160, 50, 0.12);
}


/* =========================================
   ICON
========================================= */

.why-icon {
    width: 55px;
    height: 55px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #f5c65f;

    border: 1px solid #b88632;

    background: rgba(0, 0, 0, 0.25);

    font-size: 23px;

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease;
}

.why-card:hover .why-icon {
    transform: rotateY(180deg);

    background: #a71919;

    color: #ffffff;
}


/* =========================================
   CARD CONTENT
========================================= */

.why-card h3 {
    margin: 0 0 10px;

    color: #f4c45c;

    font-size: 20px;
    font-weight: 700;

    line-height: 1.4;
}

.why-card p {
    margin: 0;

    color: #dedede;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   BOTTOM CTA
========================================= */

.why-cta {
    max-width: 800px;

    margin: 45px auto 0;

    padding: 30px 20px;

    text-align: center;

    border-top: 1px solid rgba(226, 173, 72, 0.30);
}

.why-cta h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 25px;
}

.why-cta p {
    margin: 0;

    color: #dcdcdc;

    font-size: 15px;
}


/* =========================================
   BUTTONS
========================================= */

.why-buttons {
    display: flex;

    justify-content: center;

    gap: 12px;

    margin-top: 22px;
}

.why-buttons a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 145px;
    min-height: 44px;

    padding: 9px 18px;

    border-radius: 5px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


/* CALL */

.why-call-btn {
    color: #ffffff;

    background: #a71919;
}

.why-call-btn:hover {
    color: #ffffff;

    background: #d32424;

    transform: translateY(-3px);

    box-shadow:
        0 6px 15px rgba(180, 0, 0, 0.35);
}


/* WHATSAPP */

.why-whatsapp-btn {
    color: #ffffff;

    background: #168b3c;
}

.why-whatsapp-btn:hover {
    color: #ffffff;

    background: #20a94d;

    transform: translateY(-3px);

    box-shadow:
        0 6px 15px rgba(0, 150, 60, 0.30);
}


/* =========================================
   CARD ANIMATION
========================================= */

@keyframes whyCardAppear {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .why-choose-section {
        padding: 65px 18px;
    }

    .why-heading h2 {
        font-size: 32px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 18px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .why-choose-section {
        width: 100%;
        max-width: 100%;

        padding: 50px 12px;

        overflow: hidden;
    }

    .why-heading {
        margin-bottom: 30px;
    }

    .why-heading span {
        font-size: 12px;

        letter-spacing: 1.5px;
    }

    .why-heading h2 {
        font-size: 27px;

        line-height: 1.35;
    }

    .why-heading p {
        font-size: 14px;

        line-height: 1.65;
    }

    .why-grid {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 15px;
    }

    .why-card {
        width: 100%;

        padding: 25px 18px;
    }

    .why-icon {
        width: 50px;
        height: 50px;

        font-size: 21px;
    }

    .why-card h3 {
        font-size: 19px;
    }

    .why-card p {
        font-size: 14px;

        line-height: 1.65;
    }

    .why-cta {
        margin-top: 35px;

        padding: 25px 10px;
    }

    .why-cta h3 {
        font-size: 21px;

        line-height: 1.4;
    }

    .why-cta p {
        font-size: 21px;

        line-height: 1.6;
    }

    .why-buttons {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }

    .why-buttons a {
        width: 100%;

        min-width: 0;

        font-size: 13px;

        padding: 9px 8px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .why-choose-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .why-heading h2 {
        font-size: 24px;
    }

    .why-card {
        padding: 22px 15px;
    }

    .why-card h3 {
        font-size: 18px;
    }

    .why-card p {
        font-size: 13px;
    }

    .why-buttons a {
        font-size: 12px;
    }

}
/* =========================================
   PAPER LEAF QUICK SERVICES
========================================= */

.paper-leaf-services {
    width: 100%;
    padding: 80px 20px;
    background: #f4eee3;
    box-sizing: border-box;
    overflow: hidden;
}

.paper-leaf-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

/* Heading */

.paper-leaf-heading {
    text-align: center;
    margin-bottom: 48px;
}

.paper-leaf-heading span {
    display: block;
    margin-bottom: 8px;
    color: #8a1717;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.paper-leaf-heading h2 {
    margin: 0 0 12px;
    color: #351616;
    font-size: 38px;
    font-weight: 700;
}

.paper-leaf-heading p {
    max-width: 650px;
    margin: auto;
    color: #000;
    font-size: 15px;
    line-height: 1.7;
}

/* Grid */

.paper-leaf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px 28px;
}

/* Paper Leaf Card */

.paper-leaf-card {
    position: relative;
    background: linear-gradient(90deg, #180000, #4d0000, #180000);
    border-radius: 8px 64px 8px 35px;
    overflow: hidden;
    box-shadow:
        0 7px 20px rgba(65, 35, 15, 0.12),
        0 1px 3px rgba(65, 35, 15, 0.10);
    transition: all 0.4s ease;
}
 

.paper-leaf-card:hover {
    transform: translateY(-8px) rotate(-0.5deg);
    box-shadow:
        0 18px 35px rgba(65, 35, 15, 0.18),
        0 2px 5px rgba(65, 35, 15, 0.12);
}

/* Paper corner */

.paper-leaf-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 38px;
    height: 38px;
    background: #eadcc5;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    z-index: 3;
}

/* Image */

.paper-leaf-image {
    width: 100%;
    
    overflow: hidden;
}

.paper-leaf-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.paper-leaf-card:hover .paper-leaf-image img {
    transform: scale(1.08);
}

/* Content */

.paper-leaf-content {
    padding: 23px 24px 27px;
    text-align: center;
}

.paper-leaf-content h3 {
    margin: 0 0 9px;
    color: #f4c45c;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 700;
}

.paper-leaf-content p {
    margin: 0 auto 19px;
     
    color: #fff;
    font-size: 13px;
    line-height: 1.65;
}

/* Call Button */

.paper-leaf-content a {
    display: inline-block;
    padding: 10px 28px;
    background: #7d1717;
    color: #ffffff;
    border-radius: 4px 18px 4px 18px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.paper-leaf-content a:hover {
    background: #b28745;
    border-radius: 18px 4px 18px 4px;
    transform: translateY(-2px);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .paper-leaf-services {
        padding: 65px 18px;
    }

    .paper-leaf-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 22px;
    }

    .paper-leaf-heading h2 {
        font-size: 32px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .paper-leaf-services {
        padding: 50px 15px;
    }

    .paper-leaf-heading {
        margin-bottom: 35px;
    }

    .paper-leaf-heading span {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .paper-leaf-heading h2 {
        font-size: 27px;
    }

    .paper-leaf-heading p {
        font-size: 14px;
    }

    .paper-leaf-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
 

    .paper-leaf-content {
        padding: 22px 18px 25px;
    }

    .paper-leaf-content h3 {
        font-size: 20px;
    }

    .paper-leaf-content a {
        width: 170px;
        box-sizing: border-box;
    }
}
/* =========================================
   COUNTER SECTION
========================================= */

.counter-section {
    width: 100%;
    padding: 80px 20px;
    background:
        linear-gradient(
            135deg,
            #160000 0%,
            #520000 50%,
            #210000 100%
        );
    box-sizing: border-box;
    overflow: hidden;
}

.counter-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading */

.counter-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.counter-heading span {
    display: block;
    margin-bottom: 9px;
    color: #e1b45b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.counter-heading h2 {
    margin: 0 0 13px;
    color: #ffffff;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
}

.counter-heading p {
    margin: 0;
    color: #e3cccc;
    font-size: 15px;
    line-height: 1.7;
}

/* Counter Grid */

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* Counter Box */

.counter-box {
    position: relative;
    padding: 38px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(225, 180, 91, 0.45);
    border-radius: 12px;
    transition: all 0.35s ease;
    box-sizing: border-box;
}

.counter-box:hover {
    transform: translateY(-7px);
    background: rgba(255, 255, 255, 0.09);
    border-color: #e1b45b;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* Number */

.counter-number {
    color: #e1b45b;
    font-size: 48px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1px;
}

.counter-number::after {
    content: "+";
    margin-left: 3px;
    font-size: 28px;
}

/* Line */

.counter-line {
    width: 45px;
    height: 2px;
    margin: 17px auto 15px;
    background: #e1b45b;
}

/* Title */

.counter-box h3 {
    margin: 0;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .counter-section {
        padding: 65px 18px;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .counter-heading h2 {
        font-size: 32px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .counter-section {
        padding: 50px 15px;
    }

    .counter-heading {
        margin-bottom: 32px;
    }

    .counter-heading span {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .counter-heading h2 {
        font-size: 27px;
    }

    .counter-heading p {
        font-size: 14px;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .counter-box {
        padding: 28px 10px;
        border-radius: 10px;
    }

    .counter-number {
        font-size: 34px;
    }

    .counter-number::after {
        font-size: 20px;
    }

    .counter-line {
        width: 35px;
        margin: 13px auto 11px;
    }

    .counter-box h3 {
        font-size: 12px;
    }
}
/* ==============================
   SERVICES LIST SECTION
================================ */

.services-list-section {
    width: 100%;
    padding: 80px 20px;
    background: #fff8f6;
    box-sizing: border-box;
    overflow: hidden;
}

.services-list-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading */

.services-list-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.services-list-heading span {
    display: block;
    margin-bottom: 8px;
    color: #9d1717;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.services-list-heading h2 {
    margin: 0 0 12px;
    color: #300000;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
}

.services-list-heading p {
    margin: 0;
    color: #000;
    font-size: 16px;
    line-height: 1.7;
}


/* 3 Column Grid */

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* Service Item */

.service-list-item {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #ead2d2;
    border-left: 4px solid #8f1010;
    border-radius: 8px;
    box-sizing: border-box;
    box-shadow: 0 5px 18px rgba(70, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.service-list-item:hover {
    transform: translateY(-5px);
    border-left-color: #c79535;
    box-shadow: 0 12px 28px rgba(70, 0, 0, 0.15);
}


/* Image */

.service-list-img {
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 6px;
    margin-right: 15px;
    border: 2px solid #e2bf75;
}

.service-list-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-list-item:hover .service-list-img img {
    transform: scale(1.1);
}


/* Content */

.service-list-content {
    flex: 1;
    min-width: 0;
}

.service-list-content h3 {
    margin: 0 0 6px;
    color: #3c0000;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
}

.service-list-content p {
    margin: 0 0 9px;
    color: #000;
    font-size: 12px;
    line-height: 1.5;
}

.service-list-content a {
    display: inline-block;
    padding: 6px 13px;
    color: #ffffff;
    background: #8f1010;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-list-content a:hover {
    background: #c79535;
    color: #ffffff;
}


/* Tablet */

@media (max-width: 991px) {

    .services-list-section {
        padding: 65px 18px;
    }

    .services-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .services-list-heading h2 {
        font-size: 32px;
    }

}


/* Mobile */

@media (max-width: 600px) {

    .services-list-section {
        padding: 50px 15px;
    }

    .services-list-heading {
        margin-bottom: 30px;
    }

    .services-list-heading span {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .services-list-heading h2 {
        font-size: 27px;
    }

    .services-list-heading p {
        font-size: 14px;
    }

    .services-list-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-list-item {
        padding: 12px;
    }

    .service-list-img {
        flex: 0 0 100px;
        width: 100px;
        height: 100px;
        margin-right: 12px;
    }

    .service-list-content h3 {
        font-size: 15px;
    }

    .service-list-content p {
        font-size: 12px;
    }

}
/* ===================================
   CLIENT FEEDBACK SECTION
=================================== */

.client-feedback-section {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(135deg, #160000 0%, #4c0000 50%, #210000 100%);
    box-sizing: border-box;
    overflow: hidden;
}

.client-feedback-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* Heading */

.client-feedback-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.client-feedback-heading span {
    display: block;
    margin-bottom: 9px;
    color: #e1b45b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.client-feedback-heading h2 {
    margin: 0 0 13px;
    color: #ffffff;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
}

.client-feedback-heading p {
    margin: 0;
    color: #e4cccc;
    font-size: 15px;
    line-height: 1.7;
}


/* Feedback Grid */

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* Feedback Card */

.feedback-card {
    position: relative;
    padding: 25px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(225, 180, 91, 0.42);
    border-radius: 12px;
    box-sizing: border-box;
    transition: all 0.35s ease;
    overflow: hidden;
}

.feedback-card:hover {
    transform: translateY(-7px);
    background: rgba(255, 255, 255, 0.10);
    border-color: #e1b45b;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}


/* Client Top */

.feedback-top {
    display: flex;
    align-items: center;
    min-width: 0;
    margin-bottom: 18px;
}


/* Avatar */

.client-avatar {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e1b45b;
    color: #3b0000;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
    box-sizing: border-box;
}


/* Client Info */

.client-info {
    min-width: 0;
    margin-left: 12px;
}

.client-info h3 {
    margin: 0 0 3px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.client-info span {
    color: #d9bebe;
    font-size: 12px;
}


/* Stars */

.feedback-stars {
    margin-left: auto;
    color: #e1b45b;
    font-size: 13px;
    letter-spacing: 1px;
    white-space: nowrap;
}


/* Quote */

.quote-mark {
    position: absolute;
    top: 5px;
    right: 22px;
    color: rgba(225, 180, 91, 0.15);
    font-family: Georgia, serif;
    font-size: 70px;
    line-height: 1;
    font-weight: 700;
}


/* Feedback Text */

.feedback-text {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #eadede;
    font-size: 13px;
    line-height: 1.75;
}


/* Bottom */

.feedback-bottom {
    margin-top: 20px;
    padding-top: 13px;
    border-top: 1px solid rgba(225, 180, 91, 0.18);
}

.feedback-bottom span {
    color: #e1b45b;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}


/* CTA */

.feedback-cta {
    margin-top: 45px;
    padding: 30px;
    text-align: center;
    background: rgba(0, 0, 0, 0.20);
    border: 1px solid rgba(225, 180, 91, 0.35);
    border-radius: 12px;
}

.feedback-cta h3 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 24px;
}

.feedback-cta p {
    margin: 0 0 20px;
    color: #dcc5c5;
    font-size: 14px;
}


/* Buttons */

.feedback-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.feedback-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 125px;
    padding: 11px 20px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.feedback-call {
    background: #e1b45b;
    color: #330000;
}

.feedback-call:hover {
    background: #ffffff;
    color: #330000;
    transform: translateY(-2px);
}

.feedback-whatsapp {
    background: #8f1010;
    color: #ffffff;
    border: 1px solid #b87b35;
}

.feedback-whatsapp:hover {
    background: #b87b35;
    color: #ffffff;
    transform: translateY(-2px);
}


/* Tablet */

@media (max-width: 991px) {

    .client-feedback-section {
        padding: 65px 18px;
    }

    .feedback-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .client-feedback-heading h2 {
        font-size: 32px;
    }
}


/* Mobile */

@media (max-width: 600px) {

    .client-feedback-section {
        padding: 50px 15px;
    }

    .client-feedback-heading {
        margin-bottom: 32px;
    }

    .client-feedback-heading span {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .client-feedback-heading h2 {
        font-size: 27px;
    }

    .client-feedback-heading p {
        font-size: 14px;
    }

    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .feedback-card {
        padding: 20px;
    }

    .feedback-stars {
        font-size: 11px;
    }

    .feedback-text {
        font-size: 12px;
    }

    .feedback-cta {
        margin-top: 30px;
        padding: 25px 15px;
    }

    .feedback-cta h3 {
        font-size: 21px;
    }

    .feedback-buttons {
        gap: 8px;
    }

    .feedback-buttons a {
        min-width: 115px;
        padding: 10px 15px;
        font-size: 12px;
    }
}
/* =================================
   FAQ SECTION
================================= */

.faq-section {
    width: 100%;
    padding: 80px 20px;
    background: #fff8f6;
    box-sizing: border-box;
    overflow: hidden;
}

.faq-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}


/* Heading */

.faq-heading {
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center;
}

.faq-heading span {
    display: block;
    margin-bottom: 8px;
    color: #941313;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.faq-heading h2 {
    margin: 0 0 12px;
    color: #330000;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
}

.faq-heading p {
    margin: 0;
    color: #000;
    font-size: 15px;
    line-height: 1.7;
}


/* FAQ Grid */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
    align-items: start;
}


/* FAQ Item */

.faq-item {
    background: #ffffff;
    border: 1px solid #e5cccc;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(70, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #c79a45;
    box-shadow: 0 8px 22px rgba(70, 0, 0, 0.10);
}


/* Question */

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 21px;
    border: 0;
    outline: none;
    background: transparent;
    color: #3b0000;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    box-sizing: border-box;
}

.faq-question:hover {
    color: #941313;
}


/* Plus Icon */

.faq-icon {
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d1a44f;
    border-radius: 50%;
    color: #8d1111;
    font-size: 19px;
    font-weight: 400;
    line-height: 1;
    transition: all 0.3s ease;
}


/* Answer */

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq-answer p {
    min-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 21px;
    color: #000;
    font-size: 13px;
    line-height: 1.7;
    transition: padding 0.35s ease;
}


/* Active */

.faq-item.active {
    border-color: #c79a45;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
    padding: 0 21px 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: #941313;
    border-color: #941313;
    color: #ffffff;
}


/* CTA */

.faq-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 45px;
    padding: 28px 32px;
    background: linear-gradient(135deg, #300000, #720909);
    border-radius: 10px;
    box-sizing: border-box;
    box-shadow: 0 10px 28px rgba(70, 0, 0, 0.16);
}

.faq-cta h3 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 22px;
}

.faq-cta p {
    margin: 0;
    color: #dfcaca;
    font-size: 13px;
}


/* Buttons */

.faq-cta-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.faq-cta-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 115px;
    padding: 11px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.faq-call {
    background: #e1b45b;
    color: #330000;
}

.faq-call:hover {
    background: #ffffff;
    color: #330000;
    transform: translateY(-2px);
}

.faq-whatsapp {
    background: #ffffff;
    color: #620606;
}

.faq-whatsapp:hover {
    background: #e1b45b;
    color: #330000;
    transform: translateY(-2px);
}


/* Tablet */

@media (max-width: 991px) {

    .faq-section {
        padding: 65px 18px;
    }

    .faq-heading h2 {
        font-size: 32px;
    }

    .faq-grid {
        gap: 15px;
    }

    .faq-cta {
        padding: 25px;
    }
}


/* Mobile */

@media (max-width: 600px) {

    .faq-section {
        padding: 50px 15px;
    }

    .faq-heading {
        margin-bottom: 30px;
    }

    .faq-heading span {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .faq-heading h2 {
        font-size: 27px;
    }

    .faq-heading p {
        font-size: 14px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .faq-question {
        padding: 17px 15px;
        font-size: 13px;
        gap: 10px;
    }

    .faq-icon {
        flex: 0 0 25px;
        width: 25px;
        height: 25px;
        font-size: 17px;
    }

    .faq-answer p {
        padding: 0 15px;
        font-size: 12px;
    }

    .faq-item.active .faq-answer p {
        padding: 0 15px 17px;
    }

    .faq-cta {
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
        padding: 25px 15px;
        text-align: center;
    }

    .faq-cta h3 {
        font-size: 20px;
    }

    .faq-cta p {
        font-size: 12px;
    }

    .faq-cta-buttons {
        width: 100%;
        justify-content: center;
    }

    .faq-cta-buttons a {
        min-width: 110px;
    }
}
/* =================================
   PREMIUM FOOTER
================================= */

.premium-footer {
    width: 100%;
    background: #160000;
    color: #ffffff;
    box-sizing: border-box;
    overflow: hidden;
}


/* Main Footer */

.footer-main {
    width: 100%;
    padding: 70px 20px 55px;
    background:
        radial-gradient(circle at 15% 20%, rgba(130, 20, 20, 0.22), transparent 35%),
        linear-gradient(135deg, #120000 0%, #350000 50%, #160000 100%);
    box-sizing: border-box;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
    gap: 45px;
}


/* About */

.footer-about {
    padding-right: 15px;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 18px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.footer-about h3 {
    margin: 0 0 13px;
    color: #e1b45b;
    font-size: 19px;
    line-height: 1.4;
}

.footer-about p {
    margin: 0;
    color: #fff;
    font-size: 13px;
    line-height: 1.8;
}


/* Footer Titles */

.footer-title {
    position: relative;
    margin: 5px 0 22px;
    padding-bottom: 11px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 2px;
    background: #e1b45b;
}


/* Links */

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a::before {
    content: "›";
    margin-right: 7px;
    color: #e1b45b;
    font-size: 16px;
}

.footer-links a:hover {
    padding-left: 5px;
    color: #e1b45b;
}


/* Contact */

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 19px;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(225, 180, 91, 0.10);
    border: 1px solid rgba(225, 180, 91, 0.45);
    border-radius: 5px;

    color: #e1b45b;
    font-size: 13px;
    font-weight: 700;
}

.contact-detail small {
    display: block;
    margin-bottom: 3px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-detail a,
.contact-detail p {
    margin: 0;
    color: #e8d6d6;
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
}

.contact-detail a:hover {
    color: #e1b45b;
}


/* CTA Buttons */

.footer-social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.footer-social-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 9px 16px;
    border-radius: 5px;

    font-size: 12px;
    font-weight: 700;
    text-decoration: none;

    transition: all 0.3s ease;
}

.footer-whatsapp {
    background: #e1b45b;
    color: #300000;
}

.footer-whatsapp:hover {
    background: #ffffff;
    color: #300000;
    transform: translateY(-2px);
}

.footer-call {
    background: transparent;
    color: #ffffff;
    border: 1px solid #e1b45b;
}

.footer-call:hover {
    background: #e1b45b;
    color: #300000;
    transform: translateY(-2px);
}


/* Gold Divider */

.footer-gold-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #e1b45b,
        transparent
    );
}


/* Bottom */

.footer-bottom {
    width: 100%;
    background: #0d0000;
    padding: 18px 20px;
    box-sizing: border-box;
}

.footer-bottom-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #a99090;
    font-size: 11px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-bottom-links a {
    color: #bda7a7;
    font-size: 11px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #e1b45b;
}

.footer-bottom-links span {
    color: #604545;
    font-size: 10px;
}


/* =================================
   TABLET
================================= */

@media (max-width: 991px) {

    .footer-main {
        padding: 60px 18px 45px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .footer-about {
        padding-right: 0;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}


/* =================================
   MOBILE
================================= */

@media (max-width: 600px) {

    .footer-main {
        padding: 48px 15px 35px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-about {
        padding-right: 0;
    }

    .footer-logo {
        width: 135px;
        margin-bottom: 15px;
    }

    .footer-about h3 {
        font-size: 17px;
    }

    .footer-about p {
        font-size: 12px;
        line-height: 1.7;
    }

    .footer-title {
        margin-bottom: 17px;
        font-size: 16px;
    }

    .footer-links li {
        margin-bottom: 9px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .contact-detail {
        margin-bottom: 15px;
    }

    .contact-detail a,
    .contact-detail p {
        font-size: 12px;
    }

    .footer-bottom {
        padding: 17px 15px;
    }

    .footer-bottom p {
        font-size: 10px;
        line-height: 1.6;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .footer-bottom-links a {
        font-size: 10px;
    }

}

.floating-contact {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 22px;
    width: 100%;
    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    pointer-events: none;
    z-index: 9999;
    box-sizing: border-box;
}

.floating-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-width: 125px;
    padding: 11px 17px;

    border-radius: 30px;

    text-decoration: none;
    font-size: 13px;
    font-weight: 700;

    pointer-events: auto;

    box-shadow: 0 7px 20px rgba(0,0,0,.28);

    transition: all .3s ease;
}


/* WhatsApp */

.floating-whatsapp {
    background: #25D366;
    color: #fff;
}

.floating-whatsapp i {
    font-size: 20px;
}

.floating-whatsapp:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(37,211,102,.40);
}


/* Call */

.floating-call {
    background: #9b1515;
    color: #fff;
    border: 1px solid #e1b45b;
}

.floating-call i {
    color: #3b0000;
    background: #fff;

    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    font-size: 13px;
}

.floating-call:hover {
    color: #fff;
    background: #b51c1c;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(120,0,0,.40);
}


/* Mobile */

@media (max-width: 600px) {

    .floating-contact {
        bottom: 12px;
        padding: 0 12px;
    }

    .floating-contact a {
        min-width: auto;
        padding: 9px 13px;
        gap: 6px;
        font-size: 11px;
    }

    .floating-whatsapp i {
        font-size: 18px;
    }

    .floating-call i {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
}


/* Small Mobile */

@media (max-width: 360px) {

    .floating-contact {
        padding: 0 8px;
    }

    .floating-contact a {
        padding: 8px 11px;
        font-size: 10px;
    }

}
