@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


:root {
    --primary-color: #BC00AC;
    --secondary-color: #212529;
    --light-font: #fff;
    --light-gray: #F6F6F6;
}

* {
    font-family: "Poppins", sans-serif;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
    background-color: #000;
    color: #fff;
}

/* Explicit backgrounds for transparent sections */
.contact-sec,
.social-proof-bar {
    background-color: #0d0d0d !important;
}

/* Spring Packages section (py-5 top-shadow) - ensure dark bg */
section.py-5.top-shadow {
    background-color: #0d0d0d;
}


/* global css  */

.primary-text {
    color: var(--primary-color) !important;
}

.theme-light-bg {
    background-color: var(--light-gray) !important;
}

.secondary-text {
    color: var(--secondary-color);
}

.heading-2 {
    font-size: 35px;
    line-height: 45px !important;
    font-weight: 700;
}

.para {
    font-size: 16px;
    line-height: 26px;
}

.tagline {
    font-size: 18px;
    line-height: 28px;
}

.theme-dark-btn {
    border-radius: 50px;
    background-color: var(--primary-color);
    text-decoration: none;
    box-shadow: 2px 3px 4px #000000ad;
    padding: 7px 17px;
    text-align: center;
    color: var(--light-font);
    position: relative;
    overflow: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
    display: inline-block;
}



.theme-dark-btn.black-btn {
    background-color: var(--secondary-color) !important;
}

/* Jelly horizontal wave animation */
@keyframes jellyWave {

    0%,
    100% {
        transform: scaleX(1);
    }

    25% {
        transform: scaleX(1.05);
    }

    50% {
        transform: scaleX(0.95);
    }

    75% {
        transform: scaleX(1.05);
    }
}

.theme-dark-btn:hover {
    animation: jellyWave 0.6s ease-in-out;
    background-color: var(--primary-color);
    color: var(--light-font);
}



.corner-effect {
    position: relative;
    background-color: var(--gray-back);
    z-index: 1;
    /* Ensure content has a higher z-index than the pseudo-elements */
}

/* Top-right diamond */
.corner-effect::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    /* Dark navy color */
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: -1;
    /* Send the diamond to the back */
}

/* Bottom-left diamond */
.corner-effect::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    clip-path: polygon(0 100%, 0 0, 100% 100%);
    z-index: -1;
}


/* header styling  */

.header-sec {
    padding: 5px 0;
    box-shadow: 2px 2px 4px rgba(211, 211, 211, 0.233);
    background-color: black;
}

/* hero section styling */
.hot {
    display: inline-block; /* Ensures the span is treated as a block to apply dimensions */
    padding: 0.2em 0.4em; /* Adds space inside the span for better aesthetics */
    border: 5px solid red; /* Creates the red circle border */
    border-radius: 50%; /* Makes the border circular */
    text-align: center; /* Ensures text is centered inside the circle */
  }
.hero-section {
    padding-bottom: 130px;
    position: relative;
    min-height: 95vh;
    overflow: hidden;
    background-color: #000;
    background-image: url('../images/new-hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content h4 {
    font-weight: 300;
}

.hero-content h4 strong {
    font-weight: 400 !important;
}

/* Apply styles for the image to make it act as a background */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Using CSS background-image now instead */
    object-fit: cover;
    /* Ensures the image covers the entire area */
    z-index: -1;
    /* Image stays behind other content */
}

/* Darker overlay applied only on the image */
.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    /* Darker black overlay with some transparency */
    z-index: 0;
    /* Ensure the overlay stays behind the text */
    pointer-events: none;
    /* Allow clicks to pass through */
}

/* Optional: Add the gradient effect on top of the image */
.hero-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top,
            rgba(188, 0, 172, 0.3),
            /* Updated to the new primary color #BC00AC */
            rgba(188, 0, 172, 0)
            /* Fade to transparent */
        );
    z-index: 1;
    /* Ensure the gradient stays above the overlay */
    pointer-events: none;
}


/* Ensure the text color remains white */
.hero-section * {
    color: white !important;
}

.hero-section .container {
    position: relative;
    z-index: 1;
    padding-top: 30px;
}

/* .logo-img img {
    filter: brightness(0) invert(1);
} */


@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
        /* Starting and ending position */
        filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.2));
        /* Normal shadow */
    }

    50% {
        transform: translateY(-20px);
        /* Peak height of the bounce */
        filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.3));
        /* Increased shadow spread */
    }
}


.hero-content p {
    font-weight: 700;
    font-size: 18px;
    line-height: 8px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.hero-content h1 {
    font-size: 28px;
    font-weight: 600;
    line-height: 37px;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: 52px;
    line-height: 63px;
    font-weight: 800;
}

.hero-content h4 {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.hero-list-sec {
    display: flex;
    gap: 20px;
    margin: 18px 0px;
}

.hero-list-sec ul {
    padding-left: 15px;
}

.hero-list-sec ul li {
    margin-bottom: 5px;
    list-style-type: none;
    /* Remove default bullet */
    position: relative;
    padding-left: 25px;
    /* Space for the icon */
}

.hero-list-sec ul li::before {
    content: "\F270";
    /* Bootstrap icon Unicode */
    font-family: 'bootstrap-icons';
    /* Specify Bootstrap Icons font */
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    /* Set icon color as per your design */
    font-size: 1rem;
    /* Adjust size as needed */
    font-weight: bold;
}

/* activate sec styling  */

.activate-sec {
    padding: 70px 0px;
}

.active-video {
    /* Set a maximum height */
    overflow: hidden;
    /* Hide any overflow if necessary */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px !important;
    box-shadow: 5px 8px 13px black !important;
}

.active-video video {
    height: 450px;
    width: 100%;
    max-width: 100%;
    /* Prevents the video from going beyond the container width */
    max-height: 100%;
    /* Prevents the video from going beyond the container height */
    object-fit: cover;
    /* Display the video within the container without cropping or zooming */
}

.active-video.new-video video {
    object-fit: cover;
    width: 100%;
}

.active-content h2 {
    font-size: 35px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.img-shadow {
    filter: drop-shadow(0px 9px 3px rgba(0, 0, 0, 0.5));
}

.pod-img img {
    width: 85%;
}

.text-center.pod-img img {
    filter: drop-shadow(2px 4px 99px var(--primary-color));
}

.active-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--secondary-color);
}


/* step section  */


/* step sec  */

section.step-sec {
    padding: 60px 0;
    text-align: center;
}

.step-sec div.step h3 {
    font-size: 22px;
    font-weight: 700;
}

.step-sec div.step i {
    font-size: 54px;
    font-weight: 900;
    color: var(--primary-color);
}

.count {
    display: flex;
    justify-content: center;
}

.count p {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    font-weight: 600;
    color: var(--light-font);
    border-radius: 100%;
    box-shadow: 1px 3px 5px gray;
}

.step-sec h2 {
    font-size: 35px;
    margin-bottom: 15px !important;
    font-weight: 700;
}


/* contact us section  */

.contact-sec {
    padding: 60px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95));
    color: white;
}


.form-sec {
    background: #ffffff;
    /* Card background color */
    padding: 30px;
    /* Padding inside the card */
    border-radius: 15px;
    /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    /* Initial shadow */
    border: 2px solid #bc00ac;
    /* Border color */
    /* Smooth transition for shadow and scaling */
}

/* Hover effect */
.form-sec:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* Reduced shadow on hover */
    /* Slight upward movement on hover */
}


.form-control {
    width: 100%;
    /* Full width */
    padding: 10px 15px;
    /* Padding inside the input fields */
    margin-bottom: 15px;
    /* Space between input fields */
    border: 1px solid #ced4da;
    /* Border color */
    border-radius: 8px;
    /* Rounded corners */
    transition: border-color 0.3s;
    /* Smooth transition */
}

.form-control:focus {
    border-color: var(--secondary-color);
    /* Focus border color */
    box-shadow: none;
    /* Focus shadow */
}

.form-sec h2 {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-sec button {
    margin-top: 20px;
}

/* upgrade sec styling  */

.upgrade-sec {
    padding: 60px 0;
}

.upgrade-sec .upgrade-content h2 {
    font-size: 35px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 49px;
}

.upgrade-sec .upgrade-content p {
    font-size: 17px;
    line-height: 27px;
}

.upgrade-img img {
    border: 11px solid var(--primary-color);
    padding: 9px;
    box-shadow: 1px 3px 5px black;
    background: white;
}

/* timer sec  */

.timer-sec {
    padding: 60px 0;
}

.timer-sec .timer-content h2 {
    font-size: 35px;
    font-weight: 700;
}

/* testimonial section styling  */


.testimonial-slider {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
}

.testimonial-slider.slick-initialized {
    visibility: visible;
    opacity: 1;
}


/* Testimonial Slider Styles */
.testi-sec {
    padding: 60px 0;
}

.testi-sec h2 {
    font-size: 35px;
    font-weight: 700;
    line-height: 45px;
}

.testi-sec .testimonial-card {
    background-color: var(--gray-back);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 3px solid var(--primary-color);
    cursor: pointer;
    transition: 0.4s;
}

.testi-sec .testimonial-card:hover {
    background-color: var(--secondary-color);
    color: white !important;
}

.testi-sec .testimonial-card:hover * {
    color: var(--white-font);
}

.testi-sec .testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
    padding: 4px;
}

.testi-sec .quote-icon {
    font-size: 80px;
    line-height: 0;
    color: var(--primary-color);
}

.testi-sec .testimonial-name {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

.testi-sec .testimonial-stars i {
    font-size: 22px;
    color: var(--primary-color);
}

.testi-sec .testimonial-text {
    font-size: 16px;
    color: #666;
    font-style: italic;
}

/* Slick Dots Customization */
.testi-sec .slick-dots li button:before {
    font-size: 15px;
    color: var(--primary-color);
}

.testi-sec .slick-dots li.slick-active button:before {
    color: #3f3d56;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .testi-sec .testimonial-card {
        padding: 15px;
    }

    .hero-section .active-video {
        margin-top: 35px;
    }

}

@media (max-width: 576px) {
    .testi-sec .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .testi-sec .testimonial-name {
        font-size: 16px;
    }

    .testi-sec .testimonial-text {
        font-size: 14px;
    }
}

p.testimonial-text {
    height: 70px;
}


/* faq section styling  */




/* faq section stylng  */


/* service faq section */
.faq-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.faq-section .accordion-item {
    background-color: var(--primary-color);
}

.faq-section .accordion-item * {
    color: white;
}

.faq-section button.accordion-button {
    background: var(--primary-color);
    border-bottom: 0px !important;
    line-height: 1.5rem;
}

.faq-section .accordion-button:not(.collapsed),
.faq-section .accordion-button:focus {
    outline: none;
    border-color: transparent;
    box-shadow: none;
    background-color: transparent;
}

.faq-section .accordion-button::after {
    width: 11px;
    height: 11px;
    border-radius: 100%;
    background-color: var(--secondary-color);
    background-image: none !important;
}

.faq-section .accordion-button.collapsed::after {
    background-color: var(--light-gray);
}

.faq-section h2.heading-2 {
    font-size: 35px;
    margin-bottom: 15px;
    font-weight: 700;
}


/* servcies section styling  */




/******************* services ection styling  ************************/


.service-sec-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    height: 100%;
    cursor: pointer;
}

.service-sec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-sec-icon {
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    box-shadow: 3px 4px 5px lightgray;
}

.service-sec-icon i {
    color: white;
}

.service-sec-body {
    flex-grow: 1;
}

.service-sec-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-sec-text {
    color: #555;
}

.service-sec-icon i {
    font-size: 31px;
    line-height: 1;
}

/* Review Section */


.review-heading h2 {
    font-size: 35px;
    font-weight: 700;
}


/* Media Queries */
@media(max-width: 767px) {
    .review-sec .carousel-caption {
        padding: 3rem 2rem;
        font-size: 0.7rem;
        line-height: 1.5rem;
    }

    .review-sec .carousel-caption img {
        width: 4rem;
        border-radius: 4rem;
        margin-top: 1rem;
    }

    .review-sec #image-caption {
        font-size: 0.6rem;
    }


    .review-sec i {
        padding: 3px !important;
        font-size: 14px !important;
    }

    .review-sec {
        min-height: 65vh !important;
    }

    .review-sec .review-stars i {
        font-size: 14px !important;
    }
}

.review-sec .carousel-control-prev,
.review-sec .carousel-control-next {
    transition: none;
    opacity: unset;
}

.review-sec .carousel-control-prev {
    justify-content: flex-start;
}

.review-sec .carousel-control-next {
    justify-content: flex-end;
}


/* benifit sec styling  */

.benifit-sec {
    padding: 60px 0;
}

/* commitment sec styling  */


section.services-sec.commitment-sec {
    padding: 60px 0px;
    background: #eeebeb;
}

.commitment-sec .service-sec-card {
    background: transparent;
    box-shadow: none;
    border: none;
}

.commitment-sec .service-sec-card {
    padding: 9px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.commitment-sec h2 {
    font-size: 35px;
    margin-bottom: 50px !important;
    font-weight: 700;
    color: var(--primary-color);
}

/* footer section  */

.footer-section a,
.footer-section a:active,
.footer-section a:focus {
    color: #6f6f6f;
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}

.footer-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-section img {
    max-width: 100%;
    height: auto;
    width: 180px;
    /* filter: brightness(0) invert(1); */
}


.footer-section {
    background-color: #000000;
    position: relative;
    overflow: hidden;
    z-index: 9;
}

.footer-section:before {
    content: '';
    position: absolute;
    top: -146%;
    left: -18%;
    width: 44%;
    height: 257%;
    transform: rotate(54deg);
    background-color: var(--primary-color);
    -webkit-transform: rotate(54deg);
    -moz-transform: rotate(54deg);
    -ms-transform: rotate(54deg);
    -o-transform: rotate(54deg);
    z-index: -10;
}

.footer-section:after {
    position: absolute;
    content: '';
    background-color: var(--primary-color);
    top: -24%;
    right: 4%;
    width: 26%;
    height: 264%;
    transform: rotate(44deg);
    -webkit-transform: rotate(44deg);
    -moz-transform: rotate(44deg);
    -ms-transform: rotate(44deg);
    -o-transform: rotate(44deg);
    z-index: -10;
}

.footer-section .footer-top {
    padding-top: 60px;
    padding-bottom: 25px;
}

.footer-section .footer-top p,
.footer-section .company-footer-contact-list li {
    color: #ffffff;
}

.footer-section .company-footer-contact-list {
    margin-top: 10px;
}

.footer-section .company-footer-contact-list li {
    display: flex;
    display: -webkit-flex;
    align-items: center;
}

.footer-section .company-footer-contact-list li+li {
    margin-top: 5px;
}

.footer-section .company-footer-contact-list li i {
    margin-right: 10px;
    font-size: 25px;
    display: inline-block;
}

.footer-top .site-logo {
    margin-bottom: 25px;
    display: block;
    max-width: 200px;
}

.widget-title {
    text-transform: capitalize;
}

.footer-top .widget-title {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--secondary-color);
}

.courses-link-list li+li {
    margin-top: 10px;
}

.courses-link-list li a {
    color: #ffffff;
    text-transform: capitalize;
    font-family: var(--para-font);
    font-weight: 400;
}

.courses-link-list li a:hover {
    color: var(--white-font);
}

.courses-link-list li i {
    margin-right: 5px;
}

.footer-top .small-post-title a {
    font-family: var(--para-font);
    color: #ffffff;
    font-weight: 400;
}

.footer-bottom {
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.149);
}


.sm-icons {
    flex-direction: row;
}

.sm-icons .nav-link {
    padding-right: 1em;
}


.copy-right-text {
    color: #ffffff;
}

.copy-right-text a {
    color: var(--white-font);
}

ul.navbar-nav.sm-icons i {
    font-size: 30px;
    color: var(--primary-color) !important;
}

.footer-top ul li a:hover {
    color: var(--primary-color) !important;
}

.phone-widget {
    z-index: 99999999;
    position: fixed;
    bottom: 18px;
    left: 26px;
}

.phone-widget div {
    width: 60px;
    height: 60px;
    background: #000000;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    font-size: 29px;
    box-shadow: 1px 3px 6px #0000004d;
    border: 2px solid var(--primary-color);
    transition: 0.4s;
}

.phone-widget div:hover {
    opacity: 0.9;
}

.phone-widget div i {
    color: var(--primary-color);
}


.whatsapp-widget {
    z-index: 99999999;
    position: fixed;
    bottom: 18px;
    right: 26px;
    cursor: pointer !important;
}

.whatsapp-widget div {
    width: 60px;
    height: 60px;
    background: #42BF50;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    font-size: 29px;
    box-shadow: 1px 3px 6px #0000004d;
    border: 2px solid #42BF50;
    transition: 0.4s;
    cursor: pointer !important;

}

.whatsapp-widget div:hover {
    opacity: 0.9;
    cursor: pointer !important;
}

.whatsapp-widget div i {
    color: #fff;
    cursor: pointer !important;
}

.whatsapp-label,
.phone-label {
    display: block;
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    margin-top: 4px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

img.styled-img {
    border-radius: 20px;
    box-shadow: 2px 3px #00000059;
}


mark.mark {
    background-image: url("../images/circle.png");
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: contain;
    padding-left: 34px;
    padding-top: 75px;
    padding-right: 30px;
    padding-bottom: 74px;
    background-position: center;
}

/* secondary bar styling  */

.secondary {
    background-color: #000;
}

.secondary-bar {
    /* Light gray background */
    padding: 6px 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.secondary-bar .timer {
    display: flex;
    gap: 10px;
}

.secondary-bar .timer .time-box {
    text-align: center;
    border: 1px solid #fff;
    padding: 5px 10px;
    border-radius: 5px;
    min-width: 70px;
}

.secondary-bar .timer .time-box span {
    display: block;
}

.secondary-bar .timer .time-box .number {
    font-size: 1.2rem;
    font-weight: bold;
}

.secondary-bar .timer .time-box .label {
    font-size: 0.75rem;
    text-transform: uppercase;
}


.time-box * {
    font-size: 14px !important;
    line-height: 16px;
    color: white !important;

}


section.photo-booth {
    padding-bottom: 0px !important;
}




/* Gallery section styling  */

.gallery h2 {
    margin-bottom: 20px;
}

.gallery .owl-carousel .item {
    position: relative;
    overflow: hidden;
}

.gallery .owl-carousel .item img {
    width: 100%;
    height: auto;
    display: block;
    padding: 8px;
    border: 4px dashed #BC00AC;
}

.gallery .item .info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery .item:hover .info {
    opacity: 1;
}

.gallery .info a {
    text-decoration: none;
    color: #fff;
    background: #BC00AC;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Customize Owl Dots */
.gallery .owl-dots {
    text-align: center;
    margin-top: 15px;
}

.gallery .owl-dot {
    width: 10px;
    height: 10px;
    margin: 5px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s ease;
}


/* new testi section  */

section.new-testi-sec {
    padding: 60px 0;
    background: #f6f6f6;
}


.review-img img {
    width: 100px;
    border-radius: 100%;
    padding: 4px;
    border: 2px solid var(--primary-color);
    background: transparent;
    margin-bottom: 10px;
}

.review-content h4 {
    font-size: 20px;
    margin-bottom: 9px;
    color: var(--primary-color);
}

.review-content p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 30px;
}

section.black-bg-sec {
    background-color: black !important;
}

section.black-bg-grad-sec {

    background:
        linear-gradient(to left, #1A021A 0%, #050505 50%, #000000 100%),
        /* Left to Right */
        linear-gradient(to bottom, #1A021A 0%, #0F0720 50%, #000000 100%),
        /* Top to Bottom */
        linear-gradient(to right, #1A021A 0%, #0F0720 50%, #000000 100%) !important;
    /* Right to Left */
    background-blend-mode: screen !important;
    /* Blend the layers to mix colors */
}


section.black-bg-sec h2,
section.black-bg-sec p,
section.black-bg-sec li {
    color: white !important;
}

section.black-bg-grad-sec h2,
section.black-bg-grad-sec p,
section.black-bg-grad-sec li {
    color: white;
}

.form-sec {
    background-color: black !important;
}

.form-sec label {
    color: white !important;
}

.top-shadow {
    position: relative;
}

.top-shadow::before {
    content: "";
    position: absolute;
    width: 100%;
    margin: 0 auto;
    height: 5px;
    background: #bc00acd1;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 9px 26px #bc00acbf;
    border-radius: 100%;
}

section.thank-you-sec {
    height: 90vh;
    display: flex;
    align-items: center;
}

/* responsive styling  */

@media only screen and (min-width: 1600px) {
    .hero-section .container {
        padding-top: 80px !important;
    }
}

@media only screen and (min-width: 1367px) {
    .hero-section .container {
        padding-top: 60px;
    }

    .hero-content h2 {
        font-size: 80px;
        line-height: 90px;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 42px;
    }

    .hero-content h4 {
        font-size: 18px;
        line-height: 31px;
    }
}

@media only screen and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 31px;
        line-height: 48px;
    }

    .hero-content h2 {
        font-size: 42px;
        line-height: 52px;
    }

    .active-content h2 {
        font-size: 30px;
        margin-bottom: 11px;
    }

    .active-content h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .form-sec h2 {
        font-size: 22px;
    }

    .form-control {
        padding: 7px 15px;
    }

    .upgrade-sec .upgrade-content h2 {
        font-size: 28px;
    }

    .upgrade-sec .upgrade-content p {
        font-size: 14px;
        line-height: 26px;
    }
}

@media only screen and (max-width: 991px) {

    .active-content {
        padding-bottom: 30px;
    }

    .upgrade-sec .upgrade-content h2 {
        margin-top: 40px;
    }

    .faq-section h2.heading-2 {
        font-size: 30px;
    }


    .hero-list-sec ul {
        margin-bottom: 0;
    }

    .hero-img {
        margin-top: 30px;
    }

    .pricing-tables .col-lg-4 {
        margin-bottom: 30px;
    }

    .active-video {
        max-height: 321px !important;
    }

    .step-sec h2 {
        font-size: 30px;
    }

    .timer-sec .timer-content h2 {
        font-size: 30px;
    }

    .testi-sec h2 {
        font-size: 30px;
        line-height: 40px
    }

    .header-sec .hero-btn-sec {
        font-size: 13px;
        font-weight: 600;
    }

    section.hero-section .upgrade-img img {
        margin-top: 20px;
    }

    .secondary-bar {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .sm-reverse {
        flex-direction: column-reverse;
    }

    .sn-reverse h2 {
        margin-top: 0 !important;
    }

    .sm-reverse img.img-fluid.styled-img {
        margin-top: 30px;
    }

    .sm-reverse h2 {
        margin-top: 0 !important;
    }

    .activate-sec {
        padding: 40px 0px;
    }

    section.new-testi-sec {
        padding: 30px 0;
    }
}


@media only screen and (max-width: 690px) {
    .header-sec .logo1 {
        width: 88px !important;
    }

    .header-sec .logo2 {
        width: 130px !important;
    }

    .hero-list-sec li {
        font-size: 14px;
    }

    .footer-top .widget-title {
        margin-bottom: 24px;
        margin-top: 27px;
    }

    .hero-list-sec {
        gap: 0;
    }

    .hero-section {
        padding: 13% 0 11% 0;
    }

    br {
        display: none !important;
    }

    .tagline {
        font-size: 16px;
        line-height: 26px;
    }

    .faq-section h2.heading-2 {
        font-size: 23px;
        line-height: 33px;
    }

    .corner-effect::before,
    .corner-effect::after {
        width: 60px !important;
        height: 60px !important;
    }
}

@media only screen and (max-width: 480px) {
    section.hero-section {
        padding: 5% 0 10% 0;
        min-height: auto;
    }

    .hero-section .container {
        padding-top: 15px !important;
    }

    .hero-content h1 {
        font-size: 25px;
        line-height: 35px;
    }

    .active-content h2 {
        font-size: 26px;
        margin-bottom: 11px;
    }

    .active-content h3 {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .timer-sec .timer-content h2 {
        font-size: 23px;
    }

    .testi-sec h2 {
        font-size: 23px;
        line-height: 33px
    }

    footer button.theme-dark-btn {
        font-size: 12px;
    }

    p.testimonial-text {
        height: 106px;
    }

    section.step-sec,
    .timer-sec,
    .testi-sec,
    .faq-section,
    .faq-section,
    .benifit-sec,
    .contact-sec,
    .upgrade-sec {
        padding: 40px 0;
    }

    mark.mark {
        padding-left: 18px;
        padding-right: 7px;
    }

    .hero-section h1.primary-text.mt-4 {
        margin-top: 15px !important;
    }

}

@media only screen and (max-width: 414px) {
    .hero-list-sec {
        flex-direction: column;
    }

    .active-content h2 {
        font-size: 23px;
        margin-bottom: 11px;
    }

    .upgrade-sec .upgrade-content h2 {
        font-size: 23px;
        line-height: 35px;
    }

    .hero-content h2 {
        font-size: 31px;
        line-height: 41px;
    }

    .hero-content h1 {
        font-size: 22px;
        line-height: 32px;
    }

    .hero-content h4 {
        font-size: 16px;
        line-height: 26px;
    }

    .step-sec h2 {
        font-size: 23px;
    }
}

@media only screen and (max-width: 414px) {
    .hero-content p {
        font-size: 16px;
        line-height: 16px;
    }
}

/* ============================================
   CONVERSION OPTIMIZATION STYLES
   ============================================ */

/* Pulsing animation for CTA buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(188, 0, 172, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(188, 0, 172, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(188, 0, 172, 0);
    }
}

.pulse-btn {
    animation: pulse 2s infinite;
}

/* Green pulse for WhatsApp buttons */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.pulse-btn[style*="25D366"] {
    animation: pulse-green 2s infinite;
}

.pulse-btn:hover {
    animation: none;
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Pulsing badge */
@keyframes pulse-badge {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.pulse-badge {
    animation: pulse-badge 1.5s ease-in-out infinite;
}

/* Trust badges styling */
.trust-badges .badge {
    font-size: 0.85rem;
    padding: 8px 15px;
    border-radius: 20px;
}

/* Quick benefits tags */
.quick-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.benefit-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.benefit-tag i {
    color: #28a745 !important;
}

/* Price styling */
.price-highlight {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-original {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 1.5rem;
}

/* Sticky mobile CTA */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 12px 15px;
    z-index: 9999999;
    box-shadow: 0 -4px 20px rgba(188, 0, 172, 0.4);
    border-top: 2px solid var(--primary-color);
}

.sticky-mobile-cta .cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-mobile-cta .price-info {
    color: white;
}

.sticky-mobile-cta .price-info .old-price {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 0.8rem;
}

.sticky-mobile-cta .price-info .new-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.sticky-mobile-cta .theme-dark-btn {
    white-space: nowrap;
    padding: 10px 20px;
}

@media only screen and (max-width: 768px) {
    .sticky-mobile-cta {
        display: block;
    }

    /* Add padding at bottom for sticky CTA */
    body {
        padding-bottom: 80px;
    }

    /* Adjust fixed widgets for sticky CTA */
    .whatsapp-widget,
    .phone-widget {
        bottom: 90px;
    }
}

/* Social proof counter animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-proof-bar {
    background: linear-gradient(90deg, #000 0%, #1a021a 50%, #000 100%);
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid var(--primary-color);
}

.social-proof-bar .stat {
    display: inline-block;
    margin: 0 20px;
    color: white;
}

.social-proof-bar .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.social-proof-bar .stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Urgency banner */
.urgency-banner {
    background: linear-gradient(90deg, #dc3545 0%, #c82333 100%);
    color: white;
    text-align: center;
    padding: 8px 15px;
    font-weight: 600;
}

.urgency-banner i {
    animation: pulse-badge 1s ease-in-out infinite;
}

/* Form improvements */
.form-sec {
    position: relative;
}

.form-sec::before {
    content: "SPRING OFFER";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Testimonial improvements */
.review-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(188, 0, 172, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

/* Star rating display */
.star-rating {
    color: #ffc107;
    font-size: 1.2rem;
}

/* Limited spots indicator */
.spots-indicator {
    display: inline-flex;
    align-items: center;
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    border-radius: 20px;
    padding: 5px 15px;
    margin: 10px 0;
}

.spots-indicator .dot {
    width: 8px;
    height: 8px;
    background: #dc3545;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse-badge 1s ease-in-out infinite;
}

/* Hot deal ribbon */
.hot-deal-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #dc3545;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.5);
}

/* Improved CTA section */
.cta-section {
    background: linear-gradient(135deg, #000 0%, #1a021a 50%, #000 100%);
    padding: 40px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 30px 0;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(188, 0, 172, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Guarantee badge */
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid #28a745;
    border-radius: 10px;
    padding: 10px 20px;
    margin-top: 15px;
}

.guarantee-badge i {
    font-size: 1.5rem;
    color: #28a745;
    margin-right: 10px;
}

/* Mobile-optimized typography */
@media only screen and (max-width: 576px) {
    .trust-badges .badge {
        font-size: 0.75rem;
        padding: 6px 10px;
        margin-bottom: 5px;
    }

    .quick-benefits {
        gap: 8px;
    }

    .benefit-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .social-proof-bar .stat {
        margin: 0 10px;
    }

    .social-proof-bar .stat-number {
        font-size: 1.2rem;
    }
}

/* ============================================
   ADDITIONAL CONVERSION ELEMENTS
   ============================================ */

/* What's Included Section */
.whats-included-sec {
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

.included-item {
    background: rgba(188, 0, 172, 0.1);
    border: 1px solid rgba(188, 0, 172, 0.3);
    border-radius: 15px;
    padding: 20px 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.included-item:hover {
    background: rgba(188, 0, 172, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.included-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #8a0080 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(188, 0, 172, 0.4);
}

.included-icon i {
    font-size: 1.5rem;
    color: white !important;
}

.included-item p {
    color: white;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* Recently Booked Popup */
.recent-booking-popup {
    position: fixed;
    bottom: 120px;
    left: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    padding: 15px;
    z-index: 99999;
    max-width: 320px;
    transform: translateX(-400px);
    opacity: 0;
    transition: all 0.5s ease;
    border-left: 4px solid #28a745;
}

.recent-booking-popup.show {
    transform: translateX(0);
    opacity: 1;
}

.popup-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.popup-icon {
    flex-shrink: 0;
}

.popup-icon i {
    font-size: 1.8rem;
    color: #28a745 !important;
}

.popup-text {
    flex-grow: 1;
}

.popup-text strong {
    display: block;
    color: #333;
    font-size: 0.95rem;
}

.popup-text span {
    color: #666;
    font-size: 0.85rem;
}

.popup-text small {
    display: block;
    color: #999;
    font-size: 0.75rem;
    margin-top: 3px;
}

.popup-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    position: absolute;
    top: 5px;
    right: 10px;
}

.popup-close:hover {
    color: #333;
}

/* Countdown urgency enhancement */
.timer .time-box {
    position: relative;
}

.timer .time-box .number {
    animation: pulse-number 1s ease-in-out infinite;
}

@keyframes pulse-number {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Enhanced form styling */
.form-sec .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(188, 0, 172, 0.2);
}

/* Floating labels effect */
.form-group {
    position: relative;
}

.form-group label {
    transition: all 0.3s ease;
}

/* Trust seal section */
.trust-seals {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.trust-seal {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.9rem;
}

.trust-seal i {
    font-size: 1.5rem;
    color: #28a745;
}

/* Mobile adjustments for popup */
@media only screen and (max-width: 576px) {
    .recent-booking-popup {
        left: 10px;
        right: 10px;
        max-width: none;
        bottom: 170px;
    }

    .included-icon {
        width: 50px;
        height: 50px;
    }

    .included-icon i {
        font-size: 1.2rem;
    }

    .included-item p {
        font-size: 0.8rem;
    }

    .whats-included-sec h2 {
        font-size: 1.5rem;
    }

    /* Review cards mobile */
    .review-card {
        padding: 15px;
        margin-bottom: 15px;
    }

    .review-card .review-content p {
        font-size: 14px;
        line-height: 22px;
    }

    .review-card .review-img img {
        width: 70px;
    }

    /* Form section mobile */
    .form-sec::before {
        font-size: 0.7rem;
        padding: 4px 15px;
    }

    /* Benefit tags mobile */
    .quick-benefits {
        gap: 6px;
    }

    .benefit-tag {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    /* Hero section scarcity text */
    .hero-content h4 {
        font-size: 14px;
        line-height: 22px;
    }

    /* Gallery padding */
    .gallery {
        padding: 30px 0 !important;
    }

    .gallery h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    /* FAQ mobile */
    .faq-section .accordion-button {
        font-size: 0.9rem;
        padding: 12px 15px;
    }

    /* Contact section mobile */
    .contact-sec {
        padding: 40px 0;
    }

    .contact-sec .heading-2 {
        font-size: 1.4rem;
    }

    .contact-sec .tagline {
        font-size: 0.9rem;
    }
}

/* Shake animation for CTA on scroll */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake-attention {
    animation: shake 0.5s ease-in-out;
}

/* Highlight animation for price */
@keyframes highlight {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

.price-highlight-anim {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,0.3) 50%,
        transparent 100%);
    background-size: 200% 100%;
    animation: highlight 2s ease-in-out infinite;
}

/* ============================================
   CORPORATE SECTION STYLES
   ============================================ */

.corporate-sec {
    position: relative;
    overflow: hidden;
}

.corporate-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23BC00AC" stroke-width="0.5" opacity="0.1"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.corporate-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(188, 0, 172, 0.1);
    border: 1px solid rgba(188, 0, 172, 0.3);
    padding: 12px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.corporate-benefit:hover {
    background: rgba(188, 0, 172, 0.2);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.corporate-benefit i {
    font-size: 1.3rem;
}

.corporate-benefit span {
    font-size: 0.9rem;
    font-weight: 500;
}

.corporate-img {
    border: 3px solid rgba(188, 0, 172, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.corporate-img:hover {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.corporate-feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(188, 0, 172, 0.3);
    border-radius: 15px;
    padding: 25px 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.corporate-feature-card:hover {
    background: rgba(188, 0, 172, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.corporate-feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.corporate-feature-card h5 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.corporate-cta-box {
    background: linear-gradient(135deg, rgba(188, 0, 172, 0.2) 0%, rgba(188, 0, 172, 0.1) 100%);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.corporate-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(188, 0, 172, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.corporate-cta-box h4 {
    position: relative;
    z-index: 1;
}

.corporate-cta-box p {
    position: relative;
    z-index: 1;
}

.corporate-cta-box .theme-dark-btn {
    position: relative;
    z-index: 1;
}

/* Corporate Section Mobile */
@media only screen and (max-width: 768px) {
    .corporate-sec h2 {
        font-size: 1.6rem;
    }

    .corporate-sec h3 {
        font-size: 1.3rem;
    }

    .corporate-benefit {
        padding: 10px 12px;
    }

    .corporate-benefit i {
        font-size: 1.1rem;
    }

    .corporate-benefit span {
        font-size: 0.85rem;
    }

    .corporate-feature-card {
        padding: 20px 10px;
    }

    .corporate-feature-card i {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .corporate-feature-card h5 {
        font-size: 0.9rem;
    }

    .corporate-cta-box h4 {
        font-size: 1.1rem;
    }

    .corporate-cta-box p {
        font-size: 0.85rem;
    }

    .corporate-img.mt-4 {
        margin-top: 0.5rem !important;
    }
}

@media only screen and (max-width: 480px) {
    .corporate-sec h2 {
        font-size: 1.4rem;
    }

    .corporate-feature-card i {
        font-size: 1.6rem;
    }

    .corporate-feature-card h5 {
        font-size: 0.8rem;
    }
}

/* ============================================
   IMPROVED FOOTER STYLES
   ============================================ */

/* Footer CTA Section */
.footer-cta-section {
    background: linear-gradient(135deg, #1a021a 0%, #000 50%, #1a021a 100%);
    border-top: 3px solid var(--primary-color);
    border-bottom: 1px solid rgba(188, 0, 172, 0.3);
}

.footer-price-box {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
}

.footer-price-box .old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
}

.footer-price-box .new-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.footer-price-box .save-badge {
    background: #dc3545;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    animation: pulse-badge 1.5s ease-in-out infinite;
}

/* Footer CTA Content - Desktop Layout */
.footer-cta-content {
    margin-top: 20px;
}

.footer-cta-content .theme-dark-btn {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    white-space: nowrap;
    color: #fff !important;
}

/* Footer Top */
.footer-section .footer-top {
    background: #000;
    padding: 50px 0 30px;
}

.footer-widget h5 {
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Footer Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    margin-bottom: 12px;
}

.footer-contact-list li a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
    color: var(--primary-color) !important;
}

.footer-contact-list li i {
    width: 20px;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(188, 0, 172, 0.2);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.social-icon.whatsapp {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25D366;
    color: #25D366;
}

.social-icon.whatsapp:hover {
    background: #25D366;
    color: white;
}

.social-icon i {
    font-size: 1.2rem;
}

/* Trust Stats */
.trust-stats {
    display: flex;
    gap: 20px;
}

.trust-stat {
    text-align: center;
    background: rgba(188, 0, 172, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(188, 0, 172, 0.3);
}

.trust-stat .stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.trust-stat .stat-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Bottom */
.footer-section .footer-bottom {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

/* Footer Badges */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-badges .badge {
    font-size: 0.75rem;
    padding: 6px 12px;
}

/* Remove old footer styling overrides */
.footer-section::before,
.footer-section::after {
    display: none;
}

/* Mobile Footer Adjustments */
@media only screen and (max-width: 768px) {
    .footer-cta-section {
        padding: 30px 15px !important;
    }

    .footer-cta-section h2 {
        font-size: 1.4rem !important;
        line-height: 1.4 !important;
        color: #fff !important;
        text-shadow: 0 2px 8px rgba(0,0,0,0.9);
    }

    .footer-cta-section p {
        font-size: 1rem !important;
        color: #fff !important;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .footer-price-box {
        flex-direction: column;
        gap: 8px;
        padding: 20px 25px;
        background: rgba(0, 0, 0, 0.7) !important;
        border: 2px solid var(--primary-color) !important;
    }

    .footer-price-box .old-price {
        font-size: 1.3rem;
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .footer-price-box .new-price {
        font-size: 2.5rem;
        color: var(--primary-color) !important;
    }

    .footer-price-box .save-badge {
        font-size: 0.9rem;
        padding: 6px 18px;
    }

    .footer-cta-section .theme-dark-btn {
        background-color: var(--primary-color) !important;
        color: #fff !important;
        padding: 12px 25px;
        font-size: 1rem;
    }

    .trust-stats {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-widget {
        text-align: center;
    }

    .footer-widget h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact-list {
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }

    /* Social Proof Bar mobile */
    .social-proof-bar {
        padding: 15px 10px;
    }

    .social-proof-bar .container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .social-proof-bar .stat {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: rgba(188, 0, 172, 0.15);
        border: 1px solid rgba(188, 0, 172, 0.4);
        border-radius: 10px;
        padding: 10px 8px;
        margin: 0;
    }

    .social-proof-bar .stat-number {
        font-size: 1.3rem;
    }

    .social-proof-bar .stat-label {
        font-size: 0.75rem;
        text-align: left;
        line-height: 1.2;
    }

    /* Secondary bar mobile fixes */
    .secondary-bar .text-start {
        font-size: 0.85rem !important;
        text-align: center !important;
        margin-bottom: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .secondary-bar .text-start strong {
        display: inline;
    }

    /* Timer boxes smaller on mobile */
    .secondary-bar .timer .time-box {
        min-width: 55px;
        padding: 4px 6px;
    }

    /* Recent booking popup position fix for sticky CTA */
    .recent-booking-popup {
        bottom: 170px;
    }

    /* Trust stats stacking */
    .trust-stats {
        flex-direction: column;
        gap: 10px;
    }

    .trust-stat {
        width: 100%;
    }
}

/* Extra small devices */
@media only screen and (max-width: 380px) {
    .secondary-bar .text-start {
        font-size: 0.75rem !important;
    }

    .secondary-bar .timer .time-box {
        min-width: 48px;
        padding: 3px 5px;
    }

    .time-box * {
        font-size: 12px !important;
        line-height: 14px;
    }

    .sticky-mobile-cta .price-info .new-price {
        font-size: 1.1rem;
    }

    .sticky-mobile-cta .theme-dark-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .hero-content h2 {
        font-size: 26px;
        line-height: 36px;
    }

    .hot {
        padding: 0.1em 0.25em;
        border-width: 3px;
    }

    .trust-badges .badge {
        font-size: 0.7rem;
        padding: 5px 8px;
    }

    .footer-price-box .old-price {
        font-size: 1.2rem;
    }

    .footer-price-box .new-price {
        font-size: 1.8rem;
    }

    .footer-cta-section h2 {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .footer-cta-section p {
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.85) !important;
        line-height: 1.5;
    }

    .footer-cta-section .text-white-50 {
        color: rgba(255, 255, 255, 0.75) !important;
    }

    .footer-price-box {
        background: rgba(0, 0, 0, 0.6) !important;
        border: 2px solid var(--primary-color) !important;
    }
}

/* ============================================
   DARK MODE SUPPORT
   ============================================ */

@media (prefers-color-scheme: dark) {
    /* Secondary bar dark mode fixes */
    .secondary {
        background-color: #1a1a1a !important;
        border-bottom: 2px solid var(--primary-color);
    }

    .secondary-bar {
        background-color: #1a1a1a !important;
    }

    .secondary-bar .text-start,
    .secondary-bar .text-start * {
        color: #ffffff !important;
        text-shadow: 0 0 10px rgba(188, 0, 172, 0.5);
    }

    .secondary-bar .timer .time-box {
        background: rgba(188, 0, 172, 0.2);
        border-color: var(--primary-color);
        box-shadow: 0 0 10px rgba(188, 0, 172, 0.3);
    }

    .time-box * {
        color: #ffffff !important;
        text-shadow: 0 0 5px rgba(188, 0, 172, 0.5);
    }

    /* Header dark mode */
    .header-sec {
        background-color: #0d0d0d !important;
        border-bottom: 1px solid var(--primary-color);
    }

    /* Social proof bar dark mode */
    .social-proof-bar {
        background: linear-gradient(90deg, #0d0d0d 0%, #1a021a 50%, #0d0d0d 100%);
        border-bottom: 2px solid var(--primary-color);
    }

    .social-proof-bar .stat,
    .social-proof-bar .stat * {
        color: #ffffff !important;
    }

    .social-proof-bar .stat-number {
        color: var(--primary-color) !important;
        text-shadow: 0 0 10px rgba(188, 0, 172, 0.6);
    }

    /* Hero section dark mode */
    .hero-section {
        background-color: #000000;
    }

    .hero-section::after {
        background: rgba(0, 0, 0, 0.85);
    }

    /* Form section dark mode */
    .form-sec {
        background-color: #1a1a1a !important;
        border-color: var(--primary-color);
        box-shadow: 0 0 30px rgba(188, 0, 172, 0.3);
    }

    .form-sec h2,
    .form-sec label,
    .form-sec .form-check-label {
        color: #ffffff !important;
    }

    .form-control {
        background-color: #2a2a2a !important;
        border-color: rgba(188, 0, 172, 0.5) !important;
        color: #ffffff !important;
    }

    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.5) !important;
    }

    .form-control:focus {
        background-color: #333333 !important;
        border-color: var(--primary-color) !important;
        box-shadow: 0 0 10px rgba(188, 0, 172, 0.4) !important;
        color: #ffffff !important;
    }

    /* Black background sections */
    section.black-bg-sec,
    section.black-bg-grad-sec {
        background-color: #0d0d0d !important;
    }

    section.black-bg-sec h2,
    section.black-bg-sec p,
    section.black-bg-sec li,
    section.black-bg-grad-sec h2,
    section.black-bg-grad-sec p,
    section.black-bg-grad-sec li {
        color: #ffffff !important;
        text-shadow: 0 0 10px rgba(188, 0, 172, 0.3);
    }

    /* Light background sections */
    .theme-light-bg {
        background-color: #1a1a1a !important;
    }

    /* Corporate section dark mode */
    .corporate-sec {
        background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 50%, #0f0f23 100%) !important;
    }

    .corporate-benefit {
        background: rgba(188, 0, 172, 0.15);
        border-color: rgba(188, 0, 172, 0.5);
    }

    .corporate-benefit:hover {
        background: rgba(188, 0, 172, 0.3);
        box-shadow: 0 0 15px rgba(188, 0, 172, 0.4);
    }

    .corporate-feature-card {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(188, 0, 172, 0.5);
    }

    .corporate-feature-card:hover {
        background: rgba(188, 0, 172, 0.2);
        box-shadow: 0 0 20px rgba(188, 0, 172, 0.4);
    }

    /* Sticky mobile CTA dark mode */
    .sticky-mobile-cta {
        background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
        border-top: 3px solid var(--primary-color);
        box-shadow: 0 -4px 30px rgba(188, 0, 172, 0.6);
    }

    /* Recent booking popup dark mode */
    .recent-booking-popup {
        background: #1a1a1a;
        border: 2px solid var(--primary-color);
        box-shadow: 0 5px 40px rgba(188, 0, 172, 0.5);
    }

    .popup-text strong {
        color: #ffffff !important;
    }

    .popup-text span {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .popup-text small {
        color: rgba(255, 255, 255, 0.5) !important;
    }

    /* Testimonial cards dark mode */
    .review-card {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(188, 0, 172, 0.5);
    }

    .review-card:hover {
        background: rgba(188, 0, 172, 0.15);
        box-shadow: 0 5px 30px rgba(188, 0, 172, 0.5);
    }

    /* FAQ dark mode */
    .faq-section {
        background-color: #1a1a1a !important;
    }

    .faq-section .accordion-item {
        background-color: rgba(188, 0, 172, 0.2) !important;
        border: 1px solid rgba(188, 0, 172, 0.5);
    }

    /* Footer dark mode */
    .footer-section {
        background-color: #0d0d0d !important;
    }

    .footer-section .footer-top,
    .footer-section .footer-bottom {
        background: #0d0d0d !important;
    }

    .footer-cta-section {
        background: linear-gradient(135deg, #1a021a 0%, #0d0d0d 50%, #1a021a 100%);
        border-top-color: var(--primary-color);
        box-shadow: 0 -2px 20px rgba(188, 0, 172, 0.4);
    }

    /* Service cards dark mode */
    .service-sec-card {
        background: #1a1a1a;
        border-color: rgba(188, 0, 172, 0.3);
    }

    .service-sec-card:hover {
        background: rgba(188, 0, 172, 0.1);
        border-color: var(--primary-color);
        box-shadow: 0 8px 30px rgba(188, 0, 172, 0.4);
    }

    .service-sec-title,
    .service-sec-text {
        color: #ffffff !important;
    }

    /* CTA section dark mode */
    .cta-section {
        background: linear-gradient(135deg, #0d0d0d 0%, #1a021a 50%, #0d0d0d 100%);
        border-color: var(--primary-color);
        box-shadow: 0 0 30px rgba(188, 0, 172, 0.5);
    }

    /* Included items dark mode */
    .included-item {
        background: rgba(188, 0, 172, 0.15);
        border-color: rgba(188, 0, 172, 0.5);
    }

    .included-item:hover {
        background: rgba(188, 0, 172, 0.25);
        box-shadow: 0 5px 25px rgba(188, 0, 172, 0.4);
    }

    /* Gallery dark mode */
    .gallery {
        background-color: #0d0d0d;
    }

    /* Trust badges dark mode */
    .trust-stat {
        background: rgba(188, 0, 172, 0.15);
        border-color: rgba(188, 0, 172, 0.5);
    }

    /* Urgency banner dark mode */
    .urgency-banner {
        background: linear-gradient(90deg, #dc3545 0%, #c82333 100%);
        box-shadow: 0 2px 15px rgba(220, 53, 69, 0.5);
    }

    /* Step section dark mode */
    .step-sec {
        background-color: #1a1a1a;
    }

    /* Commitment section dark mode */
    section.services-sec.commitment-sec {
        background: #0d0d0d;
    }

    /* Contact section dark mode */
    .contact-sec {
        background: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95));
    }

    /* Benefit tags dark mode */
    .benefit-tag {
        background: rgba(188, 0, 172, 0.2);
        border: 1px solid rgba(188, 0, 172, 0.5);
    }

    /* All text elements ensure proper contrast */
    body {
        color-scheme: dark;
    }

    /* Ensure all headings are visible */
    h1, h2, h3, h4, h5, h6 {
        color: #ffffff;
    }

    /* Ensure all paragraphs are visible */
    p, span, div {
        color: rgba(255, 255, 255, 0.9);
    }

    /* Active video overlay */
    .active-video {
        box-shadow: 0 8px 30px rgba(188, 0, 172, 0.4) !important;
    }

    /* Timer section dark mode */
    .timer-sec {
        background-color: #0d0d0d;
    }

    /* Testimonial section dark mode */
    .testi-sec,
    section.new-testi-sec {
        background: #0d0d0d;
    }

    .testi-sec .testimonial-card {
        background-color: #1a1a1a;
        border-color: rgba(188, 0, 172, 0.5);
    }

    .testi-sec .testimonial-card:hover {
        background-color: rgba(188, 0, 172, 0.2);
        box-shadow: 0 4px 25px rgba(188, 0, 172, 0.5);
    }

    .testi-sec .testimonial-text {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    /* Activate section dark mode */
    .activate-sec {
        background-color: #1a1a1a;
    }

    /* Upgrade section dark mode */
    .upgrade-sec {
        background-color: #0d0d0d;
    }

    /* Benefit section dark mode */
    .benifit-sec {
        background-color: #1a1a1a;
    }

    /* Magic Mirror section enhancements */
    .magic-mirror {
        background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 50%, #0f0f23 100%) !important;
    }

    /* Corner effects dark mode */
    .corner-effect {
        background-color: #1a1a1a;
    }

    /* Badges visibility */
    .badge {
        border: 1px solid rgba(188, 0, 172, 0.5);
    }

    /* Hot deal circle */
    .hot {
        border-color: #ff0000;
        background: rgba(255, 0, 0, 0.1);
        text-shadow: 0 0 5px rgba(255, 0, 0, 0.8);
    }

    /* Price highlight */
    .price-highlight {
        text-shadow: 0 0 20px rgba(188, 0, 172, 0.8);
    }

    /* WhatsApp and Phone widgets */
    .phone-widget div,
    .whatsapp-widget div {
        box-shadow: 0 3px 20px rgba(188, 0, 172, 0.6);
    }

    /* Logo brightness adjustment */
    .logo-img img {
        filter: brightness(1.2);
    }

    /* Ensure buttons are visible */
    .theme-dark-btn {
        box-shadow: 0 3px 15px rgba(188, 0, 172, 0.5);
    }

    .theme-dark-btn:hover {
        box-shadow: 0 5px 25px rgba(188, 0, 172, 0.7);
    }

    /* Trust seals */
    .trust-seal {
        color: #ffffff !important;
    }

    /* Gallery info overlay */
    .gallery .item .info {
        background: rgba(0, 0, 0, 0.85);
    }

    /* Guarantee badge */
    .guarantee-badge {
        background: rgba(40, 167, 69, 0.2);
        border-color: #28a745;
    }

    /* Spots indicator */
    .spots-indicator {
        background: rgba(220, 53, 69, 0.3);
        box-shadow: 0 0 15px rgba(220, 53, 69, 0.5);
    }

    /* Corporate CTA box */
    .corporate-cta-box {
        background: linear-gradient(135deg, rgba(188, 0, 172, 0.3) 0%, rgba(188, 0, 172, 0.15) 100%);
        box-shadow: 0 5px 30px rgba(188, 0, 172, 0.5);
    }
}

/* Hero Features Icons */
.hero-features .feature-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-features .feature-item i {
    font-size: 18px;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .hero-features .feature-item {
        padding: 8px 15px;
        font-size: 13px;
    }

    .hero-features .feature-item i {
        font-size: 15px;
        margin-right: 5px;
    }
}

/* Hero quick-form */
.hero-quick-form {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(188, 0, 172, 0.5);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-quick-form .form-control {
    background: #fff;
    color: #222;
    border: 1px solid rgba(188, 0, 172, 0.3);
    font-size: 0.95rem;
    padding: 10px 14px;
}

.hero-quick-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(188, 0, 172, 0.25);
}

.hero-quick-form .theme-dark-btn {
    padding: 10px 14px;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .hero-quick-form {
        padding: 15px;
    }
    .hero-quick-form .form-control {
        font-size: 16px; /* prevents iOS zoom */
    }
}

/* Smooth highlight when scrolling to contact */
.contact-sec:target,
#contact:target {
    animation: highlight-glow 1.5s ease;
}

@keyframes highlight-glow {
    0% { box-shadow: inset 0 0 0 0 rgba(188, 0, 172, 0); }
    50% { box-shadow: inset 0 0 60px 0 rgba(188, 0, 172, 0.4); }
    100% { box-shadow: inset 0 0 0 0 rgba(188, 0, 172, 0); }
}

/* Package pricing cards */
.package-price {
    font-size: 2.5rem;
    font-weight: 800;
}

.package-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Hero Main Heading */
.hero-main-heading {
    font-size: 52px;
    line-height: 63px;
    font-weight: 800;
}

.hero-price {
    font-size: 2rem;
    font-weight: 700;
}

/* Price Box Responsive */
.price-amount {
    font-size: 3.5em;
    font-weight: 700;
    line-height: 1;
}

.price-duration {
    font-size: 1.2em;
}

@media (max-width: 480px) {
    .price-amount {
        font-size: 2.5em;
    }

    .price-duration {
        font-size: 1em;
    }

    .price-box {
        padding: 12px 15px !important;
    }
}

/* Additional Mobile Fixes */
@media (max-width: 576px) {
    /* Hero section mobile fixes */
    .hero-content h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero-content h4 {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Hero button section */
    .hero-btn-sec {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btn-sec .theme-dark-btn {
        width: 100%;
        padding: 12px 20px;
    }

    /* Trust badges mobile */
    .trust-badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .trust-badges .badge {
        font-size: 0.7rem;
        padding: 5px 8px;
    }

    /* Form fields mobile */
    .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Footer CTA button mobile */
    .footer-cta-content .theme-dark-btn {
        padding: 14px 25px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   MOBILE RESPONSIVE FIXES (NEW)
   ============================================ */

/* --- TABLET (max 768px) --- */
@media only screen and (max-width: 768px) {

    /* Form quote headline */
    .form-sec > h2[style] {
        font-size: 1.1rem !important;
    }

    .form-sec .d-flex.justify-content-center.gap-3 {
        flex-direction: column;
        gap: 8px !important;
        align-items: center;
    }

    .form-sec .d-flex.justify-content-center.gap-3 .btn {
        width: 100%;
        max-width: 280px;
        padding: 10px 15px;
    }

    /* Hero H1 */
    .hero-main-heading {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    /* Hero price */
    .hero-price {
        font-size: 1.6rem !important;
    }

    /* Hero subtitle */
    .hero-content > h4.text-white-50 {
        font-size: 0.95rem !important;
        line-height: 1.5;
    }

    /* Hero dual CTA buttons full width */
    .hero-btn-sec .theme-dark-btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    /* Pricing cards */
    .corporate-feature-card {
        padding: 20px 15px !important;
    }

    .corporate-feature-card h4 {
        font-size: 1.1rem;
    }

    .package-price {
        font-size: 2rem !important;
    }

    .corporate-feature-card .theme-dark-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    /* How to book steps */
    .whats-included-sec .included-item p {
        font-size: 0.85rem;
    }

    /* Urgency section */
    .timer-content h2 {
        font-size: 1.5rem !important;
    }

    .timer-content .tagline {
        font-size: 0.95rem;
    }

    /* Review cards 2-col on tablet */
    .new-testi-sec .review-card {
        margin-bottom: 15px;
    }

    /* Footer CTA */
    .footer-price-box .new-price {
        font-size: 2rem;
    }
}

/* --- MOBILE (max 576px) --- */
@media only screen and (max-width: 576px) {

    /* Hero H1 */
    .hero-main-heading {
        font-size: 1.6rem !important;
        line-height: 1.25 !important;
    }

    /* Hero price */
    .hero-price {
        font-size: 1.4rem !important;
    }

    /* Hero subtitle */
    .hero-content > h4.text-white-50 {
        font-size: 0.85rem !important;
        line-height: 1.4;
        margin-bottom: 10px !important;
    }

    /* Benefits tags tighter */
    .quick-benefits {
        gap: 6px;
    }

    .benefit-tag {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    /* Hero buttons stack full width */
    .hero-btn-sec {
        gap: 10px !important;
    }

    .hero-btn-sec .theme-dark-btn {
        font-size: 0.9rem;
        padding: 12px 15px;
    }

    /* Sticky bar */
    .secondary-bar .text-start.text-white {
        font-size: 0.8rem !important;
        white-space: normal !important;
        text-align: center !important;
        line-height: 1.4;
    }

    /* Pricing cards price size */
    .corporate-feature-card span[style*="font-size: 2.5rem"] {
        font-size: 1.8rem !important;
    }

    .package-icon {
        font-size: 2.2rem !important;
    }

    .corporate-feature-card ul li {
        font-size: 0.85rem;
    }

    /* MOST POPULAR badge fix */
    .corporate-feature-card .badge.position-absolute {
        font-size: 0.65rem !important;
        padding: 4px 8px !important;
        white-space: nowrap;
    }

    /* Package icon mobile */
    .package-icon {
        font-size: 2rem !important;
    }

    /* Why choose section */
    .active-content h2 {
        font-size: 1.4rem;
    }

    /* Booth detail sections */
    .upgrade-content h2 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
    }

    .upgrade-content .para {
        font-size: 0.9rem;
    }

    /* Urgency section */
    .timer-content h2 {
        font-size: 1.3rem !important;
    }

    .timer-content .badge {
        font-size: 0.8rem !important;
        padding: 6px 15px !important;
    }

    /* How to book steps */
    .whats-included-sec h2 {
        font-size: 1.3rem;
    }

    .whats-included-sec .included-icon span {
        font-size: 1.2rem !important;
    }

    /* Reviews heading */
    .new-testi-sec .heading-2 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
    }

    /* FAQ heading */
    .faq-section .heading-2 {
        font-size: 1.3rem !important;
        line-height: 1.3 !important;
    }

    /* Contact section */
    .contact-sec .heading-2 {
        font-size: 1.3rem !important;
    }

    .contact-sec .tagline {
        font-size: 0.9rem;
    }

    /* Form section */
    .form-sec {
        padding: 20px 15px !important;
    }

    .form-sec > h2[style] {
        font-size: 1rem !important;
    }

    /* WhatsApp/Phone floating labels */
    .whatsapp-label,
    .phone-label {
        font-size: 0.55rem;
    }

    /* Gallery heading */
    .gallery .heading-2 {
        font-size: 1.4rem !important;
    }

    /* Footer CTA mobile */
    .footer-cta-section h2 {
        font-size: 1.3rem !important;
        line-height: 1.4 !important;
    }

    .footer-price-box {
        padding: 12px 20px;
    }

    .footer-price-box .new-price {
        font-size: 1.8rem;
    }

    /* Award section mobile */
    .activate-sec .active-content h2 {
        font-size: 1.3rem;
    }

    /* Sticky mobile CTA WhatsApp button */
    .sticky-mobile-cta .theme-dark-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

/* --- EXTRA SMALL (max 380px) --- */
@media only screen and (max-width: 380px) {

    /* Hero H1 */
    .hero-main-heading {
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
    }

    .hero-price {
        font-size: 1.2rem !important;
    }

    .hero-content > h4.text-white-50 {
        font-size: 0.75rem !important;
    }

    /* Trust badges */
    .trust-badges .badge {
        font-size: 0.65rem !important;
        padding: 4px 6px !important;
    }

    /* Form */
    .form-sec > h2[style] {
        font-size: 0.9rem !important;
    }

    .form-sec {
        padding: 15px 12px !important;
    }

    /* Pricing cards */
    .package-price {
        font-size: 1.5rem !important;
    }

    .corporate-feature-card h4 {
        font-size: 1rem !important;
    }

    .package-icon {
        font-size: 1.8rem !important;
    }

    .corporate-feature-card ul li {
        font-size: 0.8rem;
    }

    /* Compact sticky CTA */
    .sticky-mobile-cta {
        padding: 8px 10px;
    }

    .sticky-mobile-cta .price-info .new-price {
        font-size: 1.1rem;
    }

    .sticky-mobile-cta .theme-dark-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    /* How to book steps */
    .whats-included-sec .included-item {
        padding: 12px 5px;
    }

    .whats-included-sec .included-item p {
        font-size: 0.75rem;
    }

    /* Timer boxes */
    .secondary-bar .timer .time-box {
        min-width: 45px;
        padding: 3px 4px;
    }

    /* Review cards */
    .review-card {
        padding: 12px !important;
    }

    .review-card .review-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .review-card .review-img img {
        width: 60px;
    }
}

/* Touch targets - minimum 44px */
.form-sec .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-widget a,
.phone-widget a {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .pulse-btn {
        animation: none !important;
    }
}

/* GPU-accelerated animations */
.pulse-btn,
.review-card,
.included-item,
.corporate-feature-card,
.corporate-benefit {
    will-change: transform;
}

/* ============================================
   DARK MODE FIXES (NEW)
   ============================================ */

@media (prefers-color-scheme: dark) {
    /* Form inline buttons dark mode */
    .form-sec .btn-outline-light {
        color: #fff !important;
        border-color: rgba(255, 255, 255, 0.5) !important;
    }

    .form-sec .btn-outline-light:hover {
        background: rgba(255, 255, 255, 0.1) !important;
    }

    .form-sec .btn-success {
        background-color: #25D366 !important;
        border-color: #25D366 !important;
        color: #fff !important;
    }

    /* Form quote headline dark mode */
    .form-sec > h2 {
        color: #fff !important;
    }

    /* Select dropdown dark mode */
    .form-sec select.form-control,
    .form-sec select {
        background-color: #2a2a2a !important;
        color: #ffffff !important;
        border-color: rgba(188, 0, 172, 0.5) !important;
    }

    .form-sec select option {
        background-color: #2a2a2a;
        color: #ffffff;
    }

    /* Accordion body text */
    .faq-section .accordion-body p {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    /* Fix any text-dark classes in dark mode */
    .form-sec .text-dark {
        color: #ffffff !important;
    }

    /* Contact section heading dark mode */
    .contact-sec .heading-2,
    .contact-sec .heading-2 * {
        color: #ffffff !important;
    }

    .contact-sec .tagline,
    .contact-sec .tagline * {
        color: rgba(255, 255, 255, 0.85) !important;
    }

    /* Review content dark mode */
    .review-content h4 {
        color: var(--primary-color) !important;
    }

    .review-content p {
        color: rgba(255, 255, 255, 0.85) !important;
    }

    /* Owl carousel dots dark mode */
    .gallery .owl-dot {
        background: rgba(255, 255, 255, 0.5);
    }

    .gallery .owl-dot.active {
        background: var(--primary-color);
        opacity: 1;
    }

    /* Active content text */
    .active-content p {
        color: rgba(255, 255, 255, 0.85) !important;
    }

    .active-content h2 {
        color: var(--primary-color) !important;
    }

    /* Upgrade section text dark mode */
    .upgrade-content .para {
        color: rgba(255, 255, 255, 0.85) !important;
    }

    .upgrade-content .hero-list-sec li {
        color: rgba(255, 255, 255, 0.85) !important;
    }

    /* Timer section text */
    .timer-content .tagline {
        color: rgba(255, 255, 255, 0.85) !important;
    }
}