/*
Theme Name: FitLife Supplements
Theme URI: https://supplementlife.me
Author: FitLife Supplements
Author URI: https://supplementlife.me
Description: A modern single-page theme for FitLife Supplements – trader & retailer of protein powders, pharma products, veterinary medicines and more. Fully customizable via the WordPress Customizer.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fitlife
Tags: one-column, custom-colors, custom-logo, featured-images, theme-options, translation-ready
*/

/* ==========================================
   FitLife Supplements - Landing Page Styles
   Mobile-First | CSS3 | Flexbox & Grid
   ========================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    --color-primary: #FF5722;
    --color-primary-dark: #E64A19;
    --color-primary-light: #FF8A65;
    --color-secondary: #1A1A2E;
    --color-dark: #0F0F0F;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-white: #FFFFFF;
    --color-off-white: #F8F9FA;
    --color-border: #E8E8E8;
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #1EBE57;
    --color-call: #FF5722;

    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3rem;

    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.15);

    --topbar-height: 36px;
    --header-height: 70px;
    --container-max: 1200px;
    --section-padding: 60px 0;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
    font-family: var(--font-family);
    font-size: var(--fs-base);
    font-weight: var(--fw-regular);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

ul, ol {
    list-style: none;
}

/* ---------- Utilities ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section__title {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 8px;
}

.section__subtitle {
    font-size: var(--fs-base);
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-family);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.btn i {
    font-size: 1.1em;
}

.btn--whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-white);
}

.btn--whatsapp:hover {
    background-color: var(--color-whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn--outline {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

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

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

.btn--call:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.35);
}

.btn--quote {
    background-color: var(--color-dark);
    color: var(--color-white);
    width: 100%;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    justify-content: space-between;
}

.btn--quote:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 87, 34, 0.3);
}

.btn--quote:hover i {
    transform: translateX(4px);
}

.btn--quote i {
    transition: transform 0.3s ease;
}

.btn--submit {
    background-color: var(--color-primary);
    color: var(--color-white);
    width: 100%;
    padding: 16px 28px;
    font-size: var(--fs-base);
    border-radius: var(--radius-md);
}

.btn--submit:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.35);
}

/* ---------- Scroll Animations ---------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.trust__item.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.trust__item.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.trust__item.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

.product-card.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.product-card.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.product-card.animate-on-scroll:nth-child(4) { transition-delay: 0.15s; }
.product-card.animate-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.product-card.animate-on-scroll:nth-child(6) { transition-delay: 0.35s; }

/* (testimonial animations handled by slider JS) */


/* ===========================================
   TOP ANNOUNCEMENT BAR
   =========================================== */
.topbar {
    position: relative;
    z-index: 1001;
    height: var(--topbar-height);
    background: var(--color-dark);
    overflow: hidden;
}

.topbar__marquee {
    height: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}

.topbar__track {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0;
    white-space: nowrap;
    animation: topbar-scroll 25s linear infinite;
    width: max-content;
}

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

.topbar__item {
    font-size: 0.7rem;
    font-weight: var(--fw-medium);
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
    padding: 0 24px;
}

.topbar__item i {
    color: var(--color-primary);
    margin-right: 6px;
    font-size: 0.65rem;
}

.topbar__separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
    padding: 0 12px;
}


/* ===========================================
   HEADER
   =========================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: var(--header-height);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.header__logo {
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 1003;
    position: relative;
    text-decoration: none;
}

/* ===== Shared Logo Component ===== */
.logo__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-primary), #ff8a50);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

.logo__text {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo__text span {
    color: var(--color-primary);
}

/* Right side group (CTA + hamburger) */
.header__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hide desktop CTA + desktop nav on mobile */
.header__cta {
    display: none;
    padding: 10px 20px;
    font-size: var(--fs-sm);
}

.header__nav-desktop {
    display: none;
}

/* Hamburger */
.header__hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.header__hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--color-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.header__hamburger.active span:nth-child(2) {
    opacity: 0;
}
.header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===========================================
   MOBILE NAV OVERLAY (outside header)
   =========================================== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 85%;
    max-width: 360px;
    background-color: var(--color-white);
    z-index: 1100;
    padding: 24px 28px 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
}

/* Header row: logo + close */
.mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav__logo {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

/* Close button */
.mobile-nav__close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--color-off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: var(--fs-lg);
    color: var(--color-dark);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.mobile-nav__close:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Nav links */
.mobile-nav__link {
    font-size: var(--fs-base);
    font-weight: var(--fw-medium);
    color: var(--color-dark);
    padding: 14px 16px;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    width: 100%;
    text-decoration: none;
    display: block;
}

.mobile-nav__link:hover,
.mobile-nav__link:active {
    color: var(--color-primary);
    background-color: rgba(255, 87, 34, 0.06);
}

/* CTA inside nav */
.mobile-nav__cta {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: var(--fs-sm);
    width: 100%;
}

/* Backdrop overlay */
body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1099;
    animation: fadeIn 0.3s ease;
}

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

/* Lock body scroll when nav is open */
body.nav-open {
    overflow: hidden;
}

/* Hide mobile nav on desktop */
@media (min-width: 1024px) {
    .mobile-nav {
        display: none;
    }
}


/* ===========================================
   HERO
   =========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    background: #08080F;
    overflow: hidden;
}

/* Animated background shapes */
.hero__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero__shape--1 {
    width: 500px;
    height: 500px;
    top: -10%;
    right: -5%;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.2) 0%, transparent 70%);
    animation: heroFloat1 8s ease-in-out infinite;
}

.hero__shape--2 {
    width: 350px;
    height: 350px;
    bottom: -5%;
    left: -5%;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.12) 0%, transparent 70%);
    animation: heroFloat2 10s ease-in-out infinite;
}

.hero__shape--3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 30%;
    background: radial-gradient(circle, rgba(255, 138, 101, 0.08) 0%, transparent 70%);
    animation: heroFloat3 12s ease-in-out infinite;
}

@keyframes heroFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.1); }
}

@keyframes heroFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.05); }
}

@keyframes heroFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-15px, -20px); }
}

/* Grid layout */
.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.hero__content {
    position: relative;
}

/* Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 87, 34, 0.12);
    border: 1px solid rgba(255, 87, 34, 0.25);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    color: var(--color-primary-light);
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.hero__badge i {
    font-size: 0.85rem;
    color: var(--color-primary);
}

/* Title */
.hero__title {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-extrabold);
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero__title-accent {
    background: linear-gradient(135deg, var(--color-primary) 0%, #FF8A50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.hero__subtitle {
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    line-height: 1.8;
    max-width: 520px;
}

/* Actions */
.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.hero__actions .btn {
    padding: 16px 32px;
    font-size: var(--fs-base);
}

/* Trust row */
.hero__trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.5);
    font-weight: var(--fw-medium);
}

.hero__trust-item i {
    color: var(--color-whatsapp);
    font-size: 0.85rem;
}

/* Visual card (right side) */
.hero__visual {
    display: none;
}

.hero__visual-wrapper {
    position: relative;
    padding: 40px 20px;
}

/* Orbiting badges */
.hero__orbit {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.hero__orbit-ring {
    position: absolute;
    inset: -10px;
    border: 1px dashed rgba(255, 87, 34, 0.15);
    border-radius: 50%;
    animation: orbit-spin 30s linear infinite;
}

@keyframes orbit-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero__float-badge {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-primary-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 4;
}

.hero__float-badge--1 {
    top: 5%;
    left: 10%;
    animation: badge-float-1 6s ease-in-out infinite;
}

.hero__float-badge--2 {
    top: 0%;
    right: 15%;
    animation: badge-float-2 7s ease-in-out infinite;
}

.hero__float-badge--3 {
    top: 40%;
    left: -5%;
    animation: badge-float-3 5s ease-in-out infinite;
}

.hero__float-badge--4 {
    top: 45%;
    right: -5%;
    animation: badge-float-1 8s ease-in-out infinite reverse;
}

.hero__float-badge--5 {
    bottom: 0;
    left: -4%;
    animation: badge-float-2 6s ease-in-out infinite reverse;
}

.hero__float-badge--6 {
    bottom: 8%;
    right: 10%;
    animation: badge-float-3 7s ease-in-out infinite;
}

@keyframes badge-float-1 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.08); }
}

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

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

.hero__card {
    position: relative;
}

.hero__card-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle at center, rgba(255, 87, 34, 0.2), transparent 70%);
    border-radius: var(--radius-xl);
    filter: blur(50px);
    z-index: 0;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero__card-inner {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
}

.hero__card-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: var(--radius-lg);
    font-size: 2.2rem;
    color: var(--color-white);
    box-shadow: 0 8px 32px rgba(255, 87, 34, 0.3);
    animation: icon-breathe 3s ease-in-out infinite;
}

@keyframes icon-breathe {
    0%, 100% { box-shadow: 0 8px 32px rgba(255, 87, 34, 0.3); }
    50% { box-shadow: 0 8px 48px rgba(255, 87, 34, 0.5); }
}

.hero__card-inner h3 {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--color-white);
    margin-bottom: 10px;
}

.hero__card-inner > p {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.hero__card-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 87, 34, 0.3), transparent);
    margin: 32px 0;
}

/* Stats inside card */
.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hero__stat {
    text-align: center;
}

.hero__stat strong {
    display: block;
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    margin-bottom: 4px;
}

.hero__stat span {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero__stat span i {
    color: #FFC107;
    font-size: 0.65rem;
}



/* ===========================================
   TRUST BAR
   =========================================== */
.trust {
    padding: var(--section-padding);
    background-color: var(--color-white);
}

.trust__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.trust__item {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.trust__item:hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.trust__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-size: var(--fs-xl);
}

.trust__item h3 {
    font-size: var(--fs-md);
    font-weight: var(--fw-semibold);
    color: var(--color-dark);
    margin-bottom: 8px;
}

.trust__item p {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    line-height: 1.6;
}


/* ===========================================
   BRANDS MARQUEE
   =========================================== */
.brands {
    padding: var(--section-padding);
    background-color: var(--color-off-white);
    overflow: hidden;
}

.brands__marquee {
    margin-top: 0;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brands__track {
    display: flex;
    gap: 32px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

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

.brands__item {
    flex-shrink: 0;
}

.brands__logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 16px 28px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-text-light);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.brands__logo-placeholder:hover {
    border-color: var(--color-primary-light);
    color: var(--color-primary);
}


/* ===========================================
   PRODUCTS
   =========================================== */
.products {
    padding: var(--section-padding);
    background-color: var(--color-white);
}

.products__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.product-card {
    position: relative;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card__image {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--color-text-muted);
}

.product-card__image i {
    font-size: 3rem;
    color: var(--color-primary-light);
}

.product-card__image span {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
}

.product-card__body {
    padding: 20px;
}

.product-card__name {
    font-size: var(--fs-md);
    font-weight: var(--fw-semibold);
    color: var(--color-dark);
    margin-bottom: 8px;
}

.product-card__desc {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-card__tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.product-card__tags span {
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 87, 34, 0.08);
    color: var(--color-primary);
}

.products__cta {
    text-align: center;
    padding: 32px;
    background-color: var(--color-off-white);
    border-radius: var(--radius-lg);
}

.products__cta p {
    font-size: var(--fs-base);
    color: var(--color-text-light);
    margin-bottom: 16px;
}


/* ===========================================
   CONSULTATION / LEAD GEN
   =========================================== */
.consultation {
    padding: 80px 0;
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A2E 100%);
    color: var(--color-white);
}

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

.consultation__text h2 {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    margin-bottom: 16px;
    line-height: 1.3;
}

.consultation__text p {
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.consultation__benefits {
    margin-bottom: 32px;
}

.consultation__benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
}

.consultation__benefits li i {
    color: var(--color-whatsapp);
    font-size: var(--fs-lg);
    flex-shrink: 0;
}

.consultation__contact .btn--call {
    padding: 14px 32px;
}

.consultation__form {
    background-color: var(--color-white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.consultation__form h3 {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--color-dark);
    margin-bottom: 4px;
}

.consultation__form > p {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.form__group {
    margin-bottom: 16px;
}

.form__group label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--color-text);
    margin-bottom: 6px;
}

.form__group input,
.form__group select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-family);
    font-size: var(--fs-base);
    color: var(--color-text);
    background-color: var(--color-off-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form__group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form__group input:focus,
.form__group select:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.1);
}

.form__group input::placeholder {
    color: var(--color-text-muted);
}

.form__note {
    text-align: center;
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    margin-top: 12px;
}

.form__note i {
    margin-right: 4px;
}


/* ===========================================
   TESTIMONIALS SLIDER
   =========================================== */
.testimonials {
    padding: var(--section-padding);
    background-color: var(--color-off-white);
    overflow: hidden;
}

/* Header with title + arrows */
.testimonials__header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.section__title--left,
.section__subtitle--left {
    text-align: left;
}

.section__subtitle--left {
    margin-left: 0;
    margin-bottom: 0;
}

/* Arrow buttons */
.testimonials__nav {
    display: flex;
    gap: 10px;
}

.testimonials__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    background-color: var(--color-white);
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: var(--fs-sm);
    transition: all 0.3s ease;
}

.testimonials__arrow:hover {
    background-color: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-white);
    transform: scale(1.05);
}

.testimonials__arrow:active {
    transform: scale(0.95);
}

/* Desktop: title and arrows on same row */
@media (min-width: 768px) {
    .testimonials__header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 48px;
    }

    .testimonials__arrow {
        width: 48px;
        height: 48px;
    }
}

/* Slider container */
.testimonials__slider {
    overflow: hidden;
    margin: 0 -8px;
}

.testimonials__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Card slide item */
.testimonial-card {
    flex: 0 0 100%;
    min-width: 0;
    padding: 0 12px;
    box-sizing: border-box;
}

/* Visible card box */
.testimonial-card__inner {
    background-color: var(--color-white);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card__inner:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-card__stars i {
    color: #FFC107;
    font-size: var(--fs-sm);
}

.testimonial-card__text {
    font-size: var(--fs-sm);
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 24px;
    flex-grow: 1;
    position: relative;
    padding-left: 0;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: var(--fs-sm);
    flex-shrink: 0;
}

.testimonial-card__author strong {
    display: block;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-dark);
}

.testimonial-card__author span {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
}

/* Dots */
.testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: var(--color-border);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.testimonials__dot.active {
    background-color: var(--color-primary);
    width: 28px;
    border-radius: var(--radius-full);
}

/* Responsive slide widths */
@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 50%;
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 33.3333%;
    }
}


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

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

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer__logo .logo__text {
    color: var(--color-white);
}

.footer__about p {
    font-size: var(--fs-sm);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

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

.footer__links h4,
.footer__contact-info h4,
.footer__map h4 {
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer__links a {
    display: block;
    font-size: var(--fs-sm);
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer__links a:hover {
    color: var(--color-primary);
    padding-left: 8px;
}

.footer__contact-info p {
    font-size: var(--fs-sm);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer__contact-info i {
    color: var(--color-primary);
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.footer__contact-info a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer__map-embed {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer__bottom p {
    font-size: var(--fs-sm);
    margin-bottom: 8px;
}

.footer__disclaimer {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.4);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}


/* ===========================================
   FLOATING WHATSAPP
   =========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    padding: 14px 20px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    transition: all 0.3s ease;
    animation: float-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    background-color: var(--color-whatsapp-dark);
    transform: scale(1.05);
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 1.4rem;
}

@keyframes float-pulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.6); }
}


/* ===========================================
   RESPONSIVE: TABLET (768px+)
   =========================================== */
@media (min-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .container {
        padding: 0 32px;
    }

    .section__title {
        font-size: var(--fs-3xl);
    }

    /* Hero */
    .hero__title {
        font-size: var(--fs-3xl);
    }

    .hero__subtitle {
        font-size: var(--fs-md);
    }

    .hero__actions {
        flex-direction: row;
    }

    /* Trust */
    .trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Products */
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Consultation */
    .consultation__form {
        padding: 40px 32px;
    }
}


/* ===========================================
   RESPONSIVE: DESKTOP (1024px+)
   =========================================== */
@media (min-width: 1024px) {
    :root {
        --section-padding: 100px 0;
    }

    .container {
        padding: 0 40px;
    }

    /* Header Desktop Nav */
    .header__nav-desktop {
        display: flex;
        flex-direction: row;
        gap: 4px;
    }

    .header__nav-desktop .header__link {
        font-size: var(--fs-sm);
        font-weight: var(--fw-medium);
        color: var(--color-text);
        padding: 8px 16px;
        border-radius: var(--radius-md);
        transition: all 0.2s ease;
        text-decoration: none;
    }

    .header__nav-desktop .header__link:hover {
        color: var(--color-primary);
        background-color: rgba(255, 87, 34, 0.06);
    }

    .header__hamburger {
        display: none;
    }

    .header__cta {
        display: inline-flex;
        padding: 12px 24px;
    }

    /* Hero */
    .hero {
        padding: 100px 0 80px;
    }

    .hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .hero__title {
        font-size: var(--fs-4xl);
    }

    .hero__subtitle {
        font-size: var(--fs-lg);
    }

    .hero__actions .btn {
        padding: 18px 36px;
    }

    .hero__visual {
        display: block;
    }

    /* Trust */
    .trust__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Products */
    .products__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Consultation */
    .consultation {
        padding: 100px 0;
    }

    .consultation__inner {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }

    .consultation__text h2 {
        font-size: var(--fs-3xl);
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }

    /* WhatsApp float label */
    .whatsapp-float__label {
        display: inline;
    }
}

/* Hide label on small screens */
@media (max-width: 1023px) {
    .whatsapp-float__label {
        display: none;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .whatsapp-float i {
        font-size: 1.6rem;
    }
}


/* ===========================================
   RESPONSIVE: LARGE DESKTOP (1280px+)
   =========================================== */
@media (min-width: 1280px) {
    .hero__title {
        font-size: 3.5rem;
    }

    .hero__stat strong {
        font-size: var(--fs-2xl);
    }

    .hero__card-inner {
        padding: 56px 48px;
    }

    .hero__card-icon {
        width: 92px;
        height: 92px;
        font-size: 2.5rem;
    }

    .hero__card-inner h3 {
        font-size: var(--fs-xl);
    }

    .hero__float-badge {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
}
