/* ==========================================
   GUZMAN SEGURIDAD - Main Stylesheet
   Desktop-first responsive (1920px base)
   ========================================== */

/* --- 1. CSS Variables --- */
:root {
    --color-dark: #1b1b1b;
    --color-light: #f4f4f4;
    --color-red: #e41021;
    --color-hero-overlay: rgba(27, 27, 27, 0.6);
    --color-dark-overlay: rgba(0, 0, 0, 0.5);
    --color-gray: #808080;
    --color-white: #ffffff;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --fs-hero: 82px;
    --fs-section: 82px;
    --fs-subsection: 40px;
    --fs-nav: 20px;
    --fs-body: 20px;
    --fs-small: 12px;
    --fs-stat: 100px;

    --section-px: 120px;
    --section-py: 150px;

    --radius-card: 25px;
    --radius-pill: 999px;
    --radius-glass: 28px;

    --glass-blur: 12px;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border-opacity: 0.3;

    --shadow-neumorphism: -30px -30px 42px rgba(255, 255, 255, 0.7),
                           30px 30px 42px rgba(0, 0, 0, 0.25);
}

/* --- 2. Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--color-dark);
    background: var(--color-light);
    line-height: 1.25;
    letter-spacing: 0.8px;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    letter-spacing: 0.8px;
}

/* --- 3. Typography --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 0.975;
    letter-spacing: 1.64px;
}

/* --- 4. Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: var(--fs-nav);
    font-weight: 600;
    padding: 10px 15px;
    border-radius: var(--radius-card);
    transition: opacity 0.3s, transform 0.2s;
    cursor: pointer;
    line-height: 1.33;
}

.btn--light {
    background: var(--color-light);
    color: var(--color-dark);
    transition: background 0.3s, color 0.3s;
}

.btn--light:hover {
    background: var(--color-red);
    color: var(--color-light);
}

.btn--light svg:last-child {
    margin-left: 20px;
}

.btn--light img {
    transition: filter 0.3s;
}

.btn--light:hover img {
    filter: brightness(0) invert(1);
}

.btn--outline {
    background: transparent;
    color: var(--color-light);
    border: 2px solid var(--color-light);
    transition: background 0.3s, color 0.3s;
}

.btn--outline:hover {
    background: var(--color-light);
    color: var(--color-dark);
}

.btn--dark {
    background: var(--color-dark);
    color: var(--color-light);
    padding: 25px;
    border-radius: var(--radius-card);
    width: 250px;
    justify-content: center;
}

/* --- 5. Glassmorphism Component --- */
.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-radius: var(--radius-glass);
    padding: clamp(15px, 8px + 2.19vw, 50px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-glass);
    padding: 1px;
    background: conic-gradient(
        rgba(238, 238, 238, 0.63) 0%,
        rgba(238, 238, 238, 0) 14%,
        rgba(238, 238, 238, 1) 37%,
        rgba(238, 238, 238, 0) 66%,
        rgba(238, 238, 238, 1) 92%,
        rgba(238, 238, 238, 0.63) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: var(--glass-border-opacity);
    pointer-events: none;
}

/* Glassmorphism texture rectangle (background) */
.glass-card__bg {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-glass);
}

@supports not (backdrop-filter: blur(5px)) {
    .glass-card {
        background: rgba(30, 30, 30, 0.8);
    }
    .navbar {
        background: rgba(255, 255, 255, 0.3);
    }
    .navbar--scrolled {
        background: rgba(255, 255, 255, 0.4);
    }
}

.glass-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.glass-card__icon {
    width: clamp(32px, 22.4px + 3vw, 80px);
    height: clamp(32px, 22.4px + 3vw, 80px);
    flex-shrink: 0;
}

.glass-card__number {
    font-family: var(--font-heading);
    font-size: clamp(28px, 17.2px + 3.375vw, 82px);
    font-weight: 700;
    color: var(--color-light);
    letter-spacing: 1.64px;
    line-height: 0.975;
}

.glass-card__text {
    font-family: var(--font-heading);
    font-size: clamp(16px, 10.8px + 1vw, 26px);
    color: var(--color-light);
    line-height: 1.2;
    letter-spacing: 0.3px;
}

/* ==========================================
   SECTION 1: HERO / HEADER
   ========================================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 120px var(--section-px) 50px;
    background: var(--color-dark);
    overflow: hidden;
}

.hero__video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 1;
    pointer-events: none;
}

.hero__overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #2f1818bd !important;
    z-index: 2;
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 3;
}

/* --- Navbar --- */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
    padding: 20px 50px;
    border-radius: var(--radius-pill);
    background: rgb(0 0 0 / 15%);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    position: fixed;
    top: 20px;
    left: var(--section-px);
    right: var(--section-px);
    z-index: 100;
    transition: background 0.3s, backdrop-filter 0.3s;
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-pill);
    padding: 1px;
    background: conic-gradient(
        rgba(238, 238, 238, 0.63) 0%,
        rgba(238, 238, 238, 0) 14%,
        rgba(238, 238, 238, 1) 37%,
        rgba(238, 238, 238, 0) 66%,
        rgba(238, 238, 238, 1) 92%,
        rgba(238, 238, 238, 0.63) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: var(--glass-border-opacity);
    pointer-events: none;
}

.navbar--scrolled {
    background: rgb(0 0 0 / 15%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar__logo {
    display: flex;
    align-items: center;
}

.navbar__logo-img {
    height: 40px;
    width: auto;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
    margin-right: 40px;
}

.navbar__link {
    font-family: var(--font-heading);
    font-size: var(--fs-nav);
    font-weight: 600;
    color: var(--color-light);
    letter-spacing: 1.2px;
    position: relative;
    text-shadow: 0px 0px 4px rgb(0 0 0 / 48%);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-red);
    transition: width 0.3s;
}

.navbar__link:hover::after,
.navbar__link.is-active::after {
    width: 100%;
}

.navbar__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar__icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-card);
    background: var(--color-light);
    transition: background 0.3s;
}

.navbar__icon-btn img {
    transition: filter 0.3s;
}

.navbar__icon-btn:hover {
    background: var(--color-red);
}

.navbar__icon-btn:hover img:not(.navbar__flag) {
    filter: brightness(0) invert(1);
}

.navbar__lang-btn:hover {
    background: var(--color-dark);
}

.navbar__lang-wrapper {
    position: relative;
}

.navbar__lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 50%;
    background: var(--color-light);
    cursor: pointer;
    border: none;
    transition: background 0.3s;
}

.navbar__lang-btn .navbar__flag {
    width: 22px;
    height: 22px;
}

.navbar__lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--color-light);
    border-radius: 15px;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.navbar__lang-dropdown.is-open {
    display: flex;
}

.navbar__flag {
    border-radius: 50%;
    object-fit: cover;
    min-width: 22px;
    min-height: 22px;
}

.navbar__lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    width: 52px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-dark);
    border-radius: 10px;
    text-align: center;
    transition: background 0.2s;
}

.navbar__lang-option:hover {
    background: rgba(0, 0, 0, 0.05);
}

.navbar__lang-option.is-active {
    background: var(--color-red);
    color: var(--color-light);
}

.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    padding: 5px 0;
}

.navbar__hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--color-light);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.navbar__hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- Mobile Menu Overlay --- */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 39%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 90;
    flex-direction: column;
    justify-content: flex-start;
    padding: 120px 40px 40px;
}

.mobile-menu.is-open {
    display: flex;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-light);
    letter-spacing: 1.2px;
    transition: color 0.3s;
    position: relative;
    padding-left: 15px;
    text-shadow: 0px 0px 4px rgb(0 0 0 / 48%);
}

.mobile-menu__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    transition: background 0.3s;
}

.mobile-menu__link:hover,
.mobile-menu__link.is-active {
    color: var(--color-light);
}

.mobile-menu__link.is-active::before {
    background: var(--color-red);
}

.mobile-menu__bottom {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: auto;
    padding-top: 40px;
}

.mobile-menu__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-card);
    background: var(--color-light);
    transition: background 0.3s;
}

.mobile-menu__btn img {
    width: 30px;
    height: 30px;
}

.mobile-menu__btn svg {
    width: 30px;
    height: 30px;
    stroke: var(--color-dark);
}

.mobile-menu__btn:hover {
    background: var(--color-red);
}

.mobile-menu__btn:not(.mobile-menu__lang-btn):hover img {
    filter: brightness(0) invert(1);
}

.mobile-menu__btn:hover svg {
    stroke: var(--color-light);
}

.mobile-menu__langs {
    display: none;
    justify-content: center;
    gap: 15px;
    padding-top: 20px;
}

.mobile-menu__langs.is-open {
    display: flex;
}

.mobile-menu__lang {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    padding: 10px 20px;
    border-radius: 15px;
    background: var(--color-light);
    transition: all 0.3s;
}

.mobile-menu__lang:hover {
    background: var(--color-red);
    color: var(--color-light);
}

/* --- Hero Content --- */
.hero__content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 35px;
}

.hero__title {
    font-size: var(--fs-hero);
    color: var(--color-light);
    max-width: 1075px;
    line-height: 0.975;
}

.hero__subtitle {
    font-family: var(--font-heading);
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0.3px;
    color: var(--color-light);
    max-width: 1075px;
}

.hero__ctas {
    display: flex;
    gap: 10px;
    align-items: center;
}

.hero__contact-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.hero__contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
    color: var(--color-light);
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    line-height: 1.125;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
}

.hero__contact-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-red);
    transition: width 0.3s;
}

.hero__contact-item:hover::after {
    width: 100%;
}

.hero__contact-item--phone {
    border: 2px solid var(--color-red);
    border-radius: var(--radius-card);
    padding: 10px 25px;
    transition: background 0.3s, color 0.3s;
}

.hero__contact-item--phone::after {
    display: none;
}

.hero__contact-item--phone:hover {
    background: var(--color-light);
    color: var(--color-red);
    border-color: var(--color-light);
}

.hero__contact-item--phone svg {
    transition: fill 0.3s;
}

.hero__contact-item--phone:hover svg {
    fill: var(--color-red);
}

/* ==========================================
   TEMP: Hide sections for development
   ========================================== */

/* ==========================================
   SECTION 2: EMERGENCY
   ========================================== */
.emergency {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding: var(--section-py) var(--section-px);
    background: var(--color-dark-overlay);
    background-image: url('../img/emergencias24.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}

.emergency::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-dark-overlay);
    z-index: 0;
}

.emergency__left {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 135px;
    z-index: 1;
    align-self: flex-start;
    flex-shrink: 1;
    min-width: 0;
    max-width: 45%;
}

.emergency__title-block {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: center;
}

.emergency__title {
    font-size: clamp(24px, -4.6px + 3.625vw, 82px);
    color: var(--color-light);
    text-align: right;
    line-height: 0.975;
    letter-spacing: 1.64px;
}

.emergency__logo {
    height: clamp(60px, 40px + 6.25vw, 160px);
    width: auto;
    flex-shrink: 0;
}

.emergency__cta {
    display: flex;
    align-items: center;
    background: var(--color-red);
    color: var(--color-light);
    font-family: var(--font-heading);
    font-size: clamp(12px, 10.4px + 0.5vw, 20px);
    font-weight: 600;
    line-height: 1.6;
    padding: 10px 25px;
    border-radius: var(--radius-card);
    height: clamp(45px, 41px + 1.25vw, 65px);
    justify-content: space-between;
    transition: background 0.3s, color 0.3s, opacity 0.3s;
}

.emergency__cta svg path {
    transition: fill 0.3s;
}

.emergency__cta svg {
    width: clamp(24px, 18px + 1vw, 40px);
    height: clamp(24px, 18px + 1vw, 40px);
    flex-shrink: 0;
}

.emergency__cta span {
    margin-left: 10px;
}

.emergency__cta:hover {
    background: var(--color-white);
    color: var(--color-red);
}

.emergency__cta:hover svg path {
    fill: var(--color-red);
}

.emergency__steps {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1 1 0;
    min-width: 0;
}

/* ==========================================
   SECTION 3: SERVICES
   ========================================== */
.services {
    background: var(--color-dark);
    padding: var(--section-py) var(--section-px) 100px;
    display: flex;
    flex-direction: column;
    gap: 150px;
}

.services__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.services__title {
    font-size: var(--fs-section);
    color: var(--color-light);
    max-width: 520px;
    flex-shrink: 0;
}

.services__header-right {
    display: flex;
    align-items: center;
    gap: 50px;
}

.services__subtitle {
    font-size: var(--fs-body);
    color: var(--color-light);
    max-width: 516px;
    line-height: 1.25;
    flex: 1;
}

.services__header-btns {
    display: flex;
    gap: 10px;
}

.services__icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-card);
    background: var(--color-light);
    transition: background 0.3s;
}

.services__icon-btn img,
.services__icon-btn svg {
    transition: filter 0.3s;
}

.services__icon-btn:hover {
    background: var(--color-red);
}

.services__icon-btn:hover img {
    filter: brightness(0) invert(1);
}

.services__icon-btn:hover svg {
    fill: var(--color-light);
}

.services__icon-btn--whatsapp:hover {
    background: var(--color-dark);
    border: 2px solid var(--color-light);
}

.services__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    width: 100%;
}

.service-card--reverse {
    flex-direction: row-reverse;
}

.service-card__image {
    width: 262px;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-color: var(--color-gray);
    flex-shrink: 0;
    border-radius: var(--radius-card) 0 0 var(--radius-card);
}

.service-card--reverse .service-card__image {
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.service-card__content {
    flex: 1;
    background: var(--color-light);
    padding: 25px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.service-card:first-child .service-card__content {
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.service-card:nth-child(2) .service-card__content {
    border-radius: var(--radius-card) 0 0 var(--radius-card);
}

.service-card:nth-child(3) .service-card__content {
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.service-card:nth-child(4) .service-card__content {
    border-radius: var(--radius-card) 0 0 var(--radius-card);
}

.service-card:nth-child(5) .service-card__content {
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

/* Padding offset for alternating cards */
.service-card:nth-child(odd) {
    padding-right: 150px;
}

.service-card:nth-child(even) {
    padding-left: 150px;
}

.service-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.125;
}

.service-card__arrow {
    display: none;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.service-card__text {
    font-size: var(--fs-body);
    color: var(--color-dark);
    line-height: 1.25;
    letter-spacing: 0.8px;
    white-space: pre-line;
}

/* ==========================================
   SECTION 4: BRANDS
   ========================================== */
.brands {
    background: var(--color-dark);
    padding: 0 0 100px 0;
    display: flex;
    flex-direction: column;
    gap: 75px;
}

.brands__title {
    font-family: var(--font-heading);
    font-size: var(--fs-subsection);
    font-weight: 600;
    color: var(--color-light);
    line-height: 1.125;
    padding: 0 var(--section-px);
}

.brands__carousel {
    overflow: hidden;
    width: 100%;
    padding: 0 42px;
}

.brands__track {
    display: flex;
    gap: 75px;
    align-items: center;
    animation: brandScroll 30s linear infinite;
    width: max-content;
}

.brands__track img {
    height: 51px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s;
}

.brands__track img:hover {
    opacity: 0.7;
}

@keyframes brandScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================
   SECTION 5: ABOUT US
   ========================================== */
.about {
    background: var(--color-light);
    padding: var(--section-py) var(--section-px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__card {
    display: flex;
    background: var(--color-light);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-neumorphism);
    overflow: hidden;
    width: 100%;
}

.about__content {
    display: flex;
    gap: 80px;
    padding: 0px 80px;
    flex: 1;
}

.about__text {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 50px 0;
    justify-content: center;
}

.about__title {
    font-family: var(--font-heading);
    font-size: var(--fs-subsection);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.125;
}

.about__desc {
    font-size: var(--fs-body);
    color: var(--color-dark);
    line-height: 1.25;
    max-width: 100%;
}

.about__stats {
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
}

.about__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about__stat-number {
    font-family: var(--font-heading);
    font-size: var(--fs-stat);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 0.9;
}

.about__stat-label {
    font-size: var(--fs-body);
    color: var(--color-dark);
    text-align: center;
    line-height: 1.25;
}

.about__image {
    width: 40%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-color: var(--color-gray);
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
    flex-shrink: 0;
}

/* ==========================================
   SECTION 6: CONTACT
   ========================================== */
.contact {
    padding: var(--section-py) var(--section-px) 70px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.contact__row {
    display: flex;
    gap: 50px;
}

.contact__form-col {
    flex: 1;
    max-width: 48%;
    display: flex;
    flex-direction: column;
    gap: 75px;
}

.contact__form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.contact__title {
    font-size: var(--fs-section);
    color: var(--color-dark);
}

.contact__form-btns {
    display: flex;
    gap: 15px;
    align-items: center;
}

.contact__header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: var(--radius-card);
    background: var(--color-red);
    transition: opacity 0.3s;
}

.contact__header-btn img {
    filter: brightness(0) invert(1);
}

.contact__header-btn:hover {
    background: var(--color-light);
    border: 2px solid var(--color-red);
}

.contact__header-btn:hover img {
    filter: none;
}

.contact__header-btn--wa:hover {
    background: var(--color-dark);
    border-color: var(--color-dark);
}

.contact__header-btn--wa:hover svg {
    fill: var(--color-light);
}

.contact__header-btn--wa {
    background: var(--color-light);
    border: 2px solid var(--color-dark);
    color: var(--color-dark);
    gap: 10px;
    width: auto;
    padding: 0 25px;
    font-family: var(--font-heading);
    font-size: var(--fs-nav);
    font-weight: 600;
}

/* --- Contact Form --- */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
}

.contact__form-row {
    display: flex;
    gap: 10px;
}

.contact__form-row .form-group {
    flex: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid var(--color-dark);
    border-radius: var(--radius-card);
    background: transparent;
    color: var(--color-dark);
    font-size: 18px;
    outline: none;
    transition: border-color 0.3s;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-red);
}

.form-group input.is-invalid,
.form-group textarea.is-invalid {
    border-color: var(--color-red);
    background: rgba(228, 16, 33, 0.03);
}

.form-group--submit {
    display: flex;
    justify-content: flex-end;
}

.contact__form-message {
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px;
    border-radius: 10px;
    display: none;
}

.contact__form-message.is-success {
    display: block;
    color: #2e7d32;
    background: rgba(46, 125, 50, 0.1);
}

.contact__form-message.is-error {
    display: block;
    color: var(--color-red);
    background: rgba(228, 16, 33, 0.1);
}

/* --- Custom Select --- */
.custom-select {
    position: relative;
}

.custom-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    border: 1px solid var(--color-dark);
    border-radius: var(--radius-card);
    cursor: pointer;
    transition: border-color 0.3s;
}

.custom-select__trigger:hover {
    border-color: var(--color-red);
}

.custom-select__text {
    color: var(--color-dark);
}

.custom-select__text.is-placeholder {
    color: var(--color-gray);
}

.custom-select__options {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: var(--color-white);
    border: 1px solid var(--color-dark);
    border-radius: var(--radius-card);
    padding: 10px;
    z-index: 50;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.custom-select.is-open .custom-select__options {
    display: block;
}

.custom-select__option {
    padding: 15px 20px;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.custom-select__option:hover {
    background: rgba(0, 0, 0, 0.05);
}

.custom-select__option.is-selected {
    background: var(--color-red);
    color: var(--color-light);
}

/* --- Contact Info Column --- */
.contact__info-col {
    flex: 1;
    margin-top: 155px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact__info-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
}

.contact__info-title {
    font-family: var(--font-heading);
    font-size: var(--fs-subsection);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.125;
}

.contact__info-text {
    font-size: var(--fs-body);
    line-height: 1.25;
}

.contact__schedule {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.contact__schedule-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-light);
    padding: 14px 18px;
    border-radius: 12px;
    gap: 15px;
}

.contact__schedule-day {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-dark);
    white-space: nowrap;
}

.contact__schedule-hours {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.contact__schedule-tag {
    background: var(--color-dark);
    color: var(--color-light);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.contact__schedule-tag--closed {
    background: var(--color-red);
}

.contact__schedule-row--closed .contact__schedule-day {
    color: var(--color-gray);
}

.contact__map {
    border-radius: var(--radius-card);
    overflow: hidden;
    flex: 1;
    min-height: 300px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.contact__map iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* --- Contact Cards --- */
.contact__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 40px 30px;
    border-radius: var(--radius-card);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--color-light);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: var(--color-dark);
}

.contact__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact__card--emergency {
    background: var(--color-dark);
    color: var(--color-light);
    border-color: transparent;
}

.contact__card--emergency .contact__card-title {
    color: var(--color-light);
}

.contact__card--emergency .contact__card-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 22px;
    font-weight: 600;
}

.contact__card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(228, 16, 33, 0.1);
}

.contact__card--emergency .contact__card-icon {
    background: rgba(228, 16, 33, 0.3);
}

.contact__card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
}

.contact__card-text {
    font-size: var(--fs-body);
    line-height: 1.5;
    color: var(--color-gray);
}

.contact__card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-red);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.contact__card-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact__card-link {
    font-size: var(--fs-body);
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.contact__card-link:hover {
    color: var(--color-red);
}

.contact__card-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.contact__social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(228, 16, 33, 0.1);
    color: var(--color-red);
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.contact__social-btn:hover {
    background: var(--color-red);
    color: #fff;
    transform: scale(1.1);
}

.contact__cards-row {
    display: contents;
}

/* ==========================================
   SECTION 7: FOOTER
   ========================================== */
.footer {
    padding: 100px var(--section-px) 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-radius: 50px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__logo-text {
    display: flex;
    flex-direction: column;
}

.footer__logo-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 2px;
    line-height: 1;
}

.footer__logo-sub {
    font-family: var(--font-body);
    font-size: 8px;
    color: var(--color-dark);
    letter-spacing: 1px;
}

.footer__nav {
    display: flex;
    gap: 25px;
}

.footer__nav a {
    font-family: var(--font-heading);
    font-size: var(--fs-nav);
    font-weight: 600;
    letter-spacing: 1.2px;
    transition: opacity 0.3s;
}

.footer__nav a:hover {
    opacity: 0.7;
}

.footer__middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: var(--fs-small);
    letter-spacing: 1px;
    line-height: 2.17;
}

.footer__legal a:hover {
    text-decoration: underline;
}

.footer__legal-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer__sep {
    color: var(--color-dark);
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 50px;
}

.footer__social-link {
    transition: opacity 0.3s;
}

.footer__social-link:hover {
    opacity: 0.7;
}

.footer__emergency {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__247 {
    font-family: var(--font-heading);
    font-size: 20px;
}

.footer__phone {
    font-family: var(--font-heading);
    font-size: var(--fs-nav);
    font-weight: 600;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: var(--fs-small);
    letter-spacing: 1px;
    line-height: 2.17;
}

.footer__credit-link {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.footer__credit-link:hover {
    opacity: 0.7;
}

.footer__credit-logo {
    height: 20px;
}

/* ==========================================
   LEGAL PAGES
   ========================================== */
.legal {
    min-height: 100vh;
    padding: 80px var(--section-px);
    background: var(--color-light);
}

.legal__container {
    max-width: 780px;
    margin: 0 auto;
}

.legal__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
    text-decoration: none;
    margin-bottom: 50px;
    transition: color 0.3s;
}

.legal__back:hover {
    color: var(--color-red);
}

.legal__header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.legal__title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.legal__date {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-gray);
}

.legal__intro {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-dark);
    margin-bottom: 40px;
}

.legal__section {
    margin-bottom: 35px;
}

.legal__section h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.legal__section p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray);
}

@media (max-width: 768px) {
    .legal {
        padding: 50px 30px;
    }

    .legal__title {
        font-size: 28px;
    }

    .legal__intro {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .legal {
        padding: 40px 15px;
    }

    .legal__title {
        font-size: 24px;
    }

    .legal__back {
        margin-bottom: 30px;
    }
}

/* ==========================================
   STATUS BUBBLE
   ========================================== */
.status-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 50px;
    background: var(--color-light);
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    cursor: default;
    z-index: 89;
    overflow: hidden;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.status-bubble:hover {
    padding: 7px 14px;
}

.status-bubble__dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    animation: statusPulse 2s ease-in-out infinite;
}

.status-bubble--closed .status-bubble__dot {
    background: var(--color-red);
    box-shadow: 0 0 8px rgba(228, 16, 33, 0.6);
    animation: statusPulseClosed 2s ease-in-out infinite;
}

.status-bubble__label {
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 0;
}

.status-bubble__detail {
    max-width: 0;
    opacity: 0;
    font-size: 10px;
    overflow: hidden;
    transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
}

.status-bubble:hover .status-bubble__detail {
    max-width: 200px;
    opacity: 1;
}

.status-bubble__detail::after {
    content: '·';
    margin-left: 6px;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 4px rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 12px rgba(34, 197, 94, 0.8); }
}

@keyframes statusPulseClosed {
    0%, 100% { box-shadow: 0 0 4px rgba(228, 16, 33, 0.4); }
    50% { box-shadow: 0 0 12px rgba(228, 16, 33, 0.8); }
}

/* ==========================================
   RESPONSIVE - 1440px
   ========================================== */
@media (max-width: 1440px) {
    :root {
        --section-px: 100px;
        --fs-hero: 66px;
    }

    .hero {
        padding: 100px;
    }

    .hero__subtitle {
        font-size: 26px;
    }

    .hero__contact-item {
        font-size: 29px;
    }

    .navbar__link {
        font-size: 20px;
    }

    .about__content {
        padding: 60px 60px;
        gap: 60px;
    }

    .about__image {
        width: 35%;
    }

    .service-card:nth-child(odd) {
        padding-right: 100px;
    }

    .service-card:nth-child(even) {
        padding-left: 100px;
    }

    .contact__title {
        font-size: 70px;
    }

    .contact__info-title {
        font-size: 38px;
    }

    .contact__info-block {
        padding: 0;
    }

    .services__title {
        max-width: 446px;
        font-size: 70px;
    }

    .services__subtitle {
        font-size: 18px;
        max-width: none;
    }
}

/* ==========================================
   RESPONSIVE - 1400px (Navbar adaptation)
   ========================================== */
@media (max-width: 1400px) {
    .navbar {
        padding: 15px 35px;
    }

    .navbar__logo-img {
        height: 35px;
    }

    .navbar__links {
        gap: 25px;
        margin-right: 25px;
    }

    .navbar__link {
        font-size: 16px;
    }

    .navbar__icon-btn {
        width: 45px;
        height: 45px;
    }

    .navbar__icon-btn img,
    .navbar__lang-btn svg {
        width: 24px;
        height: 24px;
    }

    .navbar__right {
        gap: 15px;
    }
}

/* ==========================================
   RESPONSIVE - 1200px (Navbar smaller)
   ========================================== */
@media (max-width: 1262px) {
    .contact__cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact__card--emergency {
        padding: 35px 30px;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .contact__card--emergency .contact__card-icon {
        width: 50px;
        height: 50px;
    }

    .contact__card--emergency .contact__card-text {
        font-size: 18px;
    }

    .contact__cards-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        grid-column: 1 / -1;
    }
}

@media (max-width: 1200px) {
    .navbar {
        padding: 12px 25px;
    }

    .navbar__logo-img {
        height: 30px;
    }

    .navbar__links {
        gap: 20px;
        margin-right: 20px;
    }

    .navbar__link {
        font-size: 14px;
    }

    .navbar__icon-btn {
        width: 40px;
        height: 40px;
    }

    .navbar__icon-btn img,
    .navbar__lang-btn svg {
        width: 20px;
        height: 20px;
    }

    .navbar__right {
        gap: 10px;
    }

    .services__header {
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }

    .about__content {
        flex-direction: column;
        gap: 0;
    }

    .about__text {
        padding: 0 0 50px 0;
        gap: 30px;
    }

    .about__stats {
        flex-direction: row;
    }

    .about__stat-number {
        font-size: 70px;
    }
}

/* ==========================================
   RESPONSIVE - 1024px
   ========================================== */
@media (max-width: 1024px) {
    :root {
        --section-px: 75px;
        --fs-hero: 40px;
        --fs-section: 60px;
        --fs-subsection: 32px;
        --fs-nav: 14px;
        --fs-body: 18px;
        --fs-stat: 80px;
    }

    .hero {
        padding: 100px 75px;
    }

    .hero__subtitle {
        font-size: 18px;
    }

    .navbar {
        padding: 10px 20px;
        left: 50px;
        right: 50px;
    }

    .navbar__logo-img {
        height: 28px;
    }

    .navbar__links {
        gap: 15px;
        margin-right: 15px;
    }

    .navbar__icon-btn {
        width: 35px;
        height: 35px;
    }

    .navbar__icon-btn img,
    .navbar__lang-btn svg {
        width: 18px;
        height: 18px;
    }

    .navbar__right {
        gap: 8px;
    }

    .hero__subtitle {
        font-size: 18px;
    }

    .hero__contact-item {
        font-size: 16px;
    }

    .hero__ctas .btn {
        font-size: 16px;
    }

    .hero__ctas .btn--light img,
    .hero__ctas .btn--light svg:last-child {
        width: 20px;
        height: 20px;
    }

    .service-card__image {
        width: 220px;
    }

    .service-card__content {
        padding: 20px 20px;
    }

    .service-card__text {
        font-size: 16px;
    }

    .service-card:nth-child(odd) {
        padding-right: 0;
    }

    .service-card:nth-child(even) {
        padding-left: 0;
    }

    .about {
        padding-bottom: 25px;
    }

    .about__content {
        padding: 50px 50px;
        gap: 0;
    }

    .about__card {
        flex-direction: column;
    }

    .about__image {
        width: 100%;
        min-height: 350px;
        border-radius: 0;
    }

    .contact__row {
        flex-direction: column;
    }

    .contact__form-col {
        max-width: 100%;
    }

    .contact__info-col {
        margin-top: 50px;
    }

    .contact__info-title {
        font-size: 32px;
    }

    .contact__info-block {
        padding: 0;
    }

    .contact__header-btn {
        width: 60px;
        height: 60px;
    }

    .contact__header-btn img,
    .contact__header-btn svg {
        width: 30px;
        height: 30px;
    }

    .contact__header-btn {
        border-radius: 20px;
    }

    .contact__header-btn--wa {
        padding: 0 15px;
    }

    .contact__map {
        min-height: 300px;
        width: 100%;
    }

    .contact__map iframe {
        height: 300px;
        width: 100%;
    }

    .footer__nav {
        gap: 15px;
    }

    .footer__middle {
        justify-content: center;
    }

    .footer__legal {
        flex-direction: column;
        align-items: flex-start;
    }

    .brands__track {
        gap: 60px;
    }

    .services__title {
        max-width: 446px;
    }

    .services__subtitle {
        font-size: 16px;
        max-width: none;
    }

    .services__icon-btn {
        width: 60px;
        height: 60px;
        border-radius: 20px;
    }

    .services__header-right {
        gap: 20px;
    }
}

/* ==========================================
   RESPONSIVE - 768px
   ========================================== */
@media (max-width: 768px) {
    :root {
        --section-px: 50px;
        --section-py: 100px;
        --fs-hero: 48px;
        --fs-section: 48px;
        --fs-subsection: 28px;
        --fs-nav: 18px;
        --fs-body: 16px;
        --fs-stat: 60px;
    }

    .contact__title {
        font-size: 40px;
    }

    .contact__form-header {
        gap: 15px;
    }

    .contact__info-title {
        font-size: 28px;
    }

    .form-group input,
    .form-group textarea,
    .custom-select__text {
        font-size: 16px;
    }

    .contact form .btn--dark {
        padding: 20px;
    }

    .contact {
        padding-top: 123px;
    }

    /* Show hamburger, hide nav links */
    .navbar__hamburger {
        display: flex;
    }

    .navbar__links {
        display: none;
    }

    .navbar__lang-wrapper {
        display: none;
    }

    .navbar__right > .navbar__icon-btn {
        display: none;
    }

    .navbar {
        padding: 10px 25px;
        left: 10px;
        right: 10px;
    }

    .navbar__logo-img {
        height: 38px;
    }

    .navbar__right {
        gap: 15px;
    }

    /* Hero */
    .hero {
        padding: 50px 50px;
        height: auto;
        min-height: 100vh;
        min-height: 100svh;
    }

    .hero__title {
        max-width: 100%;
    }

    .hero__subtitle {
        font-size: 20px;
    }

    .hero__content {
        margin-top: 75px;
    }

    .hero__contact-bar {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero__contact-item {
        font-size: 22px;
        gap: 15px;
    }

    .hero__ctas {
        flex-wrap: wrap;
    }

    /* Emergency */
    .emergency {
        flex-direction: column;
        align-items: stretch;
        padding: var(--section-py) var(--section-px) 85px;
        gap: 40px;
    }

    .emergency__left {
        width: 100%;
        max-width: 100%;
        position: relative;
        top: auto;
        align-self: auto;
    }

    .emergency__title-block {
        flex-direction: row-reverse;
        justify-content: space-between;
        width: 100%;
    }

    .emergency__title {
        font-size: 28px;
    }

    .btn--light svg:last-child {
        margin-left: 0;
    }

    /* Services */
    .services {
        gap: 100px;
        padding-top: 140px;
    }

    .services__header {
        gap: 50px;
    }

    .services__title {
        max-width: 242px;
        font-size: 40px;
        line-height: 1.35;
    }

    .services__subtitle {
        font-size: 16px;
        max-width: none;
        line-height: 1.5;
    }

    .services__header-right {
        gap: 20px;
    }

    .services__icon-btn {
        width: 60px;
        height: 60px;
        border-radius: 20px;
    }

    .service-card,
    .service-card--reverse {
        flex-direction: column;
    }

    .service-card__title {
        font-size: 16px;
    }

    .brands__title {
        font-size: 28px;
    }

    .service-card__image {
        width: 100%;
        min-height: 170px;
        border-radius: var(--radius-card) var(--radius-card) 0 0 !important;
    }

    .service-card__content {
        padding: 20px 20px 10px 20px;
        border-radius: 0 0 var(--radius-card) var(--radius-card) !important;
    }

    .service-card:nth-child(odd),
    .service-card:nth-child(even) {
        padding: 0;
    }

    .service-card__arrow {
        display: block;
    }

    .service-card__content {
        cursor: pointer;
    }

    .service-card__text {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .service-card.is-open .service-card__text {
        max-height: 800px;
    }

    .service-card.is-open .service-card__arrow {
        transform: rotate(90deg);
    }

    /* About */
    .about__card {
        flex-direction: column;
    }

    .about__content {
        padding: 50px;
        gap: 0;
        flex-direction: column;
    }

    .about__image {
        width: 100%;
        min-height: 300px;
        border-radius: 0 0 var(--radius-card) var(--radius-card);
    }

    .about__stats {
        flex-direction: row;
        gap: 50px;
    }

    .about__stat-number {
        font-size: 50px;
    }

    /* Contact */
    .contact__row {
        flex-direction: column;
    }

    .contact__info-block {
        padding: 0;
    }

    .contact__cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact__card--emergency {
        flex-direction: column;
        padding: 40px 30px;
    }

    .contact__cards-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer {
        padding-top: 32px;
        padding-bottom: 80px;
    }

    .footer__top {
        flex-direction: column;
        gap: 20px;
    }

    .footer__nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .footer__middle {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer__social {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }
}

/* ==========================================
   RESPONSIVE - 540px
   ========================================== */
@media (max-width: 540px) {
    .hero__ctas {
        flex-direction: column;
    }

    .hero__ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__contact-bar {
        width: 100%;
    }

    .hero__contact-item {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   RESPONSIVE - 500px
   ========================================== */
@media (max-width: 500px) {
    .hero,
    .emergency,
    .services,
    .about,
    .contact,
    .footer {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    :root {
        --section-px: 25px;
        --section-py: 50px;
        --fs-hero: 27px;
        --fs-section: 36px;
        --fs-subsection: 24px;
        --fs-nav: 16px;
        --fs-body: 16px;
        --fs-stat: 50px;
    }

    .contact__title {
        font-size: 28px;
    }

    .contact__header-btn {
        width: 50px;
        height: 50px;
    }

    .contact__header-btn img,
    .contact__header-btn svg {
        width: 25px;
        height: 25px;
    }

    .contact__header-btn--wa {
        padding: 0;
    }

    .contact__form-header {
        flex-direction: row;
        align-items: center;
        gap: 5px;
    }

    .contact__form-btns {
        gap: 9px;
    }

    .contact__schedule-row {
        flex-direction: column;
    }

    .contact__schedule-hours {
        justify-content: center;
    }

    .contact__info-col {
        margin-top: 20px;
    }

    .contact {
        gap: 52px;
    }

    .form-group textarea {
        height: 100px;
    }

    .hero {
        padding: 50px 25px;
    }

    .navbar {
        padding: 12px 20px;
        height: 50px;
    }

    .navbar__logo {
        width: 80px;
    }

    .navbar__hamburger {
        width: 24px;
        gap: 6px;
    }

    .navbar__icon-btn {
        width: 40px;
        height: 40px;
    }

    .hero__subtitle {
        font-size: 16px;
        line-height: 27px;
    }

    .hero__contact-item {
        font-size: 18px;
    }

    .btn {
        font-size: 16px;
        padding: 10px 15px;
    }

    .btn--dark {
        width: 100%;
    }

    .services {
        padding-top: 85px;
    }

    .services__header {
        flex-direction: column;
        gap: 25px;
        position: relative;
    }

    .services__title {
        width: 178px;
        max-width: none;
        font-size: 28px;
        line-height: 1.43;
    }

    .services__subtitle {
        font-size: 16px;
        line-height: 1.58;
    }

    .services__header-right {
        gap: 25px;
    }

    .services__header-btns {
        flex-direction: row;
        position: absolute;
        right: 0;
        top: 13px;
    }

    .services__icon-btn {
        width: 50px;
        height: 50px;
    }

    .services__icon-btn img,
    .services__icon-btn svg {
        width: 25px;
        height: 25px;
    }

    .service-card__content {
        padding: 20px 20px 10px 20px;
    }

    .about {
        padding-top: 85px;
    }

    .about__content {
        padding: 30px 25px;
    }

    .about__text {
        padding: 0 0 30px 0;
    }

    .about__stat-number {
        font-size: 35px;
    }

    .about__desc {
        max-width: 100%;
    }

    .contact__form-row {
        flex-direction: column;
    }

    .brands__title {
        padding: 0 15px;
    }

    .brands__track {
        gap: 40px;
    }

    .brands__track img {
        height: 45px;
    }

    .emergency__logo {
        position: absolute;
        top: -50px;
        left: 0;
    }

    .footer {
        padding-top: 32px;
        padding-bottom: 80px;
    }

    .footer__nav a {
        font-size: 16px;
    }

    .footer__legal-links {
        flex-direction: column;
        align-items: center;
    }

    .footer__legal-links .footer__sep {
        display: none;
    }

    .footer__legal {
        align-items: center;
    }
}

/* ==========================================
   RESPONSIVE - 320px
   ========================================== */
@media (max-width: 320px) {
    :root {
        --section-px: 10px;
        --fs-hero: 28px;
        --fs-section: 28px;
        --fs-subsection: 20px;
        --fs-body: 14px;
        --fs-stat: 40px;
    }

    .hero {
        padding: 50px 10px;
    }

    .navbar {
        padding: 10px 25px;
    }

    .about__content {
        padding: 25px 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 18px;
    }

    .custom-select__trigger {
        padding: 18px;
    }
}
