﻿/* ===== COLOR PALETTE ===== */
:root {
    --bg-light: #CCDAD1;
    --bg-mid: #9CAEA9;
    --text-mid: #788585;
    --text-dark: #6F6866;
    --primary: #38302E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-image: linear-gradient(to top, #fddb92 0%, #d1fdff 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Manrope', sans-serif;
    color: var(--text-mid);
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===== NAVBAR (Softer) ===== */
#ajaxNavbar {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 1200px;
    height: 62px;
    background: white;
    border-radius: 40px;
    box-shadow: 0 4px 16px rgba(56, 48, 46, 0.1);
    z-index: 2000;
    transition: transform 0.4s cubic-bezier(0.65, -0.25, 0.25, 1.3), opacity 0.3s ease;
    padding: 0 16px;
    border: 1px solid rgba(156, 174, 169, 0.4);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar-brand {
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 300; /* Softer than bold */
    font-size: 1.6rem;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 24px;
    height: 16px;
    justify-content: space-between;
}

    .hamburger span {
        display: block;
        height: 1.8px;
        width: 100%;
        background: var(--text-mid); /* Softer icon */
        border-radius: 2px;
    }

.nav-links {
    display: flex;
    list-style: none;
    gap: 22px;
    margin: 0;
    padding: 0;
}

    .nav-links a {
        text-decoration: none;
        color: var(--text-mid);
        font-weight: 400; /* Reduced from 500 */
        font-size: 0.92rem;
        letter-spacing: 0.4px;
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--text-dark);
        }

            .nav-links a:hover::after {
                width: 100%;
            }

.auth-btn {
    background: linear-gradient(120deg, var(--primary), #5A5250);
    color: white;
    border: none;
    padding: 7px 20px;
    border-radius: 30px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500; /* Slightly softer */
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(56, 48, 46, 0.2);
}

    .auth-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 14px rgba(56, 48, 46, 0.25);
    }

/* Mobile Menu */
#mobileMenu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 2001;
    padding: 24px;
    overflow: auto;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bg-mid);
}

.close-mobile {
    background: none;
    border: none;
    font-size: 1.7rem;
    cursor: pointer;
    color: var(--primary);
}

.mobile-nav a {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--primary);
    text-decoration: none;
    padding: 8px 0;
    display: block;
}

.mobile-auth {
    background: linear-gradient(120deg, var(--primary), #5A5250);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 30px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    max-width: 280px;
    margin-top: 10px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary);
    color: var(--bg-light);
    padding: 60px 20px 40px;
    font-family: 'Manrope', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--bg-mid);
}

.footer-column ul {
    list-style: none;
}

    .footer-column ul li {
        margin-bottom: 10px;
    }

        .footer-column ul li a {
            text-decoration: none;
            color: var(--bg-light);
            font-weight: 300;
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }

            .footer-column ul li a:hover {
                color: var(--bg-mid);
            }

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(204, 218, 209, 0.2);
    text-align: center;
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(204, 218, 209, 0.7);
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    .auth-btn {
        padding: 6px 16px;
        font-size: 0.88rem;
    }

    .navbar-brand {
        font-size: 1.45rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin: 60px 0 40px;
    }

    .card {
        width: 90%;
        height: auto;
    }

    .footer-content {
        gap: 30px;
    }
}

@media (min-width: 769px) {
    #mobileMenu {
        display: none !important;
    }

    .hamburger {
        display: none !important;
    }
}

.action-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 32px auto;
    max-width: 1200px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 16px;
    padding: 1.25rem 1rem;
    width: 25vw;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
}

    .action-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
        background-color: var(--bg-mid);
        color: white;
    }

    .action-btn i {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }

/* Responsive: stack on small screens */
@media (max-width: 480px) {
    .action-buttons {
        gap: 1rem;
        padding: 0 16px;
    }

    .action-btn {
        width: 100px;
        padding: 1rem 0.75rem;
        font-size: 0.85rem;
    }

        .action-btn i {
            font-size: 1.5rem;
        }
}
/* Responsive: stack on small screens */
@media (max-width: 480px) {
    .action-buttons {
        gap: 1rem;
    }

    .btn {
        width: 100px;
        padding: 1rem 0.75rem;
        font-size: 0.85rem;
    }

        .btn i {
            font-size: 1.5rem;
        }
}
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 90px; /* Above bottom nav */
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-icon {
    font-size: 28px;
    margin: 0;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

/* Responsive: Smaller on mobile */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 16px;
    }

    .whatsapp-icon {
        font-size: 24px;
    }
}
/* Bottom Navigation Bar */
.bottom-nav {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: white;
    border-top: 1px solid rgba(156, 174, 169, 0.4);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

    .nav-item i {
        font-size: 1.4rem;
        margin-bottom: 2px;
    }

    .nav-item:hover,
    .nav-item.active {
        color: var(--primary);
    }

/* Show bottom nav only on mobile */
@media (max-width: 768px) {

    .bottom-nav {
        display: flex;
    }

    /* Adjust WhatsApp button to sit above bottom nav */
    .whatsapp-float {
        bottom: 80px; /* 60px (nav) + 20px padding */
    }
}ile */
@media (max-width: 768px) {

    .bottom-nav {
        display: flex;
    }

    /* Adjust WhatsApp button to sit above bottom nav */
    .whatsapp-float {
        bottom: 80px; /* 60px (nav) + 20px padding */
    }
}