/* --- ROOT VARIABLES --- */
:root {
    --black: #050505;
    --dark-grey: #121212;
    --moss-green: #6b8e23;
    --earth-brown: #8b5a2b;
    --off-white: #e0e0e0;
    --text-muted: #888;
}

/* --- CORE STYLES --- */
body { background-color: var(--black); color: var(--off-white); font-family: 'Inter', sans-serif; margin: 0; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* --- NAVIGATION --- */
nav.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--black);
    border-bottom: 1px solid #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-img { height: 70px; transition: 0.3s; }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}
.nav-links a:hover { color: var(--moss-green); }

.btn-consult {
    background: transparent;
    border: 1px solid var(--earth-brown);
    color: var(--off-white);
    padding: 10px 20px;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}
.btn-consult:hover { background: var(--earth-brown); color: var(--black); }

/* --- HERO SECTION --- */
.hero-viewport {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content { position: relative; z-index: 2; text-align: center; padding: 20px; }
.brand-name { font-size: clamp(1.5rem, 5vw, 3rem); font-weight: 700; letter-spacing: 6px; text-transform: uppercase; }
.tagline { color: var(--moss-green); font-size: 1rem; letter-spacing: 4px; margin-top: 15px; font-weight: 300; }

/* --- GRID & CARDS --- */
.division-section { padding: 80px 0; }
.grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (min-width: 1024px) {
    .grid { grid-template-columns: repeat(4, 1fr) !important; }
}

.card { background: var(--dark-grey); border-radius: 2px; overflow: hidden; transition: 0.4s ease; border: 1px solid #1a1a1a; }
.card:hover { transform: translateY(-10px); border-color: var(--moss-green); }
.card-img { width: 100%; height: 220px; object-fit: cover; filter: grayscale(100%); transition: 0.6s; }
.card:hover .card-img { filter: grayscale(0%); }
.card-body { padding: 30px; border-top: 2px solid var(--earth-brown); }
.card h3 { color: var(--moss-green); margin-bottom: 15px; font-size: 1.1rem; letter-spacing: 1px; }
.card ul { list-style: none; padding: 0; font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; }

/* --- FOOTER & CONTACT --- */
footer { padding: 80px 0 40px; background: #020202; border-top: 1px solid #1a1a1a; }
.footer-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 60px; }
.f-card { background: #080808; padding: 15px; border: 1px solid #111; text-decoration: none; color: inherit; transition: 0.3s; display: block; }
.f-card:hover { border-color: var(--earth-brown); background: #0c0c0c; }
.f-card img { width: 100%; height: 140px; object-fit: cover; margin-bottom: 15px; opacity: 0.6; filter: grayscale(100%); }
.f-card:hover img { opacity: 1; filter: none; }

.contact-section { padding: 80px 0; background-color: var(--black); }
.contact-form { background: var(--dark-grey); padding: 40px; border: 1px solid #1a1a1a; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; background: #0a0a0a; border: 1px solid #222; color: var(--off-white); margin-top: 10px; }

/* --- UTILITIES --- */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
}

/* Gallery Filter */
        .gallery-nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: transparent;
            border: 1px solid var(--dark-grey);
            color: var(--off-white);
            padding: 8px 20px;
            cursor: pointer;
            font-size: 0.8rem;
            transition: 0.3s;
        }

        .filter-btn:hover { background: var(--moss-green); border-color: var(--moss-green); }

	/* --- WhatsApp Floating Button --- */
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

		/* --- SOCIAL MEDIA SECTION --- */
.social-ecosystem {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--black), #0a0a0a);
    text-align: center;
}

.social-header h2 {
    font-size: 0.8rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--moss-green);
    margin-bottom: 40px;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.4s ease;
}

/* Minimalist Icon Circles */
.social-icon-circle {
    width: 60px;
    height: 60px;
    border: 1px solid #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: 0.4s ease;
    background: transparent;
}

/* Hover Effects */
.social-link:hover .social-icon-circle {
    border-color: var(--moss-green);
    background: rgba(107, 142, 35, 0.05);
    transform: translateY(-5px);
}

.social-link:hover {
    color: var(--off-white);
}

/* Responsive spacing */
@media (max-width: 768px) {
    .social-grid { gap: 20px; }
    .social-icon-circle { width: 50px; height: 50px; }
}

		
		/* --- CONTACT SECTION --- */
.contact-section {
    padding: 80px 0;
    background-color: var(--black);
}

.contact-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
}

.contact-form-container, .contact-map-container {
    flex: 1;
    min-width: 320px;
}

/* Form Styling */
.contact-form {
    background: var(--dark-grey);
    padding: 40px;
    border: 1px solid #1a1a1a;
}

.contact-form h2 {
    color: var(--moss-green);
    font-size: 1.2rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    background: #0a0a0a;
    border: 1px solid #222;
    color: var(--off-white);
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--moss-green);
}

.submit-btn {
    background: transparent;
    border: 1px solid var(--moss-green);
    color: var(--moss-green);
    padding: 12px 30px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--moss-green);
    color: var(--black);
}

/* Map Styling */
.contact-map-container {
    min-height: 450px;
    filter: grayscale(100%) invert(90%) contrast(90%); /* Makes map match the Black Theme */
    opacity: 0.8;
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile Priority */
@media (max-width: 768px) {
    .contact-flex { flex-direction: column; }
    .contact-map-container { min-height: 300px; order: 2; }
    .contact-form-container { order: 1; }
}

/* Card specifically for Contact Details */
.contact-form-container .card {
    margin-top: 30px;
    background: #0d0d0d; /* Slightly lighter than the background for depth */
    border: none;
    border-left: 2px solid var(--moss-green);
    padding: 25px;
    border-radius: 0; /* Keeps the Dutch Modern clean-line look */
}

.contact-form-container .card h3 {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.contact-form-container .card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

/* Icon Styling */
.contact-form-container .card i {
    color: var(--moss-green);
    margin-right: 15px;
    width: 20px; /* Fixed width so text aligns vertically */
    text-align: center;
}

/* Hover effect for interactive feel */
.contact-form-container .card:hover {
    background: #151515;
    transition: 0.3s ease;
}
		
  /* ADMIN CSS */
    :root { --moss: #6b8e23; --black: #050505; --dark: #121212; --gold: #8b5a2b; }
    
    /* Base Reset */
    body { background: var(--black); color: #e0e0e0; font-family: 'Inter', sans-serif; padding: 20px; margin: 0; }
    
    /* Container: Adaptive Width */
    .dashboard { 
        max-width: 900px; 
        margin: auto; 
        background: var(--dark); 
        border: 1px solid #222; 
        padding: 40px; 
        box-sizing: border-box; /* Ensures padding doesn't break width */
    }

    /* Header: Flex Wrapping for Mobile */
    .header { 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        border-bottom: 1px solid #222; 
        padding-bottom: 20px; 
        margin-bottom: 30px; 
        flex-wrap: wrap; /* Allows items to drop to next line */
        gap: 15px;
    }

    /* Grid System: Desktop (2 Col) -> Mobile (1 Col) */
    .grid { 
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        gap: 20px; 
    }
    
    .full { grid-column: span 2; }

    /* Form Elements: Touch-Friendly */
    label { display: block; font-size: 0.75rem; color: #888; text-transform: uppercase; margin-bottom: 8px; letter-spacing: 1px; }
    
    input, select, textarea { 
        width: 100%; 
        background: #000; 
        border: 1px solid #333; 
        padding: 15px; /* Larger touch target */
        color: #fff; 
        box-sizing: border-box; 
        font-size: 16px; /* Prevents iOS auto-zoom */
        border-radius: 4px;
    }
    
    input:focus, select:focus, textarea:focus { border-color: var(--moss); outline: none; }

    /* Action Buttons */
    .btn { 
        background: var(--moss); 
        color: white; 
        border: none; 
        padding: 18px; 
        width: 100%; 
        cursor: pointer; 
        font-weight: bold; 
        text-transform: uppercase; 
        letter-spacing: 1px; 
        margin-top: 20px; 
        font-size: 0.9rem;
    }

    /* Navigation Links */
    .nav-link { color: #888; text-decoration: none; font-size: 0.8rem; margin-left: 20px; white-space: nowrap; }

    /* --- MOBILE BREAKPOINT (Tablets & Phones) --- */
    @media (max-width: 768px) {
        body { padding: 10px; }
        .dashboard { padding: 20px; }
        
        /* Stack the Header */
        .header { flex-direction: column; text-align: center; align-items: stretch; }
        .nav-link { margin: 5px 10px; display: inline-block; }
        
        /* Stack the Form Grid */
        .grid { grid-template-columns: 1fr; } 
        .full { grid-column: span 1; }
        
        /* Make inputs larger for fingers */
        input, select, textarea { padding: 12px; margin-bottom: 10px; }
    }
  /* FINISH ADMIN CSS */

/* 1. Prevent Hero Section from hiding (Optional, if header is solid color) */
body {
    padding-top: 1px; 
}

/* 2. Prevent Anchor Links (#contact) from hiding */
html {
    scroll-behavior: smooth; /* Makes the jump look nice */
}

section {
    scroll-margin-top: 120px; /* The Magic Fix */
}

/* --- MOBILE MENU SYSTEM --- */

/* 1. Default State (Desktop) - Hide the Toggle */
.menu-toggle {
    display: none;
    color: BLUE;
    font-size: 1.5rem;
    cursor: pointer;
}

/* 2. Mobile State (Tablets & Phones) */
@media (max-width: 900px) {
    /* Show the Hamburger Icon */
    .menu-toggle {
        display: block;
    }

    /* Hide the 'Request Consultation' button on mobile to save space */
    .nav-actions {
        display: none;
    }

    /* Transform the Nav Links into a Dropdown */
    .nav-links {
        display: none; /* Hidden by default */
        position: absolute;
        top: 100%; /* Push it right below the header */
        left: 0;
        width: 100%;
        background-color: var(--black); /* Match the header */
        border-bottom: 1px solid var(--moss-green);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        z-index: 999;
    }

    /* The 'Active' Class - What JS adds when you click */
    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-in-out forwards;
    }

    /* Styling the Mobile Links */
    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-links a {
        font-size: 1rem;
        display: block;
        padding: 10px;
        color: var(--off-white);
    }
}

/* 3. Animation for Smooth Opening */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}