/* =========================================================
   GENERAL OVERHAUL GROUP LTD
   Main Website Styles
   ========================================================= */


/* ---------- BASIC RESET ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f5f5f2;
    color: #1d2430;
    line-height: 1.6;
}


/* ---------- REUSABLE LAYOUT ---------- */

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}

.section-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b58a4b;
    margin-bottom: 12px;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading h2,
.intro-content h2,
.about-content h2,
.contact-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    margin-bottom: 18px;
    color: #102030;
}

.section-heading p,
.intro-content p,
.about-content p,
.contact-content p {
    font-size: 17px;
    color: #5f6873;
}


/* ---------- BUTTONS ---------- */

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 4px;
    font-weight: 700;
    transition: 0.25s ease;
}

.btn-primary {
    background-color: #b58a4b;
    color: white;
}

.btn-primary:hover {
    background-color: #9f763d;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.75);
    color: white;
    margin-left: 10px;
}

.btn-secondary:hover {
    background-color: white;
    color: #102030;
}


/* ---------- HEADER ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(10, 22, 35, 0.97);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo h2 {
    color: white;
    font-size: 20px;
    line-height: 1.2;
}

.main-nav {
    display: flex;
    gap: 24px;
}

.main-nav a {
    color: #dce2e7;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
}

.main-nav a:hover {
    color: #b58a4b;
}

.header-phone {
    text-decoration: none;
    color: white;
    border: 1px solid #b58a4b;
    padding: 11px 16px;
    border-radius: 4px;
    font-weight: 700;
}

.header-phone:hover {
    background-color: #b58a4b;
}
.header-facebook {
    text-decoration: none;
    color: white;
    border: 1px solid #b58a4b;
    width: 42px;
    height: 42px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.25s;
}

.header-facebook:hover {
    background-color: #b58a4b;
}

/* ---------- HERO ---------- */

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(6, 17, 29, 0.72), rgba(6, 17, 29, 0.78)),
        url("hero.jpg") center/cover no-repeat;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5, 15, 27, 0.93) 0%,
            rgba(5, 15, 27, 0.72) 48%,
            rgba(5, 15, 27, 0.25) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    margin-left: 5%;
}

.hero-small-title {
    color: #caa66b;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(46px, 5vw, 70px);
    line-height: 1.03;
    margin-bottom: 25px;
    max-width: none;
    width: 950px;
}
.hero-description {
    max-width: 690px;
    font-size: 20px;
    color: #e0e5e9;
    margin-bottom: 32px;
}

.hero-buttons {
    margin-top: 10px;
}

/* ========================================
   DESKTOP HERO PROJECT IMAGE
======================================== */

.hero {
    position: relative;
    overflow: hidden;
}

/* Image on the right */
/* Image on the right */
.hero::after {
    content: "";
    position: absolute;

    top: 0;
    right: 0;

    width: 78%;
    height: 100%;

    background-image: url("images/MainImage1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Actually fade the IMAGE in */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        transparent 8%,
        rgba(0, 0, 0, 0.06) 18%,
        rgba(0, 0, 0, 0.16) 30%,
        rgba(0, 0, 0, 0.34) 43%,
        rgba(0, 0, 0, 0.55) 56%,
        rgba(0, 0, 0, 0.75) 68%,
        rgba(0, 0, 0, 0.92) 80%,
        black 90%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        transparent 8%,
        rgba(0, 0, 0, 0.06) 15%,
        rgba(0, 0, 0, 0.16) 25%,
        rgba(0, 0, 0, 0.34) 38%,
        rgba(0, 0, 0, 0.55) 52%,
        rgba(0, 0, 0, 0.75) 68%,
        rgba(0, 0, 0, 0.92) 80%,
        black 90%
    );

    z-index: 1;
}


/* ========================================
   TABLET + MOBILE
   REMOVE HERO IMAGE COMPLETELY
======================================== */

@media (max-width: 1099px) {

    .hero::after {
        display: none;
    }

    .hero-content {
        width: 100%;
        max-width: 900px;
        margin-left: 0;
        padding: 0 40px;
    }

    .hero h1 {
        width: auto;
        max-width: 850px;
        font-size: clamp(44px, 7vw, 64px);
    }

    .hero-description {
        max-width: 720px;
    }
}
@media (max-width: 650px) {
.hero {
        min-height: auto;
        padding: 70px 0 45px;
    }

    .hero-content {
        width: 100%;
        max-width: none;
        margin-left: 0;
        padding: 0 18px;
    }

    .hero h1 {
        width: 100%;
        max-width: none;
        font-size: clamp(38px, 10vw, 48px);
        line-height: 1.04;
    }

    .hero-small-title {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-description {
        width: 100%;
        max-width: none;
        font-size: 16px;
        line-height: 1.5;
    }

    .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .service-card {
        min-height: 0 !important;
        height: auto !important;
        padding: 28px 22px;
    }
}


/* ---------- INTRO ---------- */

.intro {
    padding: 100px 0;
    background-color: white;
}

.intro-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p + p {
    margin-top: 15px;
}


/* ---------- SERVICES ---------- */

.services {
    padding: 100px 0;
    background-color: #f3f4f2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    background-color: white;
    padding: 32px 28px;
    min-height: 240px;
    border-top: 3px solid #b58a4b;
    box-shadow: 0 8px 26px rgba(15, 28, 40, 0.07);
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(15, 28, 40, 0.12);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #102030;
}

.service-card p {
    color: #69727c;
    font-size: 15px;
}

.services-more {
    text-align: center;
    margin-top: 35px;
    font-weight: 700;
    color: #394551;
}


/* ---------- ABOUT ---------- */

.about {
    padding: 100px 0;
    background-color: #0d1b29;
    color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: center;
}

.about-content h2 {
    color: white;
}

.about-content p {
    color: #c7cfd6;
}

.about-content p + p {
    margin-top: 18px;
}

.about-highlights {
    display: grid;
    gap: 18px;
}

.highlight {
    border: 1px solid rgba(255,255,255,0.14);
    padding: 24px;
    background-color: rgba(255,255,255,0.03);
}

.highlight strong {
    display: block;
    color: #caa66b;
    font-size: 22px;
    margin-bottom: 4px;
}

.highlight span {
    color: #d6dce1;
}


/* ---------- GALLERY ---------- */

.gallery {
    padding: 100px 0;
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    background-color: #f5f6f4;
    box-shadow: 0 8px 26px rgba(15, 28, 40, 0.07);
    overflow: hidden;
    transition: 0.25s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(15, 28, 40, 0.12);
}

.gallery-placeholder {
    height: 250px;
    background-color: #102030;
    color: #caa66b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-caption {
    padding: 24px;
}

.gallery-caption h3 {
    color: #102030;
    font-size: 21px;
    margin-bottom: 10px;
}

.gallery-caption p {
    color: #66717b;
    font-size: 15px;
}
/* ---------- CUSTOMER FEEDBACK ---------- */

.feedback {
    padding: 100px 0;
    background-color: #f3f4f2;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background-color: white;
    padding: 30px;
    border-top: 3px solid #b58a4b;
    box-shadow: 0 8px 28px rgba(15, 28, 40, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 310px;
    transition: 0.25s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(15, 28, 40, 0.13);
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.review-score {
    background-color: #102030;
    color: white;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 4px;
}

.review-source {
    color: #8a929a;
    font-size: 12px;
    text-align: right;
}

.review-card h3 {
    color: #102030;
    font-size: 21px;
    margin-bottom: 15px;
}

.review-text {
    color: #5f6873;
    font-size: 15px;
    line-height: 1.75;
    flex-grow: 1;
}

.review-footer {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid #e2e5e7;
    color: #777f87;
    font-size: 13px;
}

.feedback-link {
    margin-top: 42px;
    text-align: center;
}
/* ---------- PREMIUM AREAS ---------- */

.areas {
    padding: 110px 0;
    background-color: #f7f7f5;
}

.areas .section-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.area-card {
    position: relative;
    background: #ffffff;
    padding: 34px 28px 30px;
    border-radius: 10px;
    border-top: 4px solid #b58a4b;
    box-shadow: 0 10px 30px rgba(15, 28, 40, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(15, 28, 40, 0.13);
}

.area-card h3 {
    font-size: 23px;
    color: #263746;
    margin-bottom: 22px;
}

.area-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-card li {
    padding: 10px 0;
    border-bottom: 1px solid #e8e8e5;
    color: #606a72;
    font-size: 15px;
}

.area-card li:last-child {
    border-bottom: none;
}

.area-card li::before {
    content: "✓";
    color: #b58a4b;
    margin-right: 10px;
    font-weight: 700;
}

.area-card .home-area {
    color: #263746;
    font-weight: 700;
}

.area-card .home-area::after {
    content: "  •  Based here";
    color: #b58a4b;
    font-size: 12px;
    font-weight: 700;
}

.areas-bottom {
    margin-top: 45px;
    text-align: center;
}

.areas-note {
    margin: 0 auto 22px;
    max-width: 650px;
    color: #626c75;
    font-style: normal;
    line-height: 1.7;
}

.areas-bottom .btn {
    min-width: 190px;
}

/* Tablet */
@media (max-width: 1000px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 650px) {
    .areas {
        padding: 75px 0;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .area-card {
        padding: 28px 24px;
    }
}

/* ---------- CONTACT ---------- */

.contact {
    padding: 90px 0;
    background-color: #e9e6df;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.contact-details {
    background-color: #102030;
    color: white;
    padding: 35px;
}

.contact-details p {
    margin-bottom: 15px;
}

.contact-details a {
    color: white;
}

.contact-details .btn {
    margin-top: 14px;
}


/* ---------- FOOTER ---------- */

.site-footer {
    background-color: #08131f;
    color: #b9c1c8;
    padding: 28px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 14px;
}


/* ---------- TABLET ---------- */

@media (max-width: 1000px) {

    .main-nav {
        display: none;
    }

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

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

    .hero {
        min-height: 650px;
    }



/* Feedback section - tablet */
.feedback-grid {
    grid-template-columns: repeat(2, 1fr);
}


/* Gallery section - tablet */
.gallery-grid {
    grid-template-columns: repeat(2, 1fr);
}
}



/* ---------- MOBILE ---------- */

@media (max-width: 650px) {

    .container {
        width: min(92%, 560px);
    }

    .nav-container {
        min-height: 72px;
    }

    .logo h2 {
        font-size: 16px;
        max-width: 190px;
    }

    .header-phone {
        padding: 9px 11px;
        font-size: 13px;
    }

    .hero {
        min-height: 620px;
    }

    .hero-content {
        margin-left: 0;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .services-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }

    .intro,
    .services,
    .about,
    .areas,
    .contact {
        padding: 70px 0;
    }

    /* Feedback section - mobile */
.feedback-grid {
    grid-template-columns: 1fr;
}

.feedback {
    padding: 70px 0;
}

    .footer-content {
        flex-direction: column;
        text-align: center;
    }


    /* Gallery section - mobile */
.gallery-grid {
    grid-template-columns: 1fr;
}

.gallery {
    padding: 70px 0;
}
}
/* ===== GALLERY PHOTO FIX ===== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.gallery-item {
    width: 100%;
    min-width: 0;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #f5f5f5;
}

.gallery-caption {
    padding: 18px 4px 25px;
}

/* Tablet */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Phone */
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: auto;
        max-height: none;
    }
}
.gallery-item {
    background-color: #ffffff;
}

.gallery-item img {
    background-color: #f3f4f2;
    padding: 0;
}

.gallery-caption {
    padding: 16px 0 26px;
}

.gallery-caption h3 {
    margin-top: 0;
    margin-bottom: 10px;
}
.feedback-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.feedback-link .btn {
    min-width: 230px;
    text-align: center;
}

@media (max-width: 650px) {
    .feedback-link {
        flex-direction: column;
    }

    .feedback-link .btn {
        width: 100%;
        max-width: 320px;
    }
}
/* ===== EXTRA PREMIUM AREAS POLISH ===== */

.areas {
    position: relative;
    overflow: hidden;
}

.areas::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(181, 138, 75, 0.10) 0%,
        rgba(181, 138, 75, 0.03) 45%,
        transparent 72%
    );
    top: -180px;
    right: -140px;
    pointer-events: none;
}

.area-card {
    border: 1px solid rgba(181, 138, 75, 0.14);
    border-top: 4px solid #b58a4b;
}

.area-card h3 {
    position: relative;
    padding-bottom: 14px;
}

.area-card h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 2px;
    background: #b58a4b;
}

.areas-bottom {
    max-width: 760px;
    margin: 55px auto 0;
    padding: 34px;
    background: #102030;
    border-radius: 10px;
    box-shadow: 0 14px 35px rgba(15, 28, 40, 0.12);
}

.areas-bottom .areas-note {
    color: #d8dde1;
    margin-bottom: 22px;
}

.areas-bottom .btn {
    box-shadow: 0 7px 18px rgba(181, 138, 75, 0.25);
}

.area-card:hover h3::after {
    width: 65px;
    transition: width 0.25s ease;
}
/* Premium section divider */

.industrial::before {
    content: "";
    display: block;
    width: 65%;
    max-width: 850px;
    height: 1px;
    margin: 0 auto 75px;

    background: linear-gradient(
        to right,
        transparent,
        rgba(181, 138, 75, 0.55),
        transparent
    );
}
/* Premium gold divider between Building & Industrial */

.industrial-services::before {
    content: "";
    display: block;
    width: 82%;
    max-width: 1100px;
    height: 1px;
    margin: 0 auto 70px;

    background: linear-gradient(
        to right,
        transparent,
        rgba(181, 138, 75, 0.55),
        transparent
    );
}
/* ========================================
   INDUSTRIAL SECTION - FINAL PREMIUM STYLE
======================================== */


/* FEATURED INDUSTRIAL SERVICE */

.industrial-feature {
    background: #102030;
    border: 1px solid rgba(181, 138, 75, 0.35);
    border-top: 3px solid #b58a4b;
    border-radius: 8px;
    padding: 42px 44px;
    margin-bottom: 38px;
    box-shadow: 0 14px 34px rgba(15, 28, 40, 0.14);
}

.industrial-feature-content {
    max-width: 900px;
}

.industrial-label {
    color: #caa66b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    margin-bottom: 14px;
}

.industrial-feature h3 {
    color: #ffffff;
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 18px;
}

.industrial-feature p {
    color: #d6dce1;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 14px;
}

.industrial-feature p:last-child {
    margin-bottom: 0;
}


/* INDUSTRIAL SERVICE CARDS */

.industrial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.industrial-grid .service-card {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    min-height: 220px;

    background: #ffffff;
    padding: 30px 28px;

    border: 1px solid rgba(181, 138, 75, 0.16);
    border-top: 3px solid #b58a4b;
    border-radius: 6px;

    box-shadow: 0 10px 28px rgba(15, 28, 40, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.industrial-grid .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(15, 28, 40, 0.13);
}

.industrial-grid .service-card h3 {
    margin: 0 0 14px;
    color: #102030;
    font-size: 21px;
    line-height: 1.3;
}

.industrial-grid .service-card p {
    margin: 0;
    color: #69727c;
    font-size: 15px;
    line-height: 1.65;
}


/* TABLET */

@media (max-width: 1000px) {

    .industrial-feature {
        padding: 36px 32px;
    }

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


/* MOBILE */

@media (max-width: 650px) {

    .industrial-feature {
        padding: 28px 22px;
        margin-bottom: 28px;
    }

    .industrial-feature h3 {
        font-size: 25px;
    }

    .industrial-feature p {
        font-size: 15px;
    }

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

    .industrial-grid .service-card {
        min-height: auto;
        padding: 26px 22px;
    }
}
/* ========================================
   INDUSTRIAL GRID - FINAL WIDTH FIX
======================================== */

.services-grid.industrial-grid {
    display: grid !important;

    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;

    width: 100% !important;
    max-width: none !important;

    margin-left: 0 !important;
    margin-right: 0 !important;

    justify-content: stretch !important;
}

.services-grid.industrial-grid > .service-card {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;

    box-sizing: border-box;
    min-height: 220px;

    padding: 30px 28px;
}

/* TABLET */
@media (max-width: 1000px) {
    .services-grid.industrial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* MOBILE */
@media (max-width: 650px) {
    .services-grid.industrial-grid {
        grid-template-columns: 1fr !important;
    }
}
/* ========================================
   INDUSTRIAL FEATURE - PREMIUM REFINEMENT
======================================== */

.industrial-feature {
    padding: 36px 42px 34px;
    margin-bottom: 34px;

    background:
        linear-gradient(
            135deg,
            #102030 0%,
            #16283a 100%
        );

    border: 1px solid rgba(181, 138, 75, 0.28);
    border-top: 3px solid #b58a4b;
    border-radius: 8px;

    box-shadow: 0 14px 34px rgba(15, 28, 40, 0.14);
}

.industrial-feature-content {
    max-width: 980px;
}

.industrial-label {
    margin-bottom: 12px;
    color: #caa66b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.industrial-feature h3 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 31px;
    line-height: 1.2;
}

.industrial-feature p {
    margin: 0 0 12px;
    color: #d5dce3;
    font-size: 15.5px;
    line-height: 1.7;
}

.industrial-feature .btn {
    margin-top: 10px;
}


/* TABLET */

@media (max-width: 1000px) {
    .industrial-feature {
        padding: 32px 30px;
    }

    .industrial-feature h3 {
        font-size: 28px;
    }
}


/* MOBILE */

@media (max-width: 650px) {
    .industrial-feature {
        padding: 26px 22px;
        margin-bottom: 26px;
    }

    .industrial-feature h3 {
        font-size: 24px;
    }

    .industrial-feature p {
        font-size: 15px;
    }

}
/* ========================================
   BUILDING + INDUSTRIAL CARDS
   PREMIUM SHARED STYLE
======================================== */

#building .service-card,
#industrial .service-card {
    position: relative;
    overflow: hidden;

    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #fbfbfa 100%
    );

    border: 1px solid rgba(181, 138, 75, 0.14);
    border-top: 3px solid #b58a4b;
    border-radius: 7px;

    box-shadow: 0 8px 24px rgba(15, 28, 40, 0.07);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


/* HOVER */

#building .service-card:hover,
#industrial .service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(181, 138, 75, 0.30);

    box-shadow: 0 16px 34px rgba(15, 28, 40, 0.12);
}


/* PREMIUM GOLD TOP DETAIL */

#building .service-card::before,
#industrial .service-card::before {
    content: "";
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        #b58a4b,
        #d2ad6d,
        #b58a4b
    );

    opacity: 0.7;
    transition: opacity 0.25s ease;
}

#building .service-card:hover::before,
#industrial .service-card:hover::before {
    opacity: 1;
}


/* HEADINGS */

#building .service-card h3,
#industrial .service-card h3 {
    color: #162535;

    font-size: 21px;
    line-height: 1.3;

    margin-bottom: 16px;
}


/* DESCRIPTION TEXT */

#building .service-card p,
#industrial .service-card p {
    color: #68727c;

    font-size: 15px;
    line-height: 1.7;
}


/* MOBILE - NO HOVER MOVEMENT */

@media (max-width: 650px) {

    #building .service-card:hover,
    #industrial .service-card:hover {
        transform: none;
    }
}
/* =========================================
   MOBILE HAMBURGER MENU
========================================= */

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid #b58a4b;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}


/* ---------- PHONE / TABLET ---------- */

@media (max-width: 900px) {

.nav-container {
    position: relative;
    min-height: 72px;
    display: grid;
    grid-template-columns: 1fr 46px 46px;
    grid-template-areas: "logo facebook menu";
    align-items: center;
    column-gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.logo {
    grid-area: logo;
}

.logo h2 {
    font-size: 18px;
    max-width: 210px;
    margin: 0;
}

.header-facebook {
    grid-area: facebook;
    display: flex;
    width: 46px;
    height: 46px;
    margin: 0;
    justify-self: end;
}

.menu-toggle {
    grid-area: menu;
    display: flex;
    margin: 0;
    justify-self: end;
    flex-shrink: 0;
}

.header-phone {
    display: none;
}

    /* Mobile dropdown */
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        display: flex;
        flex-direction: column;
        gap: 0;

        background: rgba(10, 22, 35, 0.99);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(181, 138, 75, 0.45);

        padding: 10px 24px 18px;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;

        z-index: 9999;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-nav a {
        width: 100%;
        padding: 15px 0;
        font-size: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-nav a:last-child {
        border-bottom: none;
    }


    /* Hamburger turns into X */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}
/* Make Industrial service cards more compact */
#industrial .service-card {
    min-height: 0;
    height: auto;
    padding: 24px 26px 22px;
}