/* ===== VARIABLES & RESET ===== */
:root {
    --red: #D32F2F;
    --dark: #111111;
    --grey-card: #DCDCDC;
    --white: #ffffff;
    --text-main: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: scroll;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    color: var(--text-main);
    line-height: 1.6;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; }
section, footer { max-width: 100vw; overflow: hidden; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-white { color: var(--white); }
.mt-4 { margin-top: 16px; }

/* ===== BUTTONS ===== */
.btn-red {
    background: var(--red);
    color: white;
    padding: 16px 40px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: 0.3s;
}
.btn-red:hover { background: black; }
.btn-red.lg { padding: 18px 45px; font-size: 14px; }

.btn-white {
    background-color: white;
    color: var(--red);
    padding: 20px 56px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}
.btn-white:hover { background-color: #000; color: white; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
}

.logo img { height: 45px; }

.nav-links { display: flex; gap: 35px; align-items: center; }
.nav-links a { font-size: 12px; font-weight: 700; letter-spacing: 1px; }
.nav-links a:hover { color: var(--red); }

.header-right { display: flex; align-items: center; gap: 20px; }
.phone-info a { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 18px; }
.phone-icon {
    background: var(--red);
    color: white;
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--red);
    cursor: pointer;
    z-index: 1001;
}
.mobile-toggle i { transition: transform 0.3s ease; }
.mobile-toggle.active i { transform: rotate(180deg); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
}
.hero-content {
    width: 50%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10%;
    padding-right: 5%;
}
.hero-image {
    width: 50%;
    position: relative;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    background: var(--red);
    color: white;
    padding: 5px 15px;
    font-size: 11px;
    font-weight: 400;
    width: fit-content;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

h1 {
    font-size: clamp(36px, 5vw, 70px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-content p {
    font-size: clamp(14px, 1.5vw, 18px);
    color: #555;
    margin-bottom: 40px;
    max-width: 450px;
}

/* ===== ABOUT DARK ===== */
.about-dark {
    background: var(--dark);
    color: white;
    padding: 100px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.image-overlap { position: relative; }
.img-main { width: 85%; aspect-ratio: 4/5; object-fit: cover; }
.img-sub {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 55%;
    aspect-ratio: 1/1;
    border: 10px solid var(--dark);
    object-fit: cover;
}

.badge-gradient {
    background: linear-gradient(to right, var(--red), transparent);
    color: white;
    padding: 8px 24px;
    display: inline-block;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

h2 {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: white;
    text-align: center;
}
.section-title { margin-bottom: 60px; }

.badge-line {
    background: linear-gradient(to right, var(--red), transparent);
    display: inline-block;
    color: var(--white);
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    padding: 0 40px;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--grey-card);
    padding: 40px 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: 0.4s;
    border-bottom: 4px solid transparent;
    cursor: pointer;
}
.service-card:hover {
    background: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--red);
    transform: translateY(-10px);
}

.icon-circle {
    background: var(--red);
    color: white;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 30px;
}

.service-card h3 { font-size: 18px; font-weight: 900; text-transform: uppercase; margin-bottom: 15px; }
.service-card p { font-size: 14px; color: #4b5563; font-weight: 500; margin-bottom: 25px; }

.learn-more {
    font-size: 11px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.learn-more i { color: var(--red); transition: 0.3s; }
.learn-more:hover i { transform: translateX(8px); }

/* ===== SPLIT SECTION ===== */
.split-section { display: flex; min-height: 650px; }
.split-image { width: 50%; position: relative; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.blue-line {
    position: absolute;
    top: 0; right: 0;
    width: 6px; height: 100%;
    background-color: #3b82f6;
}

.split-content {
    width: 50%;
    background-color: var(--red);
    color: white;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-wrapper-left { margin-bottom: 40px; }
.badge-gradient-white {
    background: linear-gradient(to right, rgba(255,255,255,0.2), transparent);
    border-left: 4px solid white;
    padding: 8px 24px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 4px;
}

.title-split {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 40px;
    line-height: 1;
}
.text-white-80 { opacity: 0.8; }
.desc-split {
    font-size: 16px;
    margin-bottom: 48px;
    opacity: 0.9;
    max-width: 500px;
}

/* ===== PROCESS SECTION ===== */
.process-section { padding: 96px 0; background-color: white; }

.badge-wrapper { display: flex; justify-content: center; margin-bottom: 32px; }
.badge-line-red {
    border-top: 1px solid #fecaca;
    border-bottom: 1px solid #fecaca;
    color: var(--red);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 4px 32px;
}

.title-main {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-top: 80px;
    position: relative;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
}

.step-icon {
    background-color: var(--red);
    color: white;
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 32px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.process-step h3 { font-size: 18px; font-weight: 900; margin-bottom: 16px; }
.process-step p { font-size: 13px; color: #6b7280; max-width: 180px; }

/* Dotted line connecting process steps */
.process-grid::after {
    content: "";
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 2px;
    border-top: 2px dashed #fca5a5;
    z-index: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 96px 0; background-color: #F2F2F2; }

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.testi-card {
    background-color: var(--grey-card);
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: 0.5s;
}
.testi-card:hover {
    background-color: white;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.quote-icon {
    position: absolute;
    top: 24px; right: 24px;
    font-size: 50px;
    color: rgba(211, 47, 47, 0.1);
}

.avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    border: 4px solid white;
    margin-bottom: 24px;
}

.stars { color: #f97316; font-size: 14px; margin-bottom: 16px; }
.testi-text { font-size: 13px; font-weight: 500; color: #374151; font-style: italic; margin-bottom: 32px; }

.testi-footer h4 { font-size: 14px; font-weight: 900; margin-bottom: 4px; }
.testi-footer span { font-size: 10px; font-weight: 700; color: var(--red); letter-spacing: 2px; }

.carousel-btns { display: flex; justify-content: flex-end; gap: 12px; margin-top: 48px; }
.carousel-btns button {
    width: 48px; height: 48px;
    border: 1px solid #d1d5db;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
}
.carousel-btns button.active { background-color: var(--red); color: white; border-color: var(--red); }
.carousel-btns button:hover:not(.active) { background-color: var(--red); color: white; }

/* ===== CONTACT SECTION ===== */
.contact-section {
    background-color: var(--dark);
    color: #ffffff;
    padding: 80px 24px;
}

.contact-header {
    text-align: center;
    margin-bottom: 48px;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.input-group {
    position: relative;
    width: 100%;
}

.icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: white;
    pointer-events: none;
}
.text-gray { color: #6b7280 !important; }

input, select, textarea {
    width: 100%;
    background-color: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 12px 16px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--red); }

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
textarea { resize: none; }

.full-input { grid-column: 1 / -1; }

.submit-btn {
    width: 100%;
    background-color: var(--red);
    color: white;
    border: none;
    padding: 16px;
    font-size: 14px;
    font-weight: 900;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
}
.submit-btn:hover { background-color: #000; }

.footer-copyright {
    text-align: center;
    color: #4b5563;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 48px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 20px;
    text-align: center;
    background: white;
    border-top: 1px solid #eee;
}
.footer-logo { height: 80px; margin-bottom: 40px; }
.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 2px;
    flex-wrap: wrap;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}
.social-icons a {
    width: 40px; height: 40px;
    border: 1px solid var(--red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
}
.social-icons a:hover { background: var(--red); color: white; }

/* ===== PAGE BANNER (About, etc.) ===== */
.page-banner {
    background: var(--dark);
    color: white;
    padding: 160px 0 60px;
    text-align: center;
}
.page-banner h1 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 15px;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--red); }
.breadcrumb a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 9px;
    margin-left: 10px;
    color: rgba(255,255,255,0.3);
}

/* ===== ABOUT PAGE CONTENT ===== */
.about-page-content {
    background: white;
    padding: 80px 0;
}
.about-block {
    margin-bottom: 50px;
}
.about-block:last-child {
    margin-bottom: 0;
}
.about-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
}
.about-block h2 {
    margin-bottom: 30px;
}
.about-services-grid {
    margin-bottom: 20px;
}
.about-cta {
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.about-cta p {
    margin-bottom: 25px;
}
.cta-phone {
    font-weight: 900;
}

/* ===== CONTACT PAGE ===== */
.contact-info-section {
    padding: 80px 0;
    background: white;
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.contact-info-card {
    background: #f9f9f9;
    padding: 40px 30px;
    text-align: center;
    border-bottom: 4px solid transparent;
    transition: 0.4s;
    min-width: 0;
    overflow: hidden;
}
.contact-info-card:hover {
    background: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--red);
    transform: translateY(-6px);
}
.contact-info-icon {
    background: var(--red);
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 24px;
}
.contact-info-card h3 {
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.contact-info-card p {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
}
.contact-info-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
    word-break: break-all;
    overflow-wrap: break-word;
}
a.contact-info-link:hover {
    color: var(--dark);
}
.contact-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}

/* Active nav link */
.nav-active {
    color: var(--red) !important;
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.nav-dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.3s ease;
}
.nav-dropdown.open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-top: 3px solid var(--red);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown-menu li {
    padding: 0;
    border-bottom: none;
}
.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-main);
    transition: 0.3s;
}
.nav-dropdown-menu a:hover {
    background: #f5f5f5;
    color: var(--red);
}

/* ===== SERVICE PAGE SECTIONS ===== */
.service-intro {
    padding: 80px 0;
    background: white;
}
.service-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin-bottom: 20px;
}
.service-intro p:last-child {
    margin-bottom: 0;
}

.service-why {
    padding: 80px 0;
    background: #f5f5f5;
}
.service-why h2 {
    margin-bottom: 25px;
}
.service-why p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin-bottom: 20px;
}
.service-why p:last-child {
    margin-bottom: 0;
}

.service-process {
    padding: 80px 0;
    background: white;
}
.service-process h2 {
    margin-bottom: 25px;
}
.service-process p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin-bottom: 20px;
}
.service-process p:last-child {
    margin-bottom: 0;
}

.service-cta {
    padding: 60px 0;
    background: white;
    text-align: center;
}
.service-cta h2 {
    margin-bottom: 15px;
}
.service-cta p {
    font-size: 16px;
    color: #555;
    margin-bottom: 0;
}
.service-cta .text-red {
    font-weight: 900;
}

.service-equipment {
    padding: 80px 0;
    background: white;
}
.service-equipment h2 {
    margin-bottom: 20px;
}
.service-equipment p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin-bottom: 20px;
}
.service-equipment h3 {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 10px;
}
.equipment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.equipment-list li {
    font-size: 16px;
    color: #555;
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    border-bottom: 1px solid #eee;
}
.equipment-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--red);
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 14px;
}
.equipment-list li:last-child {
    border-bottom: none;
}

.table-sizes {
    margin: 20px 0;
}
.table-sizes h4 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--text-main);
}
.table-sizes ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 15px;
}
.table-sizes ul li {
    font-size: 15px;
    color: #555;
    padding: 4px 0;
    position: relative;
    padding-left: 16px;
}
.table-sizes ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 11px;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ----- TABLET LANDSCAPE (max-width: 1024px) ----- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .process-grid::after { display: none; }

    .split-content {
        padding: 50px 40px;
    }

    .hero-content {
        padding-left: 5%;
        padding-right: 5%;
    }
}

/* ----- TABLET PORTRAIT (max-width: 992px) ----- */
@media (max-width: 992px) {
    /* Nav */
    .phone-info { display: none; }
    .desktop-btn { display: none; }

    .mobile-toggle { display: block; }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 10px 20px;
        text-align: center;
        border-bottom: 1px solid #eee;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: 0;
    }
    .nav-links.active { display: flex; }
    .nav-links > li { padding: 12px 0; border-bottom: 1px solid #f5f5f5; }
    .nav-links > li:last-child { border-bottom: none; }

    /* Mobile dropdown */
    .nav-dropdown {
        text-align: center;
    }
    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        min-width: auto;
        background: #fafafa;
        padding: 0;
        margin-top: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        text-align: center;
    }
    .nav-dropdown:hover .nav-dropdown-menu {
        display: none;
    }
    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }
    .nav-dropdown-menu li {
        padding: 0;
        border-bottom: none;
    }
    .nav-dropdown-menu a {
        padding: 8px 20px;
        font-size: 11px;
    }

    /* Hide desktop line breaks on mobile */
    .desktop-br { display: none; }

    /* Hero */
    .hero {
        flex-direction: column;
        min-height: auto;
    }
    .hero-content, .hero-image { width: 100%; }
    .hero-content {
        padding: 120px 20px 60px;
        text-align: center;
        align-items: center;
    }
    .hero-image { max-height: 40vh; overflow: hidden; }
    .hero-image img { height: 100%; }

    /* About */
    .grid-2 { grid-template-columns: 1fr; }
    .about-dark { padding: 60px 0; }
    .about-text { text-align: center; }
    .about-text p { text-align: center; }
    .image-overlap { margin-bottom: 40px; }
    .img-main { width: 100%; max-height: 350px; object-fit: cover; }
    .img-sub {
        position: relative;
        bottom: auto; right: auto;
        width: 45%;
        max-height: 180px;
        margin-top: -30px;
        margin-left: auto;
        margin-right: 10%;
    }

    /* Split */
    .split-section {
        flex-direction: column;
        min-height: auto;
    }
    .split-image, .split-content { width: 100%; }
    .split-image { max-height: 35vh; overflow: hidden; }
    .split-content { padding: 50px 20px; text-align: center; }

    /* Disable hover translateY on touch/mobile */
    .service-card:hover { transform: none; }

    /* Process */
    .process-section { padding: 60px 0; }

    /* Testimonials */
    .testimonials-section { padding: 60px 0; }
    .quote-icon { font-size: 36px; top: 16px; right: 16px; }
    .carousel-btns { justify-content: center; }

    /* Contact */
    .contact-section { padding: 60px 20px; }

    /* Page banner */
    .page-banner { padding: 130px 0 40px; }

    /* Service page sections */
    .service-intro,
    .service-why,
    .service-process,
    .service-cta,
    .service-equipment { padding: 40px 20px; }

    /* Footer */
    .footer { padding: 40px 20px; }
    .footer-links { gap: 20px; }
}

/* ----- MOBILE (max-width: 768px) ----- */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-section {
        padding: 50px 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .input-grid {
        grid-template-columns: 1fr;
    }

    .full-input {
        grid-column: 1;
    }

    .services { padding: 60px 0; }
    .section-title { margin-bottom: 40px; }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* ----- SMALL MOBILE (max-width: 480px) ----- */
@media (max-width: 480px) {
    .hero-content {
        padding: 100px 15px 40px;
    }
    .hero-image { max-height: 30vh; }

    .img-main { max-height: 260px; }
    .img-sub { width: 40%; max-height: 140px; }

    .split-image { max-height: 25vh; }

    .badge { font-size: 9px; padding: 4px 10px; }
    .btn-red { padding: 12px 24px; font-size: 11px; }
    .btn-red.lg { padding: 14px 30px; font-size: 12px; }
    .btn-white { padding: 14px 30px; font-size: 11px; }

    .service-card { padding: 25px 20px; }
    .testi-card { padding: 25px 20px; }

    .split-content { padding: 40px 15px; }

    .step-icon { width: 60px; height: 60px; font-size: 20px; }

    .footer-logo { height: 50px; margin-bottom: 25px; }

    /* Page banner */
    .page-banner { padding: 110px 0 30px; }
    .page-banner h1 { letter-spacing: -1px; }

    /* Quote icon */
    .quote-icon { font-size: 28px; top: 12px; right: 12px; }

    /* Carousel */
    .carousel-btns button { width: 40px; height: 40px; }
}