/* --- Reset & Layout --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

ul {
    list-style: none;
}

/* --- Top Bar --- */
.top-bar {
    background-color: #000000;
    color: var(--text-muted);
    font-size: 0.8rem;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.text-whatsapp {
    color: var(--brand-accent);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

/* --- Navbar --- */
.navbar {
    position: absolute;
    top: 35px;
    /* Sits just below the top-bar */
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    padding: 15px 5%;
}
.mg-block10{
    margin-block: 10px;
}

.logo img {
    display: block;
    width: auto;
    max-width: 100%;
    /* height: clamp(44px, 6vw, 100px); */
    height: clamp(40px, 6vw, 80px);
    object-fit: contain;
    
}
.logo > span{
    color: var(--brand-primary);
    display: block;
    /* width: 100%; */
    text-align: center;
    font-size: 1vw;
    
}
.logo i {
    font-size: 1.5rem;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn.lg {
    padding: 7px 15px;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--brand-primary);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--brand-primary-hover);
}

.btn-whatsapp {
    background-color: transparent;
    color: var(--brand-accent);
    border: 1px solid #1a4d2e;
}

.btn-whatsapp:hover {
    background-color: rgba(37, 211, 102, 0.1);
    border-color: var(--brand-accent);
}

/* --- Hero Section --- */



/* Badges */
.badges {
       display: flex;
    gap: 12px;
    /* margin-bottom: 25px; */
    margin-top: 10%;
    margin-bottom: 20px;
}

.badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    
}

.badge-red {
    background-color: #D32F2F;
    color: white;
}

.badge-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ccc;
}

/* Typography in Hero */

/* Features List */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #ccc;
    font-weight: 500;
}

.features i {
    color: var(--brand-primary);
    font-size: 1.1rem;
}

/* CTA Group */
.cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 3%;
    margin-bottom: 5%;
}

/* --- Floating WhatsApp --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--brand-accent);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
}

.floating-whatsapp-note {
    position: absolute;
    right: -30%;
    bottom: calc(100% + 6px);
    min-width: max-content;
    color: #ffffff;
    font-family: "Segoe Print", "Bradley Hand", "Brush Script MT", cursive;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    transform: rotate(-4deg);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    text-align: center;
}

.floating-whatsapp-note em {
    display: block;
    margin-top: 2px;
    font-style: normal;
    font-size: 22px;
    line-height: 0.9;
    text-align: center;
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* --- Mobile Responsiveness --- */
/* --- Hamburger Icon (Hidden on Desktop) --- */
.hamburger {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    z-index: 200; /* Needs to stay above the sliding menu */
    transition: color 0.3s;
}

.hamburger:hover {
    color: var(--brand-primary);
}


/* Footer CSS */
/* --- Footer Section --- */
.footer {
    background-color: var(--bg-secondary); /* Dark slate background matching the image */
    /* background-color: #111827; */
    
    color: #9ca3af; /* Soft gray for readable body text */
    padding: 60px 5% 20px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    /* First column gets more space (2fr), the other two share the rest evenly (1fr) */
    grid-template-columns: 2fr 1fr 1fr; 
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Logo Styling */
/* .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #ffffff;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
} */

.footer-logo a {
    display: inline-flex;
    align-items: center;
}
.footer-logo > span{
     color: var(--brand-primary);
    display: block;
    /* width: 100%; */
    font-size: 11px;
    margin-top: -2px;
}
.footer-logo img {
    display: block;
    width: auto;
    max-width: min(100%, 220px);
    height: 64px;
    object-fit: contain;
}

.footer-logo .logo-icon {
    background-color: var(--brand-primary);
    color: #000;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 0.8rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 90%;
}

/* Footer Buttons */
.footer-buttons {
    display: flex;
    gap: 15px;
}

.btn-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.btn-whatsapp-solid {
   background-color: var(--brand-accent); /* Emerald green matching the image */
    color: #ffffff;
}

.btn-whatsapp-solid:hover {
    background-color: var(--brand-accent);
}

.btn-call {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-call:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Footer Links */
.footer-heading {
    /* Uses the orange brand color setup in brand.css */
    color: var(--brand-primary); 
    font-size: 0.85rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.9rem;
}

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

/* Footer Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 20px auto 0;
    font-size: 0.8rem;
    color: #6b7280;
}
/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .top-bar { display: none; }
    .navbar { top: 0; padding: 15px 5%; }
    .logo img { height: 48px; }
    
    .hero h1 { font-size: 2.5rem; }
    .hero-overlay { background: rgba(10,10,10,0.85); } 

    /* Hide desktop CTA button in navbar on smaller screens to save space */
    .nav-btn { display: none; }

    /* Show hamburger icon */
    .hamburger { display: block; }

    /* Mobile Menu Styling (Slides out from the right) */
    .nav-links { 
        position: fixed;
        top: 0;
        right: -100%; /* Hidden completely off-screen by default */
        width: 280px;
        height: 100vh;
        background-color: var(--bg-surface);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        transition: right 0.4s ease-in-out; /* Smooth slide animation */
        z-index: 100;
        box-shadow: -5px 0 25px rgba(0,0,0,0.8);
    }

    /* Class added by JS to slide the menu into view */
    .nav-links.active {
        right: 0;
    }

    /* Make links larger for mobile tap targets */
    .nav-links a {
        font-size: 1.3rem;
        font-weight: 600;
    }
    /* Mobile adjustments for Footer */
    .footer-container {
        grid-template-columns: 1fr; /* Stack into a single column */
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-logo img {
        height: 56px;
    }
}
/* --- Page Header Section (Products/Catalogue) --- */
.page-header-section {
    /* Uses your brand variable and mixes it with 15% transparent (so 85% opacity) */
    background-color: color-mix(in srgb, var(--bg-secondary) 85%, transparent);
    
    /* Extra top padding so it clears the fixed navbar */
    padding: 120px 5% 60px; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-header-content {
    max-width: var(--max-width); /* Keeps the text from stretching too wide on massive screens */
    margin: auto; /* Ensures it stays left-aligned */
    margin-top: 4vh;

}

.page-header-content h4 {
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.page-header-content h2 {
    /* Fluid typography: 2.2rem on mobile, scales up to 3.2rem on desktop */
    font-size: clamp(2.2rem, 5vw, 3.2rem); 
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-header-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    max-width: 700px; /* Wraps the paragraph nicely like the image */
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .page-header-section {
        padding: 100px 5% 50px; /* Slightly less padding on mobile */
    }
    
    .page-header-content p {
        font-size: 0.95rem;
    }
}
.card-badge{
        align-self: flex-start;
    background-color: #991b1b;
    color: #fca5a5;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 12px;
}
.inquiry-group{
    display: flex;
    flex-flow: column;
    gap: 05px;
     margin-top: 10px;
}
.inquiry-group input,.inquiry-group textarea {
    padding: 10px;
    background-color: transparent;
    border: none;
    border: none;
}
/* --- Custom Select Dropdown Styling --- */

/* 1. Style the main Select box */
.inquiry-group select {
    background-color: #05090f; /* Same as your text inputs */
    border: 1px solid #1a2332;
    border-radius: 4px;
    padding: 12px 14px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.9rem;
    width: 100%;
    cursor: pointer;
    
    /* Removes the default ugly browser arrow */
    appearance: none; 
    -webkit-appearance: none;
    -moz-appearance: none;
    
    /* Adds a sleek, custom SVG arrow that matches your dark theme */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b95a5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    
    transition: border-color 0.2s, box-shadow 0.2s;
}

.inquiry-group select:focus {
    outline: none;
    border-color: var(--brand-primary); /* Your orange */
    box-shadow: 0 0 0 2px rgba(242, 140, 40, 0.15);
}

/* 2. Style the Dropdown Options Menu */
.inquiry-group option {
    /* We use the solid dark color here because 'transparent' defaults to white on Windows/Mac */
    background-color: #0b111a; 
    color: #ffffff;
    padding: 12px;
}

/* Optional: Placeholder styling for the "Select product" default option */
.inquiry-group select option[value=""][disabled] {
    color: #4b5563;
}
.inquiry-group input::placeholder{
    font-weight: bolder;
}
.inquiry-group input:hover,.inquiry-group textarea:hover{
   border: 1px solid var(--brand-primary-hover);
}
.inquiry-submit-btn{
    background-color: var(--brand-primary);
    padding: 20px;
    border: none;
    width: 100%;
    margin-top: 20px;
}

/* contact form */
 .page-contact-form {
            padding: 60px 5% 100px;
            background-color: transparent;
        }

        .form-container-main {
            max-width: 900px;
            margin: 0 auto;
            background: rgba(15, 23, 42, 0.78);
            padding: 48px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 25px 55px rgba(2, 6, 23, 0.85);
            position: relative;
        }

        .form-container-main::after {
            content: '';
            position: absolute;
            inset: auto;
            top: -20px;
            right: -20px;
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(79, 70, 229, 0.35), transparent 60%);
            filter: blur(12px);
        }

        .form-header-main {
            margin-bottom: 35px;
        }

        .form-header-main h4 {
            letter-spacing: 2px;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .form-header-main h2 {
            font-size: clamp(2rem, 3vw, 2.6rem);
            margin-bottom: 15px;
        }

        .form-header-main p {
            color: #cbd5f5;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .form-row-group {
            display: flex;
            gap: 24px;
            margin-bottom: 25px;
        }

        .form-field {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .form-field label {
            font-size: 0.85rem;
            color: #e2e8f0;
            font-weight: 600;
        }

        .form-field input,
        .form-field select,
        .form-field textarea {
            background: rgba(2, 6, 23, 0.7);
            border: 1px solid rgba(148, 163, 184, 0.5);
            padding: 14px 18px;
            border-radius: 14px;
            color: #f8fafc;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            width: 100%;
            transition: all 0.3s ease;
        }

        .form-field input:focus,
        .form-field select:focus,
        .form-field textarea:focus {
            outline: none;
            border-color: rgba(249, 115, 22, 0.9);
            box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
        }

        .input-with-prefix {
            display: flex;
            align-items: stretch;
        }

        .input-with-prefix .prefix {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(148, 163, 184, 0.4);
            border-right: none;
            padding: 0 15px;
            border-radius: 12px 0 0 12px;
            font-weight: 600;
            color: #94a3b8;
            display: flex;
            align-items: center;
        }

        .input-with-prefix input {
            border-radius: 0 12px 12px 0;
        }

        .btn-submit-contact {
            margin-top: 20px;
            padding: 14px 34px;
            font-size: 1rem;
            border-radius: 999px;
            box-shadow: 0 15px 30px rgba(249, 115, 22, 0.35);
            width: 100%;
        }

        @media (max-width: 992px) {
            .form-row-group {
                flex-direction: column;
            }

            .contact-card-actions {
                flex-direction: column;
            }

            .btn-white,
            .btn-outline-light {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .page-contact-header {
                padding: 100px 5% 40px;
            }

            .form-container-main {
                padding: 32px;
            }

            .contact-intro,
            .contact-info-card {
                padding: 30px;
            }
        }
        /* --- Modal (Popup) Styles --- */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999; /* Sit on top of everything, including navbar */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.85); /* Dark semi-transparent background */
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

/* Class added by JavaScript to show the modal */
.modal.show {
    display: flex;
}

.modal-content {
    position: relative;
    background-color: var(--bg-dark); /* Matches your dark theme */
    padding: 40px;
    border: 1px solid rgba(242, 140, 40, 0.3); /* Subtle brand border */
    border-radius: 8px;
    max-width: 700px;
    width: 90%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    animation: modalFadeIn 0.3s ease-out;
}

/* Close Button Styling */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #888;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--brand-primary);
    text-decoration: none;
}

/* Smooth pop-in animation */
@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Adjust padding inside the modal for mobile */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
    }
    .logo > span{
        font-size: 8px;
    }
}
  .breadcrumb {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: rgba(15, 23, 42, 0.85);
            padding: 10px 18px;
            border-radius: 999px;
            font-size: 0.85rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
            margin-top: 20px;
        }

        .breadcrumb a {
            color: #a5b4fc;
            font-weight: 500;
        }

        .breadcrumb a:hover {
            color: #f97316;
        }

        .breadcrumb .separator {
            color: #94a3b8;
        }

        .breadcrumb .current {
            color: #fff;
            font-weight: 600;
        }
