:root {
    --primary-blue: #1E2A78;
    --accent-green: #8CC63F;
    --light-blue: #00AEEF;
    --dark-bg: #f4f7f6;
    --white: #ffffff;
    --text-color: #333333;
    --gray: #666;
    --light-gray: #e0e0e0;
    --whatsapp-green: #25D366; /* Official WhatsApp Color */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Navbar & Mobile Menu Logic --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-logo { height: 40px; }

/* Desktop Menu State */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-blue);
    margin-left: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--light-blue);
}

.nav-btn.btn-primary {
    margin-left: 2rem; 
    color: var(--white);
}

.nav-btn.btn-primary:hover {
    color: var(--white);
}

/* Hide Checkbox by default */
.menu-toggle { display: none; }
.menu-icon { display: none; }

/* Mobile Menu Media Query */
@media (max-width: 992px) {
    .menu-icon {
        display: block;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
    }

    .menu-icon span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--primary-blue);
        margin: 5px 0;
        transition: 0.3s;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.4s ease-in-out;
        z-index: 999;
    }

    .nav-menu a { margin-left: 0; font-size: 1.1rem; }
    
    .menu-toggle:checked ~ .nav-menu {
        transform: translateY(0);
    }

    /* Hamburger Animation */
    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* --- Hero Section --- */
.hero {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8faff 0%, #eef3ff 100%);
    text-align: center;
}

h1 {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(90deg, var(--light-blue), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary { background: var(--primary-blue); color: var(--white); }
.btn-primary:hover { background: var(--light-blue); transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

.btn-secondary { background: var(--accent-green); color: var(--white); margin-left: 1rem; }
.btn-secondary:hover { background: #7ab332; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

.btn-outline { background: transparent; border: 2px solid var(--primary-blue); color: var(--primary-blue); width: 100%; }
.btn-outline:hover { background: var(--primary-blue); color: var(--white); }

/* --- Features Section --- */
.features { padding: 5rem 0; text-align: center; }
.section-title { font-size: 2.5rem; margin-bottom: 3rem; color: var(--primary-blue); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    background: var(--dark-bg);
    border-radius: 12px;
    transition: transform 0.3s;
}

.feature-card:hover { transform: translateY(-5px); }
.feature-card h3 { color: var(--primary-blue); margin-bottom: 1rem; }

/* --- Heritage Section (Enciso Advantage) --- */
.heritage {
    padding: 5rem 0;
    background: var(--primary-blue);
    color: var(--white);
}

.heritage a {
    color: var(--accent-green);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--accent-green);
    transition: all 0.3s ease;
}

.heritage a:hover {
    color: var(--light-blue);
    border-bottom-color: var(--light-blue);
}

.heritage-list {
    margin-top: 2rem;
    list-style: none;
}

.heritage-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.heritage-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

/* --- Pricing Section --- */
.pricing { padding: 5rem 0; background: #fff; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    padding: 3rem 2rem;
    border: 1px solid var(--light-gray);
    border-radius: 15px;
    text-align: center;
    position: relative;
    background: var(--white);
    transition: transform 0.3s ease;
}

.pricing-card:hover { transform: translateY(-10px); }

.pricing-card.featured {
    border: 2px solid var(--light-blue);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 10;
}

.pricing-card.featured:hover { transform: scale(1.05) translateY(-10px); }

.price { font-size: 2.5rem; font-weight: 700; margin: 1rem 0; color: var(--primary-blue); }
.price span { font-size: 1rem; color: var(--gray); }

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--light-blue);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    font-size: 0.9rem;
}

.pricing-card ul li { margin-bottom: 0.8rem; }

/* --- WhatsApp Float Button --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 4px 4px 15px rgba(0,0,0,0.3);
}

/* --- Main Footer --- */
.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 0 1rem;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1); /* Make logo white for dark footer */
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--light-blue);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.support-text {
    margin-bottom: 1rem;
    color: #ccc;
}

.support-hours {
    padding-left: 1rem;
    border-left: 3px solid var(--accent-green);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

.footer-bottom a {
    color: var(--light-blue);
    text-decoration: none;
}

/* --- General Responsive Adjustments --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero { padding: 4rem 5%; }
    
    .pricing-card.featured { transform: scale(1); margin: 1rem 0; }
    .pricing-card.featured:hover { transform: translateY(-5px); }
    
    .btn-secondary { display: block; margin: 1rem 0 0 0; width: 100%; }
    .btn-primary { width: 100%; }

    /* Footer Responsive */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-logo {
        margin: 0 auto 1.5rem;
    }

    .support-hours {
        border-left: none;
        border-top: 2px solid var(--accent-green);
        padding-top: 1rem;
        padding-left: 0;
        display: inline-block;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}
/* --- End of styles.css --- */
