/* ============================================
   RESPONSIVE CSS - Find Maid Service
   Desktop = NO CHANGE (only media queries below)
   ============================================ */

/* ============================================
   TABLET: 769px - 1024px
   ============================================ */
@media (min-width: 769px) and (max-width: 1024px) {
    .layer-1 h1,
    .slider-content.slide-left .layer-1 h1,
    .intro-area-4 .layer-1 h1 {
        font-size: 38px;
        line-height: 1.15;
    }
    .layer-2 p,
    .slider-content.slide-left .layer-2 p,
    .intro-area-4 .layer-2 p {
        font-size: 16px;
    }
    .banner-content h4 {
        font-size: 20px;
    }
    .footer-services-link ul.footer-list {
        width: 100%;
        float: none;
    }
}

/* ============================================
   MOBILE: max-width 768px
   ============================================ */
@media (max-width: 768px) {

    /* --- GLOBAL MOBILE --- */
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    body {
        padding-top: 70px;
        overflow-x: hidden;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    .area-padding {
        padding: 50px 0;
    }
    .section-headline {
        margin-bottom: 35px;
    }
    .section-headline h3 {
        font-size: 22px;
        text-transform: uppercase;
    }
    .section-headline p {
        font-size: 14px;
        line-height: 22px;
    }
    .section-headline::after {
        bottom: -18px;
    }
    .color {
        color: #29abe2;
    }

    /* ============================================
       NAVBAR FIX 1: HIDE desktop header on mobile
       ============================================ */
    header.header-style-3 {
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .header-area.header-area-3,
    .header-area.header-area-3.stick {
        display: none !important;
        box-shadow: none !important;
        background: transparent !important;
        position: static !important;
    }

    /* ============================================
       NAVBAR FIX 2: SHOW mobile menu on mobile
       ============================================ */
    .mobile-menu-area {
        display: block !important;
        padding: 0 !important;
        background: #ffffff !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99999;
        box-shadow: none !important;
        border-bottom: none !important;
        height: auto !important;
    }
    .mobile-menu-area .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        background: transparent !important;
    }
    .mobile-menu-area .row {
        margin: 0 !important;
    }
    .mobile-menu-area .col-md-12 {
        padding: 0 !important;
        width: 100% !important;
        float: none !important;
        background: transparent !important;
    }
    .mobile-menu {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 8px;
        width: 100%;
        min-height: 60px;
        height: 60px;
        padding: 0 0;
        position: relative;
        background: #ffffff;
    }
    .mobile-menu .logo {
        position: relative;
        top: 0;
        left: 0;
        width: 190px;
        min-width: 150px;
        max-width: 200px;
        flex-shrink: 0;
        order: 1;
        display: flex;
        align-items: center;
    }
    .mobile-menu .logo a {
        display: flex;
        align-items: center;
    }
    .mobile-menu .logo img {
        max-height: 55px;
        height: auto;
        width: auto;
        max-width: 100%;
        display: block;
    }

    /* GET IN TOUCH: second element, after logo */
    .mobile-get-in-touch {
        flex-shrink: 0;
        padding: 0;
        order: 2;
        margin-left: auto;
        margin-right: 8px;
    }
    .mobile-get-in-touch a {
        display: inline-block;
        background: #29abe2;
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        padding: 8px 14px;
        border-radius: 5px;
        border: 1px solid #29abe2;
        white-space: nowrap;
    }
    .mobile-get-in-touch a:hover {
        background: #43a047;
        border-color: #43a047;
        color: #fff;
        text-decoration: none;
    }

    /* Hamburger button positioned right */

    /* ============================================
       MeanMenu: HIDE MeanMenu completely - we use custom menu
       ============================================ */
    .mean-container {
        display: none !important;
    }
    .mean-bar,
    .mean-nav,
    .meanmenu-reveal,
    .mean-push,
    .meanmenu-push {
        display: none !important;
    }
    /* Override meanmenu float:right on hamburger */
    .custom-hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        padding: 0;
        margin: 0;
        background: transparent;
        border: 1px solid #ddd;
        border-radius: 5px;
        cursor: pointer;
        flex-shrink: 0;
        order: 3;
        flex-direction: column;
        gap: 5px;
        position: relative;
        z-index: 100001;
    }
    .custom-hamburger span {
        display: block;
        background: #333;
        height: 2px;
        width: 20px;
        border-radius: 1px;
        transition: all 0.3s ease;
    }
    .custom-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .custom-hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .custom-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Custom mobile nav panel */
    .custom-mobile-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        z-index: 100000;
        max-height: 0;
        overflow: hidden;
        overflow-y: auto;
        border-top: 1px solid #eee;
        transition: max-height 0.35s ease;
        -webkit-transition: max-height 0.35s ease;
    }
    .custom-mobile-nav.open {
        max-height: 75vh;
    }
    .custom-mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .custom-mobile-nav ul li {
        border-bottom: 1px solid #f0f0f0;
    }
    .custom-mobile-nav ul li a {
        padding: 13px 18px;
        font-size: 14px;
        font-weight: 600;
        color: #333;
        display: block;
        text-decoration: none;
        transition: background 0.2s, color 0.2s;
    }
    .custom-mobile-nav ul li a:hover,
    .custom-mobile-nav ul li a:active {
        background: #f0f7fb;
        color: #29abe2;
    }
    /* Sub-menu */
    .custom-mobile-nav ul li ul {
        display: none;
        background: #f8fafc;
    }
    .custom-mobile-nav ul li ul.open {
        display: block;
    }
    .custom-mobile-nav ul li ul li a {
        padding-left: 35px;
        font-size: 13px;
        font-weight: 500;
        border-bottom: 1px solid #eef2f7;
    }
    .custom-mobile-nav ul li ul li:last-child {
        border-bottom: none;
    }
    /* Services parent arrow */
    .custom-mobile-nav ul li .menu-expand {
        position: absolute;
        right: 15px;
        top: 12px;
        font-size: 18px;
        color: #29abe2;
        cursor: pointer;
        transition: transform 0.3s;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .custom-mobile-nav ul li .menu-expand.rotated {
        transform: rotate(45deg);
    }
    .custom-mobile-nav ul li {
        position: relative;
    }

    /* Disable parallax on mobile (causes scroll issues) */
    [data-stellar-background-ratio] {
        background-attachment: scroll !important;
    }

    /* Disable background-attachment:fixed on all sections for mobile */
    .quote-area,
    .parallax-bg,
    .counter-area,
    .page-area,
    .footer-1 {
        background-attachment: scroll !important;
    }

    /* Ensure body scroll is never locked on mobile */
    html, body {
        overflow-y: auto !important;
        height: auto !important;
    }

    .topbar-left {
        display: none;
    }
    .topbar-right ul li a {
        font-size: 12px;
        margin: 6px 1px;
        width: 24px;
        height: 24px;
        line-height: 22px;
    }

    /* ============================================
       HERO SLIDER FIX
       ============================================ */
    .intro-area {
        width: 100%;
        position: relative;
    }
    .intro-content {
        position: relative;
    }
    .main-overly {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: transparent;
        z-index: 2;
    }

    /* Image - balanced banner height on mobile */
    .slider-images {
        width: 100%;
        height: 75vh;
        overflow: hidden;
        position: relative;
    }
    .slider-images img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
    }
    .intro-area-4 .slider-images {
        height: 75vh;
    }
    .intro-area-4 .slider-images img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    /* Text + Buttons overlay - full width, shifted down */
    .slider-content {
        position: absolute;
        top: 75%;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0 15px;
        text-align: left;
        z-index: 5;
        transform: translateY(-50%);
    }
    .slider-content.slide-left {
        position: absolute;
        top: 75%;
        left: 0;
        right: 0;
        width: 100%;
        text-align: left;
        padding: 0 15px;
        margin: 0;
        transform: translateY(-50%);
    }
    .intro-carousel .intro-content:first-of-type .slider-content.slide-left {
        position: absolute !important;
        top: 75% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        padding: 0 15px !important;
        text-align: left !important;
        z-index: 5 !important;
        transform: translateY(-50%) !important;
    }

    /* ============================================
       HERO TEXT: desktop-like on mobile
       ============================================ */
    .layer-1 {
        margin: 0 0 10px;
    }
    .layer-1 h1,
    .slider-content.slide-left .layer-1 h1 {
        color: #fff;
        font-size: 26px;
        font-weight: 700;
        line-height: 1.15;
        text-transform: uppercase;
        max-width: 100%;
        margin: 0 0 10px;
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .intro-area-4 .layer-1 h1 {
        color: #fff;
        font-size: 26px;
        font-weight: 600;
        line-height: 1.15;
        text-transform: uppercase;
        max-width: 100%;
        text-align: left;
        margin: 0 0 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .layer-2 p,
    .slider-content.slide-left .layer-2 p {
        color: #fff;
        font-size: 14px;
        line-height: 1.5;
        max-width: 100%;
        margin: 0 0 15px;
        text-align: left;
    }
    .intro-area-4 .layer-2 p {
        color: #fff;
        font-size: 14px;
        line-height: 1.5;
        text-align: left;
        margin: 0 0 15px;
        max-width: 100%;
    }

    /* ============================================
       HERO BUTTONS: side by side like desktop
       ============================================ */
    .layer-3,
    .slider-content.slide-left .layer-3 {
        text-align: left;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
    }
    .intro-area-4 .layer-3 {
        text-align: left;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
    }
    .ready-btn {
        display: inline-block;
        font-size: 13px;
        font-weight: 700;
        padding: 12px 24px;
        margin-top: 0;
        width: auto;
        min-height: 44px;
        text-align: center;
    }
    .ready-btn.right-btn {
        margin-left: 0;
    }

    /* Contact form buttons */
    .contact-btn,
    .order-form button.contact-btn {
        min-height: 48px;
        padding: 14px 20px;
    }

    /* Get a Quote button */
    .banner-btn a {
        min-height: 48px;
        padding: 12px 24px;
        display: inline-block;
    }

    /* Hide slider nav arrows and dots on mobile */
    .intro-carousel .owl-nav,
    .intro-area .owl-nav,
    .owl-carousel .owl-nav {
        display: none !important;
    }
    .intro-carousel .owl-dots,
    .intro-area .owl-dots {
        display: none !important;
    }

    /* --- WELCOME SERVICES AREA --- */
    .welcome-area {
        position: relative;
        margin-top: 0;
        z-index: 9;
    }
    .welcome-area-4 {
        position: relative;
        margin-top: 0;
    }
    .well-services {
        padding: 20px 15px;
        margin: 10px 0;
    }
    .services-img a {
        width: 80px;
        height: 80px;
        font-size: 45px;
        line-height: 79px;
    }
    .service-content h4 {
        font-size: 15px;
    }
    .service-content ul li {
        font-size: 13px;
        margin: 5px 0;
    }

    /* --- ABOUT AREA --- */
    .about-content {
        padding: 20px 15px;
        background: #fff;
    }
    .about-content h4 {
        font-size: 18px;
        line-height: 26px;
    }
    .about-image {
        margin-bottom: 20px;
    }
    .about-image img {
        width: 100%;
        border-radius: 5px;
    }
    .single-about {
        width: 100%;
        float: none;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .hidden-sm {
        display: block !important;
    }

    /* --- SERVICES AREA --- */
    .single-service {
        padding: 15px 10px;
        margin-top: 20px;
    }
    .all-services {
        margin-top: -15px;
    }
    .service-image img {
        transform: scale(1);
    }
    .services-4 .single-service {
        padding: 0;
        margin-top: 20px;
    }
    .services-4 .service-content {
        padding: 10px 15px 20px;
    }

    /* --- FAQ AREA --- */
    .faq-full {
        margin-bottom: 15px;
    }
    .faq-details h4.check-title a {
        font-size: 13px;
        padding: 10px 10px 10px 35px;
    }
    .faq-details a span.acc-icons::before,
    .faq-details a.active span.acc-icons::before {
        left: -22px;
        font-size: 14px;
    }
    .panel-body {
        padding: 10px 10px 0 35px;
        font-size: 13px;
    }

    /* --- QUOTE / CONTACT FORM AREA --- */
    .quote-area {
        padding: 50px 0;
    }
    .sub-head h4 {
        font-size: 22px;
        line-height: 30px;
    }
    .sub-head h4::after {
        width: 30%;
    }
    .sub-head p {
        font-size: 14px;
        margin-top: 15px;
        line-height: 22px;
    }
    .quote-icon {
        margin-bottom: 25px;
    }
    .quote-icon i {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
    }
    .quote-icon span {
        padding-left: 55px;
        font-size: 14px;
        line-height: 22px;
    }
    .contact-form {
        padding: 15px !important;
        border-radius: 15px !important;
    }

    /* --- TESTIMONIALS AREA --- */
    .testimonial-area {
        padding: 50px 0;
    }
    .single-testi {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    .testi-img img {
        max-width: 80px;
    }
    .testi-text p {
        font-size: 14px;
        line-height: 22px;
    }
    .testi-text h4 {
        font-size: 13px;
    }
    .Reviews-content {
        margin-top: -15px;
    }
    .testimonial-carousel.item-indicator {
        padding: 20px 0 40px;
    }

    /* --- COUNTER AREA --- */
    .fun-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .fun_text {
        float: none;
        width: 50%;
        margin-bottom: 25px;
        text-align: center;
    }
    .fun_text > a {
        width: 60px;
        height: 60px;
        font-size: 28px;
        line-height: 58px;
    }
    .fun_text span {
        font-size: 24px;
        padding: 10px 0 15px;
    }
    .fun_text > h5 {
        font-size: 12px;
        text-transform: uppercase;
    }

    /* --- CHOOSE (WHY CHOOSE US) AREA --- */
    .choose-area .well-services {
        padding: 20px 15px;
    }
    .choose-area .services-img a {
        width: 80px;
        height: 80px;
        font-size: 45px;
        line-height: 79px;
    }

    /* --- BANNER AREA --- */
    .banner-area {
        padding: 30px 0;
    }
    .banner-content h4 {
        font-size: 18px;
        float: none;
        max-width: 100%;
        line-height: 26px;
        margin-bottom: 15px;
    }
    .banner-contact {
        float: none;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
    }
    .banner-contact span {
        font-size: 14px;
        margin-right: 5px;
    }
    .banner-contact span i {
        width: 32px;
        height: 32px;
        line-height: 32px;
        margin-right: 8px;
    }
    .banner-btn {
        float: none;
        margin-top: 0;
    }

    /* --- FOOTER AREA --- */
    .footer-area {
        padding-top: 10px;
    }
    .footer-head h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .footer-content {
        margin-bottom: 25px;
    }
    .footer-list li a {
        font-size: 13px;
        padding: 3px 0 3px 18px;
    }
    .footer-icons ul li a {
        width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: 16px;
        margin-right: 3px;
    }
    .copyright {
        text-align: center;
        margin-bottom: 10px;
    }
    .copyright p {
        font-size: 12px;
    }

    /* --- BREADCRUMBS --- */
    .breadcrumb {
        padding: 80px 0 30px;
    }
    .breadcrumb .section-headline h3 {
        font-size: 24px;
        line-height: 30px;
    }
    .page-area {
        background-size: cover;
    }

    /* --- CONTACT PAGE --- */
    .contact-head {
        padding: 30px 15px;
    }
    .contact-head h3 {
        font-size: 22px;
    }
    .contact-icon {
        padding: 20px 10px;
    }

    /* --- FLOATING BUTTONS --- */
    .floating-icons {
        bottom: 20px;
        left: 15px;
        right: auto;
    }
    .floating-icons a {
        width: 50px;
        height: 50px;
        font-size: 22px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.25);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* --- FORM FIELDS: proper touch targets --- */
    .form-control,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    select,
    textarea {
        min-height: 48px;
        font-size: 16px !important;
        padding: 12px 15px;
    }
    textarea {
        min-height: 120px;
    }
    .popup-form-area .form-control {
        min-height: 44px;
        font-size: 15px !important;
    }

    /* --- LINKS / NAV ITEMS: proper touch targets --- */
    .mean-nav ul li a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .topbar-right ul li a {
        min-width: 36px;
        min-height: 36px;
    }

    /* --- POPUP FORM - compact on mobile --- */
    .popup-content {
        max-width: 92%;
        max-height: 70vh;
    }
    .popup-header {
        padding: 15px 15px 12px;
    }
    .popup-header .popup-logo {
        width: 130px;
        margin-bottom: 6px;
    }
    .popup-header h3 {
        font-size: 15px;
        margin-bottom: 2px;
    }
    .popup-header p {
        font-size: 11px;
    }
    .popup-form-area {
        padding: 12px 15px;
    }
    .popup-form-area .form-group {
        margin-bottom: 10px;
    }
    .popup-form-area label {
        font-size: 11px;
        margin-bottom: 3px;
    }
    .popup-form-area .form-control {
        padding: 9px 12px;
        font-size: 13px;
        border-radius: 8px;
    }
    .popup-form-area textarea.form-control {
        min-height: 50px;
    }
    .popup-submit-btn {
        padding: 11px 15px;
        font-size: 13px;
        border-radius: 10px;
        margin-top: 4px;
    }
    .popup-close-btn {
        width: 26px;
        height: 26px;
        font-size: 16px;
        top: 10px;
        right: 10px;
    }
    .popup-form-footer {
        font-size: 10px;
        margin-top: 8px;
        padding: 8px 0 0;
    }

    /* --- HEADER STYLE 3 MOBILE FIX --- */
    .header-area.header-area-3 {
        display: none !important;
    }
    .header-area.header-area-3.stick {
        display: none !important;
    }

    /* --- ORDER FORM --- */
    .order-form .form-control.width-50 {
        width: 100%;
    }
    .order-form .form-control.width-50.last-name {
        margin-left: 0;
        margin-top: 10px;
    }
    .order-form button.contact-btn {
        width: 100%;
    }

    /* --- VIDEO AREA --- */
    .video-played p {
        padding: 0 20px;
    }
    .video-content {
        min-height: 250px;
    }

    /* --- PROJECT AREA --- */
    .project-single {
        width: 100% !important;
        float: none;
    }
    .project-menu li {
        display: block;
    }
    .project-history {
        padding: 30px 15px;
    }

    /* --- SINGLE MEMBER / TEAM --- */
    .single-member {
        padding: 15px;
    }
    .single-member .team-img {
        width: 150px;
        height: 150px;
    }

    /* --- ERROR PAGES --- */
    .high-text {
        font-size: 80px;
        line-height: 80px;
    }

    /* --- INTRO AREA 4 SLIDER HEIGHT FIX --- */
    .intro-area-4 {
        min-height: auto;
    }
    .intro-area-4 .layer-1 h1 {
        max-width: 100%;
    }
}

/* ============================================
   LARGE MOBILE: 481px - 768px
   ============================================ */
@media (min-width: 481px) and (max-width: 768px) {
    .layer-1 h1,
    .intro-area-4 .layer-1 h1 {
        font-size: 28px;
    }
    .fun_text {
        width: 50%;
    }
}

/* ============================================
   SMALL MOBILE: max-width 480px
   ============================================ */
@media (max-width: 480px) {

    .layer-1 h1,
    .slider-content.slide-left .layer-1 h1 {
        font-size: 22px;
        line-height: 1.25;
    }
    .intro-area-4 .layer-1 h1 {
        font-size: 22px;
        line-height: 1.25;
    }
    .layer-2 p,
    .slider-content.slide-left .layer-2 p,
    .intro-area-4 .layer-2 p {
        font-size: 13px;
        line-height: 1.4;
    }
    .ready-btn {
        font-size: 12px;
        padding: 10px 18px;
        min-width: 140px;
    }
    .section-headline h3 {
        font-size: 20px;
    }
    .about-content h4 {
        font-size: 16px;
        line-height: 24px;
    }
    .service-content h4 {
        font-size: 14px;
    }
    .banner-content h4 {
        font-size: 16px;
    }
    .sub-head h4 {
        font-size: 20px;
    }
    .fun_text span {
        font-size: 22px;
    }
    .fun_text > a {
        width: 55px;
        height: 55px;
        font-size: 25px;
        line-height: 53px;
    }
    .contact-head h3 {
        font-size: 20px;
    }
    .breadcrumb .section-headline h3 {
        font-size: 22px;
    }
    .popup-content {
        max-width: 96%;
        max-height: 65vh;
    }
    .popup-header h3 {
        font-size: 14px;
    }
    .popup-form-area {
        padding: 10px 12px;
    }
    .popup-form-area .form-group {
        margin-bottom: 8px;
    }
    .popup-submit-btn {
        padding: 10px 14px;
        font-size: 12px;
    }
}

/* ============================================
   VERY SMALL MOBILE: max-width 360px
   ============================================ */
@media (max-width: 360px) {
    .mobile-menu {
        min-height: 50px;
        padding: 6px 0;
        gap: 6px;
    }
    .mobile-menu .logo {
        width: 190px;
        min-width: 150px;
    }
    .mobile-menu .logo img {
        max-height: 50px;
    }
    .mean-container .mean-bar a.meanmenu-reveal {
        width: 34px !important;
        height: 34px !important;
        line-height: 34px;
        font-size: 20px !important;
    }
    .mobile-get-in-touch a {
        font-size: 10px;
        padding: 6px 10px;
    }
    .layer-1 h1,
    .intro-area-4 .layer-1 h1 {
        font-size: 20px;
    }
    .layer-2 p,
    .intro-area-4 .layer-2 p {
        font-size: 12px;
    }
    .ready-btn {
        font-size: 11px;
        padding: 9px 16px;
        min-width: 130px;
    }
    .fun_text {
        width: 50%;
    }
    .fun_text span {
        font-size: 20px;
    }
    .section-headline h3 {
        font-size: 18px;
    }
}

/* ============================================
   IPHONE SE / SMALL: max-width 390px
   ============================================ */
@media (max-width: 390px) {
    .mobile-menu .logo {
        width: 190px;
        min-width: 150px;
    }
    .mobile-menu .logo img {
        max-height: 50px;
    }
    .mobile-get-in-touch a {
        font-size: 11px;
        padding: 7px 12px;
    }
    .layer-1 h1,
    .intro-area-4 .layer-1 h1 {
        font-size: 21px;
    }
    .layer-2 p,
    .intro-area-4 .layer-2 p {
        font-size: 13px;
    }
    .ready-btn {
        font-size: 13px;
        padding: 12px 20px;
    }
    .fun_text {
        width: 50%;
    }
    .fun_text span {
        font-size: 21px;
    }
}

/* ============================================
   IPHONE PLUS / LARGE: max-width 414px
   ============================================ */
@media (max-width: 414px) {
    .mobile-menu .logo {
        width: 190px;
    }
    .layer-1 h1,
    .intro-area-4 .layer-1 h1 {
        font-size: 22px;
    }
    .layer-2 p,
    .intro-area-4 .layer-2 p {
        font-size: 13px;
    }
    .ready-btn {
        font-size: 13px;
        padding: 12px 22px;
    }
    .section-headline h3 {
        font-size: 20px;
    }
    .fun_text {
        width: 50%;
    }
}

/* ============================================
   ADDITIONAL MOBILE FIXES - Comprehensive
   ============================================ */

/* --- FOOTER MOBILE FIX --- */
@media (max-width: 768px) {
    .footer-1 > div {
        padding: 40px 0 20px !important;
    }
    .footer-1 .col-md-4,
    .footer-1 .col-md-2 {
        margin-bottom: 25px !important;
    }
    .footer-1 .col-md-4:last-child,
    .footer-1 .col-md-2:last-child {
        margin-bottom: 0 !important;
    }
    .footer-head h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .footer-content {
        margin-bottom: 20px;
    }
    .footer-list li a {
        font-size: 13px;
        padding: 4px 0 4px 18px;
    }
    .footer-icons ul li a {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 16px;
        margin-right: 4px;
    }
    .copyright {
        text-align: center !important;
    }
    .copyright p {
        font-size: 12px;
        text-align: center !important;
    }
    .copyright-text {
        text-align: center;
    }
    /* Footer working hours box */
    .footer-1 [style*="border-left: 3px solid #29abe2"] {
        padding: 15px !important;
    }
    .footer-1 [style*="display: flex"] {
        flex-wrap: wrap;
    }
    .footer-1 [style*="max-width: 200px"] {
        max-width: 150px !important;
    }
}

/* --- SERVICE DETAIL PAGE SIDEBAR MOBILE --- */
@media (max-width: 768px) {
    .single-services-page .col-md-3,
    .single-services-page .col-sm-4 {
        width: 100% !important;
        float: none !important;
        margin-bottom: 30px;
    }
    .single-services-page .col-md-9,
    .single-services-page .col-sm-8 {
        width: 100% !important;
        float: none !important;
    }
    .left-menu ul li a {
        font-size: 14px;
        padding: 12px 15px;
    }
    .left-contact h4 {
        font-size: 20px;
    }
    .single-page-head .clients-testi {
        padding: 15px 10px;
    }
    .single-page-head .service-btn {
        width: 100%;
        margin: 15px 0 0 0;
    }
    .down-btn {
        padding: 12px 15px;
        font-size: 13px;
    }
    .page-content h3 {
        font-size: 22px;
    }
    .single-well h3 {
        font-size: 22px;
    }
    .marker-list li {
        font-size: 14px;
        padding-left: 25px;
    }
}

/* --- CONTACT PAGE MAP MOBILE --- */
@media (max-width: 768px) {
    .map-area-top iframe,
    .map-area iframe,
    #googleMap iframe {
        height: 250px !important;
    }
    .contact-head {
        padding: 25px 15px;
    }
    .contact-head h3 {
        font-size: 20px;
    }
    .contact-head p {
        font-size: 14px;
        line-height: 22px;
    }
    .contact-icon {
        padding: 15px 10px;
    }
    .single-contact span {
        font-size: 13px;
    }
    .contact-page .contact-btn {
        width: 100%;
        text-align: center;
        float: none;
    }
    .contact-form textarea#message {
        height: 120px;
    }
    .project-social li a {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 14px;
    }
}

/* --- BREADCRUMB MOBILE FIX --- */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 80px 0 25px;
    }
    .breadcrumb .section-headline h3 {
        font-size: 22px;
        line-height: 28px;
    }
    .breadcrumb ul li {
        font-size: 13px;
        padding: 0 8px 0 15px;
    }
    .page-area {
        min-height: auto;
    }
}

/* --- WELCOME SECTION INDEX INLINE STYLES FIX --- */
@media (max-width: 768px) {
    .welcome-area {
        margin-top: 0;
    }
    .welcome-area-4 {
        margin-top: 0;
    }
    .well-services {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    .well-services .services-img a {
        width: 70px;
        height: 70px;
        font-size: 40px;
        line-height: 69px;
    }
    .well-services .service-content h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    .well-services .service-content p {
        font-size: 13px;
        line-height: 20px;
    }
    .well-services .service-content ul li {
        font-size: 12px;
    }
}

/* --- ABOUT SECTION MOBILE FIX --- */
@media (max-width: 768px) {
    .about-area {
        padding: 50px 0;
    }
    .about-content {
        margin-bottom: 20px;
    }
    .about-content h4 {
        font-size: 17px;
        line-height: 24px;
    }
    .about-content p {
        font-size: 14px;
        line-height: 22px;
    }
    .about-image {
        margin-top: 20px;
    }
    .about-details {
        display: block !important;
    }
    .single-about {
        width: 100% !important;
        float: none !important;
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
}

/* --- SERVICES SECTION MOBILE FIX --- */
@media (max-width: 768px) {
    .services-area,
    .services-4 {
        padding: 50px 0;
    }
    .single-service {
        margin-top: 15px;
    }
    .services-4 .single-service {
        margin-top: 15px;
    }
    .services-4 .service-content {
        padding: 10px 15px 15px;
    }
    .service-image img {
        transform: scale(1);
    }
    .all-services {
        margin-top: 0;
    }
}

/* --- FAQ SECTION MOBILE FIX --- */
@media (max-width: 768px) {
    .faq-page {
        padding: 50px 0;
    }
    .faq-full {
        margin-bottom: 15px;
    }
    .faq-details h4.check-title a {
        font-size: 13px;
        padding: 10px 10px 10px 30px;
        line-height: 20px;
    }
    .panel-body {
        padding: 8px 10px 0 30px;
        font-size: 13px;
        line-height: 20px;
    }
    .faq-details a span.acc-icons::before,
    .faq-details a.active span.acc-icons::before {
        left: -20px;
        font-size: 13px;
    }
}

/* --- QUOTE/CONTACT FORM SECTION MOBILE FIX --- */
@media (max-width: 768px) {
    .quote-area {
        padding: 40px 0;
    }
    .sub-head h4 {
        font-size: 20px;
        line-height: 28px;
    }
    .sub-head h4::after {
        width: 25%;
    }
    .sub-head p {
        font-size: 13px;
        line-height: 20px;
        margin-top: 10px;
    }
    .quote-icon {
        margin-bottom: 15px;
    }
    .quote-icon i {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 16px;
    }
    .quote-icon span {
        padding-left: 48px;
        font-size: 13px;
        line-height: 20px;
    }
    .contact-form {
        padding: 15px !important;
        border-radius: 12px !important;
    }
    .contact-form h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

/* --- TESTIMONIALS SECTION MOBILE FIX --- */
@media (max-width: 768px) {
    .testimonial-area {
        padding: 40px 0;
    }
    .single-testi {
        padding: 15px 10px;
        margin-bottom: 10px;
    }
    .testi-img img {
        max-width: 70px;
    }
    .testi-text p {
        font-size: 13px;
        line-height: 20px;
    }
    .testi-text h4 {
        font-size: 12px;
    }
    .client-rating a {
        font-size: 14px;
    }
    .Reviews-content {
        margin-top: 0;
    }
}

/* --- WHY CHOOSE SECTION MOBILE FIX --- */
@media (max-width: 768px) {
    .choose-area {
        padding: 50px 0;
    }
    .choose-area .well-services {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    .choose-area .services-img a {
        width: 70px;
        height: 70px;
        font-size: 40px;
        line-height: 69px;
    }
    .choose-area .service-content h4 {
        font-size: 14px;
    }
    .choose-area .service-content p {
        font-size: 13px;
        line-height: 20px;
    }
}

/* --- COUNTER SECTION MOBILE FIX --- */
@media (max-width: 768px) {
    .counter-area {
        padding: 40px 0;
    }
    .fun-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .fun_text {
        width: 50% !important;
        float: none !important;
        margin-bottom: 20px;
    }
    .fun_text > a {
        width: 55px;
        height: 55px;
        font-size: 24px;
        line-height: 53px;
    }
    .fun_text span {
        font-size: 22px;
        padding: 8px 0 10px;
    }
    .fun_text > h5 {
        font-size: 11px;
    }
}

/* --- BANNER SECTION MOBILE FIX --- */
@media (max-width: 768px) {
    .banner-area {
        padding: 25px 0;
    }
    .banner-content h4 {
        font-size: 16px;
        line-height: 22px;
        float: none;
        text-align: center;
        margin-bottom: 15px;
    }
    .banner-contact {
        float: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
    .banner-contact span {
        font-size: 14px;
        margin-right: 0;
    }
    .banner-contact span i {
        width: 30px;
        height: 30px;
        line-height: 30px;
        margin-right: 6px;
        font-size: 14px;
    }
    .banner-btn {
        float: none;
        font-size: 16px;
        padding: 8px 16px;
    }
}

/* --- WELCOME SECTION INLINE STYLES (index.php) --- */
@media (max-width: 768px) {
    /* Section with inline gradient background */
    section[style*="background: linear-gradient"] {
        padding: 40px 15px !important;
    }
    section[style*="background: linear-gradient"] h2 {
        font-size: 20px !important;
        line-height: 26px !important;
    }
    section[style*="background: linear-gradient"] p {
        font-size: 14px !important;
        line-height: 22px !important;
    }
    section[style*="max-width:900px"] {
        max-width: 100% !important;
    }
}

/* --- INDEX.PHP QUOTE SECTION INLINE STYLES FIX --- */
@media (max-width: 768px) {
    .quote-area[style*="padding: 80px"] {
        padding: 40px 0 !important;
    }
    .quote-area .col-md-6,
    .quote-area .col-sm-12 {
        margin-bottom: 20px;
    }
}

/* --- FORM INPUTS BETTER TOUCH TARGETS --- */
@media (max-width: 768px) {
    .form-control,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px !important;
        min-height: 48px;
    }
    textarea {
        min-height: 100px;
    }
    .form-group {
        margin-bottom: 12px;
    }
    .form-group label {
        font-size: 13px;
        margin-bottom: 4px;
    }
    button[type="submit"],
    .btn-primary {
        min-height: 48px;
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
    }
}

/* --- SUB SERVICES PAGES MOBILE FIX --- */
@media (max-width: 768px) {
    .single-services-page {
        padding: 50px 0;
    }
    .single-services-page .col-md-3,
    .single-services-page .col-sm-4 {
        order: 2;
    }
    .single-services-page .col-md-9,
    .single-services-page .col-sm-8 {
        order: 1;
    }
    .single-page-head {
        margin-bottom: 20px;
    }
    .page-img {
        height: auto;
    }
    .page-img img {
        width: 100%;
        height: auto;
    }
    .service-list li {
        font-size: 14px;
        padding-left: 25px;
        margin: 8px 0;
    }
}

/* --- ALL PAGE GENERAL MOBILE FIX --- */
@media (max-width: 768px) {
    .page-area {
        padding-top: 70px;
    }
    h1 { font-size: 28px; line-height: 34px; }
    h2 { font-size: 24px; line-height: 30px; }
    h3 { font-size: 22px; line-height: 28px; }
    h4 { font-size: 18px; line-height: 24px; }
    h5 { font-size: 16px; line-height: 22px; }
    p { font-size: 14px; line-height: 22px; }
}

/* --- FIXED POSITION ELEMENTS ON MOBILE --- */
@media (max-width: 768px) {
    .floating-icons {
        bottom: 15px;
        left: 10px;
    }
    .floating-icons a {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
    #scrollUp {
        bottom: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 24px;
        line-height: 34px;
    }
}

/* --- ABOUT PAGE TEAM AREA MOBILE --- */
@media (max-width: 768px) {
    .single-member {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    .single-member .team-img {
        width: 120px;
        height: 120px;
    }
    .team-content h4 {
        font-size: 15px;
    }
    .team-hover li a {
        width: 32px;
        height: 32px;
        line-height: 30px;
        font-size: 14px;
    }
}

/* --- VIDEO AREA MOBILE --- */
@media (max-width: 768px) {
    .video-content {
        min-height: 200px;
    }
    .video-played p {
        padding: 0 15px;
        font-size: 14px;
    }
    .video-play.vid-zone {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 22px;
    }
}

/* --- PRICING TABLE MOBILE --- */
@media (max-width: 768px) {
    .table-list {
        margin-bottom: 20px;
    }
    .table-list > h3 {
        font-size: 20px;
    }
    .prices {
        font-size: 36px;
    }
    .table-list ol li {
        font-size: 13px;
        padding: 6px 10px;
    }
}

/* --- BLOG AREA MOBILE --- */
@media (max-width: 768px) {
    .single-blog {
        margin-top: 20px;
    }
    .blog-content a h4 {
        font-size: 16px;
    }
    .blog-meta {
        width: auto;
        padding: 4px 8px;
    }
    .blog-meta span {
        font-size: 12px;
    }
    .blog-search-option input {
        width: 100%;
        margin-bottom: 10px;
    }
    .blog-search-option button {
        width: 100%;
    }
}

/* --- PROJECT AREA MOBILE --- */
@media (max-width: 768px) {
    .project-single {
        width: 100% !important;
        float: none !important;
    }
    .project-menu li {
        display: block;
        margin-bottom: 5px;
    }
    .project-menu li a {
        display: block;
        margin: 0 0 5px;
        padding: 8px 15px;
        font-size: 13px;
    }
    .project-history {
        padding: 20px 15px;
    }
    .project-details h4 {
        font-size: 20px;
    }
    .project-details p {
        font-size: 14px;
    }
}
