/* Work & Rescue International – static replica of Divi theme */

:root {
    --orange: #ef7f23;
    --orange-hover: #d46a15;
    --dark: #2b2a29;
    --light-gray: #efefef;
    --white: #ffffff;
    --pink: #db1052;
    --text-muted: rgba(43, 42, 41, 0.85);
    --container: 1200px;
    --font-heading: 'Montserrat', Helvetica, Arial, sans-serif;
    --font-body: 'Montserrat', Helvetica, Arial, sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    color: #666;
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 80%;
    max-width: var(--container);
    margin: 0 auto;
}

.text-orange { color: var(--orange); }
.text-white { color: var(--white); }

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color 300ms ease, background-color 300ms ease;
    border: none;
    text-align: center;
}

.btn-hero {
    color: var(--orange);
    border: 4px solid var(--orange);
    background: transparent;
    padding: 12px 45px;
    font-size: 18px;
    letter-spacing: 3px;
    min-width: 250px;
}

.btn-hero:hover {
    color: var(--white);
    background-color: var(--orange);
}

.btn-outline-orange {
    color: var(--orange);
    border: 3px solid var(--orange);
    background: transparent;
    padding: 0.3em 1em;
    font-size: 16px;
    min-width: 230px;
}

.btn-outline-orange:hover {
    color: var(--white);
    background-color: var(--orange);
}

.btn-contact {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--white);
    background-color: var(--orange);
    border: none;
    padding: 6px 1em;
    font-size: 16px;
    min-width: 160px;
}

.btn-contact:hover {
    color: var(--orange);
    background-color: var(--light-gray);
}

/* Preloader */
.loftloader-wrapper {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loftloader-wrapper.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-bg {
    position: absolute;
    inset: 0;
    background-color: var(--white);
    opacity: 0.95;
}

.loader-inner {
    position: relative;
    z-index: 2;
}

.preloader-img {
    width: 230px;
    animation: preloaderPulse 1.8s infinite ease-in-out;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.03); opacity: 1; }
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    transition: box-shadow 0.4s ease;
}

.top-bar {
    background-color: var(--orange);
    padding: 10px 0;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--white);
    max-height: 80px;
    overflow: hidden;
    opacity: 1;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.35s ease;
}

#main-header.is-scrolled .top-bar {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
}

.top-bar-content {
    display: flex;
    align-items: center;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: -57px;
}

.icon-location {
    flex-shrink: 0;
}

.nav-bar {
    padding: 2vh 0;
    transition: padding 0.4s ease, background 0.45s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.nav-bar-desktop {
    background: linear-gradient(
        to bottom,
        rgba(43, 42, 41, 0.82) 0%,
        rgba(43, 42, 41, 0.45) 45%,
        rgba(43, 42, 41, 0.12) 78%,
        rgba(43, 42, 41, 0) 100%
    );
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

#main-header.is-scrolled .nav-bar-desktop {
    background: rgba(43, 42, 41, 0.96);
    padding: 10px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-bar-mobile {
    background: linear-gradient(
        to bottom,
        rgba(43, 42, 41, 0.9) 0%,
        rgba(43, 42, 41, 0.35) 70%,
        rgba(43, 42, 41, 0) 100%
    );
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

#main-header.is-scrolled .nav-bar-mobile {
    background: rgba(43, 42, 41, 0.96);
    padding: 10px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    height: 34px;
    width: auto;
    transition: height 0.4s ease, transform 0.4s ease;
}

#main-header.is-scrolled .header-logo {
    height: 28px;
}

.desktop-menu ul {
    list-style: none;
    display: flex;
    gap: 0;
}

.desktop-menu a {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    padding: 29px 15px;
    display: block;
    transition: padding 0.4s ease, font-size 0.4s ease;
}

#main-header.is-scrolled .desktop-menu a {
    padding: 10px 15px;
    font-size: 15px;
}

.desktop-menu a:hover {
    opacity: 0.7;
}

.nav-bar-mobile {
    display: none;
    padding: 2vh 0;
    text-align: center;
    transition: padding 0.4s ease;
}

.nav-content-mobile {
    justify-content: center;
    position: relative;
}

.nav-content-mobile .mobile-menu-toggle {
    position: absolute;
    right: 0;
}

/* Mobile menu toggle (Divi hamburger) */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile_menu_bar,
.mobile_menu_bar::before,
.mobile_menu_bar::after {
    display: block;
    width: 32px;
    height: 3px;
    background-color: var(--white);
    position: relative;
    transition: var(--transition);
}

.mobile_menu_bar::before,
.mobile_menu_bar::after {
    content: '';
    position: absolute;
    left: 0;
}

.mobile_menu_bar::before { top: -10px; }
.mobile_menu_bar::after { top: 10px; }

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(43, 42, 41, 0.98);
    z-index: 100000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu-overlay.open {
    transform: translateX(0);
}

.mobile-menu-container {
    padding: 40px 20px;
    height: 100%;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.mobile-menu-header h2 {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
}

.mobile-menu-nav ul {
    list-style: none;
}

.mobile-menu-nav a {
    display: block;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-menu-nav a:hover {
    color: var(--orange);
}

@media (max-width: 980px) {
    .top-bar { display: none; }
    .nav-bar-desktop { display: none; }
    .nav-bar-mobile { display: block; }
    .mobile-menu-toggle { display: block; }
    .contact-info-item { margin-left: 0; }

    /* Full-viewport sections on mobile */
    :root {
        --mobile-vh: 100svh;
        --mobile-header-space: 76px;
    }

    html {
        scroll-snap-type: y proximity;
    }

    main > section {
        min-height: var(--mobile-vh);
        scroll-snap-align: start;
        scroll-snap-stop: normal;
        box-sizing: border-box;
    }

    .hero-slider {
        height: var(--mobile-vh);
        min-height: var(--mobile-vh);
    }

    .hero-slider-inner {
        height: 100%;
        min-height: 100%;
        transform: none;
    }

    .about-section,
    .brands-section,
    .help-section,
    .contact-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: var(--mobile-header-space);
        padding-bottom: 2.5rem;
    }

    .about-section > .container,
    .brands-section > .container,
    .help-section > .container,
    .contact-section > .container {
        width: 100%;
    }

    .brands-section {
        padding-left: 0;
        padding-right: 0;
    }

    .services-section {
        padding: 0;
        min-height: auto;
        scroll-snap-align: none;
    }

    .services-section .container {
        width: 100%;
        max-width: none;
        padding: 0;
    }

    .services-main-title {
        min-height: var(--mobile-vh);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: var(--mobile-header-space) 5% 2rem;
        box-sizing: border-box;
        scroll-snap-align: start;
    }

    .service-row {
        min-height: var(--mobile-vh);
        margin-bottom: 0;
        scroll-snap-align: start;
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 1004px;
    overflow: hidden;
    background-color: #00afe9;
    --hero-content-shift: 15%;
    --hero-float-shift: 120px;
    --hero-heli-scale: 0.75;
    --hero-heli-offset-x: 25px;
}

.hero-content {
    position: absolute;
    z-index: 10;
    top: calc(50% - var(--hero-content-shift));
    left: 8%;
    transform: translateY(-50%);
    text-align: left;
    width: 90%;
    max-width: 600px;
    animation: heroContentFadeIn 1.5s ease-out 0.5s forwards;
    opacity: 0;
    pointer-events: auto;
}

.hero-slider-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-layer {
    position: absolute;
    pointer-events: none;
}

.hero-layer img {
    width: 100%;
    height: auto;
}

.hero-layer-bg {
    top: -9px;
    left: 50%;
    transform: translateX(calc(-50% - 36px));
    width: 2252px;
    max-width: none;
    z-index: 1;
}

.hero-layer-bg img {
    width: 2252px;
}

.hero-cloud {
    z-index: 2;
}

.hero-cloud-left {
    top: 244px;
    left: -119px;
    width: 700px;
    animation: cloudDriftLeft 400s linear infinite;
}

.hero-cloud-right {
    top: 130px;
    right: -200px;
    width: 600px;
    z-index: 3;
    animation: cloudDriftRight 150s linear infinite;
}

.hero-cloud-mid {
    top: 130px;
    right: 200px;
    width: 600px;
    z-index: 4;
    animation: cloudDriftRight 400s linear infinite;
}

.hero-layer-mountain {
    bottom: 0;
    left: 0;
    width: 1920px;
    max-width: none;
    z-index: 5;
    animation: heroSlideUp 2s ease-out forwards;
    opacity: 0;
}

.hero-layer-helicopter {
    bottom: 60px;
    left: 50%;
    transform: translateX(calc(-50% + 25px)) scale(0.75) translateY(calc(-1 * var(--hero-float-shift)));
    transform-origin: 50% 100%;
    width: 1920px;
    max-width: none;
    z-index: 6;
    animation: heroSlideRight 3s ease-out 0.5s forwards;
    opacity: 0;
}

.hero-layer-helicopter img {
    animation: helicopterHover 10s ease-in-out 3.5s infinite;
    will-change: transform;
}

.hero-layer-people {
    bottom: 0;
    left: 0;
    width: 1920px;
    max-width: none;
    z-index: 9;
    animation: heroSlideLeft 2s ease-out 0.3s forwards;
    opacity: 0;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 42%;
    z-index: 7;
    background: linear-gradient(
        to bottom,
        rgba(43, 42, 41, 0) 0%,
        rgba(43, 42, 41, 0.2) 45%,
        rgba(43, 42, 41, 0.75) 78%,
        var(--dark) 100%
    );
    pointer-events: none;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 30px;
}

@keyframes heroSlideUp {
    from { transform: translateY(150px) scale(1.5); opacity: 0; filter: blur(10px); }
    to { transform: translateY(0) scale(1); opacity: 1; filter: blur(0); }
}

@keyframes heroSlideLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes heroSlideRight {
    from {
        transform: translateX(100%) scale(0.75) translateY(calc(-1 * var(--hero-float-shift)));
        opacity: 0;
    }
    to {
        transform: translateX(calc(-50% + 25px)) scale(0.75) translateY(calc(-1 * var(--hero-float-shift)));
        opacity: 1;
    }
}

@keyframes helicopterHover {
    0%, 100% {
        transform: translateX(-18px) translateY(0);
    }
    25% {
        transform: translateX(-6px) translateY(-5px);
    }
    50% {
        transform: translateX(18px) translateY(-3px);
    }
    75% {
        transform: translateX(6px) translateY(-6px);
    }
}

@keyframes heroContentFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes heroSlideRightMobile {
    from {
        transform: translateX(100%) scale(var(--hero-heli-scale, 0.52)) translateY(calc(-1 * var(--hero-float-shift)));
        opacity: 0;
    }
    to {
        transform: translateX(-50%) scale(var(--hero-heli-scale, 0.52)) translateY(calc(-1 * var(--hero-float-shift)));
        opacity: 1;
    }
}

@keyframes cloudDriftLeft {
    from { transform: translateX(0); }
    to { transform: translateX(2000px); }
}

@keyframes cloudDriftRight {
    from { transform: translateX(0); }
    to { transform: translateX(500px); }
}

@media (max-width: 1024px) and (min-width: 981px) {
    .hero-slider { height: 600px; min-height: 600px; --hero-float-shift: 72px; }
    .hero-slider-inner { --hero-float-shift: 72px; }
    .hero-title { font-size: 45px; }
    .hero-layer-bg { width: 1600px; transform: translateX(-50%); }
    .hero-layer-bg img { width: 1600px; }
    .hero-layer-mountain,
    .hero-layer-people,
    .hero-layer-helicopter { width: 1024px; }
}

@keyframes heroSlideUpMobile {
    from {
        transform: translateX(-50%) translateY(120px) scale(1.15);
        opacity: 0;
        filter: blur(8px);
    }
    to {
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes heroSlideLeftMobile {
    from { transform: translateX(calc(-50% - 100%)); opacity: 0; }
    to { transform: translateX(-50%); opacity: 1; }
}

@keyframes heroHeliFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 778px) {
    .hero-slider {
        height: var(--mobile-vh, 100svh);
        min-height: var(--mobile-vh, 100svh);
        background-color: #5aadc8;
    }

    .hero-slider-inner {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        left: 0;
        right: 0;
        transform: none;
        overflow: hidden;
        background: url('../assets/images/hero/IMG1.jpg') center bottom / cover no-repeat;
    }

    .hero-slider {
        --hero-float-shift: 36px;
        --hero-heli-scale: 0.79;
        --hero-heli-offset-x: -3%;
        --hero-content-shift: 0%;
    }

    .hero-layer-bg {
        display: none;
    }

    .hero-layer-mountain,
    .hero-layer-people {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        transform: none;
    }

    .hero-layer-mountain {
        animation: heroSlideUp 2s ease-out forwards;
    }

    .hero-layer-people {
        animation: none;
        opacity: 1;
    }

    .hero-layer-mountain img,
    .hero-layer-people img {
        width: 100%;
        height: auto;
        display: block;
    }

    .hero-layer-helicopter {
        bottom: 16%;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        transform: translateX(var(--hero-heli-offset-x)) scale(var(--hero-heli-scale)) translateY(calc(-1 * var(--hero-float-shift)));
        transform-origin: center bottom;
        animation: heroHeliFadeIn 1.5s ease-out 0.5s forwards;
        opacity: 0;
    }

    .hero-layer-helicopter img {
        width: 100%;
        height: auto;
        animation: helicopterHoverMobile 10s ease-in-out 2s infinite;
    }

    .hero-gradient {
        height: 42%;
        background: linear-gradient(
            to bottom,
            rgba(43, 42, 41, 0) 0%,
            rgba(43, 42, 41, 0.15) 50%,
            rgba(43, 42, 41, 0.7) 82%,
            var(--dark) 100%
        );
    }

    .hero-content {
        top: 25%;
        z-index: 12;
        left: 50%;
        width: calc(100% - 40px);
        max-width: 340px;
        transform: translateX(-50%);
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.05;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 22px;
    }

    .btn-hero {
        font-size: 14px;
        min-width: unset;
        width: auto;
        max-width: 100%;
        padding: 10px 28px;
        letter-spacing: 2px;
        border-width: 3px;
    }

    .hero-title,
    .hero-subtitle,
    .btn-hero {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cloud-left,
    .hero-cloud-right,
    .hero-cloud-mid {
        display: none;
    }
}

@keyframes helicopterHoverMobile {
    0%, 100% { transform: translateX(-10px) translateY(0); }
    50% { transform: translateX(10px) translateY(-4px); }
}

@media (max-width: 480px) {
    .hero-slider {
        --hero-float-shift: 40px;
        --hero-heli-scale: 0.70;
        --hero-heli-offset-x: -2%;
    }

    .hero-layer-helicopter {
        bottom: 15%;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .hero-content {
        top: 22%;
        width: calc(100% - 32px);
        max-width: 300px;
    }
}

/* About Section */
.about-section {
    background-color: var(--dark);
    padding: 10vh 0;
    margin-top: -1px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
    margin-bottom: 5px;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 56px;
    align-items: start;
}

.about-text-column {
    min-width: 0;
    padding-right: 12px;
}

.about-text-slider {
    position: relative;
    margin-bottom: 20px;
}

.about-slides {
    position: relative;
    min-height: 150px;
}

.about-paragraph {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 300;
    color: var(--light-gray);
    line-height: 1.65;
    margin-bottom: 0;
}

.about-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
    z-index: 0;
}

.about-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 1;
}

.about-slide-dots {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.about-slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-slide-dot.active {
    background-color: var(--orange);
    transform: scale(1.15);
}

.about-text-slider.is-paused .about-slide-dot.active {
    opacity: 0.7;
}

.blurb-item {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    margin-left: -37px;
}

.blurb-bullet {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    margin-left: 22px;
    flex-shrink: 0;
}

.bullet-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--orange);
}

.blurb-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 5px;
}

.blurb-text {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 300;
    color: var(--light-gray);
}

.btn-container {
    margin-top: 30px;
}

.about-image-column {
    min-width: 0;
    display: flex;
    justify-content: flex-end;
}

.about-image-wrap {
    width: 100%;
    max-width: 420px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (min-width: 981px) {
    .about-image-column {
        margin-top: -115px;
    }
}

@media (max-width: 980px) {
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-image-column { margin-top: 0; order: -1; justify-content: center; }
    .about-image-wrap { max-width: 360px; margin: 0 auto; }
    .about-text-column { padding-right: 0; }
    .section-title { text-align: center; font-size: 40px; }
    .about-paragraph { text-align: center; }
    .about-slides { min-height: 200px; }
    .about-slide-dots { justify-content: center; }
    .blurb-item { margin-left: 0; }
    .btn-container { text-align: center; }
}

/* Brands */
.brands-section {
    padding: 8vh 0;
    overflow: hidden;
    background-color: var(--white);
}

.brands-carousel-wrapper {
    width: 100%;
}

.brands-track {
    display: flex;
    width: calc(180px * 14);
    animation: scrollBrands 25s linear infinite;
}

.brand-slide {
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    flex-shrink: 0;
}

.brand-slide img {
    max-height: 80px;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.brand-slide:hover img {
    filter: grayscale(0);
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-180px * 7)); }
}

@media (max-width: 980px) {
    .brands-section {
        overflow: visible;
    }

    .brands-carousel-wrapper {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding: 0 10%;
        box-sizing: border-box;
        min-height: 0;
    }

    .brands-track {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, minmax(0, 1fr));
        grid-auto-flow: column;
        gap: clamp(24px, 5vh, 52px) clamp(20px, 6vw, 48px);
        width: 100%;
        height: min(72vh, 580px);
        max-height: calc(var(--mobile-vh, 100svh) - var(--mobile-header-space, 76px) - 4rem);
        animation: none;
        transform: none;
        align-items: center;
        justify-items: center;
    }

    .brand-slide:nth-child(n + 8) {
        display: none;
    }

    .brand-slide {
        width: 100%;
        height: 100%;
        min-height: 88px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .brand-slide img {
        max-height: clamp(72px, 14vw, 120px);
        max-width: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .brands-carousel-wrapper {
        max-width: 100%;
        padding: 0 12%;
    }

    .brands-track {
        height: min(68vh, 520px);
        gap: clamp(20px, 4.5vh, 40px) clamp(16px, 5vw, 32px);
    }

    .brand-slide {
        min-height: 72px;
    }

    .brand-slide img {
        max-height: clamp(64px, 18vw, 100px);
    }
}

/* Services */
.services-section {
    padding: 10vh 0;
    background-color: var(--white);
}

.services-main-title {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    color: var(--dark);
    margin-bottom: 40px;
    letter-spacing: 0.3px;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    background-color: var(--dark);
    margin-bottom: 30px;
}

.service-col-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 244px;
}

.service-col-text {
    position: relative;
    padding: 30px 40px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--orange);
    margin: 6px 0;
    letter-spacing: 0.3px;
}

.service-title span {
    color: var(--white);
}

.service-text {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.5;
    margin-top: 10px;
}

@media (max-width: 767px) {
    .service-row { grid-template-columns: 1fr; }
    .services-main-title { font-size: 35px; }
    .service-col-text { padding: 20px; }
    .btn-contact { position: static; display: inline-block; margin-bottom: 15px; }
}

/* Help Section */
.help-section {
    padding: 6vh 0 7vh;
    background-color: var(--dark);
    background-image: url('../assets/images/Grupo-4209.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.help-content {
    max-width: 600px;
    margin-left: auto;
}

.help-title {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.help-subtitle {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--light-gray);
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

.help-subtitle span {
    color: var(--white);
}

@media (max-width: 767px) {
    .help-title { font-size: 35px; }
    .help-content { margin: 0 auto; text-align: center; }
}

/* Contact */
.contact-section {
    padding: 10vh 0;
    background-color: var(--light-gray);
    background-image: url('../assets/images/Rectangulo-1447.png');
    background-size: cover;
    background-position: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.contact-desc {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 25px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--dark);
}

.detail-card-link a {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.detail-card-link:hover {
    color: var(--orange);
}

.detail-icon img {
    width: auto;
    height: auto;
}

.styled-form {
    background-color: var(--dark);
    padding: 40px;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--dark);
    background-color: var(--white);
    border: none;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--dark);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    margin-top: 8px;
    padding: 6px 50px;
    font-size: 18px;
}

@media (max-width: 980px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-heading { text-align: center; font-size: 40px; }
    .contact-desc { text-align: center; }
}

/* Footer */
#main-footer {
    background-color: var(--white);
}

.footer-border {
    border-top: 2px solid var(--pink);
    padding: 3vh 0;
}

/* Toast */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--dark);
    color: var(--white);
    padding: 20px 25px;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    z-index: 100001;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    max-width: 360px;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.toast-content svg {
    color: #4caf50;
    flex-shrink: 0;
    margin-top: 2px;
}

.toast-text h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 4px;
}

.toast-text p {
    font-size: 13px;
    opacity: 0.85;
}

.toast-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
}

.toast-close:hover {
    opacity: 1;
}

/* Mobile hero — override final (evita reglas desktop de posicionamiento) */
@media (max-width: 980px) {
    .hero-slider .hero-slider-inner {
        position: absolute;
        inset: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        transform: none;
        background: url('../assets/images/hero/IMG1.jpg') center bottom / cover no-repeat;
    }

    .hero-slider .hero-layer-bg {
        display: none;
    }

    .hero-slider .hero-layer-mountain,
    .hero-slider .hero-layer-people {
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        transform: none;
    }

    .hero-slider .hero-layer-people {
        animation: none;
        opacity: 1;
    }

    .hero-slider .hero-layer-helicopter {
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        bottom: 16%;
        transform: translateX(var(--hero-heli-offset-x, -3%)) scale(var(--hero-heli-scale, 0.79)) translateY(calc(-1 * var(--hero-float-shift, 36px)));
        transform-origin: center bottom;
    }
}
