/* ============================================
   ALZAAD ALSHARQI — Veterinary Distribution
   Color palette derived from logo terracotta
   ============================================ */

/* --- VARIABLES --- */
:root {
    --primary: #B5651D;
    --primary-dark: #8B4513;
    --primary-deeper: #6B3410;
    --primary-light: #D4894E;
    --primary-pale: #E8C4A0;
    --accent: #2E7D32;
    --accent-light: #43A047;
    --accent-pale: #E8F5E9;
    --bg: #FAF6F1;
    --bg-warm: #F5EDE3;
    --card: #FFFFFF;
    --text: #2C1810;
    --text-light: #7A6B5D;
    --text-muted: #A89888;
    --border: #E8DDD0;
    --shadow-sm: 0 2px 8px rgba(107, 52, 16, 0.06);
    --shadow-md: 0 8px 30px rgba(107, 52, 16, 0.1);
    --shadow-lg: 0 20px 60px rgba(107, 52, 16, 0.12);
    --shadow-card: 0 4px 20px rgba(107, 52, 16, 0.08);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Cairo', sans-serif;
    --hero-gradient: linear-gradient(135deg, #6B3410 0%, #8B4513 30%, #B5651D 70%, #9A5118 100%);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- HEADER --- */
.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(250, 246, 241, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-img {
    height: 48px;
    width: auto;
    transition: transform var(--transition);
}

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-ar {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
}

.logo-en {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.site-header:not(.scrolled) .logo-ar {
    color: #fff;
}

.site-header:not(.scrolled) .logo-en {
    color: rgba(255, 255, 255, 0.7);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition);
    color: var(--text);
}

.site-header:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.site-header:not(.scrolled) .nav-link:hover,
.site-header:not(.scrolled) .nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(181, 101, 29, 0.08);
}

.nav-cta {
    background: var(--primary) !important;
    color: #fff !important;
    padding: 8px 20px;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
}

.site-header:not(.scrolled) .nav-cta {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff !important;
}

.site-header:not(.scrolled) .nav-cta:hover {
    background: rgba(255, 255, 255, 0.25) !important;
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

.site-header:not(.scrolled) .hamburger span {
    background: #fff;
}

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

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

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

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 24, 16, 0.97);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-list {
    text-align: center;
}

.mobile-nav-list li {
    margin: 16px 0;
}

.mobile-link {
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
    padding: 8px 24px;
    display: inline-block;
}

.mobile-link:hover {
    color: var(--primary-light);
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hero-gradient);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(212, 137, 78, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(181, 101, 29, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(139, 69, 19, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L35 15L45 15L37 22L40 32L30 26L20 32L23 22L15 15L25 15Z' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 32px;
}

.hero-badge i {
    color: var(--primary-pale);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title-sub {
    display: block;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--primary-pale);
    margin-top: 8px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 10px;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    line-height: 1;
}

.btn-primary {
    background: #fff;
    color: var(--primary-dark);
    border-color: #fff;
}

.btn-primary:hover {
    background: var(--primary-pale);
    border-color: var(--primary-pale);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    font-size: 1.05rem;
}

.btn-full:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(181, 101, 29, 0.3);
}

/* Hero partners */
.hero-partners {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-partners-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.partner-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.partner-chip small {
    font-size: 0.72rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    animation: scrollBounce 2s ease-in-out infinite;
    font-size: 1.2rem;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* --- SECTION SHARED --- */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    background: rgba(181, 101, 29, 0.08);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* --- STATS --- */
.stats {
    padding: 64px 0;
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

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

.stat-card {
    text-align: center;
    padding: 32px 16px;
    position: relative;
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border);
}

.stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: rgba(181, 101, 29, 0.08);
    color: var(--primary);
    border-radius: 14px;
    font-size: 1.3rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    display: inline;
    line-height: 1;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: inline;
}

.stat-label {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-top: 8px;
    font-weight: 600;
}

/* --- PRODUCTS --- */
.products {
    padding: 100px 0;
    background: var(--bg);
}

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

.product-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

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

.product-card-top {
    padding: 40px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.kepro-bg {
    background: linear-gradient(135deg, #F0E6D8 0%, #E8D5C0 100%);
}

.intracare-bg {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
}

.vaxxinova-bg {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

.product-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    font-size: 1.8rem;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.intracare-bg .product-icon {
    color: var(--accent);
}

.vaxxinova-bg .product-icon {
    color: #1565C0;
}

.product-origin {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.7);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
}

.flag-icon {
    font-size: 1.1rem;
}

.product-card-body {
    padding: 28px;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.product-name-en {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.product-desc {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    display: inline-block;
    background: var(--bg-warm);
    color: var(--text-light);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid var(--border);
}

/* --- FEATURES --- */
.features {
    padding: 100px 0;
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.feature-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

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

.feature-icon-wrap {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--hero-gradient);
    color: #fff;
    border-radius: 16px;
    font-size: 1.4rem;
    transition: transform var(--transition);
}

.feature-card:hover .feature-icon-wrap {
    transform: scale(1.1) rotate(-3deg);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.process-steps {
    max-width: 700px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px;
    background: var(--card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
}

.process-step:hover {
    border-color: var(--primary-pale);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.step-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-pale);
    flex-shrink: 0;
    width: 60px;
    text-align: center;
    line-height: 1;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.step-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(181, 101, 29, 0.08);
    color: var(--primary);
    border-radius: 14px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-connector {
    display: flex;
    justify-content: center;
    padding: 8px 0;
}

.connector-line {
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, var(--primary-pale), transparent);
    border-radius: 1px;
}

/* --- TESTIMONIALS --- */
.testimonials {
    padding: 100px 0;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.testimonials .section-tag {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
}

.testimonials .section-title {
    color: #fff;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.testimonial-quote {
    color: var(--primary-pale);
    font-size: 1.5rem;
    margin-bottom: 16px;
    opacity: 0.6;
}

.testimonial-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 24px;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--primary-pale);
    font-size: 1.1rem;
}

.author-info strong {
    display: block;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
}

.author-info span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

/* --- FAQ --- */
.faq {
    padding: 100px 0;
    background: var(--bg);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    transition: border-color var(--transition);
}

.faq-item.active {
    border-color: var(--primary-pale);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    text-align: right;
    transition: color var(--transition);
}

.faq-item.active .faq-question {
    color: var(--primary-dark);
}

.faq-icon {
    font-size: 0.85rem;
    color: var(--primary);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-right: 12px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.9;
}

/* --- CONTACT --- */
.contact {
    padding: 100px 0;
    background: var(--card);
    border-top: 1px solid var(--border);
}

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

.contact-info-inner {
    background: var(--hero-gradient);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    color: #fff;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='15' cy='15' r='0.8' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
    background-size: 30px 30px;
}

.contact-info-inner > * {
    position: relative;
    z-index: 1;
}

.contact-info-inner h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-intro {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-item-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--primary-pale);
}

.contact-item strong {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    line-height: 1.5;
}

.contact-item a:hover {
    color: var(--primary-pale);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--border);
}

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

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

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--font);
    font-size: 0.92rem;
    color: var(--text);
    background: var(--card);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(181, 101, 29, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.form-status {
    margin-top: 12px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-status.success {
    color: var(--accent);
}

.form-status.error {
    color: #c62828;
}

/* --- MAP --- */
.map-section {
    border-top: 1px solid var(--border);
}

.map-wrap {
    position: relative;
    overflow: hidden;
}

.map-wrap iframe {
    display: block;
    filter: grayscale(80%) contrast(1.1);
    transition: filter 0.5s ease;
}

.map-wrap:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* --- FOOTER --- */
.site-footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-logo {
    width: 56px;
    height: auto;
    filter: brightness(0) invert(1) sepia(1) saturate(0.3) hue-rotate(340deg);
    opacity: 0.7;
}

.footer-brand h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-contact i {
    color: var(--primary-light);
    width: 16px;
    font-size: 0.85rem;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
}

/* --- WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 1.6rem;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    animation: whatsappPulse 2.5s infinite;
}

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

@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* --- ANIMATIONS --- */
.anim-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .main-nav { display: none; }
    .hamburger { display: flex; }

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

    .stat-card:not(:last-child)::after {
        display: none;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .process-step:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 600px) {
    html { font-size: 15px; }

    .container { padding: 0 16px; }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

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

    .stat-number {
        font-size: 2.2rem;
    }

    .contact-info-inner,
    .contact-form-wrap {
        padding: 28px 20px;
    }

    .logo-img {
        height: 36px;
    }

    .logo-ar {
        font-size: 1.05rem;
    }
}

/* --- PRELOADER / SMOOTH ENTRY --- */
body.loaded .hero-content .anim-fade {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered hero animations */
.hero-content .anim-fade[data-delay="0"] { transition-delay: 0.2s; }
.hero-content .anim-fade[data-delay="1"] { transition-delay: 0.4s; }
.hero-content .anim-fade[data-delay="2"] { transition-delay: 0.6s; }
.hero-content .anim-fade[data-delay="3"] { transition-delay: 0.8s; }
.hero-content .anim-fade[data-delay="4"] { transition-delay: 1.0s; }

/* Selection color */
::selection {
    background: var(--primary);
    color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-pale);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}
