/* ============================================
   GAMAT PERÚ - Web CSS
   Palette: Orange #E87722, Dark #1C2526, White #fff
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --orange: #fd971e;
    --orange-dark: #e08210;
    --orange-light: #fdb04d;
    --dark: #1C2526;
    --dark-2: #141E1F;
    --dark-hero: #0d1b2a;
    --gray: #F5F5F5;
    --gray-2: #e8e8e8;
    --text: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --radius: 8px;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --transition: 0.25s ease;
    --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

strong, b {
    color: var(--orange);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--orange {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn--orange:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232,119,34,0.35);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn--outline-white:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn--outline-dark {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
    font-size: 0.8rem;
}
.btn--outline-dark:hover {
    background: var(--dark);
    color: var(--white);
}

.btn--white-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.9rem 2rem;
}
.btn--white-outline:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

/* ===== TOP BAR ===== */
.topbar {
    background: var(--dark-2);
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.topbar__item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.topbar__phone {
    color: var(--orange);
    font-weight: 600;
    transition: color var(--transition);
}
.topbar__phone:hover { color: var(--orange-light); }

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: box-shadow var(--transition), background var(--transition);
}
.header--scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.header__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 72px;
}

/* LOGO */
.logo { display: flex; align-items: center; }
.logo__image { max-height: 50px; object-fit: contain; }
.footer .logo__image { background: var(--white); padding: 5px 10px; border-radius: 8px; max-height: 60px; }

/* NAV */
.nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}
.nav__link {
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    border-radius: 4px;
    transition: color var(--transition);
    position: relative;
    white-space: nowrap;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width var(--transition);
}
.nav__link:hover::after,
.nav__link--active::after { width: 80%; }
.nav__link--active { color: var(--orange); }
.nav__link:hover { color: var(--orange); }

.nav__dropdown { position: relative; }
.nav__submenu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    min-width: 180px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 999;
}
.nav__dropdown:hover .nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav__submenu-link {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 0.875rem;
    color: var(--text);
    transition: all var(--transition);
}
.nav__submenu-link:hover { background: var(--gray); color: var(--orange); }

.header__cta { margin-left: auto; font-size: 0.8rem; }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all var(--transition);
    border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: var(--dark-hero);
    min-height: 480px; /* Reduced from 580px */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/hero-default.jpg');
    background-size: cover;
    background-position: 100% center;
    opacity: 1;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0d1b2a 0%, #0d1b2a 28%, rgba(13, 27, 42, 0.85) 45%, rgba(13, 27, 42, 0.3) 65%, rgba(13, 27, 42, 0) 85%);
}
.hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 4rem;
    padding-bottom: 2.5rem; /* Reduced from 5rem */
    min-height: 400px; /* Reduced from 520px */
}
.hero__content { flex: 1; max-width: 600px; }
.hero__subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.hero__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.hero__title-highlight {
    display: block;
    color: var(--orange);
}
.hero__desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin: 1.25rem 0 2rem;
    max-width: 480px;
    line-height: 1.7;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__image-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 500px;
}
.hero__img {
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.hero__placeholder {
    width: 300px;
    height: 300px;
    background: rgba(232,119,34,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--orange);
    opacity: 0.5;
}

/* Hero Features Bar */
.hero__features {
    position: relative;
    z-index: 2;
    background: transparent; /* Transparent to show the hero background image */
    border-top: none;
}
.hero__features-inner {
    display: flex;
    gap: 2rem; /* Closer gap */
    padding: 1.25rem 1.5rem 4.5rem 1.5rem; /* Large bottom padding for the overlap space */
    justify-content: flex-start; /* Align features directly under the buttons */
    align-items: center;
}
.hero__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    padding-right: 2rem; /* Spacing before the line */
    border-right: 1px solid rgba(255, 255, 255, 0.35); /* White vertical separator line */
}
.hero__feature:last-child {
    border-right: none;
    padding-right: 0;
}
.hero__feature i { font-size: 1.75rem; color: var(--orange); }
.hero__feature strong { display: block; font-size: 0.875rem; font-weight: 700; }
.hero__feature span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.65); }

/* ===== CATEGORIES STRIP ===== */
.categories-strip {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: calc(100% - 3rem);
    margin: -40px auto 0; /* Pulls it up over the hero section */
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-2);
    overflow: hidden;
}
.categories-strip__inner {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}
.categories-strip__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    border-right: 1px solid var(--gray-2);
    flex: 1;
    min-width: 180px;
    scroll-snap-align: start;
    transition: background var(--transition);
}
.categories-strip__item:hover { background: var(--gray); }
.categories-strip__item:last-child { border-right: none; }
.categories-strip__item i { font-size: 2.3rem; color: var(--orange); }
.categories-strip__item strong { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; color: var(--dark); }
.categories-strip__item span, .categories-strip__item .categories-strip__desc { font-size: 0.75rem; color: var(--text-light); }
.categories-strip__item .categories-strip__desc p { margin: 0; display: inline; }

/* ===== SECTIONS COMMON ===== */
.section { padding: 5rem 0; }
.section__tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.section__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--dark);
    text-transform: uppercase;
    line-height: 1.2;
}
.section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== CATEGORIES GRID ===== */
.categories-section { background: var(--gray); }
@media (min-width: 1200px) {
    .categories-section .container {
        max-width: 1700px;
    }
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
.category-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    display: block;
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.category-card__img {
    height: 400px;
    width: 100%;
    overflow: hidden;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.category-card:hover .category-card__img img { transform: scale(1.05); }
.category-card__icon { font-size: 3.5rem; color: var(--orange); opacity: 0.7; }
.category-card__body {
    padding: 1rem;
    text-align: center;
}
.category-card__body h3 {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--dark);
    letter-spacing: 0.5px;
}

/* ===== BRANDS SECTION ===== */
.brands-section {
    background: var(--dark);
    padding: 3rem 0;
}
.brands-section__inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.brands-section__heading h2 {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.4;
    white-space: nowrap;
}
.brands-section__heading span { color: var(--orange); }
.brands-logos {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    flex: 1;
}
.brand-logo { display: flex; align-items: center; justify-content: center; }
.brand-logo img { max-height: 60px; max-width: 150px; object-fit: contain; background: var(--white); padding: 8px 15px; border-radius: 8px; transition: transform var(--transition); }
.brand-logo img:hover { transform: translateY(-3px); }
.brand-logo__text {
    font-size: 1.1rem;
    font-weight: 900;
    color: rgba(255,255,255,0.75);
    letter-spacing: 2px;
    transition: color var(--transition);
}
.brand-logo:hover .brand-logo__text { color: var(--white); }

/* ===== WHY US ===== */
.whyus-section { background: var(--white); }
.whyus-section__inner {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    flex-wrap: wrap;
}
.whyus-section__left { flex: 1; min-width: 250px; }
.whyus-section__left p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1rem;
    line-height: 1.8;
}
.whyus-stats {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.whyus-stat { text-align: center; }
.whyus-stat i { font-size: 2rem; color: var(--orange); margin-bottom: 0.5rem; }
.whyus-stat__num { display: block; font-size: 2.5rem; font-weight: 900; color: var(--dark); line-height: 1; }
.whyus-stat__label { display: block; font-size: 0.75rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: 1px; margin: 0.4rem 0; }
.whyus-stat__desc { display: block; font-size: 0.8rem; color: var(--text-light); }

/* ===== CTA WHATSAPP ===== */
/* ===== CTA WHATSAPP ===== */
.cta-section {
    position: relative;
    z-index: 20;
    margin-bottom: -60px; /* Overlaps the footer by 60px */
    background: transparent;
    padding: 0;
}
.cta-section__inner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    border-radius: 16px;
    padding: 2.25rem 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.cta-section__bg-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40%;
    object-fit: cover;
    mix-blend-mode: lighten;
    opacity: 0.95;
    pointer-events: none;
    z-index: 1;
}
.cta-section__left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}
.cta-section__wa-icon {
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    flex-shrink: 0;
    transition: transform var(--transition), box-shadow var(--transition);
    animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}
.cta-section__wa-icon:hover { transform: scale(1.1); }
.cta-section__left h2 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--orange);
    text-transform: uppercase;
}
.cta-section__left p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    margin-top: 0.25rem;
}
.btn--white {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    position: relative;
    z-index: 2;
}
.btn--white:hover {
    background: var(--gray-2);
    color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.25);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-2);
    color: rgba(255,255,255,0.8);
    padding: 6.5rem 0 0; /* Increased from 4rem to accommodate floating CTA banner */
}
.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3.5rem; /* Increased from 3rem */
    padding-bottom: 4rem; /* Increased from 3rem */
}
.footer__desc {
    font-size: 0.875rem; /* Slightly larger */
    color: rgba(255,255,255,0.55);
    margin-top: 1.5rem; /* Increased from 1.25rem */
    line-height: 1.8;
}
.footer__social { display: flex; gap: 0.85rem; margin-top: 1.75rem; } /* Increased gaps */
.footer__social-link {
    width: 38px; /* Slightly larger */
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.footer__social-link:hover { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-2px); }
.footer__heading {
    font-size: 0.85rem; /* Slightly larger */
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.75rem; /* Increased from 1.25rem */
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; } /* Increased from 0.6rem */
.footer__links a {
    font-size: 0.9rem; /* Increased from 0.875rem */
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer__links a:hover { color: var(--orange); }
.footer__contact-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; } /* Increased from 0.75rem */
.footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem; /* Increased from 0.6rem */
    font-size: 0.9rem; /* Increased from 0.85rem */
    color: rgba(255,255,255,0.6);
}
.footer__contact-list i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.75rem 0; /* Increased from 1.25rem */
    text-align: center;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .topbar__inner { justify-content: center; font-size: 0.75rem; }
    .topbar__item:first-child { display: none; }

    .header__inner { gap: 1rem; }
    .nav__toggle { display: flex; }
    .nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.5rem 2rem;
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        z-index: 999;
        gap: 0.25rem;
    }
    .nav--open { display: flex; }
    .nav__link { padding: 0.75rem 0; width: 100%; }
    .nav__submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding-left: 1rem; }
    .header__cta { display: none; }
    .hero__inner { flex-direction: column; padding-top: 3rem; padding-bottom: 4rem; min-height: auto; }
    .hero__overlay { background: linear-gradient(180deg, rgba(13, 27, 42, 0.75) 0%, rgba(13, 27, 42, 0.95) 100%); }
    .hero__features-inner { flex-direction: column; gap: 1rem; align-items: center; padding: 1.25rem 1.5rem 3rem 1.5rem; }
    .hero__feature { max-width: 100%; justify-content: center; border-right: none; padding-right: 0; }

    .categories-strip { margin-top: -30px; }
    .categories-strip__inner { flex-wrap: nowrap; }
    .categories-strip__item { min-width: 160px; padding: 1.2rem 1.25rem; }

    .whyus-section__inner { flex-direction: column; gap: 2rem; }
    .whyus-stats { grid-template-columns: repeat(2, 1fr); }

    .brands-section__inner { flex-direction: column; text-align: center; }
    .brands-section__heading h2 { white-space: normal; text-align: center; }
    .brands-logos { justify-content: center; }

    .cta-section { margin-bottom: -50px; }
    .cta-section__inner { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
    .cta-section__bg-img { display: none; }
    .cta-section__left { flex-direction: column; text-align: center; }

    .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 1.75rem; }
    .hero__actions { flex-direction: column; }
    .whyus-stats { grid-template-columns: 1fr 1fr; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.85rem;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 4.5rem 0;
    text-align: center;
    position: relative;
    border-bottom: 3px solid var(--orange);
}
.contact-hero__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact-hero__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--gray-2);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--orange-light);
}

.contact-info-card__icon {
    width: 50px;
    height: 50px;
    background: rgba(232, 119, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: background var(--transition), color var(--transition);
}
.contact-info-card:hover .contact-info-card__icon {
    background: var(--orange);
    color: var(--white);
}

.contact-info-card__content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-info-card__content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-2);
}
.contact-form-card__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}
.contact-form-card__subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.form-group--full {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--gray-2);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text);
    background-color: var(--gray);
    transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--orange);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(232, 119, 34, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: #dc3545;
    font-size: 0.75rem;
    margin-top: 0.35rem;
    font-weight: 600;
}

.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15);
}

.contact-map-section {
    margin-top: 4rem;
}
.contact-map-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 0.75rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-2);
    overflow: hidden;
}
.contact-map-iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: calc(var(--radius) - 4px);
    display: block;
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    .contact-form-card {
        padding: 1.75rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group--full {
        grid-column: span 1;
    }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    will-change: opacity, transform;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex !important;
    flex-direction: row !important;
    padding-left: 0 !important;
    list-style: none !important;
    gap: 0.25rem;
    align-items: center;
    justify-content: center;
    margin: 0;
}
.pagination li, .pagination .page-item {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex !important;
    width: auto !important;
}
.page-item .page-link, .page-item span.page-link {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.85rem;
    margin-left: 0;
    line-height: 1.25;
    color: var(--orange, #E87722);
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s;
    min-width: 38px;
    text-align: center;
}
.page-item.active .page-link, .page-item.active span.page-link {
    z-index: 3;
    color: #fff !important;
    background-color: var(--orange, #E87722) !important;
    border-color: var(--orange, #E87722) !important;
}
.page-item.disabled .page-link, .page-item.disabled span.page-link {
    color: #6c757d !important;
    pointer-events: none;
    background-color: #fff !important;
    border-color: #dee2e6 !important;
    opacity: 0.6;
}
.page-link:hover {
    z-index: 2;
    color: var(--orange-dark, #c95e0a);
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

/* ===== BRANDS STATIC SECTION ===== */
.brands-carousel-section {
    background-color: var(--gray);
    padding: 4rem 0;
    border-top: 1px solid var(--gray-2);
    border-bottom: 1px solid var(--gray-2);
}
.brands-static-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    align-items: center;
}
.brand-static-card {
    background: var(--white);
    border: 1px solid var(--gray-2);
    border-radius: var(--radius);
    height: 110px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.brand-static-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(232, 119, 34, 0.15);
    border-color: var(--orange);
}
.brand-static-img {
    max-height: 65px;
    max-width: 85%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: filter var(--transition), opacity var(--transition);
}
.brand-static-card:hover .brand-static-img {
    filter: grayscale(0%);
    opacity: 1;
}
.brand-static-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 1024px) {
    .brands-static-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 640px) {
    .brands-static-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
