/* =========================================================
   INDUSTRIAL REPAIR PAGE
   NAVBAR + FOOTER CSS REMOVED
   CLEAN + RESPONSIVE CSS
========================================================= */


/* =========================================================
   GOOGLE FONT
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --primary: #18b8ff;
    --secondary: #0d2237;
    --dark: #071526;
    --card: #0c1d31;
    --white: #ffffff;
    --text: #cfd8e3;
    --border: rgba(255, 255, 255, 0.08);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

section {
    width: 100%;
    padding: 100px 0;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================================
   BUTTON
========================================================= */

.btn {
    display: inline-block;
    padding: 16px 34px;
    background: linear-gradient(90deg, #18b8ff, #1b6fff);
    color: #ffffff;
    border-radius: 40px;
    font-weight: 600;
    transition: transform 0.35s ease,
                box-shadow 0.35s ease;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(24, 184, 255, 0.35);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    padding-top: 170px;
    background:
        linear-gradient(
            rgba(5, 20, 35, 0.85),
            rgba(5, 20, 35, 0.92)
        ),
        url(images/hero-bg.jpg);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}

.hero-text {
    min-width: 0;
}

.hero-text span {
    display: inline-block;
    color: var(--primary);
    letter-spacing: 8px;
    font-size: 15px;
    font-weight: 600;
}

.hero-text h1 {
    font-size: clamp(42px, 5vw, 70px);
    margin: 20px 0;
    line-height: 1.1;
    word-wrap: break-word;
}

.hero-text p {
    max-width: 600px;
    margin-bottom: 35px;
    color: var(--text);
    line-height: 2;
    font-size: 17px;
}

.hero-image {
    position: relative;
    min-width: 0;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: 25px;
    background: linear-gradient(45deg, #18b8ff, #005eff);
    z-index: -1;
    filter: blur(60px);
    opacity: 0.25;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.title {
    text-align: center;
    margin-bottom: 70px;
}

.title span {
    display: inline-block;
    color: var(--primary);
    letter-spacing: 6px;
    font-size: 15px;
    font-weight: 600;
}

.title h2 {
    margin-top: 15px;
    font-size: clamp(32px, 4vw, 42px);
    line-height: 1.2;
}


/* =========================================================
   REPAIR SECTION
========================================================= */

.repair {
    background: #09192c;
}

.repair-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}

.repair-image {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.repair-image img {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.repair-image:hover img {
    transform: scale(1.08);
}

.repair-content {
    min-width: 0;
}

.repair-content h2 {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.2;
    margin-bottom: 15px;
}

.repair-content h3 {
    color: var(--primary);
    font-size: clamp(20px, 2.5vw, 24px);
    line-height: 1.5;
    margin-bottom: 25px;
}

.repair-content p {
    color: var(--text);
    line-height: 2;
    margin-bottom: 35px;
    font-size: 16px;
}

.repair-content ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.repair-content li {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
}

.repair-content li i {
    color: var(--primary);
    margin-right: 10px;
}


/* =========================================================
   PROCESS
========================================================= */

.process {
    background: var(--dark);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.step {
    position: relative;
    overflow: hidden;
    padding: 45px 30px;
    background: var(--card);
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 20px;
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.step::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    top: -120px;
    right: -120px;
    background:
        radial-gradient(
            circle,
            rgba(24, 184, 255, 0.25),
            transparent 70%
        );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 45px rgba(0, 170, 255, 0.2);
}

.step:hover::before {
    opacity: 1;
}

.step i {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 55px;
}

.step h3 {
    position: relative;
    z-index: 1;
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 18px;
}

.step p {
    position: relative;
    z-index: 1;
    color: var(--text);
    line-height: 1.8;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery {
    background: var(--dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
}

.gallery-grid img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
    cursor: pointer;
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.gallery-grid img:hover {
    transform: scale(1.06);
    box-shadow: 0 20px 50px rgba(0, 170, 255, 0.25);
}


/* =========================================================
   FLOAT ANIMATION
========================================================= */

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}


/* =========================================================
   FADE UP ANIMATION
========================================================= */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.hero-image,
.step,
.gallery-grid img {
    animation: fadeUp 0.9s ease both;
}


/* =========================================================
   COUNTER
========================================================= */

.counter {
    background: #09192c;
    padding: 80px 0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.stats > div {
    padding: 45px 25px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: center;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.stats > div:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 45px rgba(24, 184, 255, 0.18);
}

.stats h2 {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1;
    font-weight: 700;
}

.stats p {
    color: var(--text);
    font-size: 18px;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    background:
        linear-gradient(
            rgba(5, 20, 35, 0.94),
            rgba(5, 20, 35, 0.94)
        ),
        url(images/cta-bg.jpg);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.cta h2 {
    margin-bottom: 20px;
    font-size: clamp(30px, 5vw, 54px);
    line-height: 1.2;
}

.cta p {
    max-width: 750px;
    margin: 0 auto 40px;
    color: var(--text);
    line-height: 2;
    font-size: 18px;
}

.cta .btn {
    font-size: 18px;
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #071526;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 20px;
}


/* =========================================================
   RESPONSIVE
   ONE RESPONSIVE BLOCK
========================================================= */

@media (max-width: 1100px) {

    section {
        padding: 80px 0;
    }

    .container {
        width: 92%;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-grid,
    .repair-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        max-width: 850px;
        width: 100%;
        margin: 0 auto;
    }

    .repair-image {
        max-width: 850px;
        margin: 0 auto;
    }

    .repair-content {
        text-align: left;
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 700px) {

    section {
        padding: 65px 0;
    }

    .container {
        width: 92%;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-grid,
    .repair-grid {
        gap: 35px;
    }

    .hero-text span {
        letter-spacing: 4px;
        font-size: 13px;
    }

    .hero-text h1 {
        font-size: clamp(38px, 10vw, 52px);
    }

    .hero-text p {
        font-size: 15px;
        line-height: 1.8;
    }

    .hero-image img {
        max-height: 450px;
    }

    .title {
        margin-bottom: 45px;
    }

    .title span {
        letter-spacing: 4px;
        font-size: 13px;
    }

    .title h2 {
        font-size: 32px;
    }

    .repair-content h2 {
        font-size: 34px;
    }

    .repair-content h3 {
        font-size: 21px;
    }

    .repair-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .repair-content ul {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .repair-content li {
        font-size: 15px;
    }

    .process-grid,
    .gallery-grid,
    .stats {
        grid-template-columns: 1fr;
    }

    .step {
        padding: 35px 25px;
    }

    .step i {
        font-size: 48px;
    }

    .step h3 {
        font-size: 23px;
    }

    .gallery-grid {
        gap: 18px;
    }

    .gallery-grid img {
        height: 280px;
    }

    .stats {
        gap: 18px;
    }

    .stats > div {
        padding: 35px 20px;
    }

    .stats h2 {
        font-size: 44px;
    }

    .stats p {
        font-size: 16px;
    }

    .cta h2 {
        font-size: 32px;
    }

    .cta p {
        font-size: 16px;
        line-height: 1.8;
    }

    .btn {
        padding: 14px 28px;
    }
}


@media (max-width: 400px) {

    section {
        padding: 55px 0;
    }

    .container {
        width: 94%;
    }

    .hero {
        padding-top: 105px;
    }

    .hero-text span {
        letter-spacing: 2px;
        font-size: 12px;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .hero-image img {
        border-radius: 15px;
    }

    .title h2 {
        font-size: 28px;
    }

    .repair-content h2 {
        font-size: 29px;
    }

    .repair-content h3 {
        font-size: 19px;
    }

    .gallery-grid img {
        height: 230px;
        border-radius: 14px;
    }

    .stats h2 {
        font-size: 38px;
    }

    .cta h2 {
        font-size: 28px;
    }

    .cta p {
        font-size: 14px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}


/* =========================================================
   REDUCED MOTION
   Better browser/accessibility support
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}