/* Custom Properties / Variables - YOUR COLOR CONTROL CENTER */
/* Custom Properties / Variables - YOUR COLOR CONTROL CENTER */
:root {
    --primary-dark: #2C3539;   /* Dark Gunmetal (Main Text) */
    --secondary-dark: #53565B; /* Medium Gunmetal (Secondary areas) */
    --accent-color: #2C3539;   /* Gunmetal buttons to contrast the silver */
    --text-light: #F4F4F4;     
    --text-muted: #666D70;     /* Muted Gunmetal */
    --bg-light: #D3D3D3;       /* Classic Silver Background */
	--bg-alt: #FFFFFF;         /* ADD THIS LINE: Pure white for breaking up sections */
}

/* Base Reset & Typography */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4 { 
    font-family: 'Playfair Display', serif; 
    font-weight: 400; 
}

/* Navigation */
header {
    position: fixed;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--accent-color);
    z-index: 1000;
    border-bottom: 1px solid rgba(192, 192, 192, 0.2); /* Tinted to silver */
}

/* Increased Logo Size */
.header-logo img { 
    height: 75px; 
    width: auto; 
    transition: height 0.3s ease;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover { 
    color: var(--accent-color); 
}

/* Buttons */
.btn-silver {
    background-color: var(--accent-color);
    color: var(--text-light); /* Changed to light text so it shows on the dark button */
    padding: 0.8rem 2rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    transition: all 0.4s ease;
}

.btn-silver:hover {
    background-color: transparent;
    color: var(--primary-dark); /* Changed to dark text so it shows on the transparent/silver background */
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

.hero-content { 
    max-width: 800px; 
    margin-top: 5rem; 
}

.hero h1 { 
    font-size: 4rem; 
    color: var(--primary-dark);
    margin-bottom: 1.5rem; 
    line-height: 1.1; 
}

.hero p { 
    font-size: 1.2rem; 
    color: var(--text-muted); 
    margin-bottom: 2.5rem; 
    font-weight: 300; 
}

/* General Section Styling */
section { 
    padding: 6rem 10%; 
}

.section-header { 
    text-align: center; 
    margin-bottom: 4rem; 
}

.section-header h2 { 
    font-size: 2.8rem; 
    margin-bottom: 1rem; 
    color: var(--primary-dark); 
}

.section-header p { 
    color: #666; 
    font-size: 1.1rem; 
    max-width: 700px; 
    margin: 0 auto; 
}

/* About Section */
.about { 
    background-color: #fff; 
}

.grid-2 { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 4rem; 
    align-items: center; 
}

.about-text h2 { 
    font-size: 2.5rem; 
    margin-bottom: 1.5rem; 
}

.about-text p { 
    margin-bottom: 1.5rem; 
    color: #555; 
    font-size: 1.05rem; 
}

.about-image img { 
    width: 100%; 
    height: auto; 
    box-shadow: -15px 15px 0px var(--accent-color); 
}

/* Services Grid (SEO Catalog Layout) */
.services { 
    background-color: var(--bg-alt); 
}

.service-catalog-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 2rem; 
}

.catalog-card { 
    background: var(--bg-light); 
    padding: 2.5rem 2rem; 
    border-top: 3px solid var(--accent-color); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    transition: transform 0.3s ease; 
}

.catalog-card:hover { 
    transform: translateY(-5px); 
}

.catalog-card h3 { 
    font-size: 1.4rem; 
    margin-bottom: 1rem; 
    color: var(--primary-dark); 
}

.catalog-card p { 
    font-size: 0.95rem; 
    color: #555; 
    line-height: 1.6; 
}

/* Projects Gallery */
.projects { 
    background-color: #fff; 
}

.project-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 1.5rem; 
}

.project-item { 
    overflow: hidden; 
}

.project-item img { 
    width: 100%; 
    height: 300px; 
    object-fit: cover; 
    transition: transform 0.5s ease; 
    cursor: pointer; 
    display: block; 
}

.project-item img:hover { 
    transform: scale(1.05); 
}

/* Areas Covered Section */
.areas { 
    background-color: var(--primary-dark); 
    color: var(--text-light); 
}

.areas .section-header h2 { 
    color: var(--primary-dark); 
}

.areas .section-header p { 
    color: var(--text-muted); 
    max-width: 800px;
}

.areas-container {
    background: var(--secondary-dark);
    padding: 3rem;
    border: 1px solid rgba(192, 192, 192, 0.2); /* Tinted to silver */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.areas-list { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 1.2rem; 
    list-style: none; 
    text-align: left; 
}

.areas-list li { 
    color: var(--text-muted); 
    font-size: 0.95rem; 
    position: relative; 
    padding-left: 1.5rem; 
    transition: color 0.3s ease;
}

.areas-list li:hover {
    color: var(--text-light);
}

.areas-list li::before { 
    content: "•"; 
    color: var(--accent-color); 
    position: absolute; 
    left: 0; 
    font-size: 1.2rem; 
}

/* Contact Section */
.contact { 
    background-color: var(--secondary-dark);
    color: var(--text-light); 
    text-align: center; 
}

.contact .section-header h2 { 
    color: var(--text-light); 
}

.contact .section-header p { 
    color: var(--text-light); 
}

.contact-methods { 
    display: flex; 
    justify-content: center; 
    gap: 2rem; 
    flex-wrap: wrap; 
}

.contact-box { 
    background: var(--primary-dark); 
    padding: 2.5rem; 
    width: 300px; 
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.contact-box h3 { 
    font-size: 1.3rem; 
    margin-bottom: 1rem; 
    color: var(--text-light); /* This header is now light */
}

/* Updated section to force the contact details to be visible */
.contact-box p, 
.contact-box a { 
    color: #FFFFFF !important; /* Force pure white for maximum contrast */
    text-decoration: none; 
    font-size: 1rem; 
    line-height: 1.8; 
}

.contact-box a:hover { 
    color: var(--accent-color); 
}

/* Footer */
footer { 
    background-color: #111; 
    color: var(--text-muted); 
    text-align: center; 
    padding: 2rem; 
    font-size: 0.9rem; 
}
.social-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--text-light);
}
/* Floating WhatsApp Button (Kept official WhatsApp Green) */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* Mobile Responsiveness & Hamburger Menu logic */
@media (max-width: 768px) {
    .header-logo img {
        height: 55px; 
    }

    iframe {
        height: 1200px !important; 
    }

    /* ... all your other mobile rules will be down here ... */

    .menu-toggle {
        display: flex; 
    }

.nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--accent-color); /* <-- Make sure this is updated! */
        border-top: 1px solid rgba(192, 192, 192, 0.2); 
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 2rem;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.4s ease;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        margin: 0;
        font-size: 1.1rem;
    }

    .hero h1 { 
        font-size: 2.8rem; 
    }
    .grid-2 { 
        grid-template-columns: 1fr; 
    }
    .about-image img { 
        box-shadow: none; 
        margin-top: 2rem; 
    }
    .areas-container {
        padding: 1.5rem;
    }
    .areas-list {
        grid-template-columns: 1fr; 
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}
/* Ensure the "Discuss Your Project" button displays on mobile */
@media (max-width: 768px) {
    .btn-silver {
        display: inline-block !important; /* Force it to show up */
        text-align: center;
        margin-top: 1rem; /* Add breathing room if it's crowded */
        width: 100%; /* Make it span the width for easier tapping */
    }
}