/* ================================================
   GRUPO MONTERREY - Stylesheet
   Aesthetic: Organic Luxury — nature meets industry
   ================================================ */

/* ── Variables ── */
:root {
    --orange: #f18200;
    --orange-light: #ff9c27;
    --orange-glow: rgba(241, 130, 0, 0.15);
    --green-dark: #2d5a27;
    --green: #4a8c3f;
    --green-light: #6bb85e;
    --green-pale: #e8f5e3;
    --dark: #1a1a2e;
    --dark-soft: #2a2a3e;
    --gray-900: #1f2937;
    --gray-700: #374151;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

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

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

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Section base ── */
.section {
    padding: 100px 0;
    position: relative;
}

.section--dark {
    background: var(--dark);
    color: var(--white);
}

.section--light {
    background: var(--gray-100);
}

.section__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
    position: relative;
    padding-left: 40px;
}

.section__label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: var(--orange);
    transform: translateY(-50%);
}

.section__label--light {
    color: var(--orange-light);
}

.section__label--light::before {
    background: var(--orange-light);
}

.section__label--green {
    color: var(--green);
}

.section__label--green::before {
    background: var(--green);
}

.section__label--green-light {
    color: var(--green-light);
}

.section__label--green-light::before {
    background: var(--green-light);
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}

.section__title--light {
    color: var(--white);
}

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

.text--accent-green {
    color: var(--green);
}

.section__description {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 620px;
    line-height: 1.8;
}

.section__description--light {
    color: rgba(255,255,255,0.7);
}

.section__header--center {
    text-align: center;
    margin-bottom: 60px;
}

.section__header--center .section__label {
    padding-left: 0;
}

.section__header--center .section__label::before {
    display: none;
}

.section__header--center .section__description {
    margin: 0 auto;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.btn--primary:hover {
    background: var(--orange-light);
    border-color: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(241, 130, 0, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn--outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 18px 42px;
    font-size: 1.05rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ── Indicators Bar ── */
.indicators-bar {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.indicators-bar--hidden {
    transform: translateY(-100%);
}

.indicators-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    min-height: 42px;
}

.indicators-bar__indicators {
    display: flex;
    align-items: center;
    gap: 0;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    transition: background var(--transition);
}

.indicator:hover {
    background: rgba(255,255,255,0.05);
}

.indicator__label {
    color: rgba(255,255,255,0.45);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.indicator__value {
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    font-variant-numeric: tabular-nums;
}

.indicator__change {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 3px;
}

.indicator__change--up {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.12);
}

.indicator__change--down {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.12);
}

.indicator__divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.1);
}

.indicator--date {
    color: rgba(255,255,255,0.5);
    gap: 6px;
}

.indicator--date i {
    font-size: 0.7rem;
    color: var(--orange);
}

.indicators-bar__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar__social {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-right: 16px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.top-bar__social a {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    transition: all var(--transition);
}

.top-bar__social a:hover {
    color: var(--orange);
    transform: translateY(-1px);
}

/* ── Bascula Indicator ── */
.indicator--bascula {
    gap: 6px;
    cursor: default;
}

.indicator--bascula i:first-child {
    color: var(--orange);
    font-size: 0.85rem;
}

.bascula-status {
    font-weight: 700;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 3px;
}

.bascula-status--open {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.15);
}

.bascula-status--closed {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.15);
}

.bascula-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.5);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.6rem;
    cursor: pointer;
    transition: all var(--transition);
}

.bascula-btn:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

/* ── Bascula Modal ── */
.bascula-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bascula-modal.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.bascula-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}

.bascula-modal__content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.bascula-modal.active .bascula-modal__content {
    transform: translateY(0);
}

.bascula-modal__content--admin {
    max-width: 550px;
}

.bascula-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.bascula-modal__close {
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.bascula-modal__close:hover {
    background: var(--gray-300);
    color: var(--dark);
}

.bascula-modal__status-big {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 900;
    font-family: var(--font-display);
}

.bascula-modal__status-big i {
    font-size: 1.4rem;
}

.bascula-modal__status-big.status--open {
    color: #16a34a;
}

.bascula-modal__status-big.status--open i {
    color: #22c55e;
}

.bascula-modal__status-big.status--closed {
    color: #dc2626;
}

.bascula-modal__status-big.status--closed i {
    color: #ef4444;
}

.bascula-modal__current {
    display: none;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.bascula-modal__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bascula-modal__title i {
    color: var(--orange);
    font-size: 0.95rem;
}

.bascula-modal__schedule {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.schedule-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    border: 1px solid var(--gray-100);
}

.schedule-day--today {
    background: var(--orange-glow);
    border-color: var(--orange);
    font-weight: 600;
}

.schedule-day--past {
    opacity: 0.4;
}

.schedule-day__date {
    color: var(--dark);
    font-weight: 600;
}

.schedule-day__hours {
    color: var(--gray-500);
}

.schedule-day__status {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 50px;
}

.schedule-day__status--open {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}

.schedule-day__status--closed {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.schedule-day__status--upcoming {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

/* ── Bascula Calendar ── */
.bascula-calendar {
    margin-bottom: 16px;
}

.bascula-calendar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.bascula-calendar__month {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--dark);
    text-transform: capitalize;
}

.bascula-calendar__nav {
    width: 34px;
    height: 34px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.bascula-calendar__nav:hover {
    background: var(--orange);
    color: white;
}

.bascula-calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 6px;
}

.bascula-calendar__weekdays span {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 0;
}

.bascula-calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: default;
    transition: all var(--transition);
    position: relative;
    color: var(--gray-500);
}

.cal-day--empty {
    background: none;
}

.cal-day--other {
    color: var(--gray-300);
}

.cal-day--today {
    background: var(--dark);
    color: white;
    font-weight: 700;
}

.cal-day--full {
    background: rgba(34, 197, 94, 0.18);
    color: #16a34a;
    cursor: pointer;
    font-weight: 700;
}

.cal-day--full:hover {
    background: rgba(34, 197, 94, 0.35);
    transform: scale(1.1);
}

.cal-day--full.cal-day--today {
    background: #16a34a;
    color: white;
}

.cal-day--half {
    background: rgba(234, 179, 8, 0.18);
    color: #b45309;
    cursor: pointer;
    font-weight: 700;
}

.cal-day--half:hover {
    background: rgba(234, 179, 8, 0.35);
    transform: scale(1.1);
}

.cal-day--half.cal-day--today {
    background: #eab308;
    color: white;
}

.cal-day--closed-day {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
    cursor: pointer;
    font-weight: 700;
}

.cal-day--closed-day:hover {
    background: rgba(239, 68, 68, 0.3);
    transform: scale(1.1);
}

.cal-day--closed-day.cal-day--today {
    background: #dc2626;
    color: white;
}

.cal-day--past {
    opacity: 0.4;
}

.cal-day--selected {
    box-shadow: 0 0 0 2px var(--orange);
}

.cal-day__dot {
    position: absolute;
    bottom: 3px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

.cal-day--full .cal-day__dot { background: #16a34a; }
.cal-day--half .cal-day__dot { background: #eab308; }
.cal-day--closed-day .cal-day__dot { background: #dc2626; }

.bascula-calendar__legend {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    margin-bottom: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: var(--gray-500);
    font-weight: 600;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
}

.legend-dot--full { background: rgba(34, 197, 94, 0.3); }
.legend-dot--half { background: rgba(234, 179, 8, 0.3); }
.legend-dot--closed { background: rgba(239, 68, 68, 0.25); }

.bascula-modal__detail {
    min-height: 40px;
    padding: 12px 16px;
    background: var(--gray-100);
    margin-bottom: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bascula-modal__detail:empty {
    display: none;
}

.bascula-modal__detail--alert {
    background: #fef3c7;
    border: 1.5px solid #eab308;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 14px;
}

.bascula-modal__detail--alert i {
    font-size: 1.1rem;
}

.bascula-modal__detail--closed-alert {
    background: #ffe4e6;
    border: 1.5px solid #f87171;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 14px;
}

.bascula-modal__detail--closed-alert i {
    font-size: 1.1rem;
}

.bascula-modal__detail--open-alert {
    background: #dcfce7;
    border: 1.5px solid #4ade80;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 14px;
}

.bascula-modal__detail--open-alert i {
    font-size: 1.1rem;
}

.bascula-modal__detail i {
    color: var(--orange);
}

.bascula-modal__note {
    font-size: 0.8rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
}

.bascula-modal__note i {
    color: var(--orange);
}

/* ── Bascula Admin ── */
.bascula-admin__month {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.bascula-admin__month label {
    font-weight: 700;
    color: var(--dark);
}

.bascula-admin__month input {
    padding: 8px 14px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition);
}

.bascula-admin__month input:focus {
    border-color: var(--orange);
}

.bascula-admin__entries {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    max-height: 350px;
    overflow-y: auto;
}

.admin-entry {
    display: grid;
    grid-template-columns: 1fr auto 1fr 1fr auto;
    gap: 8px;
    align-items: center;
    padding: 10px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
}

.admin-entry input,
.admin-entry select {
    padding: 8px 10px;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
}

.admin-entry input:focus,
.admin-entry select:focus {
    border-color: var(--orange);
}

.admin-entry__remove {
    width: 32px;
    height: 32px;
    background: rgba(239, 68, 68, 0.1);
    border: none;
    border-radius: 4px;
    color: #ef4444;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.admin-entry__remove:hover {
    background: #ef4444;
    color: white;
}

.bascula-admin__add {
    margin-bottom: 16px;
}

.bascula-admin__actions {
    display: flex;
    justify-content: flex-end;
}

.login-dropdown__divider {
    height: 1px;
    background: var(--gray-100);
    margin: 4px 0;
}

/* ── Login Dropdown ── */
.login-dropdown {
    position: relative;
}

.login-dropdown__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(241, 130, 0, 0.15);
    border: 1px solid rgba(241, 130, 0, 0.25);
    border-radius: var(--radius-sm);
    color: var(--orange-light);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.login-dropdown__btn:hover {
    background: rgba(241, 130, 0, 0.25);
    border-color: var(--orange);
}

.login-dropdown__btn i:first-child {
    font-size: 0.9rem;
}

.login-dropdown__arrow {
    font-size: 0.6rem;
    transition: transform var(--transition);
}

.login-dropdown.active .login-dropdown__arrow {
    transform: rotate(180deg);
}

.login-dropdown__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 280px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 2000;
    overflow: hidden;
}

.login-dropdown.active .login-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.login-dropdown__header {
    padding: 14px 18px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-500);
    border-bottom: 1px solid var(--gray-100);
}

.login-dropdown__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    transition: all var(--transition);
    border-bottom: 1px solid var(--gray-100);
}

.login-dropdown__item:last-child {
    border-bottom: none;
}

.login-dropdown__item:hover {
    background: var(--orange-glow);
}

.login-dropdown__item i {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--orange);
    flex-shrink: 0;
    transition: all var(--transition);
}

.login-dropdown__item:hover i {
    background: var(--orange);
    color: var(--white);
}

.login-dropdown__item-title {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

.login-dropdown__item-desc {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.3;
}

/* ── Header ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all var(--transition);
    padding-top: 42px; /* space for indicators-bar */
}

.header--scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    padding-top: 0;
}

.header--scrolled .header__logo-name {
    color: var(--dark);
}

.header--scrolled .header__nav-link {
    color: var(--gray-700);
}

.header--scrolled .header__nav-link:hover,
.header--scrolled .header__nav-link.active {
    color: var(--green-dark);
}

.header--scrolled .header__menu-btn span {
    background: var(--dark);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.header__logo-img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    border-radius: 50%;
    transition: transform var(--transition);
}

.header__logo:hover .header__logo-img {
    transform: scale(1.05);
}

.header__logo-icon {
    width: 44px;
    height: 44px;
    color: var(--orange);
    transition: color var(--transition);
}

.header__logo-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.text--green {
    color: var(--green-light);
    transition: color var(--transition);
}

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

.header--scrolled .text--green {
    color: var(--green-dark);
}

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

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__nav-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition);
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width var(--transition);
}

.header__nav-link:hover,
.header__nav-link.active {
    color: var(--orange);
}

.header__nav-link:nth-child(odd):hover,
.header__nav-link:nth-child(odd).active {
    color: var(--green-light);
}

.header--scrolled .header__nav-link:nth-child(odd):hover,
.header--scrolled .header__nav-link:nth-child(odd).active {
    color: var(--green-dark);
}

.header--scrolled .header__nav-link:nth-child(even):hover,
.header--scrolled .header__nav-link:nth-child(even).active {
    color: var(--orange);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
    width: 100%;
}

.header__nav-link:nth-child(odd)::after {
    background: var(--green);
}

.header__nav-link:nth-child(even)::after {
    background: var(--orange);
}

/* ── Menu Button ── */
.header__menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.header__menu-btn span {
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    border-radius: 2px;
}

.header__menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.header__menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    --scroll: 0px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url('../images/DJI_0350.JPG')
        center / cover no-repeat;
    transform: translateY(var(--scroll));
    will-change: transform;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.88) 0%,
        rgba(45, 90, 39, 0.75) 50%,
        rgba(26, 26, 46, 0.85) 100%
    );
    z-index: 1;
}

.hero__pattern {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.04;
    background-image:
        radial-gradient(circle at 25% 25%, var(--orange) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--orange) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero__content {
    position: relative;
    z-index: 3;
    padding-top: 120px;
    padding-bottom: 80px;
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero__title--accent {
    color: var(--orange);
    font-style: italic;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 36px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ── About ── */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about__image-wrapper {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about__image-main:hover img {
    transform: scale(1.03);
}

.about__image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about__image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__experience {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--orange);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 8px 30px rgba(241, 130, 0, 0.4);
}

.about__experience-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    display: block;
}

.about__experience-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.3;
}

.about__text {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about__values {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about__value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about__value-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.about__value:first-child .about__value-icon {
    background: var(--orange-glow);
    color: var(--orange);
}

.about__value:last-child .about__value-icon {
    background: var(--green-pale);
    color: var(--green-dark);
}

.about__value h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.about__value p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ── Companies ── */
.companies {
    overflow: hidden;
}

.companies__bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(30deg, var(--orange) 12%, transparent 12.5%, transparent 87%, var(--orange) 87.5%, var(--orange)),
        linear-gradient(150deg, var(--orange) 12%, transparent 12.5%, transparent 87%, var(--orange) 87.5%, var(--orange)),
        linear-gradient(30deg, var(--orange) 12%, transparent 12.5%, transparent 87%, var(--orange) 87.5%, var(--orange)),
        linear-gradient(150deg, var(--orange) 12%, transparent 12.5%, transparent 87%, var(--orange) 87.5%, var(--orange));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
}

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

.company-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    cursor: default;
}

.company-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(241, 130, 0, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.company-card__decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.company-card:hover .company-card__decoration {
    transform: scaleX(1);
}

.company-card__logo {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 20px;
    transition: transform var(--transition);
    overflow: hidden;
}

.company-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-card:hover .company-card__logo {
    transform: scale(1.08);
}

.company-card:nth-child(odd):hover {
    border-color: rgba(74, 140, 63, 0.4);
}

.company-card:nth-child(odd) .company-card__decoration {
    background: linear-gradient(90deg, var(--green), var(--green-light));
}

.company-card:nth-child(odd) .company-card__type {
    color: var(--green-light);
}

.company-card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 20px;
    transition: transform var(--transition);
}

.company-card:hover .company-card__icon {
    transform: scale(1.1) rotate(-5deg);
}

.company-card__name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.company-card__type {
    font-size: 0.8rem;
    color: var(--orange);
    font-weight: 600;
    letter-spacing: 1px;
}

.company-card__description {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-top: 12px;
    line-height: 1.7;
}

/* ── Stats ── */
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--gray-100);
    position: relative;
    transition: all var(--transition);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange-glow);
}

.stat-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--orange-glow);
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.stat-card__number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card__label {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
}

.stat-card__bar {
    width: 40px;
    height: 3px;
    background: var(--orange);
    margin: 16px auto 0;
    border-radius: 2px;
}

.stat-card:nth-child(even) .stat-card__bar {
    background: var(--green);
}

.stat-card:nth-child(even) .stat-card__icon {
    background: var(--green-pale);
    color: var(--green-dark);
}

/* ── Sustainability ── */
.sustainability {
    background: linear-gradient(180deg, var(--white) 0%, var(--green-pale) 100%);
}

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

.pillar {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition);
}

.pillar:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pillar__icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.pillar__icon-wrap--green {
    background: var(--green-pale);
    color: var(--green-dark);
}

.pillar__icon-wrap--orange {
    background: var(--orange-glow);
    color: var(--orange);
}

.pillar__icon-wrap--dark {
    background: rgba(26, 26, 46, 0.08);
    color: var(--dark);
}

.pillar__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.pillar__text {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.pillar__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pillar__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 500;
}

.pillar__list li i {
    color: var(--green);
    font-size: 0.75rem;
}

/* ── News ── */
.news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.news-card__image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-card__image img {
    transform: scale(1.08);
}

.news-card__category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--orange);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.news-card__body {
    padding: 24px;
}

.news-card__date {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
}

.news-card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin: 8px 0 12px;
    line-height: 1.4;
}

.news-card__excerpt {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--orange);
    transition: gap var(--transition);
}

.news-card__link:hover {
    gap: 12px;
}

.news-card__link--green {
    color: var(--green);
}

.news-card__category--green {
    background: var(--green-dark);
}

/* ── Careers ── */
.careers {
    position: relative;
    overflow: hidden;
}

.careers__bg {
    position: absolute;
    inset: 0;
    background: url('../images/bc31e9c5-8757-4d73-8a2a-397234be8ac8.jpg') center/cover no-repeat;
}

.careers__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45,90,39,0.88) 0%, rgba(26,61,23,0.92) 100%);
}

.careers__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.careers__text {
    max-width: 600px;
}

/* ── Contact ── */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact__text {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--orange-glow);
    color: var(--orange);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact__detail h4 {
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 2px;
    font-weight: 700;
}

.contact__detail p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.contact__form-wrap {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    outline: none;
    transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--orange-glow);
}

.form-group label {
    position: absolute;
    left: 18px;
    top: 16px;
    font-size: 0.95rem;
    color: var(--gray-500);
    pointer-events: none;
    transition: all 0.25s ease;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 14px;
    font-size: 0.75rem;
    color: var(--orange);
    background: var(--white);
    padding: 0 6px;
    font-weight: 600;
}

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

/* ── Footer ── */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
}

.footer__top {
    padding: 60px 0 40px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer__logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 50%;
}

.footer__description {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.5);
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: all var(--transition);
}

.footer__social a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

.footer__heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: all var(--transition);
    display: inline-block;
}

.footer__links a:hover {
    color: var(--orange);
    transform: translateX(4px);
}

.footer__contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 0.88rem;
}

.footer__contact li i {
    color: var(--orange);
    margin-top: 3px;
    font-size: 0.8rem;
}

.footer__contact a {
    color: rgba(255,255,255,0.5);
}

.footer__contact a:hover {
    color: var(--orange);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

/* ── Back to Top ── */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(241, 130, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--orange-light);
    transform: translateY(-4px);
}

/* ── Scroll Animations ── */
[data-animate] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-down"] {
    transform: translateY(-30px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* ── Responsive ── */
/* ================================================
   RESPONSIVE — TV / Large Screens (1440px+)
   ================================================ */
@media (min-width: 1440px) {
    .container {
        max-width: 1360px;
    }

    .hero__title {
        font-size: 5rem;
    }

    .hero__subtitle {
        font-size: 1.3rem;
        max-width: 700px;
    }

    .gallery__grid {
        gap: 16px;
    }

    .map-section__map iframe {
        height: 500px;
    }
}

/* ================================================
   RESPONSIVE — Laptop / Small Desktop (1024px)
   ================================================ */
@media (max-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

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

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

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

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

    .partners__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery__item--wide {
        grid-column: span 1;
    }

    .timeline__track {
        max-width: 700px;
    }
}

/* ================================================
   RESPONSIVE — Tablet (768px)
   ================================================ */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section__header--center {
        margin-bottom: 40px;
    }

    .section__title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .section__description {
        font-size: 1rem;
    }

    /* ── Indicators Bar ── */
    .indicators-bar {
        height: auto;
        padding: 3px 0;
    }

    .indicators-bar__inner {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 4px;
    }

    .indicators-bar__indicators {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: 100%;
        justify-content: flex-start;
        gap: 2px;
        flex: 1;
        min-width: 0;
    }

    .indicators-bar__indicators::-webkit-scrollbar {
        display: none;
    }

    .indicator {
        padding: 4px 8px;
        font-size: 0.7rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .indicator__value {
        font-size: 0.75rem !important;
    }

    .indicator__label {
        font-size: 0.65rem !important;
    }

    .indicator__divider {
        height: 16px;
    }

    .indicators-bar__actions {
        flex-shrink: 0;
        gap: 6px;
    }

    .indicators-bar__actions .top-bar__social {
        display: none;
    }

    .login-dropdown__btn {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    /* ── Header ── */
    .header {
        padding-top: 70px;
    }

    .header__menu-btn {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        z-index: 10001;
    }

    .header__nav.active {
        opacity: 1;
        visibility: visible;
    }

    .header__nav-link {
        font-size: 1.3rem;
        color: var(--white);
    }

    .header__logo-img {
        width: 50px !important;
        height: 50px !important;
    }

    .header__logo-name {
        font-size: 1.1rem !important;
    }

    /* ── Hero ── */
    .hero {
        min-height: 85vh;
    }

    .hero__title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero__subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero__actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero__actions .btn {
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    .hero__scroll {
        display: none;
    }

    /* ── Marquee ── */
    .marquee {
        padding: 8px 0;
    }

    .marquee__item {
        font-size: 0.78rem;
        padding: 0 14px;
    }

    /* ── About ── */
    .about__image-accent {
        width: 120px;
        height: 120px;
        bottom: -15px;
        right: -10px;
    }

    .about__experience {
        top: -10px;
        left: -10px;
        padding: 14px 18px;
    }

    .about__experience-number {
        font-size: 1.8rem;
    }

    .about__text {
        font-size: 0.95rem;
    }

    /* ── Timeline ── */
    .timeline__line {
        left: 20px;
    }

    .timeline__item,
    .timeline__item:nth-child(even),
    .timeline__item:nth-child(odd) {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        text-align: left;
        justify-content: flex-start;
        margin-left: 0;
    }

    .timeline__item:nth-child(odd) .timeline__dot,
    .timeline__item:nth-child(even) .timeline__dot {
        left: 11px;
        right: auto;
    }

    .timeline__item {
        margin-bottom: 30px;
    }

    .timeline__card {
        padding: 18px;
    }

    /* ── News ── */
    .news__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .news-card__title {
        font-size: 1.1rem;
    }

    /* ── Companies ── */
    .companies__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .company-card {
        padding: 20px;
    }

    /* ── Stats ── */
    .stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-card {
        padding: 24px 16px;
    }

    .stat-card__number {
        font-size: 2rem;
    }

    /* ── Gallery ── */
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

    .gallery__overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    }

    .gallery__overlay i {
        display: none;
    }

    /* ── Lightbox ── */
    .lightbox__nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox__nav--prev { left: 10px; }
    .lightbox__nav--next { right: 10px; }

    .lightbox__close {
        top: 12px;
        right: 12px;
    }

    /* ── Partners ── */
    .partners__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .partner-card {
        padding: 20px 12px;
    }

    .partner-card__logo {
        height: 55px;
    }

    .partner-card__logo img {
        max-height: 45px;
    }

    .partner-card__name {
        font-size: 0.85rem;
    }

    .partner-card__desc {
        font-size: 0.7rem;
    }

    /* ── Map ── */
    .map-section__header {
        padding: 40px 0 30px;
    }

    .map-section__map iframe {
        height: 300px;
    }

    /* ── Careers ── */
    .careers__content {
        text-align: center;
    }

    /* ── Contact ── */
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* ── Footer ── */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* ── Bascula Modal ── */
    .bascula-modal__content {
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
        margin: 20px auto;
    }

    .bascula-calendar__weekdays span {
        font-size: 0.7rem;
    }

    .cal-day {
        font-size: 0.8rem;
    }

    /* ── WhatsApp ── */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.7rem;
        bottom: 80px;
        right: 16px;
    }

    .whatsapp-float__tooltip {
        display: none;
    }

    /* ── Back to top ── */
    .back-to-top {
        bottom: 20px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

/* ================================================
   RESPONSIVE — Mobile (480px)
   ================================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .section {
        padding: 50px 0;
    }

    .section__header--center {
        margin-bottom: 30px;
    }

    .section__title {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }

    /* ── Indicators ── */
    .indicators-bar__inner {
        padding: 2px 0;
    }

    .indicator--date,
    .indicator__divider {
        display: none;
    }

    .indicators-bar__actions {
        justify-content: flex-end;
    }

    .login-dropdown__btn {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .login-dropdown__menu {
        right: -10px;
        width: 260px;
    }

    /* ── Header ── */
    .header {
        padding-top: 55px;
    }

    .header__logo-img {
        width: 42px !important;
        height: 42px !important;
    }

    .header__logo-name {
        font-size: 0.95rem !important;
    }

    .header__nav-link {
        font-size: 1.15rem;
    }

    /* ── Hero ── */
    .hero {
        min-height: 75vh;
    }

    .hero__content {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero__title {
        font-size: clamp(1.7rem, 9vw, 2.2rem);
    }

    .hero__subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .hero__actions .btn {
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    /* ── Marquee ── */
    .marquee__item {
        font-size: 0.72rem;
        padding: 0 12px;
    }

    /* ── About ── */
    .about__image-accent {
        width: 100px;
        height: 100px;
    }

    .about__experience {
        padding: 10px 14px;
    }

    .about__experience-number {
        font-size: 1.5rem;
    }

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

    .about__value-icon {
        margin: 0 auto;
    }

    /* ── Timeline ── */
    .timeline__track {
        padding: 20px 0;
    }

    .timeline__item {
        margin-bottom: 24px;
    }

    .timeline__card {
        padding: 16px;
    }

    .timeline__card p {
        font-size: 0.82rem;
    }

    .timeline__year {
        font-size: 0.78rem;
        padding: 3px 12px;
    }

    .timeline__title {
        font-size: 1rem;
    }

    /* ── News ── */
    .news-card__body {
        padding: 16px;
    }

    .news-card__title {
        font-size: 1rem;
    }

    .news-card__excerpt {
        font-size: 0.85rem;
    }

    /* ── Companies ── */
    .company-card__logo img {
        max-height: 50px;
    }

    .company-card__name {
        font-size: 1rem;
    }

    .company-card__description {
        font-size: 0.85rem;
    }

    /* ── Stats ── */
    .stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 18px 12px;
    }

    .stat-card__number {
        font-size: 1.6rem;
    }

    .stat-card__label {
        font-size: 0.75rem;
    }

    .stat-card__icon {
        font-size: 1.3rem;
    }

    .stat-card__icon i {
        font-size: 1.3rem;
    }

    /* ── Gallery ── */
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .gallery__item {
        aspect-ratio: 1;
        border-radius: var(--radius-sm);
    }

    .gallery__item--wide {
        grid-column: span 2;
        aspect-ratio: 16/9;
    }

    .gallery__overlay span {
        font-size: 0.75rem;
    }

    /* ── Sustainability ── */
    .pillar {
        padding: 24px 18px;
    }

    .pillar__title {
        font-size: 1.1rem;
    }

    .pillar__text {
        font-size: 0.88rem;
    }

    .pillar__list li {
        font-size: 0.85rem;
    }

    /* ── Partners ── */
    .partners__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .partner-card {
        padding: 16px 10px;
    }

    .partner-card__logo {
        height: 45px;
        margin-bottom: 10px;
    }

    .partner-card__logo img {
        max-height: 38px;
    }

    .partner-card__name {
        font-size: 0.78rem;
    }

    .partner-card__desc {
        font-size: 0.65rem;
    }

    /* ── Careers ── */
    .careers__content {
        padding: 40px 0;
    }

    /* ── Map ── */
    .map-section__header {
        padding: 30px 0 20px;
    }

    .map-section__map iframe {
        height: 250px;
    }

    /* ── Contact ── */
    .contact__form-wrap {
        padding: 20px;
    }

    .contact__form-title {
        font-size: 1.1rem;
    }

    .contact__detail {
        gap: 12px;
    }

    .contact__detail-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    /* ── Footer ── */
    .footer__col--brand {
        text-align: center;
    }

    .footer__logo {
        justify-content: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__heading {
        font-size: 0.95rem;
    }

    .footer__links li a,
    .footer__contact li {
        font-size: 0.85rem;
    }

    /* ── Bascula ── */
    .bascula-modal__content {
        width: 98%;
        padding: 16px;
        margin: 10px auto;
    }

    .bascula-modal__detail {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .bascula-modal__detail--alert,
    .bascula-modal__detail--closed-alert,
    .bascula-modal__detail--open-alert {
        font-size: 0.82rem;
        padding: 8px 12px;
    }

    .bascula-calendar__weekdays span {
        font-size: 0.65rem;
    }

    .cal-day {
        font-size: 0.75rem;
        min-height: 32px;
    }

    /* ── Login Dropdown ── */
    .login-dropdown__menu {
        width: 250px;
        right: -5px;
    }

    .login-dropdown__item-title {
        font-size: 0.82rem;
    }

    .login-dropdown__item-desc {
        font-size: 0.68rem;
    }
}

/* ================================================
   RESPONSIVE — Small Mobile (360px)
   ================================================ */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .hero__title {
        font-size: 1.5rem;
    }

    .hero__subtitle {
        font-size: 0.82rem;
    }

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

    .stat-card__number {
        font-size: 1.4rem;
    }

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

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

    .gallery__item--wide {
        grid-column: span 1;
    }

    .indicators-bar__indicators {
        gap: 2px;
    }

    .indicator {
        padding: 3px 6px;
        font-size: 0.65rem;
    }

    .login-dropdown__menu {
        width: 230px;
    }

    .bascula-modal__content {
        padding: 12px;
    }
}

/* ================================================
   PRELOADER
   ================================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader__inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader__logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-300);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.preloader__text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--green-dark);
    font-weight: 700;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.8; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ================================================
   HERO SLIDER
   ================================================ */
.hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero__slide--active {
    opacity: 1;
}

.hero__overlay,
.hero__pattern {
    z-index: 1;
}

.hero__content {
    z-index: 2;
    position: relative;
}

.hero__scroll {
    z-index: 2;
    position: relative;
}

/* ================================================
   NEWS MARQUEE
   ================================================ */
.marquee {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee__track {
    display: flex;
    animation: marqueeScroll 35s linear infinite;
}

.marquee__content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 0;
}

.marquee__item {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0 20px;
    letter-spacing: 0.3px;
}

.marquee__item i {
    color: var(--orange-light);
    margin-right: 8px;
}

.marquee__separator {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee:hover .marquee__track {
    animation-play-state: paused;
}

/* ================================================
   TIMELINE
   ================================================ */
.timeline__track {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--orange), var(--green));
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline__item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    width: 50%;
}

.timeline__item:nth-child(even) {
    margin-left: auto;
    padding-left: 40px;
}

.timeline__item:nth-child(odd) {
    padding-right: 40px;
    text-align: right;
    justify-content: flex-end;
}

.timeline__dot {
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--orange);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--orange-glow), var(--shadow-sm);
    z-index: 2;
}

.timeline__item:nth-child(odd) .timeline__dot {
    right: -9px;
}

.timeline__item:nth-child(even) .timeline__dot {
    left: -9px;
}

.timeline__card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

.timeline__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.timeline__year {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.timeline__title {
    font-family: var(--font-display);
    color: var(--green-dark);
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.timeline__card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Timeline responsive handled in main breakpoints */

/* ================================================
   GALLERY
   ================================================ */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery__item:hover img {
    transform: scale(1.08);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__overlay i {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gallery__overlay span {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

/* Gallery responsive handled in main breakpoints */

/* ── Lightbox ── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.3s;
}

.lightbox__close:hover {
    transform: rotate(90deg);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 3;
}

.lightbox__nav:hover {
    background: rgba(255,255,255,0.25);
}

.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

.lightbox__content {
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox__content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.lightbox__caption {
    color: var(--gray-300);
    margin-top: 12px;
    font-size: 0.95rem;
}

/* ================================================
   PARTNERS / CERTIFICATIONS
   ================================================ */
.partners__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.partner-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: 28px 16px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.partner-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-pale), #d4edda);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.5rem;
    color: var(--green-dark);
    transition: background 0.3s;
}

.partner-card:hover .partner-card__icon {
    background: linear-gradient(135deg, var(--orange-glow), #ffe8cc);
    color: var(--orange);
}

.partner-card__logo {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 5px;
}

.partner-card__logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s, transform 0.3s;
}

.partner-card:hover .partner-card__logo img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner-card__name {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.partner-card__desc {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.4;
}

/* Partners responsive handled in main breakpoints */

/* ================================================
   MAP SECTION
   ================================================ */
.map-section {
    position: relative;
}

.map-section__header {
    background: linear-gradient(135deg, var(--green-dark), var(--dark));
    padding: 60px 0 40px;
}

.map-section__map {
    line-height: 0;
}

.map-section__map iframe {
    width: 100%;
    height: 400px;
    filter: saturate(0.8) contrast(1.1);
    transition: filter 0.5s;
}

.map-section__map iframe:hover {
    filter: saturate(1) contrast(1);
}

/* ================================================
   WHATSAPP FLOATING BUTTON
   ================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 28px;
    opacity: 0;
    pointer-events: none;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    animation: whatsappBounce 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float__tooltip {
    position: absolute;
    right: 70px;
    background: var(--white);
    color: var(--gray-900);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float__tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--white);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

@keyframes whatsappBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
