/* ===== CSS Variables ===== */
:root {
    --red: #dc2626;
    --red-dark: #b91c1c;
    --red-darker: #991b1b;
    --red-light: #fef2f2;
    --red-100: #fee2e2;
    --red-200: #fecaca;
    --red-400: #f87171;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --red-700: #b91c1c;
    --red-800: #991b1b;
    --red-900: #7f1d1d;
    --dark: #0a0a0a;
    --dark-2: #141414;
    --dark-3: #1a1a1a;
    --gray-900: #111111;
    --gray-800: #1f1f1f;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --whatsapp: #25d366;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --shadow-red: 0 10px 40px rgba(220, 38, 38, 0.2);
    --transition: 0.3s ease;
    --transition-slow: 0.6s ease;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-700);
    line-height: 1.7;
    background: var(--dark);
    -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    color: var(--dark);
    line-height: 1.2;
    font-weight: 800;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

/* Animated Gradient Text like Mercanis */
.gradient-text-animated {
    background: linear-gradient(90deg, var(--red-500), #ff6b6b, #ee5a24, var(--red-400), var(--red-500));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

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

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.btn-glass {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-color: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
}

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

/* ===== Navbar - Glassmorphism ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===== Logo - EXTRA LARGE ===== */
.logo {
    display: flex;
    align-items: center;
}

/* Brand Name Text (replaces corner logos) */
.brand-name {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    transition: all var(--transition);
    text-decoration: none;
}

.brand-name::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 24px;
    background: var(--red);
    vertical-align: middle;
    margin-right: 12px;
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.6);
}

.navbar.scrolled .brand-name {
    color: var(--dark);
    text-shadow: none;
}

.footer-brand {
    font-size: 1.5rem;
    display: inline-block;
    margin-bottom: 6px;
}

.footer-tagline {
    font-size: 0.78rem;
    color: var(--red-400);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 18px !important;
}

/* Logo Showcase Strip - Prominent, Visible */
.logo-strip {
    background: linear-gradient(180deg, var(--dark) 0%, #1a0a0a 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
}

.logo-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.logo-strip-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 60px;
    max-width: 520px;
    margin: 0 auto;
    border: 3px solid var(--red);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.6),
        0 0 120px rgba(220, 38, 38, 0.35);
    position: relative;
    z-index: 2;
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        box-shadow:
            0 30px 80px rgba(0,0,0,0.6),
            0 0 120px rgba(220, 38, 38, 0.35);
    }
    50% {
        box-shadow:
            0 30px 80px rgba(0,0,0,0.65),
            0 0 160px rgba(220, 38, 38, 0.55);
    }
}

.logo-strip-img {
    height: 220px;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

/* Hero Logo Showcase */

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    padding: 10px 18px;
    border-radius: 60px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition);
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.12);
}

.navbar.scrolled .nav-links a {
    color: var(--gray-700);
    text-shadow: none;
}

.navbar.scrolled .nav-links a:hover {
    color: var(--red);
    background: rgba(220, 38, 38, 0.08);
}

.navbar.scrolled .nav-links a {
    color: rgba(255,255,255,0.7);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
}

.nav-cta:hover {
    background: var(--red-dark) !important;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: 3px;
    transition: all var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--dark);
}

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

/* Background Image */
.hero-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg,
        rgba(15, 15, 20, 0.78) 0%,
        rgba(30, 15, 20, 0.72) 45%,
        rgba(127, 29, 29, 0.55) 100%
    );
}

/* Floating Shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -120px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15), transparent 70%);
    animation: float-1 10s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: 5%;
    left: -80px;
    background: radial-gradient(circle, rgba(248, 113, 113, 0.1), transparent 70%);
    animation: float-2 12s ease-in-out infinite;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 12%;
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    transform: rotate(45deg);
    animation: float-3 7s ease-in-out infinite;
}

.shape-4 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 15%;
    border: 2px solid rgba(220, 38, 38, 0.15);
    border-radius: 50%;
    animation: float-1 8s ease-in-out infinite reverse;
}

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

@keyframes float-2 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(25px) translateX(-18px); }
}

@keyframes float-3 {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(-20px); }
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 22px;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(248, 113, 113, 0.35);
    border-radius: 60px;
    color: #fca5a5;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    color: rgba(255,255,255,0.82);
    font-size: 1.15rem;
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

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

/* Stat Cards - Glassmorphism */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.stat-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 24px 36px;
    text-align: center;
    transition: all var(--transition);
}

.stat-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(220, 38, 38, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    color: rgba(255,255,255,0.3);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* ========================================
   SECTION BACKGROUNDS WITH IMAGES
   ======================================== */
.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.section-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
        rgba(255,255,255,0.92) 0%,
        rgba(255,255,255,0.96) 50%,
        rgba(255,255,255,0.92) 100%
    );
}

.section-overlay-dark {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(10, 10, 10, 0.88) 50%,
        rgba(10, 10, 10, 0.92) 100%
    );
}

.section-overlay-light {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
        rgba(249, 250, 251, 0.93) 0%,
        rgba(249, 250, 251, 0.96) 50%,
        rgba(249, 250, 251, 0.93) 100%
    );
}

/* Section Services - light bg */
.section-services {
    background: var(--gray-50);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light .section-desc {
    color: rgba(255,255,255,0.55);
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(220, 38, 38, 0.1);
    color: var(--red);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 60px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.section-header.light .section-tag {
    background: rgba(220, 38, 38, 0.15);
    color: var(--red-400);
    border-color: rgba(220, 38, 38, 0.3);
}

.section-header h2 {
    margin-bottom: 18px;
}

.section-desc {
    color: var(--gray-500);
    font-size: 1.05rem;
}

/* ========================================
   GLASS CARDS (Mercanis Style)
   ======================================== */
.glass-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--red-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: rgba(220, 38, 38, 0.15);
}

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

/* Dark Glass Cards */
.glass-card-dark {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    transition: all var(--transition);
    text-align: center;
}

.glass-card-dark:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--red-light);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 22px;
    transition: all var(--transition);
}

.glass-card:hover .card-icon {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

/* ===== About Section ===== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.glass-card h3 {
    margin-bottom: 14px;
    color: var(--dark);
}

.glass-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.glass-card ul { list-style: none; }

.glass-card ul li {
    padding: 7px 0;
    color: var(--gray-500);
    font-size: 0.95rem;
    position: relative;
    padding-left: 22px;
}

.glass-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
}

.values-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.value-tag {
    padding: 7px 16px;
    background: var(--red-light);
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--red-700);
    border: 1px solid var(--red-200);
    transition: all var(--transition);
}

.value-tag:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

/* ========================================
   SERVICE CARDS WITH BACKGROUND IMAGES
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    min-height: 380px;
    transition: all var(--transition);
    cursor: default;
}

.service-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-bg {
    transform: scale(1.08);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10, 10, 10, 0.5) 0%,
        rgba(10, 10, 10, 0.85) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
    transition: all var(--transition);
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(180deg,
        rgba(127, 29, 29, 0.4) 0%,
        rgba(10, 10, 10, 0.85) 40%,
        rgba(10, 10, 10, 0.95) 100%
    );
}

.service-card-content {
    position: relative;
    z-index: 2;
    padding: 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: var(--red-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 700;
}

.service-card > .service-card-content > p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.service-list { list-style: none; }

.service-list li {
    padding: 3px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    position: relative;
    padding-left: 16px;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red-400);
}

/* ===== Market Section ===== */
.market-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.glass-card-dark i {
    font-size: 2.2rem;
    color: var(--red-400);
    margin-bottom: 16px;
    display: block;
}

.glass-card-dark h4 {
    color: var(--white);
    margin-bottom: 6px;
    font-size: 1rem;
}

.glass-card-dark p {
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
}

.glass-card-dark a {
    color: rgba(255,255,255,0.7);
}

.glass-card-dark a:hover {
    color: var(--red-400);
}

/* ===== Advantages Section ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.advantage-card {
    background: var(--white);
    padding: 36px 24px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.advantage-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--red-400));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: rgba(220, 38, 38, 0.15);
}

.advantage-card:hover::after {
    transform: scaleX(1);
}

.advantage-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--red), var(--red-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
}

.advantage-card h4 {
    margin-bottom: 10px;
    color: var(--dark);
}

.advantage-card p {
    color: var(--gray-500);
    font-size: 0.88rem;
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px !important;
    text-align: left !important;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.25);
    color: var(--red-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-icon.whatsapp-icon {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.25);
    color: var(--whatsapp);
}

.contact-item h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item a,
.contact-item p {
    color: rgba(255,255,255,0.75) !important;
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: var(--red-400) !important;
}

/* Contact Form - Glass */
.contact-form-wrapper {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--red-400), var(--red));
}

.contact-form h3 {
    margin-bottom: 28px;
    font-size: 1.4rem;
    color: var(--white);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--white);
    transition: all var(--transition);
    background: rgba(255,255,255,0.04);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
    background: rgba(255,255,255,0.06);
}

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

.form-group select {
    appearance: none;
    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='%23dc2626' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    cursor: pointer;
    color: rgba(255,255,255,0.5);
}

.form-group select option {
    background: var(--dark-2);
    color: var(--white);
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.45);
    padding: 80px 0 0;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.footer-links a {
    font-size: 0.88rem;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--red-400);
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 64px;
    height: 64px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

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

.whatsapp-tooltip {
    position: absolute;
    right: 74px;
    background: var(--dark-2);
    color: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 44px;
    height: 44px;
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
}

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

.back-to-top:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--dark-2);
        flex-direction: column;
        padding: 100px 24px 24px;
        gap: 4px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
        transition: right var(--transition);
        border-left: 1px solid rgba(255,255,255,0.06);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: rgba(255,255,255,0.7) !important;
        width: 100%;
        padding: 14px 18px !important;
        border-radius: var(--radius) !important;
    }

    .nav-links a:hover {
        background: rgba(255,255,255,0.06) !important;
        color: var(--white) !important;
    }

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

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

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

    .brand-name {
        font-size: 1.1rem;
    }

    .brand-name::before {
        width: 5px;
        height: 20px;
        margin-right: 10px;
    }

    .logo-strip {
        padding: 50px 0;
    }

    .logo-strip-card {
        padding: 28px 32px;
        max-width: 90%;
    }

    .logo-strip-img {
        height: 150px;
    }

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

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

    .service-card {
        min-height: 320px;
    }

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

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

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

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

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

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

    .section {
        padding: 80px 0;
    }

    .shape-1 { width: 300px; height: 300px; }
    .shape-2 { width: 180px; height: 180px; }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

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

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .logo-strip-img {
        height: 110px;
    }

    .logo-strip-card {
        padding: 22px 20px;
    }
}
