﻿:root {
    --text: #111;
    --border: #e6e6e6;
    --red: #d10630;
    --max: 1400px;
}

/* Reset */
* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    padding: 0
}

body {
    font-family: Quicksand, sans-serif;
    color: var(--text);
    background: #fff;
    font-size: 18px;
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

/* Full width site base */
.page {
    max-width: none;
    margin: 0;
    padding: 30px 0;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.topbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255,255,255,.96);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 280ms cubic-bezier(.2,.8,.2,1), background 280ms cubic-bezier(.2,.8,.2,1);
}

    .topbar.is-scrolled {
        box-shadow: 0 10px 24px rgba(0,0,0,.08);
    }

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    transition: padding 320ms cubic-bezier(.2,.8,.2,1);
}

.topbar.is-scrolled .topbar-inner {
    padding: 10px 0;
}

.logo {
    height: 110px;
    width: auto;
    transition: height 320ms cubic-bezier(.2,.8,.2,1), transform 320ms cubic-bezier(.2,.8,.2,1);
}

.topbar.is-scrolled .logo {
    height: 78px;
}

.brand .logo {
    transition: transform 200ms ease, opacity 200ms ease
}

.brand:hover .logo {
    transform: translateY(-1px);
    opacity: .96
}

.menu {
    display: flex;
    gap: 44px;
    align-items: center;
    font-weight: 800;
    letter-spacing: .08em;
    transition: gap 320ms cubic-bezier(.2,.8,.2,1);
}

.topbar.is-scrolled .menu {
    gap: 34px;
}

.menu a {
    color: #111;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    padding-bottom: 6px;
    transition: opacity 160ms ease;
}

    .menu a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: var(--red);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 220ms ease;
        opacity: .9;
    }

    .menu a:hover {
        opacity: .9
    }

        .menu a:hover::after {
            transform: scaleX(1)
        }

    .menu a.active::after {
        transform: scaleX(1)
    }

/* Home hero title */
.home-hero {
    text-align: center;
    padding: 30px 0 10px;
}

    .home-hero h1 {
        margin: 10px 0 10px;
        font-size: 60px;
        font-weight: 500;
        color: var(--red);
    }

    .home-hero p.sub {
        margin: 0 0 18px;
        color: #6a6a6a;
        font-size: 22px;
    }

.cta-btn {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 12px 22px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
}

    .cta-btn:hover {
        opacity: .92
    }

/* FULL-BLEED hero image */
.hero-image {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 22px;
}

    .hero-image img {
        width: 100%;
        height: 520px;
        object-fit: cover;
    }

/* Section title */
.section-title-red {
    text-align: center;
    color: var(--red);
    font-size: 48px;
    font-weight: 300;
    margin: 55px 0 35px;
    line-height: 1.2;
}

/* Features section */
.features {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: start;
}

    .features .left img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

    .features h3 {
        margin: 0 0 10px;
        color: var(--red);
        font-weight: 500;
        font-size: 20px;
    }

    .features p, .features ul {
        color: #6a6a6a;
        font-size: 20px;
        line-height: 1.8;
    }

/* FULL-BLEED Home gallery */
.gallery {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    padding: 0 24px;
}

    .gallery img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        cursor: zoom-in;
        transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
    }

        .gallery img:hover {
            transform: scale(1.02);
            box-shadow: 0 14px 28px rgba(0,0,0,.14);
            filter: saturate(1.05);
        }

/* Footer */
.site-footer {
    padding: 26px 0 40px;
    text-align: center;
}

.footer-inner {
    max-width: 980px;
    margin: 0 auto;
}

.footer-social {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

.in-badge {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a66c2;
    background: #fff;
    text-decoration: none;
}

.footer-company {
    color: var(--red);
    font-weight: 800;
    letter-spacing: .04em;
    margin-top: 4px;
}

.footer-phone {
    color: var(--red);
    margin-top: 14px;
    font-size: 18px;
}

.footer-copy {
    margin-top: 18px;
    color: #9a9a9a;
    font-size: 15px;
}

/* Services (red section) */
.svc-hero {
    background: var(--red);
    padding: 70px 0 65px;
}

.svc-title {
    margin: 0;
    text-align: center;
    color: #fff;
    font-size: 46px;
    font-weight: 300;
}

.svc-underline {
    width: 46px;
    height: 2px;
    background: rgba(255,255,255,.35);
    margin: 18px auto 0;
}

.svc-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 48px;
    align-items: start;
}

.svc-card {
    text-align: center;
    color: #fff;
}

.svc-card-title {
    margin: 0 0 16px;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.25;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    padding: 0;
    background: transparent;
    display: block;
}

.svc-text {
    margin: 0 auto 22px;
    max-width: 340px;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,.95);
    min-height: 110px;
}

.svc-btn {
    display: inline-block;
    background: #fff;
    color: #111;
    padding: 14px 28px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
}

/* Service detail banner + gallery */
.svc-banner {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

    .svc-banner img {
        width: 100%;
        height: 160px;
        object-fit: cover;
    }

.svc-head {
    text-align: center;
    padding: 28px 0 8px;
}

.svc-page-title {
    margin: 0;
    color: var(--red);
    font-size: 44px;
    font-weight: 300;
}

.svc-page-underline {
    width: 46px;
    height: 2px;
    background: #e1e1e1;
    margin: 14px auto 0;
}

.svc-intro {
    max-width: 980px;
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
}

.svc-intro-img img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.svc-intro-text {
    color: #7a7a7a;
    font-size: 18px;
    line-height: 1.9;
}

.svc-gallery {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    padding: 0 24px;
}

    .svc-gallery img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        cursor: zoom-in;
        transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
    }

        .svc-gallery img:hover {
            transform: scale(1.02);
            box-shadow: 0 14px 28px rgba(0,0,0,.14);
            filter: saturate(1.05);
        }

/* News – fill images (no gray/padding) */
.news-block {
    max-width: 980px;
    margin: 25px auto 0;
}

.news-title {
    margin: 22px 0 0;
    text-align: center;
    color: var(--red);
    font-size: 34px;
    font-weight: 300;
}

.news-underline {
    width: 46px;
    height: 2px;
    background: #e1e1e1;
    margin: 14px auto 0;
}

.news-two {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 30px;
}

.news-text p {
    margin: 0;
    color: #7a7a7a;
    font-size: 18px;
    line-height: 1.9;
}

.news-more {
    display: inline-block;
    margin-top: 14px;
    color: var(--red);
    font-weight: 800;
    text-decoration: none;
    font-size: 13px;
}

.news-poster img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    padding: 0;
    background: transparent;
}

.news-adipec {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
}

    .news-adipec img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        padding: 0;
        background: transparent;
    }

.news-training {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 14px;
}

.train-left img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    padding: 0;
    background: transparent;
}

.train-right {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
}

    .train-right img {
        width: 100%;
        height: 203px;
        object-fit: cover;
        padding: 0;
        background: transparent;
    }

/* Contact – simple info + WhatsApp + hours + map */
.contact2-header {
    text-align: center;
    padding: 30px 0 10px;
}

.contact2-title {
    margin: 0;
    color: var(--red);
    font-size: 44px;
    font-weight: 300;
}

.contact2-underline {
    width: 46px;
    height: 2px;
    background: #e1e1e1;
    margin: 14px auto 0;
}

.contact3-single {
    max-width: 980px;
    margin: 30px auto 0;
}

.contact2-h {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.contact2-p {
    margin: 0 0 18px;
    color: #777;
    font-size: 13px;
    line-height: 1.8;
}

.contact2-company {
    margin: 14px 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.contact2-redline {
    margin: 10px 0 12px;
    color: var(--red);
    font-size: 13px;
}

.contact-link {
    color: var(--red);
    text-decoration: none;
    font-weight: 800;
}

.wa-btn {
    display: inline-block;
    margin: 0 0 22px;
    background: #25D366;
    color: #fff;
    padding: 12px 16px;
    font-weight: 900;
    letter-spacing: .04em;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
}

    .wa-btn:hover {
        opacity: .92;
    }

.contact2-map {
    max-width: 1200px;
    margin: 35px auto 0;
}

.map-box {
    border: 1px solid #efefef;
    background: #fff;
    overflow: hidden;
}

.map-iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

/* Hours dropdown */
.hours {
    margin-top: 12px;
}

.hours-title {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 600;
    color: #222;
}

.hours-toggle {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 8px 0;
    text-align: left;
    cursor: pointer;
    color: #666;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-arrow {
    margin-left: auto;
    color: var(--red);
    font-size: 16px;
    font-weight: 900;
}

.hours-list {
    display: block;
    margin-top: 8px;
}

.hours-row {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 18px;
    padding: 6px 0;
    color: #666;
    font-size: 18px;
}

    .hours-row .bold {
        font-weight: 900;
        color: #444;
    }

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 600ms ease, transform 600ms ease;
    transition-delay: var(--delay, 0ms);
}

    .reveal.reveal--in {
        opacity: 1;
        transform: translateY(0);
    }

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.78);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    padding: 20px;
}

    .lightbox-overlay.open {
        display: flex;
    }

.lightbox-box {
    max-width: min(1100px,96vw);
    max-height: 90vh;
    position: relative;
    overflow: visible;
}

.lightbox-img {
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
    background: #fff;
    border-radius: 6px;
}

.lightbox-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font-weight: 900;
    background: #fff;
    color: #111;
    box-shadow: 0 10px 20px rgba(0,0,0,.25);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    background: rgba(255,255,255,.92);
    color: #111;
    font-size: 22px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,.25);
    z-index: 20001;
}

.lightbox-prev {
    left: 12px;
}

.lightbox-next {
    right: 12px;
}

.lightbox-count {
    position: absolute;
    left: 10px;
    bottom: -32px;
    color: rgba(255,255,255,.9);
    font-size: 12px;
    letter-spacing: .04em;
}

/* Mobile / responsive */
@media (max-width:980px) {
    .logo {
        height: 80px
    }

    .menu {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .home-hero h1 {
        font-size: 35px
    }

    .hero-image img {
        height: 360px
    }

    .gallery {
        grid-template-columns: repeat(2,1fr);
        padding: 0 14px;
    }

        .gallery img {
            height: 220px
        }

    .svc-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin: 40px auto 0;
    }

    .svc-gallery {
        grid-template-columns: repeat(2,1fr);
        padding: 0 14px;
    }

        .svc-gallery img {
            height: 220px
        }

    .news-two, .news-training {
        grid-template-columns: 1fr
    }

    .news-adipec {
        grid-template-columns: 1fr
    }
}

@media (max-width:560px) {
    .topbar-inner {
        flex-direction: column;
        gap: 14px
    }

    .hero-image img {
        height: 260px
    }

    .gallery {
        grid-template-columns: 1fr
    }

    .svc-gallery {
        grid-template-columns: 1fr
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .topbar, .topbar-inner, .logo, .menu {
        transition: none;
    }
}
/* ===== HOME HERO TEXT: FULL WIDTH ===== */
.home-hero {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 40px 0 18px !important; /* adjust spacing */
}

    /* Keep the text centered inside a wide container */
    .home-hero > * {
        max-width: var(--max) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    /* If button alignment/width needs consistency */
    .home-hero .cta-btn {
        display: inline-block;
    }
/* NEWS: OPES poster should show full image (no crop) */
.news-poster img {
    height: 420px !important; /* keep your current height */
    object-fit: contain !important;
}
/* ===== ABOUT PAGE (match screenshot) ===== */

.about-header {
    text-align: center;
    padding: 34px 0 10px;
}

.about-title {
    margin: 0;
    color: var(--red);
    font-size: 44px;
    font-weight: 300;
}

.about-underline {
    width: 46px;
    height: 2px;
    background: #e1e1e1;
    margin: 14px auto 0;
}

/* each row */
.about-row {
    max-width: 1200px;
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: 520px 1fr; /* image then text */
    gap: 60px;
    align-items: start;
}

/* image look */
.about-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* text */
.about-text h2 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.about-text p {
    margin: 0 0 12px;
    color: #7a7a7a;
    font-size: 14px;
    line-height: 1.9;
}

/* reverse row just keeps spacing consistent */
.about-row.reverse {
    margin-top: 70px; /* more space like screenshot */
}

/* responsive */
@media (max-width: 980px) {
    .about-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-img img {
        height: 260px;
    }
}
/* ===== NEWS PAGE: reduce side whitespace ===== */

/* Make news sections use full site width */
.news-block {
    max-width: var(--max) !important; /* was 980px */
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 12px !important; /* minimum padding */
    padding-right: 12px !important;
}

/* OPES row: give image more room */
.news-two {
    grid-template-columns: 1fr 1.3fr !important; /* text / image */
    gap: 24px !important;
}

/* Slightly bigger poster area */
.news-poster img {
    height: 460px !important;
}

/* ADIPEC block wider */
.news-adipec {
    max-width: var(--max) !important;
}

/* Training block wider */
.news-training {
    max-width: var(--max) !important;
}
/* ===== CONTACT PAGE: reduce side whitespace ===== */

/* Make contact content use full site width */
.contact3-single {
    max-width: var(--max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 12px !important; /* minimum side padding */
    padding-right: 12px !important;
}

/* Make map also wider */
.contact2-map {
    max-width: var(--max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
}

    /* Optional: make map full-bleed (edge-to-edge) */
    .contact2-map.full-bleed {
        max-width: none !important;
        width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
/* ===== Increase header logo size ===== */
