/* General Body Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #f4f7fa;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    /* lock height */
    background: #ffffff;
    display: flex;
    align-items: center;
    /* 🔑 vertical alignment */
    justify-content: space-between;
    padding: 0 10%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    /* 🔑 */
}

.logo img {
    height: 44px;
    /* 🔑 SAME on all pages */
    width: auto;
    display: block;
}



.logo-e {
    background-color: #8e44ad;
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    margin-right: 5px;
}

header nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

header nav a:hover,
header nav a.active {
    color: #3498db;
}

/* =========================
   NAV BASE (REQUIRED)
   ========================= */

.nav-menu {
    display: flex;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}


/* Main Content & Container */
.container {
    flex: 1;
    width: 100%;
    max-width: 700px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.enquiry-form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #2c3e50;
}

.form-header p {
    color: #7f8c8d;
    font-size: 16px;
}

/* Form Group & Input Styles */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-group label i {
    margin-right: 8px;
    color: #3498db;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

textarea {
    resize: vertical;
    /* Allow users to resize the textarea vertically */
}

/* Submit Button */
button[type="submit"] {
    width: 100%;
    padding: 15px;
    border: none;
    background-color: #3498db;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #2980b9;
}

/* ======================================================
   FOOTER (GLOBAL – USED ON ALL PAGES)
   ====================================================== */

footer {
    background: #0f172a;
    padding: 50px 80px 20px;
    color: #e2e8f0;
}

/* Footer layout */
.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Footer logo block */
.footer-logo h2 {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo h2 span {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin-right: 10px;
    background: linear-gradient(135deg, #4f46e5, #3b82f6);
    border-radius: 8px;
    text-align: center;
    line-height: 35px;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Social icons */
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    background: #1e293b;
    padding: 10px;
    border-radius: 8px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #605656;
    color: aqua;
}

/* Footer headings */
footer h3 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Footer lists */
footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #cbd5e1;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

footer ul li a:hover {
    color: aqua;
}

/* Contact info */
.contact-info p {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.contact-info p span {
    margin-right: 10px;
    color: #7d7f81;
    font-size: 16px;
}

/* Email link */
#ml {
    text-decoration: none;
    color: white;
}

#ml:hover {
    color: rgb(207, 46, 196);
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 40px;
    padding-top: 15px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #94a3b8;
}

.footer-bottom span {
    color: #64748b;
}

/* ======================================================
   FOOTER RESPONSIVE
   ====================================================== */

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* =========================
   MOBILE NAV FIX
   ========================= */

.hamburger {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* =========================
   MOBILE NAV (WORKING)
   ========================= */

.hamburger {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 992px) {

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        display: block;
        /* 🔴 THIS WAS MISSING */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        z-index: 999;
    }

    .nav-menu.show {
        max-height: 500px;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 15px 20px;
        gap: 0;
    }

    .nav-menu ul li {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #f1f1f1;
    }

    .nav-menu ul li a {
        display: block;
        width: 100%;
    }
}