/* Base Variables & Reset */
:root {
    --color-primary: #1d3e2a; /* Deep Forest Green */
    --color-primary-light: #2b5a3e;
    --color-secondary: #EB5E23; /* Tangerine Orange */
    --color-secondary-hover: #fa6c30;
    
    --color-bg: #FFFFFF;
    --color-bg-alt: #F8F9FA;
    --color-text: #333333;
    --color-text-muted: #666666;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden; /* Prevent blob horizontal scroll */
    width: 100%;
    position: relative;
}

/* Background Aesthetic Blobs */
body::before, body::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    opacity: 0.12;
    pointer-events: none;
}

body::before {
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    top: -5%;
    left: -15%;
}

body::after {
    width: 500px;
    height: 500px;
    background: var(--color-secondary);
    top: 35%;
    right: -10%;
}

/* Extra lower blob */
.why-us {
    position: relative;
}
.why-us::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.08;
    background: var(--color-primary);
    bottom: -10%;
    left: 10%;
    pointer-events: none;
}
.why-us > .container {
    position: relative;
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

b, strong { font-weight: 600; }
a { text-decoration: none; color: inherit; transition: color var(--transition-speed); }
p { margin-bottom: 1rem; }

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-orange { color: var(--color-secondary); }
.text-green { color: var(--color-primary); }
.text-white { color: #ffffff; }
.bg-light { background-color: var(--color-bg-alt); }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; }
.d-inline-flex { display: inline-flex; align-items: center; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }
.flex { display: flex; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.gap-4 { gap: 1rem; }
.flex-wrap { flex-wrap: wrap; }

/* Logo */
.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -1px;
    display: inline-flex;
    align-items: center;
}
.logo-u { color: var(--color-primary); }
.logo-p { color: var(--color-secondary); }
.logo-rest { color: var(--color-primary); font-size: 1.6rem; margin-left: -2px; }

.header-logo {
    height: 42px;
    width: auto;
    display: block;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-speed);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-primary);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-secondary);
    transition: width var(--transition-speed);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001; /* Stay above mobile menu */
}

.mobile-menu-btn i {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .desktop-only { display: none !important; }
    
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
    }

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

    .nav-link {
        font-size: 1.8rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(29, 62, 42, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(29, 62, 42, 0.4);
}

.btn-primary.outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: none;
}

.btn-primary.outline:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(235, 94, 35, 0.3);
}

.btn-secondary:hover {
    background-color: var(--color-secondary-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(235, 94, 35, 0.5);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #1EBE5D;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.9rem; }
.btn-lg { padding: 1.2rem 2.5rem; font-size: 1.1rem; }

/* Sections */
.section { padding: 6rem 0; }
.section-title { font-size: 2.8rem; margin-bottom: 1rem; }
.section-description { font-size: 1.1rem; color: var(--color-text-muted); max-width: 600px; margin: 0 auto 3rem auto; }
.section-label { 
    display: inline-block; 
    padding: 0.4rem 1rem; 
    border-radius: 30px; 
    background: rgba(235, 94, 35, 0.1); 
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.text-massive { font-size: 3.5rem; line-height: 1.1; }

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Offset for navbar */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 62, 42, 0.9) 0%, rgba(29, 62, 42, 0.8) 50%, rgba(29, 62, 42, 0.4) 100%);
}

.hero-content {
    color: #fff;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    color: #fff;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator i {
    margin-bottom: 0.5rem;
}

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

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
    border-color: rgba(29, 62, 42, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    margin-bottom: 1.5rem;
}

.icon-orange { color: var(--color-secondary); background: rgba(235, 94, 35, 0.1) !important; }
.icon-green { color: var(--color-primary); background: rgba(29, 62, 42, 0.1) !important; }

.feature-title { font-size: 1.3rem; margin-bottom: 0.8rem; }
.feature-text { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: 0; }

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-layout.reverse {
    direction: rtl;
}

.split-layout.reverse > * {
    direction: ltr;
}

.split-title { font-size: 2.5rem; margin-bottom: 1.5rem; }
.split-text { font-size: 1.1rem; color: var(--color-text-muted); margin-bottom: 2rem; }

.badge-green { background: rgba(29, 62, 42, 0.1); color: var(--color-primary); }
.badge-orange { background: rgba(235, 94, 35, 0.1); color: var(--color-secondary); }
.audience-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.benefit-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.benefit-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.benefit-list i {
    color: var(--color-primary);
    margin-right: 1rem;
    width: 24px;
    height: 24px;
}

.split-visual {
    height: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.bg-gradient-green { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%); }
.bg-gradient-orange { background: linear-gradient(135deg, #fa6c30 0%, var(--color-secondary) 100%); }
.rounded-xl { border-radius: 20px; }
.p-8 { padding: 3rem; }

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    color: #fff;
    max-width: 300px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15), inset 0 0 20px rgba(255,255,255,0.05);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.2), inset 0 0 20px rgba(255,255,255,0.1);
}

.glass-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.glass-icon i { width: 40px; height: 40px; }

.glass-card h4 { color: #fff; font-size: 1.5rem; margin-bottom: 0.5rem; }
.glass-card p { opacity: 0.9; margin-bottom: 0; }

/* Direct Contact */
.direct-contact {
    background: #0f2217;
    color: #fff;
}
.direct-contact .section-title { color: #fff; }

.pulse-animation {
    animation: pulse 2s infinite;
}

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

/* Footer */
.footer {
    background: var(--color-primary);
    color: #fff;
    padding: 6rem 0 2rem 0;
}

.footer-title { color: #fff; font-size: 2.5rem; margin-bottom: 1rem; }
.footer-description { font-size: 1.1rem; opacity: 0.8; max-width: 500px; }

.footer-bottom {
    margin-top: 6rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .logo-u { color: #fff; }
.footer .logo-rest { color: #fff; }

.footer-copy {
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-contact-info {
    margin-top: 3rem;
    padding: 1.5rem 2.5rem;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 3rem;
    text-align: left;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.contact-item i {
    color: var(--color-secondary);
    min-width: 20px;
    margin-top: 2px;
}

/* Animations (Handled by AOS) */

/* Responsiveness */
@media (max-width: 992px) {
    .split-layout { grid-template-columns: 1fr; gap: 3rem; }
    .hero-title { font-size: 3.5rem; }
    .text-massive { font-size: 2.8rem; }
    .split-visual { min-height: 300px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; }
    .section-title { font-size: 2.2rem; }
    .text-massive { font-size: 2.2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-buttons { flex-direction: column; }
    .footer-contact-info { flex-direction: column; gap: 1.5rem; text-align: center; padding: 1.5rem; }
    .contact-item { flex-direction: column; align-items: center; gap: 0.5rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; }
}
