/* ============================================
   RESPONSIVE MEDIA QUERIES - COMPLETE MOBILE FIX
   ============================================ */


/* ============================================
   LARGE TABLETS AND SMALL LAPTOPS (991px)
   ============================================ */
@media (max-width: 991px) {
    html {
        font-size: 55%;
    }

    .header {
        padding: 1.5rem 2rem;
    }

    section {
        padding: 3rem 2rem;
    }

    .home {
        flex-direction: column;
        padding-top: 12rem;
    }

    .home .content h3 {
        font-size: 4rem;
    }

    .home .content h3 span {
        font-size: 3rem;
    }

    .home .stats-container {
        gap: 2rem;
    }

    .home .home-slider .swiper-slide {
        height: 45rem;
        width: 32rem;
    }

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

    .about .row {
        flex-direction: column;
    }

    .about .row .content h3 {
        font-size: 3rem;
    }

    .about .about-features {
        grid-template-columns: 1fr;
    }

    .box-container-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-wrapper {
        max-width: 100%;
    }

    .box-container-price {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .box-clean {
        padding: 3rem 2rem;
    }

    .box-clean .package-icon {
        font-size: 4rem;
    }

    .box-clean .title {
        font-size: 2.3rem;
    }

    .box-clean .amount {
        font-size: 4rem;
    }

    .pricing-info {
        grid-template-columns: 1fr;
    }

    .whatsapp-expanded-container {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer .box-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .heading {
        font-size: 3.5rem;
    }

    .section-subtitle {
        font-size: 1.6rem;
    }
}


/* ============================================
   TABLETS (768px)
   ============================================ */
@media (max-width: 768px) {
    html {
        font-size: 55%;
    }

    #menu-bars {
        display: initial;
        z-index: 10001;
    }

    .header {
        padding: 1.5rem 5%;
    }

    .header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        border-top: 0.1rem solid #222;
        background: rgba(51, 51, 51, 0.98);
        backdrop-filter: blur(10px);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.3s ease;
    }

    .header .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    .fa-times {
        transform: rotate(180deg);
    }

    .header .navbar a {
        display: flex;
        background: #222;
        border-radius: 0.5rem;
        padding: 1.5rem;
        margin: 1.5rem;
        font-size: 2rem;
        border-left: 5px solid var(--main-color);
    }

    .header .navbar a::after {
        display: none;
    }

    .header .navbar a:hover,
    .header .navbar a.active {
        background: var(--main-color);
        color: white;
        padding-left: 2.5rem;
    }

    .header .logo {
        font-size: 2.3rem;
    }

    .home {
        padding-top: 10rem;
        gap: 3rem;
        min-height: auto;
    }

    .home .content {
        order: 1;
        width: 100%;
    }

    .home .home-slider {
        order: 2;
        width: 100%;
    }

    .home .content .badge-top {
        font-size: 1.2rem;
        padding: 0.8rem 2rem;
    }

    .home .content h3 {
        font-size: 3.5rem;
    }

    .home .content h3 span {
        font-size: 2.5rem;
    }

    .home .content .tagline {
        font-size: 1.8rem;
    }

    .home .content .btn-group {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
    }

    .home .content .btn-group .btn {
        width: auto;
        font-size: 1.6rem;
        padding: 1.2rem 3rem;
    }

    /* STATS CONTAINER - FIXED FOR MOBILE */
    .home .stats-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
        width: 100%;
    }

    .home .stats-container .stat-box {
        width: 100%;
        padding: 2rem 1rem;
    }

    .home .stats-container .stat-box h4 {
        font-size: 3.5rem;
    }

    .home .stats-container .stat-box p {
        font-size: 1.4rem;
    }

    .home .home-slider .swiper-slide {
        height: 40rem;
        width: 28rem;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem 5%;
    }

    .features .feature-box {
        padding: 2.5rem 2rem;
    }

    .features .feature-box i {
        font-size: 4rem;
    }

    .about .row .content h3 {
        font-size: 2.8rem;
        text-align: left;
    }

    .about .row .content .highlight {
        font-size: 1.7rem;
    }

    .about .row .content p {
        font-size: 1.6rem;
    }

    .about .row .image .image-badge {
        bottom: 1rem;
        left: 1rem;
        padding: 1rem 1.5rem;
    }

    .about .row .image .image-badge i {
        font-size: 2rem;
    }

    .about .row .image .image-badge span {
        font-size: 1.4rem;
    }

    .about .quote {
        font-size: 1.8rem;
    }

    .box-container-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .box-container-gallery .box {
        height: 25rem;
    }

    .box-container-gallery .box .title {
        font-size: 1.6rem;
        padding: 1rem;
    }

    .box-container-gallery .box .icons a {
        font-size: 2rem;
        margin: 0 1rem;
    }

    .panels {
        min-height: 50vh;
        flex-wrap: wrap;
    }

    .panel {
        flex: 1 1 100%;
        min-height: 10vh;
    }

    .panel p {
        font-size: 2rem;
    }

    .box-container-price {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .box-clean {
        padding: 3rem 2rem;
    }

    .box-clean.box-featured {
        transform: scale(1);
    }

    .box-clean .badge {
        top: -10px;
        right: 15px;
        padding: 0.7rem 1.5rem;
        font-size: 1.2rem;
    }

    .box-clean .package-icon {
        font-size: 4.5rem;
    }

    .box-clean .title {
        font-size: 2.2rem;
    }

    .box-clean .amount {
        font-size: 3.8rem;
    }

    .box-clean .features-list li {
        font-size: 1.5rem;
    }

    .box-clean .btn-book {
        font-size: 1.6rem;
        padding: 1.3rem 2rem;
    }

    .pricing-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reivew .box {
        padding: 2rem;
    }

    .reivew .box .user img {
        height: 6rem;
        width: 6rem;
    }

    .reivew .box .user h3 {
        font-size: 1.8rem;
    }

    .reivew .box p {
        font-size: 1.5rem;
    }

    .reivew .box .fa-quote-right {
        font-size: 4rem;
    }

    .instagram-section {
        padding: 3rem 2rem;
    }

    .instagram-section h2 {
        font-size: 2.8rem;
    }

    .instagram-section p {
        font-size: 1.8rem;
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-card {
        padding: 3rem 2rem;
    }

    .whatsapp-expanded-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .whatsapp-content-left {
        padding: 4rem 3rem;
    }

    .whatsapp-icon-large {
        font-size: 6rem;
    }

    .whatsapp-content-left h2 {
        font-size: 3rem;
    }

    .whatsapp-content-left > p {
        font-size: 1.7rem;
    }

    .whatsapp-features li {
        font-size: 1.6rem;
    }

    .whatsapp-content-right {
        padding: 4rem 3rem;
    }

    .whatsapp-action-card h3 {
        font-size: 2.8rem;
    }

    .whatsapp-action-card > p {
        font-size: 1.7rem;
    }

    .whatsapp-button-large {
        padding: 1.8rem 3.5rem;
        font-size: 1.9rem;
    }

    .contact-numbers p {
        font-size: 1.7rem;
    }

    .footer .box-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer .credit {
        font-size: 1.6rem;
    }

    .theme-toggler {
        width: 20rem;
        right: -20rem;
    }

    .theme-toggler .toggle-btn {
        left: -6rem;
    }

    .theme-toggler .buttons .theme-btn {
        height: 4.5rem;
        width: 4.5rem;
    }

    .whatsapp-float,
    .call-float {
        width: 55px;
        height: 55px;
        font-size: 2.5rem;
        right: 20px;
        bottom: 20px;
    }

    .call-float {
        bottom: 90px;
    }

    .scroll-top-btn {
        bottom: 160px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .heading {
        font-size: 3.2rem;
        padding-bottom: 1.5rem;
    }

    .heading::after {
        width: 80px;
        height: 3px;
    }
}


/* ============================================
   MOBILE PHONES (450px) - COMPLETE FIX
   ============================================ */
@media (max-width: 450px) {
    html {
        font-size: 52%;
    }

    section {
        padding: 3rem 4%;
    }

    .header {
        padding: 1.5rem 4%;
    }

    .header .logo {
        font-size: 2rem;
    }

    .header .navbar a {
        font-size: 1.8rem;
        padding: 1.3rem;
        margin: 1.3rem;
    }

    .home {
        padding-top: 9rem;
    }

    .home .content .badge-top {
        font-size: 1.1rem;
        padding: 0.7rem 1.8rem;
    }

    .home .content h3 {
        font-size: 3.2rem;
    }

    .home .content h3 span {
        font-size: 2.4rem;
    }

    .home .content .tagline {
        font-size: 1.7rem;
    }

    .home .content .btn-group {
        flex-direction: column;
        gap: 1.5rem;
    }

    .home .content .btn-group .btn {
        width: 100%;
        max-width: 280px;
    }

    /* STATS CONTAINER - COMPLETE MOBILE FIX */
    .home .stats-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 3rem;
        width: 100%;
    }

    .home .stats-container .stat-box {
        width: 100%;
        padding: 1.8rem 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.1);
    }

    .home .stats-container .stat-box h4 {
        font-size: 3.2rem;
        color: var(--main-color);
        font-weight: bold;
        margin: 0;
    }

    .home .stats-container .stat-box p {
        font-size: 1.3rem;
        color: var(--text-gray);
        margin-top: 0.8rem;
        line-height: 1.3;
    }

    .home .home-slider .swiper-slide {
        width: 28rem;
        height: 38rem;
    }

    /* Features - 1 COLUMN ON SMALL MOBILE */
    .features {
        grid-template-columns: 1fr;
        padding: 2rem 4%;
    }

    .features .feature-box {
        padding: 2.5rem 2rem;
    }

    .features .feature-box i {
        font-size: 4.5rem;
    }

    .features .feature-box h3 {
        font-size: 2.2rem;
    }

    .about .row .content h3 {
        font-size: 2.6rem;
    }

    .about .row .content .highlight {
        font-size: 1.6rem;
        padding: 1.8rem;
    }

    .about .about-feature-item {
        padding: 1.3rem;
    }

    .about .quote {
        font-size: 1.7rem;
        padding: 1.8rem;
    }

    .box-container-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .box-container-gallery .box {
        height: 28rem;
    }

    .box-container-gallery .box .title {
        font-size: 1.8rem;
        padding: 1.2rem;
    }

    .box-container-gallery .box .icons a {
        font-size: 2.2rem;
    }

    .panels {
        min-height: 40vh;
    }

    .panel p {
        font-size: 1.8rem;
    }

    .box-container-price {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .box-clean {
        padding: 3rem 2.5rem;
    }

    .box-clean .badge {
        font-size: 1.2rem;
        padding: 0.7rem 1.5rem;
    }

    .box-clean .package-icon {
        font-size: 5rem;
    }

    .box-clean .title {
        font-size: 2.4rem;
    }

    .box-clean .amount {
        font-size: 4.2rem;
    }

    .box-clean .amount span {
        font-size: 1.8rem;
    }

    .box-clean .features-list li {
        font-size: 1.5rem;
    }

    .box-clean .btn-book {
        font-size: 1.7rem;
        padding: 1.4rem 2rem;
    }

    .pricing-info .info-box {
        padding: 2.5rem 2rem;
    }

    .pricing-info .info-box i {
        font-size: 4.5rem;
    }

    .reivew .box {
        padding: 2rem;
    }

    .reivew .box .user img {
        height: 6.5rem;
        width: 6.5rem;
    }

    .instagram-section {
        padding: 3rem 2rem;
    }

    .instagram-section h2 {
        font-size: 2.6rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 3rem 2rem;
    }

    .whatsapp-content-left {
        padding: 3.5rem 2.5rem;
    }

    .whatsapp-icon-large {
        font-size: 6rem;
    }

    .whatsapp-content-left h2 {
        font-size: 2.8rem;
    }

    .whatsapp-content-left > p {
        font-size: 1.6rem;
    }

    .whatsapp-features li {
        font-size: 1.5rem;
    }

    .whatsapp-content-right {
        padding: 3.5rem 2.5rem;
    }

    .whatsapp-action-card h3 {
        font-size: 2.6rem;
    }

    .whatsapp-action-card > p {
        font-size: 1.6rem;
    }

    .whatsapp-button-large {
        padding: 1.6rem 3rem;
        font-size: 1.8rem;
    }

    .contact-numbers p {
        font-size: 1.6rem;
    }

    .footer .box-container {
        grid-template-columns: 1fr;
    }

    .footer .credit {
        font-size: 1.5rem;
        padding: 2rem;
    }

    .theme-toggler {
        width: 18rem;
        right: -18rem;
    }

    .whatsapp-float,
    .call-float {
        width: 50px;
        height: 50px;
        font-size: 2.2rem;
        right: 15px;
        bottom: 15px;
    }

    .call-float {
        bottom: 80px;
    }

    .scroll-top-btn {
        bottom: 145px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .heading {
        font-size: 2.8rem;
    }

    .heading::after {
        width: 60px;
        height: 2px;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }

    .btn {
        padding: 1.2rem 2.8rem;
        font-size: 1.6rem;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 80%;
    }

    .close-lightbox {
        top: 10px;
        right: 20px;
        font-size: 4rem;
    }
}


/* ============================================
   EXTRA SMALL DEVICES (380px) - ADDED
   ============================================ */
@media (max-width: 380px) {
    html {
        font-size: 50%;
    }

    .home .stats-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

    .home .stats-container .stat-box {
        padding: 1.5rem 0.8rem;
    }

    .home .stats-container .stat-box h4 {
        font-size: 3rem;
    }

    .home .stats-container .stat-box p {
        font-size: 1.2rem;
    }
}


/* ============================================
   EXTRA SMALL DEVICES (350px)
   ============================================ */
@media (max-width: 350px) {
    html {
        font-size: 48%;
    }

    .header .logo {
        font-size: 1.8rem;
    }

    .home .content h3 {
        font-size: 2.8rem;
    }

    .home .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .home .stats-container .stat-box {
        padding: 2rem 1.5rem;
    }

    .home .home-slider .swiper-slide {
        width: 26rem;
        height: 36rem;
    }

    .heading {
        font-size: 2.4rem;
    }

    .box-clean .amount {
        font-size: 3.8rem;
    }
}


/* ============================================
   LANDSCAPE MODE FOR MOBILE
   ============================================ */
@media (max-height: 500px) and (orientation: landscape) {
    .home {
        flex-direction: row;
        min-height: auto;
        padding: 12rem 9% 3rem;
    }

    .home .content {
        flex: 1;
    }

    .home .home-slider {
        flex: 1;
    }

    .home .home-slider .swiper-slide {
        height: 35rem;
    }

    .panels {
        min-height: 60vh;
    }
}


/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header,
    .whatsapp-float,
    .call-float,
    .scroll-top-btn,
    .theme-toggler,
    .preloader {
        display: none !important;
    }

    body {
        background: white;
    }
}
