:root {
    /* Color Palette - Premium White and Green Theme */
    --bg-main: #FAFAFA;
    --bg-alt: #F3F4F6;
    --bg-card: rgba(255, 255, 255, 0.85);
    --border-glass: rgba(0, 0, 0, 0.05);
    
    /* Logo Colors */
    --primary: #295A3E;       /* Dark Green */
    --primary-light: #94C38E; /* Light Green */
    --primary-hover: #1e452e;
    
    --text-main: #1F2937;
    --text-muted: #4B5563;
    --danger: #EF4444;
    --success: #10B981;
    --whatsapp: #25D366;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Utilities */
    --container-max: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-main);
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 100px 0;
}

/* Reusable Components */
.glass-effect {
    background: rgba(250, 250, 250, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(41, 90, 62, 0.05); /* Subtle green shadow */
}

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

.text-gold {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: #FFFFFF;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(41, 90, 62, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 90, 62, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
}

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

.subtitle {
    color: var(--primary-light);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

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

.logo img {
    height: 70px;
    border-radius: var(--radius-sm);
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

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

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

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

.hero-bg-accent {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.glow-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: rgba(148, 195, 142, 0.2); /* Light green glow */
}

.glow-2 {
    bottom: -10%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: rgba(41, 90, 62, 0.1); /* Dark green glow */
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    justify-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(148, 195, 142, 0.15);
    border: 1px solid rgba(148, 195, 142, 0.4);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #111827;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0 auto 40px;
    max-width: 800px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.trust-item i {
    color: var(--success);
}

.image-wrapper {
    padding: 10px;
    transform: rotate(2deg);
    transition: var(--transition);
    background: #FFFFFF;
}

.image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    object-fit: cover;
}

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

.services {
    background-color: var(--bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(41, 90, 62, 0.2);
    box-shadow: 0 12px 40px rgba(41, 90, 62, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(148, 195, 142, 0.15);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

.service-link i {
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Differentials */
.differentials-wrapper {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 0;
    overflow: hidden;
    background: #FFFFFF;
}

.differentials-content {
    padding: 60px;
}

.diff-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.diff-list li {
    display: flex;
    gap: 20px;
}

.diff-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: rgba(148, 195, 142, 0.15); /* Light green bg */
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.diff-list h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.diff-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.differentials-stats {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #FFFFFF;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-content: center;
}

.stat-box {
    text-align: center;
}

.stat-box h3 {
    font-size: 3rem;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-box h3 span, .stat-box h3 i {
    font-size: 1.5rem;
    vertical-align: middle;
}

.stat-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.full-width {
    grid-column: 1 / -1;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.full-width i {
    color: #FFFFFF;
}

/* CTA Section */
.cta-banner {
    padding: 60px;
    text-align: center;
    background: #FFFFFF;
    border: 2px solid rgba(148, 195, 142, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(148, 195, 142, 0.1) 0%, rgba(41, 90, 62, 0.05) 100%);
    z-index: 0;
}

.cta-banner > * {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.cta-banner p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-glass);
    background: #FFFFFF;
    padding: 80px 0 30px;
}

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

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
    border-radius: var(--radius-sm);
    object-fit: contain;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 300px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-alt);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
}

.social-links a:hover {
    background: var(--primary);
    color: #FFF;
    border-color: var(--primary);
}

.footer-contact h4, .footer-area h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    color: var(--primary);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    color: var(--text-muted);
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-light);
    margin-top: 5px;
}

.footer-area p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.business-info {
    color: var(--text-muted);
    padding-top: 20px;
    border-top: 1px solid var(--border-glass);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.float-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content p {
        margin: 0 auto 30px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .differentials-wrapper {
        grid-template-columns: 1fr;
    }
    
    .differentials-stats {
        border-left: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }

    .logo img {
        height: auto;
        max-width: 250px;
        max-height: 60px;
    }

    .hero {
        padding-top: 140px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .navbar.mobile-active {
        background: #FFFFFF;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        padding: 20px;
        border-bottom: 1px solid var(--border-glass);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
}
