/* =============================================
   CHLOENZ — Sitio web de Reparto
   Paleta basada en logo: navy slate + dorado
   ============================================= */

:root {
    --primary: #1d2432;
    --primary-dark: #141a26;
    --primary-light: #2d3748;
    --accent: #f5c842;
    --accent-dark: #e0b022;
    --accent-light: #ffd966;

    --white: #ffffff;
    --light: #f8fafc;
    --light-2: #f1f5f9;
    --gray: #64748b;
    --gray-2: #94a3b8;
    --gray-3: #cbd5e1;
    --dark: #0f172a;
    --text: #334155;

    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
    --shadow-accent: 0 12px 28px rgba(245, 200, 66, 0.4);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1200px;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Inter', 'Poppins', system-ui, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.2;
    font-weight: 700;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

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

.hide-mobile {
    display: inline-flex;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--primary);
    box-shadow: var(--shadow-accent);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(245, 200, 66, 0.55);
    color: var(--primary-dark);
}

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

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

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

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
    background: var(--primary-dark);
    color: var(--gray-3);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.top-bar__contact {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.top-bar__contact span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar__contact i {
    color: var(--accent);
}

.top-bar__social {
    display: flex;
    gap: 8px;
}

.top-bar__social a {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    font-size: 12px;
}

.top-bar__social a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

/* =============================================
   HEADER
   ============================================= */
.header {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.header.scrolled {
    background: rgba(29, 36, 50, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 20px;
}

.logo {
    display: block;
    flex-shrink: 0;
}

.logo img {
    height: 56px;
    width: auto;
    border-radius: 8px;
}

.nav__list {
    display: flex;
    gap: 8px;
}

.nav__link {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 16px;
    border-radius: 50px;
    position: relative;
    transition: all var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--accent);
    background: rgba(245, 200, 66, 0.1);
}

.nav__toggle,
.nav__close {
    display: none;
    color: var(--white);
    font-size: 24px;
}

.header__cta {
    padding: 10px 22px;
    font-size: 14px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    height: calc(100vh - 100px);
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
    color: var(--white);
}

.hero__slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease;
}

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

.hero__slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 26, 38, 0.92) 0%, rgba(20, 26, 38, 0.4) 70%, transparent 100%);
}

.hero__content {
    position: relative;
    max-width: 720px;
    z-index: 2;
}

.hero__tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(245, 200, 66, 0.15);
    color: var(--accent);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(245, 200, 66, 0.3);
}

.hero__title {
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero__desc {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    line-height: 1.7;
}

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

/* Hero nav arrows */
.hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 18px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 5;
    transition: all var(--transition);
}

.hero__nav:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.hero__nav--prev { left: 24px; }
.hero__nav--next { right: 24px; }

/* Dots */
.hero__dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.hero__dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all var(--transition);
}

.hero__dots button.active {
    background: var(--accent);
    width: 36px;
    border-radius: 6px;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    z-index: 5;
}

.hero__scroll span {
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scroll-down 1.6s infinite;
}

@keyframes scroll-down {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* =============================================
   STATS
   ============================================= */
.stats {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 60px 0;
    position: relative;
    z-index: 2;
    margin-top: -60px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

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

.stats__item {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--white);
}

.stats__item i {
    font-size: 36px;
    color: var(--accent);
    width: 64px;
    height: 64px;
    background: rgba(245, 200, 66, 0.12);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stats__num {
    font-size: 36px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    line-height: 1;
}

.stats__suffix {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Poppins', sans-serif;
}

.stats__item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    margin-top: 4px;
}

/* =============================================
   SECTION HEAD
   ============================================= */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-head__badge {
    display: inline-block;
    background: rgba(245, 200, 66, 0.12);
    color: var(--accent-dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-head__title {
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-head__desc {
    color: var(--gray);
    font-size: 17px;
    line-height: 1.7;
}

.section-head--light .section-head__title {
    color: var(--white);
}

.section-head--light .section-head__desc {
    color: rgba(255, 255, 255, 0.75);
}

/* =============================================
   SERVICES
   ============================================= */
.services {
    padding: 100px 0;
    background: var(--light);
}

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

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(245, 200, 66, 0.15), rgba(245, 200, 66, 0.05));
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--accent-dark);
    margin-bottom: 22px;
    transition: all var(--transition);
}

.service-card:hover .service-card__icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    transform: rotate(-6deg) scale(1.05);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 22px;
    font-size: 15px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.service-card__link i {
    transition: transform var(--transition);
}

.service-card__link:hover {
    color: var(--accent-dark);
}

.service-card__link:hover i {
    transform: translateX(4px);
}

.service-card--featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border: none;
}

.service-card--featured h3 {
    color: var(--white);
}

.service-card--featured p {
    color: rgba(255, 255, 255, 0.75);
}

.service-card--featured .service-card__link {
    color: var(--accent);
}

.service-card--featured .service-card__icon {
    background: rgba(245, 200, 66, 0.18);
    color: var(--accent);
}

.service-card--featured:hover .service-card__icon {
    background: var(--accent);
    color: var(--primary);
}

.service-card__tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about__media {
    position: relative;
    height: 540px;
}

.about__img-main,
.about__img-sec {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__img-main {
    top: 0;
    left: 0;
    width: 75%;
    height: 75%;
}

.about__img-sec {
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border: 8px solid var(--white);
}

.about__img-main img,
.about__img-sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__badge {
    position: absolute;
    top: 30px;
    right: 0;
    background: var(--accent);
    color: var(--primary);
    padding: 18px 26px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-accent);
    z-index: 3;
}

.about__badge strong {
    display: block;
    font-size: 36px;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.about__badge span {
    font-size: 13px;
    font-weight: 600;
}

.about__content > p {
    color: var(--gray);
    margin: 22px 0;
    font-size: 16px;
}

.about__list {
    margin-bottom: 30px;
}

.about__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text);
    font-weight: 500;
}

.about__list i {
    color: var(--accent-dark);
    font-size: 20px;
}

/* =============================================
   WHY US
   ============================================= */
.why {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 200, 66, 0.15), transparent 70%);
    border-radius: 50%;
}

.why::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 200, 66, 0.1), transparent 70%);
    border-radius: 50%;
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.why__item {
    background: rgba(255, 255, 255, 0.04);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
}

.why__item:hover {
    background: rgba(245, 200, 66, 0.08);
    border-color: var(--accent);
    transform: translateY(-6px);
}

.why__item i {
    font-size: 42px;
    color: var(--accent);
    margin-bottom: 18px;
}

.why__item h4 {
    color: var(--white);
    font-size: 19px;
    margin-bottom: 10px;
}

.why__item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* =============================================
   COVERAGE
   ============================================= */
.coverage {
    padding: 100px 0;
    background: var(--light);
}

.coverage__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.coverage__content > p {
    color: var(--gray);
    margin: 22px 0;
    font-size: 16px;
}

.coverage__zones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.coverage__zones span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
}

.coverage__zones span:hover {
    transform: translateX(6px);
    background: var(--primary);
    color: var(--white);
}

.coverage__zones i {
    color: var(--accent-dark);
}

.coverage__zones span:hover i {
    color: var(--accent);
}

/* Coverage map illustration */
.coverage__map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverage__map-inner {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.coverage__globe {
    font-size: 200px;
    color: rgba(245, 200, 66, 0.4);
    animation: rotate-slow 30s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.coverage__pin {
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 0 rgba(245, 200, 66, 0.6);
    animation: pin-pulse 2.4s infinite;
}

.coverage__pin span {
    position: absolute;
    top: -3px;
    left: -3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(245, 200, 66, 0.5);
    animation: pin-ring 2.4s infinite;
}

@keyframes pin-pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 200, 66, 0.7); }
    70% { box-shadow: 0 0 0 18px rgba(245, 200, 66, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 200, 66, 0); }
}

@keyframes pin-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.coverage__pin--1 { top: 20%; left: 35%; animation-delay: 0s; }
.coverage__pin--2 { top: 35%; right: 25%; animation-delay: 0.4s; }
.coverage__pin--3 { bottom: 30%; left: 25%; animation-delay: 0.8s; }
.coverage__pin--4 { bottom: 20%; right: 35%; animation-delay: 1.2s; }
.coverage__pin--5 { top: 50%; left: 50%; animation-delay: 1.6s; }

/* =============================================
   GALLERY
   ============================================= */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    background: var(--light-2);
}

.gallery__item--big {
    grid-column: span 2;
    grid-row: span 2;
}

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

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 26, 38, 0.8), rgba(20, 26, 38, 0.2));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    opacity: 0;
    transition: opacity var(--transition);
}

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

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

/* =============================================
   PROCESS
   ============================================= */
.process {
    padding: 100px 0;
    background: var(--light);
}

.process__steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: center;
}

.process__step {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.process__step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.process__num {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
    box-shadow: var(--shadow-accent);
}

.process__step h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.process__step p {
    color: var(--gray);
    font-size: 14px;
}

.process__arrow {
    color: var(--accent-dark);
    font-size: 24px;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 200, 66, 0.18), transparent 70%);
    transform: translateY(-50%);
}

.cta-banner__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-banner__text h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    margin-bottom: 8px;
}

.cta-banner__text p {
    color: rgba(255, 255, 255, 0.8);
}

.cta-banner__buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

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

.testimonial {
    background: var(--light);
    padding: 36px 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--light-2);
    transition: all var(--transition);
    position: relative;
}

.testimonial::before {
    content: '\201C';
    position: absolute;
    top: 8px;
    right: 24px;
    font-size: 100px;
    color: var(--accent);
    opacity: 0.18;
    font-family: 'Poppins', serif;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.testimonial__stars {
    color: var(--accent);
    margin-bottom: 14px;
    font-size: 15px;
    display: flex;
    gap: 4px;
}

.testimonial p {
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
}

.testimonial__author strong {
    display: block;
    color: var(--dark);
    font-size: 15px;
}

.testimonial__author span {
    color: var(--gray);
    font-size: 13px;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
    padding: 100px 0;
    background: var(--light);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact__info > p {
    color: var(--gray);
    margin: 22px 0 30px;
    font-size: 16px;
}

.contact__list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--light-2);
}

.contact__list li:last-child {
    border-bottom: none;
}

.contact__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact__list strong {
    display: block;
    color: var(--dark);
    font-size: 15px;
    margin-bottom: 2px;
}

.contact__list a,
.contact__list span {
    color: var(--gray);
    font-size: 14px;
}

.contact__list a:hover {
    color: var(--accent-dark);
}

.contact__form {
    background: var(--white);
    padding: 40px 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-2);
}

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

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--light-2);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    color: var(--dark);
    background: var(--light);
    transition: all var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(245, 200, 66, 0.12);
}

.form-note {
    margin-top: 14px;
    text-align: center;
    font-size: 14px;
    min-height: 18px;
}

.form-note.success { color: #10b981; }
.form-note.error { color: #ef4444; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer .logo--light img {
    height: 64px;
    margin-bottom: 18px;
}

.footer__col p {
    margin-bottom: 22px;
    font-size: 14.5px;
    line-height: 1.7;
}

.footer__col h5 {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer__col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer__col ul li {
    margin-bottom: 12px;
}

.footer__col ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14.5px;
    transition: all var(--transition);
}

.footer__col ul a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer__contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14.5px;
}

.footer__contact i {
    color: var(--accent);
    width: 18px;
}

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

.footer__social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition);
}

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

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

.footer__bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13.5px;
}

/* =============================================
   FLOATING ELEMENTS
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
    z-index: 90;
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    color: var(--white);
}

.whatsapp-float__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.5;
    animation: pulse-wa 1.8s ease-out infinite;
    z-index: -1;
}

@keyframes pulse-wa {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

.back-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all var(--transition);
    z-index: 90;
    border: 2px solid var(--accent);
}

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

.back-top:hover {
    background: var(--accent);
    color: var(--primary);
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

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

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    font-size: 22px;
    transition: all var(--transition);
}

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

/* =============================================
   AOS-LIKE ANIMATIONS
   ============================================= */
[data-aos] {
    opacity: 0;
    transition: all 0.7s ease;
}

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

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

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

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

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

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

/* =============================================
   BRANDS TICKER
   ============================================= */
.brands-ticker {
    background: var(--accent);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    height: 56px;
    position: relative;
    z-index: 5;
}

.brands-ticker__label {
    flex-shrink: 0;
    background: var(--primary-dark);
    color: var(--accent);
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.brands-ticker__label::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
    border-left: 20px solid var(--primary-dark);
}

.brands-ticker__viewport {
    overflow: hidden;
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.brands-ticker__track {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    animation: ticker-scroll 28s linear infinite;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: var(--primary);
    letter-spacing: 2px;
}

.brands-ticker__track:hover {
    animation-play-state: paused;
}

.brands-ticker__track i {
    font-size: 5px;
    opacity: 0.35;
}

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =============================================
   HERO LIVE CARD
   ============================================= */
.hero__live-card {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    padding: 16px 28px;
    margin-top: 36px;
}

.hero__live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #22c55e;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 24px;
    white-space: nowrap;
}

.hero__live-indicator span {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
    animation: live-blink 1.6s ease-in-out infinite;
}

@keyframes live-blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
    50%       { opacity: 0.7; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.hero__live-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--white);
}

.hero__live-stats > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.hero__live-stats strong {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.hero__live-stats span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
}

.hero__live-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* =============================================
   STATS — GLOWING IMPROVEMENTS
   ============================================= */
.stats__num {
    background: linear-gradient(135deg, var(--white), rgba(255,255,255,0.85));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats__item i {
    box-shadow: 0 0 24px rgba(245, 200, 66, 0.25);
}

/* =============================================
   SERVICE CARDS — BRAND TAGS
   ============================================= */
.service-card--featured::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(245,200,66,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.service-card {
    border: 1.5px solid var(--light-2);
}

.service-card:hover {
    border-color: rgba(245, 200, 66, 0.4);
}

/* =============================================
   PROCESS — CONNECTING LINE
   ============================================= */
.process__steps {
    position: relative;
}

.process__step::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--accent), transparent);
    border-radius: 2px;
    transition: height 0.4s ease;
}

.process__step:hover::after {
    height: 12px;
}

/* =============================================
   WHY — ANIMATED GLOW ON ICON
   ============================================= */
.why__item:hover i {
    text-shadow: 0 0 24px rgba(245, 200, 66, 0.8);
    transform: scale(1.15);
    transition: all var(--transition);
}

.why__item i {
    transition: all var(--transition);
    display: inline-block;
}

/* =============================================
   COVERAGE ZONES — ACCENT ICON
   ============================================= */
.coverage__zones span i {
    font-size: 12px;
}

/* =============================================
   SECTION DIAGONAL — WHY US top
   ============================================= */
.why {
    clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
    padding: 140px 0;
    margin: -40px 0;
}

/* =============================================
   HERO DOT GRID (decorative)
   ============================================= */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 340px;
    height: 340px;
    background-image: radial-gradient(circle, rgba(245,200,66,0.25) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    pointer-events: none;
    z-index: 1;
    mask-image: radial-gradient(ellipse at bottom right, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at bottom right, black 30%, transparent 75%);
}

/* =============================================
   CTA BANNER — DIAGONAL STRIPE TEXTURE
   ============================================= */
.cta-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        rgba(245, 200, 66, 0.04) 0px,
        rgba(245, 200, 66, 0.04) 2px,
        transparent 2px,
        transparent 18px
    );
    pointer-events: none;
}

/* =============================================
   ABOUT — FLOATING BADGE GLOW
   ============================================= */
.about__badge {
    box-shadow: var(--shadow-accent), 0 0 40px rgba(245, 200, 66, 0.3);
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

/* =============================================
   FOOTER — TOP WAVE
   ============================================= */
.footer {
    position: relative;
}

.footer::before {
    content: '';
    display: block;
    height: 60px;
    background: linear-gradient(to bottom right, var(--white) 50%, var(--primary-dark) 50%);
    margin-bottom: -1px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .why__grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials__grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .process__steps {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .process__arrow { display: none; }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .about__grid,
    .coverage__grid,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about__media { max-width: 540px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .top-bar__contact { gap: 14px; font-size: 12px; }
    .hide-mobile { display: none; }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right var(--transition);
        z-index: 200;
        box-shadow: -20px 0 40px rgba(0, 0, 0, 0.3);
    }

    .nav.open { right: 0; }

    .nav__list {
        flex-direction: column;
        gap: 6px;
    }

    .nav__link {
        display: block;
        padding: 14px 18px;
    }

    .nav__toggle,
    .nav__close { display: inline-flex; }

    .nav__close {
        position: absolute;
        top: 22px;
        right: 22px;
    }

    .header__cta { display: none; }

    .hero { min-height: 540px; }
    .hero__nav { width: 42px; height: 42px; font-size: 14px; }
    .hero__nav--prev { left: 12px; }
    .hero__nav--next { right: 12px; }
    .hero__scroll { display: none; }

    .stats__grid { grid-template-columns: 1fr; }
    .services__grid { grid-template-columns: 1fr; }
    .why__grid { grid-template-columns: 1fr; }
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
    }
    .gallery__item--big { grid-column: span 2; grid-row: span 2; }
    .footer__grid { grid-template-columns: 1fr; gap: 36px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .process__steps { grid-template-columns: 1fr; }

    .services, .about, .why, .coverage,
    .gallery, .process, .testimonials, .contact {
        padding: 70px 0;
    }

    .stats { padding: 50px 0; }

    .about__media { height: 460px; }

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

    .footer__bottom .container { justify-content: center; text-align: center; }

    .whatsapp-float { width: 54px; height: 54px; font-size: 26px; bottom: 18px; left: 18px; }
    .back-top { bottom: 18px; right: 18px; width: 44px; height: 44px; }

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

    .brands-ticker__label { padding: 0 18px; font-size: 11px; }
    .brands-ticker__label::after { right: -14px; border-top-width: 28px; border-bottom-width: 28px; border-left-width: 14px; }

    .hero__live-card { flex-direction: column; gap: 14px; }
    .hero__live-indicator { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-right: 0; padding-bottom: 12px; }
    .hero__live-stats { gap: 16px; }
    .hero__live-stats strong { font-size: 18px; }

    .why { clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%); padding: 110px 0; }

    .footer::before { height: 40px; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .top-bar__contact { justify-content: center; width: 100%; }
    .top-bar__social { display: none; }
    .top-bar__inner { justify-content: center; }
    .hero__buttons .btn { width: 100%; justify-content: center; }
    .hero__live-card { display: none; }
    .brands-ticker__label { display: none; }
    .contact__form { padding: 28px 22px; }
}
