/* ===== Eaglex Marketing Digital - Unique Styles ===== */
/* Font pairing: Inter + Space Grotesk */
/* Palette: Red, Black, White - Aggressive/Digital */

:root {
    --primary: #dc2626;
    --primary-dark: #b91c1c;
    --primary-light: #ef4444;
    --primary-bg: #fef2f2;
    --black: #111827;
    --black-light: #1f2937;
    --white: #ffffff;
    --off-white: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-900: #111827;
    --text: #374151;
    --text-light: #6b7280;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(17,24,39,0.08);
    --shadow-md: 0 4px 16px rgba(17,24,39,0.1);
    --shadow-lg: 0 10px 40px rgba(17,24,39,0.15);
    --radius: 6px;
    --radius-lg: 12px;
    --transition: 0.25s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
    background: var(--black);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-eagle {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    letter-spacing: 2px;
}

.logo-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

.logo-text small {
    font-size: 0.68rem;
    color: var(--gray-500);
    font-weight: 400;
}

.main-nav {
    display: none;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-list a {
    text-decoration: none;
    color: var(--gray-300);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-list a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

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

.menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}
.menu-toggle.active .hamburger:nth-child(2) { opacity: 0; }
.menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ===== HERO ===== */
.hero {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 75px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220,38,38,0.08) 0%, transparent 60%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(220,38,38,0.05) 0%, transparent 60%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--gray-300);
    margin-bottom: 35px;
    max-width: 780px;
}

.hero-body h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary-light);
    margin: 34px 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-body p {
    margin-bottom: 16px;
    font-size: 0.96rem;
    color: var(--gray-300);
}

.hero-body a {
    color: var(--primary-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hero-body a:hover {
    color: var(--white);
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 6px 24px rgba(220,38,38,0.35);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--gray-500);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== SECTIONS ===== */
.section {
    padding: 70px 0;
}

.section-alt {
    background: var(--off-white);
}

.section h2 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--black);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    gap: 20px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--primary);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-number {
    position: absolute;
    top: 12px;
    right: 16px;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-200);
}

.service-card h3 {
    font-family: var(--font-heading);
    color: var(--black);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== STATS ===== */
.stats-grid {
    display: grid;
    gap: 22px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border-bottom: 4px solid var(--primary);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.88rem;
}

/* ===== PROCESS ===== */
.process-grid {
    display: grid;
    gap: 22px;
}

.process-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-left: 4px solid var(--black);
}

.process-step {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.process-card h3 {
    font-family: var(--font-heading);
    color: var(--black);
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.process-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    gap: 20px;
    max-width: 700px;
    margin: 30px auto 0;
}

.contact-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.contact-item h3 {
    font-family: var(--font-heading);
    color: var(--black);
    margin-bottom: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.contact-item p {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--black);
    color: var(--gray-500);
    padding: 45px 0 35px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-about p {
    margin-bottom: 6px;
    font-size: 0.85rem;
}

.footer-about a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.83rem;
    transition: color var(--transition);
}

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

/* ===== WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 999;
    transition: transform var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.12);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
    .menu-toggle { display: none; }
    .main-nav { display: block; }

    .hero h1 { font-size: 2.4rem; }
    .hero { padding: 80px 0 90px; }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
    }
    .footer-about { max-width: 55%; }
}

@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .hero h1 { font-size: 2.7rem; }
}
