/* ============================================
   RESPONSIVE DESIGN - ALL SCREEN SIZES
   ============================================ */

/* Contact Buttons - Always Visible with Special Effects */
.hero-contact-buttons {
    position: fixed !important;
    z-index: 99999 !important;
    display: flex !important;
}

.contact-float-btn {
    display: flex !important;
    z-index: 100000 !important;
    pointer-events: all !important;
}

.phone-contact-wrapper,
.whatsapp-contact-wrapper,
.left-contact-buttons {
    display: flex !important;
    z-index: 100000 !important;
    pointer-events: all !important;
}

.phone-contact-label {
    display: flex !important;
}

/* ============================================
   LARGE SCREENS (Laptops & Desktops)
   ============================================ */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .nav-container {
        max-width: 1600px;
    }

    .hero-wrapper {
        max-width: 1400px;
    }

    .section-title {
        font-size: 3.8rem;
    }

    .service-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 35px;
    }
}

/* ============================================
   TABLET LANDSCAPE (1024px - 1400px)
   ============================================ */
@media (max-width: 1400px) and (min-width: 1024px) {
    .nav-container {
        padding: 0 30px;
    }

    .nav-menu {
        gap: 30px;
    }

    .nav-link {
        font-size: 16px;
    }

    .logo-image {
        width: 180px;
    }

    .hero-wrapper {
        padding: 40px 30px 60px;
    }

    .service-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .contact-grid {
        gap: 35px;
    }
}

/* ============================================
   TABLET PORTRAIT (768px - 1024px)
   ============================================ */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-container {
        padding: 0 25px;
        height: 75px;
    }

    .nav-logo {
        height: 75px;
    }

    .logo-image {
        width: 160px;
    }

    .nav-menu {
        gap: 25px;
    }

    .nav-link {
        font-size: 15px;
        padding: 6px 0;
    }

    .hero {
        padding-top: 75px;
    }

    .hero-wrapper {
        padding: 50px 30px 70px;
    }

    .hero-title {
        font-size: clamp(2.8rem, 6vw, 3.5rem);
    }

    .hero-description {
        font-size: clamp(1.1rem, 2.2vw, 1.25rem);
        padding: 0 20px;
    }

    .hero-buttons {
        gap: 18px;
        margin-bottom: 35px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 16px 36px;
        font-size: 17px;
    }

    .hero-service-tabs {
        gap: 18px;
        margin-bottom: 40px;
    }

    .hero-service-tab {
        padding: 16px 18px;
        font-size: 14px;
        min-width: 140px;
    }

    .hero-stats {
        gap: 40px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: clamp(2.5rem, 5vw, 3rem);
    }

    .section-title {
        font-size: clamp(2.5rem, 5vw, 3rem);
    }

    .section-subtitle {
        font-size: clamp(1rem, 2vw, 1.2rem);
    }

    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-category:first-child .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-category:first-child .service-cards-grid::before {
        display: none;
    }

    .service-category:first-child .service-cards-grid .service-card-modern:nth-child(4),
    .service-category:first-child .service-cards-grid .service-card-modern:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }

    .about {
        padding: 70px 0 110px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-left {
        max-width: 760px;
        margin: 0 auto;
    }

    .about-feature-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-gallery {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
    }

    .about-gallery-main {
        width: min(420px, 60vw);
    }

    .about-gallery-strip {
        position: static;
        flex-direction: row;
        justify-content: center;
        gap: 18px;
        margin-top: 28px;
    }

    .about-strip-card {
        width: 170px;
        height: 170px;
    }

    .gallery-grid {
        column-count: 2;
        column-gap: 20px;
    }

    .gallery-item {
        margin-bottom: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 35px 30px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 35px;
    }

    .hero-contact-buttons {
        padding: 0 30px;
        bottom: 30px;
        align-items: flex-end;
    }

    .contact-float-btn {
        align-self: flex-end;
    }

    .whatsapp-contact-wrapper {
        align-self: flex-end;
        display: flex;
        align-items: center;
    }

    .left-contact-buttons {
        align-self: flex-end;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 30px !important;
    }

    .left-contact-buttons .phone-btn {
        margin-right: 30px !important;
    }

    .whatsapp-contact-label {
        position: absolute;
        bottom: 100%;
        right: 0;
        margin-bottom: 10px;
        padding: 14px 20px;
    }

    .contact-label-text {
        font-size: 10px;
    }

    .contact-phone-number {
        font-size: 16px;
    }

    .contact-float-btn {
        width: 58px;
        height: 58px;
    }

    .contact-float-btn svg {
        width: 26px;
        height: 26px;
    }
}

/* ============================================
   MOBILE & TABLET PORTRAIT (Below 768px)
   ============================================ */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 20px;
    }

    /* Navbar */
    .nav-container {
        padding: 0 20px;
        height: 70px;
        justify-content: center !important;
        position: relative;
    }

    .nav-logo {
        height: 70px;
        margin: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .nav-logo:hover,
    .nav-logo:active {
        transform: translateX(-50%) !important;
    }

    .logo-image:hover,
    .logo-image:active {
        transform: none !important;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1)) !important;
    }

    .logo-image {
        width: 180px;
        transition: none !important;
    }

    .contact-form-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .highlight-text {
        font-size: 0.88rem;
    }

    .contact-form-reassurance {
        font-size: 0.92rem;
        padding: 18px 20px;
    }

    .mobile-menu-btn {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
        z-index: 9999 !important;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 10px 0;
        width: 100%;
    }

    .nav-link {
        padding: 12px 20px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        box-shadow: none;
        background: var(--gray-light);
        margin-top: 0;
        min-width: auto;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        pointer-events: none;
        border-radius: 12px;
        transition: all 0.3s ease;
        padding: 0;
    }

    .nav-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        margin-top: 10px;
        padding: 10px;
        pointer-events: all;
    }

    .nav-dropdown:hover .dropdown-menu {
        transform: none;
    }

    .dropdown-arrow {
        display: inline-block;
        transition: transform 0.3s ease;
        margin-left: 5px;
    }

    .nav-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero Section */
    .hero {
        padding: 110px 0 70px;
        min-height: auto;
        display: flex;
        align-items: flex-start;
    }

    .hero-bg-slider {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .hero-bg-slide {
        width: 100%;
        height: 100%;
        background-size: 100% 100% !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    .hero-wrapper {
        padding: 36px 18px 42px;
        width: 100%;
    }

    .hero-content {
        padding: 0;
    }

    .hero-badge {
        font-size: 11px;
        padding: 8px 18px;
        margin-bottom: 14px;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 18px;
        line-height: 1.25;
        padding: 0 12px;
        letter-spacing: 1.2px;
    }

    .hero-description {
        max-width: 100%;
        padding: 0 8px;
        margin-bottom: 30px;
    }

    .hero-tagline {
        width: 100%;
        max-width: 320px;
        margin: 0 auto 14px;
        padding: 10px 18px;
        gap: 10px;
        font-size: clamp(0.9rem, 3.2vw, 1.1rem);
    }

    .hero-description-copy {
        font-size: clamp(0.95rem, 3.2vw, 1.1rem);
        margin: 0 auto 28px;
        padding: 0 6px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 14px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 38px;
        padding: 0;
    }

    .btn-primary,
    .btn-secondary,
    .btn-ghost {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 14px 24px;
    }

    .hero-stats {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        padding: 0;
    }

    .stat-number {
        font-size: clamp(1.6rem, 7vw, 2rem);
    }

    .stat-label {
        font-size: 14px;
    }

    /* About Section */
    .about {
        padding: 60px 0 110px 0 !important;
        background-attachment: scroll !important;
        position: relative !important;
        z-index: 1 !important; /* Lower than buttons */
        overflow: visible !important;
        scroll-margin-top: 80px !important; /* Match navbar height exactly */
    }

    .about::before {
        z-index: -1 !important;
        height: 100% !important; /* Prevent background from extending */
        overflow: hidden !important;
    }

    .about {
        padding: 62px 0 100px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .about-left {
        padding: 24px;
    }

    .about-gallery-main {
        width: min(360px, 82vw);
    }

    .about-strip-card {
        width: 150px;
        height: 150px;
    }

    .about-photo-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    /* Services Section */
    .services {
        padding: 60px 0 120px 0 !important; /* Reduced top padding */
        position: relative !important;
        z-index: 1 !important; /* Lower than buttons */
        overflow: visible !important;
        scroll-margin-top: 80px !important; /* Match navbar height exactly */
    }

    .section-header {
        margin-bottom: 50px;
        padding: 0 20px;
        padding-top: 0 !important; /* Remove top padding */
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 14px;
    }

    .about-title {
        white-space: normal;
    }

    .section-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.15rem);
    }

    .service-category {
        margin-bottom: 60px;
        padding: 0 20px;
    }

    .service-category-title {
        font-size: clamp(1.75rem, 5vw, 2rem);
        margin-bottom: 30px;
    }

    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-category:first-child .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-category:first-child .service-cards-grid::before {
        display: none;
    }

    .service-category:first-child .service-cards-grid .service-card-modern:nth-child(4),
    .service-category:first-child .service-cards-grid .service-card-modern:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }

    .service-card-content {
        padding: 20px;
    }

    .service-card-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .service-card-description {
        font-size: 14px;
    }

    /* Gallery Section */
    .gallery {
        padding: 60px 0 120px 0 !important; /* Reduced top padding */
        position: relative !important;
        z-index: 1 !important; /* Lower than buttons */
        overflow: visible !important;
        scroll-margin-top: 80px !important; /* Match navbar height exactly */
    }

    .gallery-filters {
        gap: 8px;
        padding: 0 20px;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .gallery-grid {
        column-count: 2;
        column-gap: 16px;
        padding: 0 20px;
    }

    .gallery-item {
        margin-bottom: 16px;
    }

    .gallery-overlay-title {
        font-size: 18px;
    }

    .gallery-overlay-category {
        font-size: 12px;
    }

    /* Contact Section */
    .contact {
        padding: 60px 0 120px 0 !important;
        padding-bottom: calc(150px + env(safe-area-inset-bottom, 0px)) !important;
        position: relative !important;
        z-index: 1 !important; /* Lower than buttons */
        overflow: visible !important;
        scroll-margin-top: 80px !important; /* Match navbar height exactly */
    }

    .contact .container {
        padding: 0 18px !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .contact .section-header {
        text-align: center !important;
        margin: 0 auto 40px !important;
        padding: 0 18px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .contact .section-title {
        text-align: center !important;
        margin: 0 auto 15px !important;
        width: 100% !important;
    }

    .contact .section-subtitle {
        text-align: center !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 0 !important;
        margin: 40px auto 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        display: grid !important;
        justify-items: center !important;
        align-items: stretch !important;
        box-sizing: border-box !important;
    }

    .contact-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .contact-form-card,
    .contact-info-card {
        width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .contact-form-card {
        padding: 35px 25px 70px !important;
        margin-bottom: 40px !important;
    }

    .form-header,
    .contact-info-header {
        text-align: center !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .form-icon-wrapper {
        width: 65px !important;
        height: 65px !important;
        margin: 0 auto 15px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .form-icon-wrapper svg {
        width: 32px !important;
        height: 32px !important;
    }

    .contact-form-title {
        font-size: 26px !important;
        text-align: center !important;
        margin: 0 auto 10px !important;
        width: 100% !important;
    }

    .contact-form-subtitle {
        font-size: 14px !important;
        text-align: center !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .contact-info-card {
        padding: 35px 25px 70px !important;
        margin-bottom: 40px !important;
    }

    .contact-info-title {
        font-size: 26px !important;
        text-align: center !important;
        margin: 0 auto 10px !important;
        width: 100% !important;
    }

    .info-icon-wrapper {
        width: 65px !important;
        height: 65px !important;
        margin: 0 auto 15px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .info-icon-wrapper svg {
        width: 32px !important;
        height: 32px !important;
    }

    .contact-form,
    .contact-items-list {
        width: 100% !important;
        margin: 0 auto !important;
        text-align: left !important;
    }

    .form-group {
        width: 100% !important;
        margin: 0 auto 20px !important;
        text-align: left !important;
    }

    .form-label {
        text-align: left !important;
        display: block !important;
        width: 100% !important;
    }

    .form-group input,
    .form-group textarea {
        width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }

    .submit-btn {
        width: 100% !important;
        margin: 25px auto 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .contact-item-modern {
        padding: 18px 15px !important;
        gap: 15px !important;
        overflow: visible !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .contact-icon-modern {
        width: 50px !important;
        height: 50px !important;
        flex-shrink: 0 !important;
        min-width: 50px !important;
    }

    .contact-text-modern {
        flex: 1 !important;
        min-width: 0 !important;
        overflow: visible !important;
        padding-right: 8px !important;
    }

    .contact-value-modern {
        font-size: 16px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        hyphens: auto !important;
        line-height: 1.4 !important;
        max-width: 100% !important;
    }

    .contact-label-modern {
        font-size: 12px !important;
        margin-bottom: 5px !important;
    }

    .contact-arrow {
        flex-shrink: 0 !important;
        min-width: 28px !important;
    }

    .map-container {
        height: 280px;
        margin-top: 20px;
    }

    /* Footer */
    .footer {
        padding: 50px 0 30px !important; /* Reduced bottom padding for better spacing */
        position: relative !important;
        z-index: 1 !important; /* Lower than buttons */
        overflow: visible !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
        padding: 0 20px;
        margin-bottom: 15px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 15px;
    }

    .footer-logo-image {
        width: 50px;
        height: auto;
    }

    .footer-brand p {
        font-size: 14px;
        line-height: 1.6;
        padding: 0 10px;
    }

    .footer-links,
    .footer-address {
        text-align: center;
    }

    .footer-links h4,
    .footer-address h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .footer-links ul {
        gap: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links ul li {
        font-size: 14px;
    }

    .footer-address p {
        font-size: 14px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px 15px 0;
        font-size: 13px;
        margin-top: 0;
    }

    .footer-bottom p {
        margin: 0;
        line-height: 1.5;
    }

    /* Contact Floating Buttons */
    .hero-contact-buttons {
        bottom: 25px !important;
        padding: 0 25px !important;
        flex-direction: row !important;
        justify-content: space-between !important; /* Buttons in corners */
        align-items: flex-end !important;
        z-index: 2147483647 !important; /* Maximum z-index */
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        display: flex !important;
        transform: translateZ(0) !important;
        isolation: isolate !important;
        overflow: visible !important;
    }

    .whatsapp-contact-wrapper {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        position: relative !important;
        z-index: 2147483647 !important;
        pointer-events: all !important;
        transform: translateZ(0) !important;
    }

    .phone-contact-wrapper {
        display: flex !important;
        align-items: center !important;
        position: relative !important;
        z-index: 2147483647 !important;
        pointer-events: all !important;
        transform: translateZ(0) !important;
    }

    .left-contact-buttons {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 18px !important;
        position: relative !important;
        z-index: 2147483647 !important;
        pointer-events: all !important;
        transform: translateZ(0) !important;
        align-self: flex-end !important;
    }

    .left-contact-buttons .phone-btn {
        margin-right: 25px !important;
    }

    /* Position orange box to the left of WhatsApp button */
    .phone-contact-label {
        padding: 8px 14px !important;
        font-size: 10px !important;
        z-index: 2147483647 !important;
        display: flex !important;
        opacity: 1 !important; /* Show immediately on mobile */
        visibility: visible !important;
        gap: 3px !important;
        position: relative !important;
        margin: 0 !important;
        transform: translateX(0) !important; /* No transform on mobile */
        will-change: transform, opacity !important;
    }

    body.scrolled .phone-contact-label {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }

    /* Show orange label immediately on mobile */
    .phone-contact-label {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }

    .phone-contact-label .contact-label-text {
        font-size: 9px;
        margin-bottom: 1px;
        padding-bottom: 3px;
    }

    .phone-contact-label .contact-phone-number {
        font-size: 13px;
    }

    .contact-float-btn {
        width: 58px !important;
        height: 58px !important;
        align-self: flex-end !important;
        z-index: 2147483647 !important;
        pointer-events: all !important;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateZ(0) !important;
        flex-shrink: 0 !important;
    }

    .contact-float-btn svg {
        width: 26px;
        height: 26px;
    }

    /* Ensure WhatsApp button is visible */
    .whatsapp-contact-wrapper .whatsapp-btn {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .whatsapp-contact-wrapper {
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
        position: relative !important;
        z-index: 2147483647 !important;
        pointer-events: all !important;
        transform: translateZ(0) !important;
    }

    /* Modal */
    .modal.active {
        padding: 30px 20px;
    }

    .modal-content {
        margin: 20px auto;
        border-radius: 18px;
    }

    .modal-content h2 {
        font-size: 28px;
        padding: 35px 30px 20px;
    }

    .modal-body {
        padding: 25px 30px 35px;
        max-height: calc(100vh - 180px);
    }

    .modal-body h3 {
        font-size: 19px;
        margin-top: 22px;
    }

    .modal-body p {
        font-size: 15px;
        line-height: 1.7;
    }

    .modal-close {
        top: 18px;
        right: 22px;
        font-size: 38px;
        width: 38px;
        height: 38px;
    }
}

/* ============================================
   SMALL MOBILE (Below 480px)
   ============================================ */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Navbar */
    .nav-container {
        padding: 0 15px;
        height: 65px;
        justify-content: center !important;
        position: relative;
    }

    .nav-logo {
        height: 65px;
        margin: 0 auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .nav-logo:hover,
    .nav-logo:active {
        transform: translateX(-50%) !important;
    }

    .logo-image:hover,
    .logo-image:active {
        transform: none !important;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1)) !important;
    }

    .logo-image {
        width: 160px;
        transition: none !important;
    }

    .contact-form-highlights {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 16px;
    }

    .highlight-icon {
        font-size: 1.5rem;
    }

    .highlight-text {
        font-size: 0.9rem;
    }

    .contact-form-reassurance {
        font-size: 0.9rem;
        padding: 16px 18px;
        margin-top: 18px;
    }

    .mobile-menu-btn {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .nav-menu {
        top: 65px;
    }

    /* Hero Section */
    .hero {
        padding-top: 65px;
    }

    .hero-wrapper {
        padding: 25px 15px 35px;
    }

    .hero-content {
        padding: 0 8px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 18px;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
        margin-bottom: 16px;
        padding: 0 12px;
        letter-spacing: 1.2px;
    }

    .hero-description {
        font-size: clamp(0.9rem, 4vw, 1.05rem);
        margin-bottom: 28px;
        padding: 0 12px;
    }

    .hero-description .highlight-text {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        letter-spacing: 0.7px;
        white-space: normal;
        display: block;
        margin-bottom: 10px;
        line-height: 1.4;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        margin-bottom: 45px;
        gap: 12px;
        padding: 0 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
        font-size: 13px;
        letter-spacing: 1.2px;
        text-align: center;
    }

    .hero-service-tabs {
        margin-top: 40px;
        margin-bottom: 25px;
        gap: 10px;
        padding: 0 12px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .hero-service-tab {
        padding: 12px 14px;
        font-size: 12px;
    }

    .hero-tab-icon {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .hero-tab-title {
        font-size: 11px;
    }

    .hero-service-tab:nth-child(1),
    .hero-service-tab:nth-child(2) {
        grid-row: 1;
    }

    .hero-service-tab:nth-child(3) {
        grid-column: 1 / -1;
        grid-row: 2;
        max-width: 50%;
        justify-self: center;
    }

    .hero-stats {
        gap: 10px;
        margin-top: 20px;
        padding: 0 12px;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .stat-item {
        flex: 1;
        min-width: 0;
    }

    .stat-number {
        font-size: clamp(1.6rem, 8vw, 2rem);
    }

    .stat-label {
        font-size: 10px;
    }

    .stat-label {
        font-size: 13px;
    }

    /* About Section */
    .about {
        padding: 55px 0 110px 0 !important;
        background-attachment: scroll !important;
        position: relative !important;
        z-index: 1 !important; /* Lower than buttons */
        overflow: visible !important;
    }

    .about-section-header {
        align-items: center;
        padding: 26px 22px 24px;
        gap: 14px;
        text-align: center;
        background: rgba(7, 15, 30, 0.9);
        max-width: 520px;
        margin: 0 auto;
        border-radius: 28px 28px 0 0;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 18px 45px rgba(5, 9, 18, 0.4);
        margin-bottom: 0;
    }

    .about-title {
        font-size: clamp(1.9rem, 6.5vw, 2.4rem);
        white-space: normal;
        left: 0;
        margin: 0;
    }

    .about-section-tag {
        color: rgba(255, 255, 255, 0.95);
    }

    .about-lede {
        font-size: clamp(0.95rem, 3.6vw, 1.05rem);
        color: rgba(244, 246, 255, 0.78);
        margin-top: 4px;
    }

    .about::before {
        z-index: -1 !important;
        height: 100% !important; /* Prevent background from extending */
        overflow: hidden !important;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 0;
    }

    .about-left {
        padding: 26px 22px 30px;
        max-width: 520px;
        margin: 0 auto;
        background: rgba(7, 15, 30, 0.9);
        border-radius: 0 0 28px 28px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-top: none;
        box-shadow: 0 18px 45px rgba(5, 9, 18, 0.4);
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .about-narrative p {
        margin-bottom: 14px;
        font-size: clamp(0.95rem, 3.4vw, 1.05rem);
        color: rgba(238, 241, 255, 0.88);
    }

    .about-promise {
        font-size: clamp(0.95rem, 3.4vw, 1.05rem);
        color: rgba(238, 241, 255, 0.92);
        line-height: 1.7;
    }

    .about-gallery-main {
        width: min(320px, 92vw);
        border-radius: 26px;
        margin: 0 auto;
    }

    .about-gallery-strip {
        flex-direction: row;
        gap: 12px;
        justify-content: center;
    }

    .about-strip-card {
        width: 120px;
        height: 130px;
        border-radius: 18px;
    }

    .about-strip-card span {
        font-size: 0.72rem;
    }

    .about-photo-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        padding: 0 20px;
    }

    /* Services Section */
    .services {
        padding: 60px 0 120px 0 !important; /* Add bottom padding */
        position: relative !important;
        z-index: 1 !important; /* Lower than buttons */
        overflow: visible !important;
    }

    .section-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }

    .service-category {
        padding: 0 15px;
        margin-bottom: 50px;
    }

    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card-content {
        padding: 20px;
    }

    .service-card-title {
        font-size: 20px;
    }

    .service-card-description {
        font-size: 14px;
    }

    /* Gallery Section */
    .gallery {
        padding: 60px 0 120px 0 !important; /* Add bottom padding */
        position: relative !important;
        z-index: 1 !important; /* Lower than buttons */
        overflow: visible !important;
    }

    .gallery-filters {
        padding: 0 15px;
        gap: 6px;
    }

    .filter-btn {
        padding: 9px 14px;
        font-size: 13px;
    }

    .gallery-grid {
        column-count: 1;
        column-gap: 12px;
        padding: 0 15px;
    }

    .gallery-item {
        margin-bottom: 12px;
    }

    /* Contact Section */
    .contact {
        padding: 60px 0 110px 0;
        padding-bottom: calc(140px + env(safe-area-inset-bottom, 0px));
    }

    .contact .container {
        padding: 0 14px;
    }

    .contact-grid {
        padding: 0 0 110px;
        gap: 25px;
        margin: 35px auto 0 !important;
        width: 100%;
        max-width: none;
    }

    .contact-grid > * {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }

    .contact-form-card,
    .contact-info-card {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
        max-width: 100%;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 28px 20px 65px;
        margin-bottom: 35px;
    }

    .form-icon-wrapper,
    .info-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .form-icon-wrapper svg,
    .info-icon-wrapper svg {
        width: 30px;
        height: 30px;
    }

    .contact-form-title,
    .contact-info-title {
        font-size: 24px;
    }

    .contact-item-modern {
        padding: 16px;
    }

    .contact-icon-modern {
        width: 48px;
        height: 48px;
    }

    .map-container {
        height: 250px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 30px !important; /* Reduced bottom padding for better spacing */
        position: relative !important;
        z-index: 1 !important; /* Lower than buttons */
        overflow: visible !important;
    }

    .footer-grid {
        gap: 20px;
        padding: 0 15px;
        margin-bottom: 12px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo-image {
        width: 45px;
    }

    .footer-brand p {
        font-size: 13px;
        padding: 0;
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links h4,
    .footer-address h4 {
        font-size: 1rem;
        margin-bottom: 12px;
        text-align: center;
    }

    .footer-links ul li {
        font-size: 13px;
    }

    .footer-links ul li a {
        text-align: center;
    }

    .footer-address {
        text-align: center;
    }

    .footer-address p {
        font-size: 13px;
        text-align: center;
    }

    .footer-bottom {
        padding: 15px 15px 0;
        font-size: 12px;
        gap: 8px;
        margin-top: 0;
    }

    /* Contact Floating Buttons */
    .hero-contact-buttons {
        bottom: 20px !important;
        padding: 0 20px !important;
        align-items: flex-end !important;
        z-index: 2147483647 !important; /* Maximum z-index */
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important; /* Buttons in corners */
        transform: translateZ(0) !important;
        isolation: isolate !important;
        overflow: visible !important;
    }

    .whatsapp-contact-wrapper {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        position: relative !important;
        z-index: 2147483647 !important;
        pointer-events: all !important;
        transform: translateZ(0) !important;
    }

    .phone-contact-wrapper {
        display: flex !important;
        align-items: center !important;
        position: relative !important;
        z-index: 2147483647 !important;
        pointer-events: all !important;
        transform: translateZ(0) !important;
    }

    .left-contact-buttons {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 18px !important;
        position: relative !important;
        z-index: 2147483647 !important;
        pointer-events: all !important;
        transform: translateZ(0) !important;
        align-self: flex-end !important;
    }

    .left-contact-buttons .phone-btn {
        margin-right: 25px !important;
    }

    /* Position orange box to the left of WhatsApp button */
    .phone-contact-label {
        padding: 8px 12px !important;
        font-size: 9px !important;
        z-index: 2147483647 !important;
        display: flex !important;
        opacity: 1 !important; /* Show immediately on mobile */
        visibility: visible !important;
        gap: 3px !important;
        position: relative !important;
        margin: 0 !important;
        transform: translateX(0) !important; /* No transform on mobile */
        will-change: transform, opacity !important;
    }

    body.scrolled .phone-contact-label {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }

    .phone-contact-label .contact-label-text {
        font-size: 8px;
        margin-bottom: 1px;
        padding-bottom: 3px;
    }

    .phone-contact-label .contact-phone-number {
        font-size: 12px;
    }

    .contact-float-btn {
        width: 56px !important;
        height: 56px !important;
        align-self: flex-end !important;
        z-index: 2147483647 !important;
        pointer-events: all !important;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateZ(0) !important;
        flex-shrink: 0 !important;
    }

    .contact-float-btn svg {
        width: 25px;
        height: 25px;
    }

    /* Ensure WhatsApp button is visible */
    .whatsapp-contact-wrapper .whatsapp-btn {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .whatsapp-contact-wrapper {
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
        position: relative !important;
        z-index: 2147483647 !important;
        pointer-events: all !important;
        transform: translateZ(0) !important;
    }

    /* Modal */
    .modal.active {
        padding: 20px 15px;
    }

    .modal-content {
        margin: 15px auto;
        border-radius: 12px;
    }

    .modal-content h2 {
        font-size: 20px;
        padding: 25px 20px 15px;
    }

    .modal-body {
        padding: 15px 20px 25px;
        max-height: calc(100vh - 120px);
    }

    .modal-body h3 {
        font-size: 16px;
        margin-top: 18px;
    }

    .modal-body p {
        font-size: 13px;
        line-height: 1.6;
    }

    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 30px;
        height: 30px;
    }

    .gallery-hover-preview img {
        max-width: 96vw;
        max-height: calc(100vh - 140px);
    }
}

/* ============================================
   EXTRA SMALL MOBILE (Below 425px)
   ============================================ */
@media (max-width: 425px) {
    /* Ensure body and html don't clip buttons */
    body,
    html {
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }

    /* Container */
    .container {
        padding: 0 12px;
    }

    /* Navbar - Ensure logo is centered */
    .nav-container {
        justify-content: center !important;
        position: relative;
    }

    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .nav-logo:hover,
    .nav-logo:active {
        transform: translateX(-50%) !important;
    }

    .logo-image:hover,
    .logo-image:active {
        transform: none !important;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1)) !important;
    }

    .logo-image {
        width: 150px;
        transition: none !important;
    }

    .mobile-menu-btn {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    /* Hero Background Fix */
    .hero {
        min-height: 100vh;
        height: auto;
        overflow: hidden;
        position: relative;
        padding-top: 50px;
        z-index: 5;
    }

    .hero-bg-slider {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        overflow: hidden;
        margin: 0;
        padding: 0;
        pointer-events: none;
    }

    .hero-bg-slide {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
        transform: none !important;
        transform-origin: center center;
        display: block;
        pointer-events: none;
        filter: brightness(0.8);
    }

    .hero-bg-slide::after {
        display: none;
    }

    .hero::before {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.35) 100%);
    }

    .hero::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .hero-wrapper {
        position: relative;
        z-index: 10;
        padding: 50px 15px 40px !important;
        min-height: auto;
    }

    /* Ensure all sections after hero have proper z-index - LOWER than buttons */
    .services,
    .about,
    .gallery,
    .contact {
        position: relative !important;
        z-index: 1 !important; /* Much lower than buttons */
        background: white;
        overflow: visible !important; /* Prevent clipping */
        padding-bottom: 120px !important; /* Add bottom padding to prevent content from covering buttons */
        scroll-margin-top: 75px !important; /* Match navbar height exactly */
    }

    /* About section background should stay below buttons */
    .about {
        z-index: 1 !important; /* Much lower than buttons */
        background-attachment: scroll !important; /* Remove fixed attachment on small screens */
        background-position: center center !important;
        overflow: visible !important; /* Prevent clipping */
        padding-bottom: 120px !important; /* Add bottom padding to prevent content from covering buttons */
        position: relative !important;
    }

    .about::before {
        z-index: -1 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        height: 100% !important; /* Prevent background from extending beyond section */
        overflow: hidden !important;
    }

    /* Ensure about section content doesn't extend to bottom */
    .about .container {
        overflow: visible !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .about-layout,
    .about-left,
    .about-feature-list,
    .about-feature-card,
    .about-gallery {
        position: relative !important;
        z-index: 1 !important;
        overflow: visible !important;
    }

    .footer {
        position: relative !important;
        z-index: 1 !important; /* Much lower than buttons */
        background: white !important;
        overflow: visible !important;
        padding-bottom: 30px !important; /* Reduced bottom padding for better spacing */
    }

    /* Hero Content */
    .hero-content {
        padding-top: 0;
        padding-left: 8px;
        padding-right: 8px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 7px 16px;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 10vw, 2rem);
        margin-bottom: 12px;
        padding: 0 10px;
        line-height: 1.2;
        letter-spacing: 1px;
    }

    .hero-description {
        font-size: clamp(0.85rem, 4.5vw, 1rem);
        margin-bottom: 22px;
        padding: 0 10px;
    }

    .hero-description .highlight-text {
        font-size: clamp(0.8rem, 3.5vw, 0.95rem);
        letter-spacing: 0.6px;
        white-space: normal;
        display: block;
        margin-bottom: 8px;
        line-height: 1.3;
        text-align: center;
    }

    .hero-buttons {
        margin-bottom: 40px;
        gap: 10px;
        padding: 0 10px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 22px;
        font-size: 12px;
        letter-spacing: 1px;
        max-width: 100%;
    }

    .hero-service-tabs {
        margin-top: 35px;
        margin-bottom: 20px;
        gap: 8px;
        padding: 0 10px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .hero-service-tab {
        padding: 10px 12px;
        font-size: 11px;
        min-width: auto;
    }

    .hero-tab-icon {
        font-size: 22px;
        margin-bottom: 4px;
    }

    .hero-tab-title {
        font-size: 10px;
    }

    .hero-service-tab:nth-child(1),
    .hero-service-tab:nth-child(2) {
        grid-row: 1;
    }

    .hero-service-tab:nth-child(3) {
        grid-column: 1 / -1;
        grid-row: 2;
        max-width: 50%;
        justify-self: center;
    }

    .hero-stats {
        gap: 8px;
        margin-top: 18px;
        padding: 0 10px;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .stat-item {
        flex: 1;
        min-width: 0;
    }

    .stat-number {
        font-size: clamp(1.5rem, 8vw, 1.8rem);
    }

    .stat-label {
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    /* About Section */
    .about {
        padding: 50px 0 120px 0 !important; /* Reduced top padding */
        background-attachment: scroll !important;
        position: relative !important;
        z-index: 1 !important; /* Lower than buttons */
        overflow: visible !important;
        scroll-margin-top: 75px !important; /* Match navbar height exactly */
    }

    .about::before {
        z-index: -1 !important;
        height: 100% !important; /* Prevent background from extending */
        overflow: hidden !important;
    }

    .about-section-header {
        padding: 22px 18px 20px;
        gap: 12px;
        background: rgba(7, 15, 30, 0.9);
        max-width: 520px;
        margin: 0 auto;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px 24px 0 0;
        box-shadow: 0 16px 38px rgba(5, 9, 18, 0.4);
        margin-bottom: 0;
    }

    .about-title {
        font-size: clamp(1.7rem, 7vw, 2.1rem);
        left: 0;
    }

    .about-section-tag {
        color: rgba(255, 255, 255, 0.95);
    }

    .about-lede {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 0;
    }

    .about-left {
        padding: 22px 18px 26px;
        gap: 16px;
        border-radius: 0 0 24px 24px;
        background: rgba(7, 15, 30, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-top: none;
        box-shadow: 0 16px 38px rgba(5, 9, 18, 0.4);
    }

    .about-gallery-main {
        width: min(260px, 96vw);
        border-radius: 22px;
    }

    .about-gallery-strip {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .about-photo-showcase {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-showcase-caption {
        font-size: 0.6rem !important;
        left: 50% !important;
        right: auto !important;
        bottom: 8px !important;
        padding: 5px 10px !important;
        transform: translateX(-50%) !important;
        text-align: center !important;
        position: absolute !important;
        z-index: 2 !important;
        margin: 0 !important;
        width: auto !important;
        max-width: none !important;
        white-space: nowrap !important;
        letter-spacing: 0.2px !important;
        line-height: 1.2 !important;
    }

    /* Services Section */
    .services {
        padding: 50px 0 120px 0 !important; /* Reduced top padding */
        position: relative !important;
        z-index: 1 !important; /* Lower than buttons */
        overflow: visible !important;
        scroll-margin-top: 75px !important; /* Match navbar height exactly */
    }

    .section-header {
        padding: 0 12px;
        margin-bottom: 35px;
    }

    .section-title {
        font-size: clamp(1.7rem, 8vw, 2rem);
    }

    .service-category {
        padding: 0 12px;
        margin-bottom: 40px;
    }

    .service-cards-grid {
        gap: 15px;
    }

    .service-card-content {
        padding: 18px;
    }

    .service-card-title {
        font-size: 18px;
    }

    .service-card-description {
        font-size: 13px;
    }

    /* Gallery Section */
    .gallery {
        padding: 50px 0 120px 0 !important; /* Reduced top padding */
        position: relative !important;
        z-index: 1 !important; /* Lower than buttons */
        overflow: visible !important;
        scroll-margin-top: 75px !important; /* Match navbar height exactly */
        display: block !important;
        visibility: visible !important;
        background: white !important;
        min-height: 400px !important;
    }

    .gallery .container {
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .gallery .section-header {
        display: block !important;
        visibility: visible !important;
        padding: 0 12px 30px 12px !important;
        text-align: center !important;
    }

    .gallery-filters {
        padding: 0 12px;
        gap: 5px;
        display: none !important;
    }

    .filter-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .gallery-grid {
        display: flex !important;
        flex-direction: column !important;
        visibility: visible !important;
        column-count: auto !important;
        column-gap: 0 !important;
        width: 100% !important;
        padding: 0 12px !important;
        min-height: 300px !important;
        gap: 12px !important;
    }

    .gallery-item {
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
        background: #fafafa !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06) !important;
        opacity: 1 !important;
        transform: none !important;
        break-inside: avoid !important;
        page-break-inside: avoid !important;
    }

    .gallery-image-wrapper {
        position: relative !important;
        width: 100% !important;
        padding-top: 0 !important;
        background: #fafafa !important;
        display: block !important;
        visibility: visible !important;
        min-height: 200px !important;
    }

    .gallery-item img {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: #fafafa !important;
    }

    /* Contact Section */
    .contact {
        padding: 50px 0 100px 0 !important;
        padding-bottom: calc(130px + env(safe-area-inset-bottom, 0px)) !important;
        position: relative !important;
        z-index: 1 !important; /* Lower than buttons */
        overflow: visible !important;
        scroll-margin-top: 75px !important; /* Match navbar height exactly */
    }

    .contact .container {
        padding: 0 12px !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .contact .section-header {
        text-align: center !important;
        margin: 0 auto 30px !important;
        padding: 0 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .contact .section-title {
        text-align: center !important;
        margin: 0 auto 12px !important;
        width: 100% !important;
    }

    .contact .section-subtitle {
        text-align: center !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .contact-grid {
        padding: 0 !important;
        gap: 20px !important;
        margin: 30px auto 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        align-items: stretch !important;
        box-sizing: border-box !important;
    }

    .contact-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .contact-form-card,
    .contact-info-card {
        width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 25px 18px 60px !important;
        margin-bottom: 30px !important;
    }

    .form-header,
    .contact-info-header {
        text-align: center !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .form-icon-wrapper,
    .info-icon-wrapper {
        width: 55px !important;
        height: 55px !important;
        margin: 0 auto 15px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .form-icon-wrapper svg,
    .info-icon-wrapper svg {
        width: 28px !important;
        height: 28px !important;
    }

    .contact-form-title,
    .contact-info-title {
        font-size: 22px !important;
        text-align: center !important;
        margin: 0 auto 8px !important;
        width: 100% !important;
    }

    .contact-form-subtitle {
        font-size: 13px !important;
        text-align: center !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .contact-form,
    .contact-items-list {
        width: 100% !important;
        margin: 0 auto !important;
        text-align: left !important;
    }

    .form-group {
        width: 100% !important;
        margin: 0 auto 18px !important;
        text-align: left !important;
    }

    .form-label {
        text-align: left !important;
        display: block !important;
        width: 100% !important;
    }

    .form-group input,
    .form-group textarea {
        width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }

    .submit-btn {
        width: 100% !important;
        margin: 20px auto 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .contact-item-modern {
        padding: 14px 12px !important;
        gap: 12px !important;
        overflow: visible !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .contact-icon-modern {
        width: 45px !important;
        height: 45px !important;
        flex-shrink: 0 !important;
        min-width: 45px !important;
    }

    .contact-icon-modern svg {
        width: 24px !important;
        height: 24px !important;
    }

    .contact-text-modern {
        flex: 1 !important;
        min-width: 0 !important;
        overflow: visible !important;
        padding-right: 0 !important;
    }

    .contact-value-modern {
        font-size: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        hyphens: auto !important;
        line-height: 1.4 !important;
        max-width: 100% !important;
    }

    .contact-label-modern {
        font-size: 12px !important;
        margin-bottom: 4px !important;
    }

    .contact-arrow {
        display: none !important;
        flex-shrink: 0 !important;
    }

    .map-container {
        height: 220px;
    }

    /* Footer */
    .footer {
        padding: 35px 0 25px !important; /* Reduced bottom padding for better spacing */
        position: relative !important;
        z-index: 1 !important; /* Lower than buttons */
        overflow: visible !important;
    }

    .footer-grid {
        gap: 18px;
        padding: 0 12px;
        margin-bottom: 10px;
    }

    .footer-logo-image {
        width: 40px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-brand p {
        font-size: 12px;
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links h4,
    .footer-address h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
        text-align: center;
    }

    .footer-links ul li {
        font-size: 12px;
    }

    .footer-links ul li a {
        text-align: center;
    }

    .footer-address {
        text-align: center;
    }

    .footer-address p {
        font-size: 12px;
        text-align: center;
    }

    .footer-bottom {
        padding: 12px 12px 0;
        font-size: 11px;
        gap: 6px;
        margin-top: 0;
    }

    /* Contact Floating Buttons - MUST BE ON TOP - MAXIMUM Z-INDEX */
    .hero-contact-buttons {
        bottom: 18px !important;
        padding: 0 12px !important;
        align-items: flex-end !important;
        z-index: 2147483647 !important; /* Maximum z-index */
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        pointer-events: none !important;
        display: flex !important;
        justify-content: space-between !important; /* Buttons in corners */
        transform: translateZ(0) !important; /* Force hardware acceleration */
        isolation: isolate !important; /* Create new stacking context */
        overflow: visible !important; /* Ensure buttons are not clipped */
    }

    .whatsapp-contact-wrapper {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        position: relative !important;
        z-index: 2147483647 !important;
        pointer-events: all !important;
        transform: translateZ(0) !important;
    }

    .phone-contact-wrapper {
        display: flex !important;
        align-items: center !important;
        position: relative !important;
        z-index: 2147483647 !important;
        pointer-events: all !important;
        transform: translateZ(0) !important;
    }

    .left-contact-buttons {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 14px !important;
        position: relative !important;
        z-index: 2147483647 !important;
        pointer-events: all !important;
        transform: translateZ(0) !important;
        align-self: flex-end !important;
    }

    .left-contact-buttons .phone-btn {
        margin-right: 20px !important;
    }

    /* Position orange box to the left of WhatsApp button */
    .phone-contact-label {
        padding: 7px 12px !important;
        font-size: 8px !important;
        z-index: 2147483647 !important;
        display: flex !important;
        pointer-events: all !important;
        opacity: 1 !important; /* Show immediately on mobile */
        visibility: visible !important;
        gap: 2px !important;
        position: relative !important;
        margin: 0 !important;
        transform: translateX(0) !important; /* No transform on mobile */
        will-change: transform, opacity !important;
    }

    body.scrolled .phone-contact-label {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }

    /* Show orange label immediately on mobile */
    .phone-contact-label {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }

    .phone-contact-label .contact-label-text {
        font-size: 7px;
        letter-spacing: 0.5px;
        margin-bottom: 1px;
        padding-bottom: 2px;
    }

    .phone-contact-label .contact-phone-number {
        font-size: 11px;
    }

    .contact-float-btn {
        align-self: flex-end !important;
        width: 52px !important;
        height: 52px !important;
        z-index: 2147483647 !important;
        position: relative !important;
        pointer-events: all !important;
        display: flex !important;
        transform: translateZ(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        flex-shrink: 0 !important;
    }

    .contact-float-btn svg {
        width: 22px !important;
        height: 22px !important;
    }

    /* Ensure WhatsApp button is visible */
    .whatsapp-contact-wrapper .whatsapp-btn {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .whatsapp-contact-wrapper {
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
        position: relative !important;
        z-index: 2147483647 !important;
        pointer-events: all !important;
        transform: translateZ(0) !important;
    }

    /* Modal */
    .modal.active {
        padding: 15px 12px;
    }

    .modal-content {
        margin: 15px auto;
        border-radius: 12px;
    }

    .modal-content h2 {
        font-size: 20px;
        padding: 25px 20px 15px;
    }

    .modal-body {
        padding: 15px 20px 25px;
        max-height: calc(100vh - 120px);
    }

    .modal-body h3 {
        font-size: 16px;
        margin-top: 18px;
    }

    .modal-body p {
        font-size: 13px;
        line-height: 1.6;
    }

    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 30px;
        height: 30px;
    }

    .gallery-hover-preview img {
        max-width: 96vw;
        max-height: calc(100vh - 130px);
    }
}

/* ============================================
   LANDSCAPE ORIENTATION FIXES
   ============================================ */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 70px;
    }

    .hero-wrapper {
        padding: 30px 20px 40px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: clamp(1rem, 3vw, 1.1rem);
        margin-bottom: 20px;
    }

    .hero-buttons {
        margin-bottom: 20px;
        gap: 10px;
    }

    .hero-service-tabs {
        margin-top: 20px;
        margin-bottom: 20px;
        gap: 10px;
    }

    .hero-stats {
        margin-top: 15px;
        gap: 15px;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* ============================================
   VERY SMALL SCREENS (375px and below)
   ============================================ */
@media (max-width: 375px) {
    .hero-contact-buttons {
        padding: 0 10px !important;
        bottom: 15px !important;
    }

    .left-contact-buttons {
        gap: 12px !important;
    }

    .left-contact-buttons .phone-btn {
        margin-right: 18px !important;
    }

    .contact-float-btn {
        width: 50px !important;
        height: 50px !important;
    }

    .contact-float-btn svg {
        width: 20px !important;
        height: 20px !important;
    }

    .whatsapp-contact-wrapper {
        gap: 8px !important;
    }

    .phone-contact-label {
        padding: 6px 10px !important;
        font-size: 7px !important;
    }

    .phone-contact-label .contact-label-text {
        font-size: 6px !important;
    }

    .phone-contact-label .contact-phone-number {
        font-size: 10px !important;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar,
    .hero-contact-buttons,
    .scroll-indicator {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 20px 0;
    }

    .section-title {
        page-break-after: avoid;
    }
}
