:root {
    --elite-navy: #08142c;   /* Extracted from the bottom half of the Elite logo */
    --elite-rust: #8b2b1b;   /* Extracted from the roof part of the Elite logo */
    --elite-light: #f8f9fa;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Utility Classes */
.text-navy { color: var(--elite-navy) !important; }
.text-rust { color: var(--elite-rust) !important; }
.bg-navy { background-color: var(--elite-navy) !important; }
.bg-rust { background-color: var(--elite-rust) !important; }

.btn-rust {
    background-color: var(--elite-rust);
    color: white;
    border-radius: 0;
    font-weight: 600;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.btn-rust:hover {
    background-color: #6d2215;
    color: white;
}

.btn-outline-rust {
    border: 2px solid var(--elite-rust);
    color: var(--elite-rust);
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-rust:hover {
    background-color: var(--elite-rust);
    color: white;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}
.navbar-brand i {
    font-size: 2rem;
    margin-right: 10px;
}
.nav-link {
    font-weight: 500;
    color: var(--elite-navy);
    margin: 0 10px;
    transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--elite-rust) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, rgba(8, 20, 44, 0.8), rgba(8, 20, 44, 0.3)), url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}
.hero-content h1 {
    font-weight: 800;
    font-size: 3.5rem;
    color: white;
    line-height: 1.2;
}
.side-enquire-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background-color: var(--elite-rust);
    color: white;
    padding: 10px 30px;
    font-weight: 700;
    text-decoration: none;
    z-index: 100;
}

/* Process Bar (Overlapping) */
.process-bar {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-bottom: 4px solid var(--elite-rust);
}
.process-step {
    border-right: 1px solid #ddd;
}
.process-step:last-child {
    border-right: none;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 80vh;
        padding: 120px 0 100px 0;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.0rem;
    }
    .hero-content p.lead {
        font-size: 1.1rem !important;
    }
    .process-bar {
        margin-top: -30px;
    }
    .process-step {
        border-right: none;
        margin-bottom: 15px;
    }
    .process-step:last-child {
        margin-bottom: 0;
    }
}

/* Products Section */
.products-header {
    background-color: var(--elite-navy);
    color: white;
    padding: 20px 0;
}
.product-nav .nav-link {
    color: white;
    opacity: 0.8;
    border: none;
    border-radius: 0;
    padding: 10px 30px;
}
.product-nav .nav-link.active {
    background-color: var(--elite-rust);
    opacity: 1;
    color: white !important;
}
.product-card {
    text-align: center;
    padding: 20px;
    border: 1px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
}
.product-card:hover {
    border-color: #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Features / Why Elite */
.why-elite-sec {
    background-color: var(--elite-navy);
    color: white;
}
.feature-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.feature-grid .col-6:hover img {
    opacity: 1;
}
.feature-grid h5 {
    position: absolute;
    bottom: 10px;
    left: 20px;
    margin: 0;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}
.bottom-features-strip {
    background-color: #060f22; /* Slightly darker navy */
    padding: 30px 0;
}
.icon-box {
    text-align: center;
    padding: 0 15px;
}
.icon-box i {
    font-size: 2.5rem;
    color: var(--elite-rust);
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: var(--elite-navy);
    color: #ccc;
    font-size: 0.9rem;
}
footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}
footer ul {
    list-style: none;
    padding: 0;
}
footer ul li {
    margin-bottom: 10px;
}
footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
footer a:hover {
    color: var(--elite-rust);
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #1a2a47;
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: background 0.3s;
}
.social-icons a:hover {
    background-color: var(--elite-rust);
}
.copyright-strip {
    background-color: #040914;
    padding: 15px 0;
    font-size: 0.8rem;
}
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1050;
        }
        .float-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white !important;
            font-size: 28px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .float-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
        }
        .whatsapp-btn {
            background-color: #25D366; /* WhatsApp Green */
        }
        .whatsapp-btn:hover {
            background-color: #128C7E;
        }
        .call-btn {
            background-color: var(--elite-navy, #08142c); 
        }
        .call-btn:hover {
            background-color: var(--elite-rust, #8b2b1b);
        }
        
        /* Mobile responsiveness for floating buttons */
        @media (max-width: 768px) {
            .floating-buttons {
                bottom: 20px;
                right: 20px;
            }
            .float-btn {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
        }