/* ══════════════════════════════════════
   GLOBAL
══════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: Arial, sans-serif; background: #fff; color: #222; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeInDown  { from{opacity:0;transform:translateY(-30px)} to{opacity:1;transform:translateY(0)} }
@keyframes slideInLeft { from{opacity:0;transform:translateX(-60px)} to{opacity:1;transform:translateX(0)} }
@keyframes slideInRight{ from{opacity:0;transform:translateX(60px)}  to{opacity:1;transform:translateX(0)} }
@keyframes fadeInUp    { from{opacity:0;transform:translateY(20px)}  to{opacity:1;transform:translateY(0)} }
@keyframes expandLine  { from{width:0}    to{width:60px} }
@keyframes pulse       { 0%,100%{box-shadow:0 0 0 0 rgba(255,255,255,.5)} 50%{box-shadow:0 0 0 10px rgba(255,255,255,0)} }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.12);
}
.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 12px 20px 0;
    animation: fadeInDown .7s ease both;
}
.header-logo-img {
    height: 78px !important;
    width: auto !important;
    max-height: 78px !important;
    max-width: 200px;
    object-fit: contain;
    transition: transform .3s ease;
    flex-shrink: 0;
    display: block;
}
.header-logo-img:hover { transform: scale(1.04); }
.header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    border-left: 2px solid #e0e0e0;
    padding-left: 20px;
}
.header-tagline {
    color: #333;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2px;
}
.header-sub {
    color: #c8a000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* footer logo */
.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
    opacity: .85;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
#main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border-top: 1px solid #e8e8e8;
    gap: 4px;
    animation: fadeInDown .7s ease .2s both;
}
.nav-link {
    color: #222;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color .25s ease;
    white-space: nowrap;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 20px; right: 20px;
    height: 2px;
    background: #cc0000;
    transform: scaleX(0);
    transition: transform .25s ease;
}
.nav-link:hover  { color: #cc0000; }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: #cc0000; }
.nav-link.active::after { transform: scaleX(1); }

/* — DROPDOWN — */
.dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 6px; }
.dropdown-toggle .fa-chevron-down {
    transition: transform .25s ease;
}
.dropdown:hover .dropdown-toggle .fa-chevron-down { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    min-width: 230px;
    border-top: 3px solid #cc0000;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
    pointer-events: none;
}
/* bridge the gap so mouse can move from toggle to menu without losing hover */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    color: #ddd;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    border-bottom: 1px solid #2d2d2d;
    transition: background .2s ease, color .2s ease, padding-left .2s ease;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a i { color: #cc0000; width: 16px; }
.dropdown-menu a:hover { background: #cc0000; color: #fff; padding-left: 28px; }
.dropdown-menu a:hover i { color: #fff; }

/* — CONTACT BUTTON — */
.btn-contact {
    background: #cc0000 !important;
    color: #fff !important;
    padding: 11px 28px !important;
    border-radius: 50px;
    margin-left: 12px;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(204,0,0,.35);
    transition: background .25s, transform .2s, box-shadow .2s !important;
}
.btn-contact:hover {
    background: #1a237e !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(26,35,126,.4) !important;
}

/* — HAMBURGER — */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #1a237e;
    border-radius: 2px;
    transition: all .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
    display: flex;
    background: #8b0000;
    min-height: 480px;
    overflow: hidden;
}
#hero-image-wrap {
    width: 55%;
    flex-shrink: 0;
    animation: slideInLeft .9s ease .3s both;
}
#hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%);
    transition: clip-path .4s ease;
}
#hero-image-wrap:hover img {
    clip-path: polygon(0 0, 91% 0, 100% 50%, 91% 100%, 0 100%);
}
#hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 55px;
    gap: 13px;
    animation: slideInRight .9s ease .3s both;
}
.welcome-label {
    font-style: italic;
    font-size: 20px;
    color: #fff;
    animation: fadeInUp .6s ease .7s both;
}
#hero-text h2 {
    font-size: 50px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1.1;
    animation: fadeInUp .6s ease .8s both;
}
.red-line {
    width: 60px;
    height: 3px;
    background: rgba(255,255,255,.6);
    animation: expandLine .6s ease 1.1s both;
}
.hero-tagline {
    font-size: 16px;
    color: rgba(255,255,255,.95);
    font-weight: 700;
    line-height: 1.5;
    animation: fadeInUp .6s ease 1s both;
}
.hero-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,.75);
    font-style: italic;
    letter-spacing: .5px;
    animation: fadeInUp .6s ease 1.05s both;
}
#hero-text a {
    color: #fff;
    text-decoration: underline;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color .2s, transform .2s;
}
#hero-text a:nth-child(5) { animation: fadeInUp .5s ease 1.1s both; }
#hero-text a:nth-child(6) { animation: fadeInUp .5s ease 1.2s both; }
#hero-text a:nth-child(7) { animation: fadeInUp .5s ease 1.3s both; }
#hero-text a:nth-child(8) { animation: fadeInUp .5s ease 1.4s both; }
#hero-text a:nth-child(9) { animation: fadeInUp .5s ease 1.5s both; }
#hero-text a:hover { color: #ffd0d0; transform: translateX(6px); text-decoration: none; }
#hero-text a i { color: rgba(255,255,255,.8); width: 20px; text-align: center; transition: transform .2s; }
#hero-text a:hover i { transform: scale(1.2); color: #fff; }

.btn-quote {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    padding: 13px 26px;
    background: #fff;
    color: #cc0000 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    letter-spacing: 1.5px;
    border-radius: 5px;
    width: fit-content;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
    transition: background .25s, color .25s, transform .2s, box-shadow .2s !important;
    animation: fadeInUp .6s ease 1.6s both, pulse 2s ease 2.5s 3;
}
.btn-quote:hover {
    background: #1a237e !important;
    color: #fff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 22px rgba(0,0,0,.3) !important;
}

/* ══════════════════════════════════════
   TICKER BANNER
══════════════════════════════════════ */
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

#join-team {
    background: #8b0000;
    overflow: hidden;
    padding: 0;
    height: 64px;
    display: flex;
    align-items: center;
    border-top: 2px solid rgba(255,255,255,.15);
    border-bottom: 2px solid rgba(255,255,255,.15);
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-set {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 50px;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,.2);
}
.ticker-logo {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .85;
    flex-shrink: 0;
}
.ticker-item span {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ══════════════════════════════════════
   SECTION TITLE (shared)
══════════════════════════════════════ */
.section-title {
    text-align: center;
    padding: 60px 20px 40px;
}
.section-title h2 {
    font-size: 34px;
    color: #1a237e;
    font-weight: 900;
    letter-spacing: 3px;
}
.section-title.light h2 { color: #fff; }
.title-line {
    width: 60px;
    height: 3px;
    background: #cc0000;
    margin: 14px auto 0;
}
.section-title.light .title-line { background: rgba(255,255,255,.5); }

/* ══════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════ */
#services { background: #f8f6f2; }

.service-block {
    display: flex;
    align-items: stretch;
    min-height: 380px;
    border-bottom: 1px solid #ece8e0;
}
.service-block.reverse { flex-direction: row-reverse; }

/* image wrapper — overflow hidden = zoom stays inside */
.service-block .img-wrap {
    width: 50%;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}
.service-block .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.service-block:hover .img-wrap img {
    transform: scale(1.08);
}

/* subtle overlay on hover */
.service-block .img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26,35,126,0);
    transition: background .4s ease;
}
.service-block:hover .img-wrap::after {
    background: rgba(26,35,126,.08);
}

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 60px;
    background: #fff;
    transition: background .3s ease;
}
.service-block.reverse .service-info { background: #f8f6f2; }
.service-block:hover .service-info { background: #fff; }

.service-icon {
    font-size: 38px;
    color: #cc0000;
    margin-bottom: 16px;
    transition: transform .3s ease;
}
.service-block:hover .service-icon { transform: scale(1.15); }

.service-info h3 {
    font-size: 26px;
    color: #1a237e;
    font-weight: 900;
    margin-bottom: 14px;
}
.service-info p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 28px;
}
.btn-service {
    display: inline-block;
    padding: 12px 28px;
    background: #cc0000;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    width: fit-content;
    box-shadow: 0 3px 10px rgba(204,0,0,.3);
    transition: background .25s, transform .2s, box-shadow .2s;
}
.btn-service:hover {
    background: #1a237e;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(26,35,126,.3);
}

/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */
#about { padding: 0 0 70px; background: #fff; }
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}
.about-text { flex: 1; }
.about-text h3 { font-size: 26px; color: #1a237e; font-weight: 900; margin-bottom: 18px; }
.about-text p  { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 16px; }
.about-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num   { display: block; font-size: 36px; font-weight: 900; color: #cc0000; }
.stat-label { display: block; font-size: 12px; color: #888; letter-spacing: 1px; text-transform: uppercase; }
.btn-about {
    display: inline-block;
    padding: 13px 32px;
    background: #cc0000;
    color: #fff;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(204,0,0,.3);
    transition: background .25s, transform .2s;
}
.btn-about:hover { background: #1a237e; transform: translateY(-2px); }
.about-image {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0,0,0,.15);
    position: relative;
}
.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.about-image:hover img { transform: scale(1.07); }
.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    box-shadow: inset 0 0 0 0 rgba(204,0,0,.3);
    transition: box-shadow .4s ease;
}
.about-image:hover::after {
    box-shadow: inset 0 0 0 4px rgba(204,0,0,.4);
}

/* ══════════════════════════════════════
   CONTACT SECTION (dark)
══════════════════════════════════════ */
#contact {
    background: #1a1a1a;
    padding-bottom: 70px;
}
.contact-subtitle {
    color: rgba(255,255,255,.65);
    margin-top: 14px;
    font-size: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.contact-wrap {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* form */
.contact-form { flex: 1; display: flex; flex-direction: column; gap: 18px; }
.form-row {
    display: flex;
    gap: 18px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
}
.form-group.full { flex: 1 1 100%; }
.form-group label { color: #bbb; font-size: 13px; letter-spacing: .5px; }
.form-group input,
.form-group textarea,
.form-group select {
    background: #2a2a2a;
    border: 1px solid #3d3d3d;
    border-radius: 4px;
    color: #eee;
    padding: 12px 14px;
    font-size: 14px;
    transition: border-color .25s, background .25s;
    outline: none;
    font-family: Arial, sans-serif;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #cc0000;
    background: #2f2f2f;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.checkbox-row {
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #bbb;
    font-size: 14px;
    cursor: pointer;
}
.checkbox-label input[type="checkbox"] { accent-color: #cc0000; width: 16px; height: 16px; }
.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 4px;
}
.form-note { color: #666; font-size: 12px; }

.form-msg {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 4px;
}
.form-msg--ok  { background: rgba(26,126,60,.18); color: #4caf50; border: 1px solid rgba(76,175,80,.3); }
.form-msg--err { background: rgba(204,0,0,.15);   color: #ff6b6b; border: 1px solid rgba(204,0,0,.3); }
.form-msg i { font-size: 18px; flex-shrink: 0; }
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: #cc0000;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(204,0,0,.4);
    transition: background .25s, transform .2s;
}
.btn-submit:hover { background: #1a237e; transform: translateY(-2px); }

/* contact info sidebar */
.contact-info {
    width: 240px;
    flex-shrink: 0;
    padding-top: 10px;
}
.contact-info h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: 1px;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
}
.info-item i { color: #cc0000; font-size: 16px; margin-top: 2px; width: 18px; flex-shrink: 0; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: #2b2b2b; color: #fff; }
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 50px 40px 30px;
    max-width: 1200px;
    margin: 0 auto;
}
#footer-left { flex: 1; min-width: 180px; }
#footer-left p, #footer-left a {
    color: #ccc;
    line-height: 2;
    font-size: 14px;
}
#footer-left a { transition: color .2s; }
#footer-left a:hover { color: #ff8888; }
#footer-links { display: flex; flex-direction: column; gap: 6px; }
#footer-links h4 { color: #fff; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
#footer-links a { color: #aaa; font-size: 13px; transition: color .2s; }
#footer-links a:hover { color: #cc0000; }
#footer-legal { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; justify-content: flex-end; }
#footer-legal a { color: #888; font-size: 13px; transition: color .2s; }
#footer-legal a:hover { color: #fff; }
#footer-bottom {
    text-align: center;
    padding: 16px 40px;
    border-top: 1px solid #3a3a3a;
    color: #666;
    font-size: 12px;
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════ */
/* ══════════════════════════════════════
   GALERIE — 3-image focus carousel
══════════════════════════════════════ */
#galerie { background: #111; padding-bottom: 60px; }
#galerie .section-title h2 { color: #fff; }
#galerie .title-line { background: #cc0000; }

/* ── carousel container ── */
.carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 420px;
    overflow: hidden;
    transition: opacity .26s ease;
}
.carousel-wrap.slide-left  { animation: carSlideL .26s ease; }
.carousel-wrap.slide-right { animation: carSlideR .26s ease; }

@keyframes carSlideL {
    0%   { opacity: 1; transform: translateX(0); }
    50%  { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes carSlideR {
    0%   { opacity: 1; transform: translateX(0); }
    50%  { opacity: 0; transform: translateX(30px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* ── slides ── */
.car-slide {
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94),
                opacity .5s ease,
                filter .5s ease,
                box-shadow .5s ease;
}
.car-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CENTER — active */
.car-active {
    width: 580px;
    height: 380px;
    z-index: 3;
    transform: translateX(0) scale(1);
    opacity: 1;
    filter: brightness(1);
    box-shadow: 0 20px 60px rgba(0,0,0,.7);
}

/* SIDES — prev & next */
.car-prev,
.car-next {
    width: 360px;
    height: 280px;
    z-index: 2;
    opacity: .45;
    filter: brightness(.45);
    cursor: pointer;
    transition: opacity .3s, filter .3s, transform .5s cubic-bezier(.25,.46,.45,.94);
}
.car-prev { transform: translateX(-520px) scale(.85); }
.car-next { transform: translateX(520px)  scale(.85); }

.car-prev:hover,
.car-next:hover {
    opacity: .7;
    filter: brightness(.7);
}

/* dim overlay on side slides */
.car-dim {
    position: absolute;
    inset: 0;
    background: rgba(10,10,30,.35);
    border-radius: 10px;
}

/* ── arrows & counter ── */
.car-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
}
.car-btn {
    background: rgba(255,255,255,.08);
    border: 2px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 18px;
    width: 52px; height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .25s, border-color .25s, transform .2s;
}
.car-btn:hover {
    background: #cc0000;
    border-color: #cc0000;
    transform: scale(1.1);
}
.car-counter {
    color: rgba(255,255,255,.5);
    font-size: 13px;
    letter-spacing: 2px;
    min-width: 48px;
    text-align: center;
}

/* ══════════════════════════════════════
   TABLET  ≤ 900px
══════════════════════════════════════ */
@media (max-width: 900px) {

    /* — header — */
    #site-header { position: sticky; top: 0; }
    .header-logo {
        flex-direction: row;
        justify-content: flex-start;
        padding: 10px 16px 10px;
        gap: 14px;
    }
    .header-logo-img { height: 52px; }
    .header-text { border-left: 1px solid #ddd; padding-left: 14px; gap: 2px; }
    .header-tagline { font-size: 12px; }
    .header-sub     { font-size: 10px; }

    /* — hamburger — */
    .hamburger { display: flex; }

    /* — nav — */
    #main-nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 0 0 12px;
        background: #fff;
        border-top: 2px solid #cc0000;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease, padding .35s ease;
    }
    #main-nav.open {
        display: flex;
        max-height: 600px;
        padding: 0 0 12px;
    }
    .nav-link {
        padding: 14px 20px;
        border-bottom: 1px solid #f2f2f2;
        font-size: 14px;
    }
    .nav-link::after { display: none; }

    /* dropdown on mobile — always expanded */
    .dropdown { width: 100%; }
    .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        position: static;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid #cc0000;
        margin-left: 24px;
        transition: none;
        background: #f8f8f8;
    }
    .dropdown-menu a { color: #333; font-size: 13px; padding: 11px 18px; border-bottom-color: #eee; }
    .dropdown-menu a i { color: #cc0000; }
    .dropdown-menu a:hover { background: #cc0000; color: #fff; padding-left: 26px; }
    .dropdown-menu a:hover i { color: #fff; }
    .btn-contact {
        margin: 10px 20px 0 !important;
        text-align: center;
        border-radius: 6px !important;
        padding: 13px 20px !important;
    }

    /* — hero — */
    #hero { flex-direction: column; min-height: auto; }
    #hero-image-wrap { width: 100%; height: 300px; }
    #hero-image-wrap img {
        height: 300px;
        clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
        transition: none;
    }
    #hero-image-wrap:hover img { clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%); }
    #hero-text { padding: 28px 24px 36px; gap: 12px; }
    #hero-text h2 { font-size: 32px; }
    .welcome-label { font-size: 16px; }
    .btn-quote { width: 100%; justify-content: center; }

    /* — ticker — */
    #join-team { height: 54px; }
    .ticker-item { padding: 0 30px; gap: 12px; }
    .ticker-logo { height: 28px; }
    .ticker-item span { font-size: 12px; letter-spacing: 1px; }

    /* — gallery carousel — */
    .carousel-wrap { height: 240px; }
    .car-active  { width: 280px; height: 190px; }
    .car-prev, .car-next { width: 160px; height: 130px; }
    .car-prev { transform: translateX(-240px) scale(.85); }
    .car-next { transform: translateX(240px)  scale(.85); }

    /* — services — */
    .service-block,
    .service-block.reverse { flex-direction: column; }
    .service-block .img-wrap { width: 100%; height: 260px; }
    .service-block .img-wrap img { height: 260px; }
    .service-info { padding: 28px 24px; }
    .service-info h3 { font-size: 22px; }
    .service-icon { font-size: 28px; }

    /* — about — */
    .about-content { flex-direction: column; padding: 0 24px; gap: 28px; }
    .about-image img { height: 260px; }
    .about-stats { justify-content: center; gap: 24px; }

    /* — contact — */
    .contact-wrap { flex-direction: column; padding: 0 20px; gap: 30px; }
    .form-row { flex-direction: column; gap: 16px; }
    .contact-info { width: 100%; }

    /* — footer — */
    .footer-inner { flex-direction: column; padding: 32px 20px 20px; gap: 24px; }
    #footer-legal { flex-direction: row; flex-wrap: wrap; gap: 14px; }
    .footer-logo-img { height: 48px; }
}

/* ══════════════════════════════════════
   MOBILE  ≤ 600px
══════════════════════════════════════ */
@media (max-width: 600px) {

    /* header — logo smaller, text hidden to save space */
    .header-logo { gap: 10px; padding: 8px 56px 8px 12px; }
    .header-logo-img { height: 44px; }
    .header-tagline { display: none; }
    .header-sub     { display: none; }
    .header-text { border: none; padding: 0; }

    /* hero */
    #hero-image-wrap { height: 240px; }
    #hero-image-wrap img { height: 240px; }
    #hero-text { padding: 22px 18px 30px; gap: 10px; }
    #hero-text h2 { font-size: 26px; }
    #hero-text a  { font-size: 14px; }

    /* gallery */
    .carousel-wrap { height: 200px; }
    .car-active  { width: 240px; height: 160px; }
    .car-prev, .car-next { width: 120px; height: 110px; }
    .car-prev { transform: translateX(-200px) scale(.82); }
    .car-next { transform: translateX(200px)  scale(.82); }
    .car-btn  { width: 42px; height: 42px; font-size: 15px; }

    /* services */
    .service-block .img-wrap { height: 210px; }
    .service-block .img-wrap img { height: 210px; }
    .service-info { padding: 22px 18px; }
    .service-info h3 { font-size: 20px; }
    .service-info p  { font-size: 14px; }
    .btn-service { width: 100%; text-align: center; }

    /* about */
    .about-content { padding: 0 18px; }
    .about-text h3 { font-size: 20px; }
    .about-image img { height: 200px; }
    .about-stats { gap: 16px; }
    .stat-num   { font-size: 30px; }
    .btn-about  { width: 100%; text-align: center; }

    /* section titles */
    .section-title h2 { font-size: 24px; letter-spacing: 2px; }
    .section-title { padding: 40px 16px 28px; }

    /* ticker */
    #join-team { height: 50px; }
    .ticker-item span { font-size: 11px; }

    /* contact */
    .contact-wrap { padding: 0 16px; }
    .form-group input,
    .form-group textarea { font-size: 15px; padding: 11px 12px; }
    .btn-submit { width: 100%; justify-content: center; }
    .contact-info h3 { font-size: 16px; }

    /* footer */
    .footer-inner { padding: 28px 16px 16px; }
    #footer-bottom { font-size: 11px; padding: 12px 16px; }
}

/* ══════════════════════════════════════
   SMALL PHONE  ≤ 390px
══════════════════════════════════════ */
@media (max-width: 390px) {

    .header-logo-img { height: 38px; }

    #hero-text h2 { font-size: 22px; }
    #hero-text a  { font-size: 13px; gap: 8px; }
    .btn-quote { font-size: 13px !important; padding: 11px 16px; }

    .carousel-wrap { height: 170px; }
    .car-active { width: 200px; height: 135px; }
    .car-prev, .car-next { display: none; }

    .service-block .img-wrap { height: 180px; }
    .service-block .img-wrap img { height: 180px; }

    .stat-num { font-size: 26px; }
    .about-stats { gap: 12px; }

    .section-title h2 { font-size: 21px; }
    .checkbox-row { flex-direction: column; gap: 10px; }
}
