﻿/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #f6fbfb;
    color: #0a1f1f;
}

/* ================= HEADER ================= */
/* Container for alignment */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.site-header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    /* --- Fixed Positioning Logic --- */
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 2000;
}

.nav-menu > li {
    position: static;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
}

    .logo img {
        height: 60px;
        width: 80px;
        display: block;
    }

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

    .nav-menu > li {
        position: static; /* Required for full-width mega menu */
    }

    .nav-menu a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        transition: color 0.3s;
    }

        .nav-menu a:hover {
            color: #b35900; /* Professional accent color */
        }

/* Mega Menu Core */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #444444; /* Matches the dark grey in your image */
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 60px 0;
    color: white;
}

.has-dropdown:hover .mega-menu {
    visibility: visible;
    opacity: 1;
}

.mega-menu-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 3-column layout like image */
    gap: 50px;
    padding: 0 20px;
}

/* Left Image Section */
.mega-info img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
}

.mega-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.mega-info p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

/* Middle List Section */
.mega-links-container {
    border-left: 1px solid #555;
    padding-left: 40px;
}

.menu-title {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 25px;
    color: #fff;
}

.mega-links {
    list-style: none;
}

    .mega-links li {
        margin-bottom: 15px;
    }

    .mega-links a {
        color: #eee !important;
        font-size: 1rem;
        transition: transform 0.2s;
        display: inline-block;
    }

        .mega-links a:hover {
            color: #fff !important;
            transform: translateX(5px);
        }

.arrow {
    font-size: 0.7rem;
    margin-left: 4px;
}

/* Hamburger Styles */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1100;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease-in-out;
}

/* Mobile Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 998;
}

/* Responsive Logic */
/* Replace your entire @media (max-width: 992px) block with this */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background-color: white;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        padding: 80px 30px;
        transition: 0.3s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1001;
        align-items: flex-start;
        overflow-y: auto; /* Allows scrolling if menu is long */
    }

        .nav-menu.active {
            right: 0;
        }

    .menu-overlay.active {
        display: block;
    }

    /* MEGA MENU MOBILE TWEAKS */
    .mega-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        background: transparent;
        padding: 0;
        display: none; /* Controlled by JS */
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 10px 0 10px 15px;
    }

    /* THIS HIDES THE IMAGE AND DESCRIPTION */
    .mega-info {
        display: none !important;
    }

    /* CLEAN LIST ONLY */
    .mega-links-container {
        border-left: none;
        padding-left: 0;
    }

    .menu-title {
        display: none; /* Hides the "SERVICES" header */
    }

    .mega-links li {
        margin-bottom: 12px;
    }

    .mega-links a {
        color: #555 !important;
        font-size: 0.95rem;
    }

    /* Hamburger Animation */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


/* ================= SERVICES ================= */

/* --- Industrial Grid Design --- */
.industrial-services {
    padding: 140px 0;
    background: #fcfcfc;
}

.section-header {
    text-align: left; /* Different from the previous centered design */
    margin-bottom: 80px;
    position: relative;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin-top: 20px;
}

.industrial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.ind-card-inner {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Image Box and Overlay */
.ind-img-box {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 4px; /* Industrial look often uses sharper corners */
}

    .ind-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(20%); /* Modern industrial aesthetic */
        transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    }

.ind-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 51, 0.7); /* Your brand color with transparency */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.ind-btn {
    border: 1px solid white;
    color: white;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Card Body */
.ind-body {
    display: flex;
    padding: 30px 0;
    border-bottom: 1px solid #e2e8f0;
    transition: 0.3s;
}

.ind-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-right: 25px;
    opacity: 0.3;
}

.ind-text h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--bg-dark);
    transition: 0.3s;
}

.ind-text p {
    color: #71717a;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Hover Effects */
.ind-card:hover .ind-img-box img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.ind-card:hover .ind-overlay {
    opacity: 1;
}

.ind-card:hover .ind-body {
    border-bottom: 1px solid var(--primary-color);
}

.ind-card:hover .ind-text h3 {
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .industrial-grid {
        grid-template-columns: 1fr;
    }

    .ind-img-box {
        height: 280px;
    }
}


/* ================= FOOTER ================= */

:root {
    --footer-bg: #001717;
    --accent: #00c8b8;
    --text-dim: #b0d8d8;
    --text-light: #ffffff;
}

.site-footer {
    background-color: var(--footer-bg);
    color: var(--text-dim);
    padding: 60px 0 0;
    border-top: 4px solid var(--accent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Big Logo Section */
.footer-brand-top {
    text-align: center;
    border-bottom: 1px solid rgba(176, 216, 216, 0.1);
    padding-bottom: 40px;
    margin-bottom: 50px;
}

.footer-logo-large {
    height: 120px;
    width: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.3));
}

.brand-tagline {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Content Grid */
.footer-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-column h4 {
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

/* Links & Text */
.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: var(--text-dim);
        text-decoration: none;
        transition: 0.3s;
    }

        .footer-links a:hover {
            color: var(--text-light);
            transform: translateX(5px);
            display: inline-block;
        }

address {
    font-style: normal;
    line-height: 1.8;
}

.landmark {
    color: var(--accent);
    font-size: 0.85rem;
    display: block;
    margin-top: 8px;
    opacity: 0.9;
}

/* Contact Styling */
.contact-item {
    margin-bottom: 20px;
}

    .contact-item .label {
        display: block;
        font-size: 0.7rem;
        color: var(--accent);
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 4px;
    }

    .contact-item a {
        color: var(--text-light);
        text-decoration: none;
        font-size: 1.05rem;
        font-weight: 500;
    }

/* Bottom Bar */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(176, 216, 216, 0.05);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.developer-credit a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

    .developer-credit a:hover {
        color: var(--text-light);
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-logo-large {
        height: 90px;
    }
}


/* ================= CONTACT PAGE ================= */

.premium-contact-hero {
    position: relative;
    padding: 140px 0 80px;
    background: #002b2b;
    color: white;
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(179, 89, 0, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.eyebrow {
    color: #b35900;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.premium-contact-hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

    .premium-contact-hero h1 span {
        font-weight: 300;
        color: #b35900;
        font-style: italic;
    }

/* Main Grid */
.contact-main {
    padding: 100px 0;
    background: #fdfdfd;
    margin-top: -60px; /* Overlap effect */
    position: relative;
    z-index: 10;
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Info Panel */
.contact-info-panel {
    padding: 20px 0;
}

.panel-header h2 {
    font-size: 2.2rem;
    color: #003333;
    margin-bottom: 10px;
}

.panel-header p {
    color: #666;
    margin-bottom: 40px;
}

.luxury-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.icon-wrap {
    width: 50px;
    height: 50px;
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    color: #b35900;
}

.text-wrap {
    max-width: calc(100% - 70px); /* keeps layout consistent */
}

.text-wrap h3 {
    font-size: 1rem;
    color: #003333;
    margin-bottom: 4px;
}

.text-wrap p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Form Container */
.contact-form-container {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 51, 51, 0.08);
}

.premium-form .form-header {
    margin-bottom: 30px;
}

    .premium-form .form-header h3 {
        font-size: 1.5rem;
        color: #003333;
    }

    .premium-form .form-header p {
        font-size: 0.8rem;
        color: #999;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-input-group {
    margin-bottom: 20px;
}

    .form-input-group label {
        display: block;
        font-size: 0.85rem;
        font-weight: 700;
        color: #003333;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .form-input-group input, .form-input-group textarea {
        width: 100%;
        padding: 15px;
        background: #f8fbfb;
        border: 1px solid #e1eaea;
        border-radius: 12px;
        font-family: inherit;
        transition: 0.3s;
    }

        .form-input-group input:focus, .form-input-group textarea:focus {
            outline: none;
            background: white;
            border-color: #b35900;
            box-shadow: 0 0 0 4px rgba(179, 89, 0, 0.05);
        }

.premium-submit {
    width: 100%;
    background: #003333;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

    .premium-submit:hover {
        background: #b35900;
        transform: translateY(-3px);
    }


/* Responsive */
@media (max-width: 992px) {
    .contact-split-grid {
        grid-template-columns: 1fr;
    }

    .contact-main {
        margin-top: 0;
        padding: 60px 0;
    }

    .contact-form-container {
        padding: 30px;
    }

    .premium-contact-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: slideIn 0.5s ease-out;
}

    .whatsapp-float:hover {
        background-color: #20ba5a;
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }

/* Modern Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Entrance Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-tooltip {
        display: none; /* Hide tooltip on small screens to save space */
    }
}

