/* ==============================
   ROOT VARIABLES
============================== */
:root {
    --primary: #004d4d;        /* Deep Teal */
    --accent: #bfa37e;         /* Gold / Brass */
    --dark: #0f1f1f;
    --muted: #666;
    --bg-light: #f9fbfb;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.88);

    
}

/* ==============================
   GLOBAL RESET
============================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Segoe UI", sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

/* ==============================
   NAVIGATION (Updated for Responsiveness)
============================== */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.company-logo {
    height: 75px; /* Professional standard size */
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-placeholder {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.slogan {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 600;
}

/* Nav Links */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover { color: var(--primary); }
nav a:hover::after { width: 100%; }

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
    border-radius: 2px;
}

/* ==============================
   HERO / BANNER
============================== */
.hero {
    min-height: 85vh;
    padding: 0 8%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), 
                url("images/i11.png");
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto;
}

/* ==============================
   GRID & CARDS
============================== */
section { padding: 5rem 8%; }

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-top: 4px solid var(--accent);
}

.card:hover { transform: translateY(-10px); }

/* ==============================
   MOBILE RESPONSIVENESS (Media Queries)
============================== */
@media (max-width: 992px) {
    .menu-toggle { display: flex; }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    nav ul.active { max-height: 400px; }

    nav ul li { width: 100%; border-top: 1px solid #eee; }

    nav ul li a {
        padding: 1.2rem;
        display: block;
        text-align: center;
    }

    .logo-placeholder { font-size: 1.3rem; }
    .slogan { font-size: 0.6rem; letter-spacing: 1.5px; }
    .company-logo { height: 50px; }
}

@media (max-width: 600px) {
    section { padding: 4rem 5%; }
    .hero { min-height: 60vh; }
    .grid { grid-template-columns: 1fr; }
}

/* ==============================
   FOOTER (Cleaned)
============================== */
footer {
    background: var(--dark);
    color: #bbb;
    padding: 4rem 8% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 2rem;
}

footer h3 { color: var(--white); margin-bottom: 1.2rem; }
footer a { color: #bbb; text-decoration: none; transition: 0.3s; }
footer a:hover { color: var(--accent); }

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    font-size: 0.8rem;
}





/* --- Contact Page Layout --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-box {
    height: 250px;
    background: #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    border: 1px solid #eee;
}

/* Form Groups inside the card */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-submit {
    width: 100%;
    margin-top: 20px;
    background: var(--primary);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--accent);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}


/* ==============================
   FORM STYLING (Professional B2B)
============================== */

/* Labels */
label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Inputs and Textareas */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 20px;
    border: 1px solid #d1d8d8; /* Light gray-teal border */
    border-radius: 8px;
    background-color: #ffffff;
    font-size: 1rem;
    color: var(--dark);
    font-family: inherit;
    transition: all 0.3s ease;
    -webkit-appearance: none; /* Removes mobile browser styling */
}

/* Focus State: When the user clicks into the box */
input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent); /* Changes to gold/brass on focus */
    box-shadow: 0 0 0 4px rgba(191, 163, 126, 0.15); /* Soft gold glow */
    background-color: #fff;
}

/* Placeholder text color */
::placeholder {
    color: #999;
    font-size: 0.9rem;
}

/* Specific styling for the row structure */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Responsive adjustment for small screens */
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}




/* --- Stat Bar Styling --- */
.stat-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--primary); /* Deep Teal Background */
    padding: 3rem 10%;
    color: white; /* Ensures text is visible */
    text-align: center;
    border-top: 4px solid var(--accent); /* Gold accent line */
    flex-wrap: wrap; /* Makes it mobile-friendly */
    gap: 2rem;
}

.stat-item h2 {
    font-size: 2.5rem;
    color: var(--accent); /* Gold color for the numbers */
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}
/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .stat-bar {
        padding: 2rem 5%;
    }
    .stat-item {
        flex: 1 1 40%; /* Shows 2 per row on tablets/phones */
    }
}