/* --- RESET & BASICS --- */
:root {
    --primary: #132434;
    --secondary: #4b5563; 
    --accent: #f59e0b;    
    --light: #f3f4f6;
    --white: #ffffff;
    --dark-grey: #1f2937;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Inter', sans-serif; 
    line-height: 1.6; 
    color: var(--dark-grey); 
    background: var(--white); 
}

.container { 
    width: 90%; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 15px; 
}

a { text-decoration: none; transition: 0.3s; }
img { max-width: 100%; display: block; }

/* --- HEADER & NAVIGATION --- */
header { 
    background: var(--primary); 
    box-shadow: 0 2px 10px rgba(0,0,0,0.3); 
    position: sticky; 
    top: 0; 
    z-index: 100; 
    padding: 5px 0;
}

.contact { 
    padding: 80px 0; 
    background: var(--primary); /* Matched to logo */
    color: var(--white); 
}

.contact-wrapper { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 50px; 
    justify-content: space-between; 
    align-items: flex-start; /* Ensures columns stay aligned at the top */
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.nav-logo {
    height: 80px; /* Sized for your landscape logo */
    width: auto;
    display: block; 
    object-fit: contain;
}

nav ul { 
    display: flex; 
    list-style: none; 
    gap: 2rem; 
    align-items: center; 
}

nav a { 
    color: #ffffff; 
    font-weight: 600; 
    font-size: 1rem; 
}

nav a:hover { 
    color: var(--accent); 
}

.btn-nav { 
    background: var(--accent); 
    color: var(--white) !important; 
    padding: 0.6rem 1.2rem; 
    border-radius: 4px; 
    font-weight: bold;
}

.btn-nav:hover { 
    background: #d97706; 
}

/* --- HERO SECTION --- */
.hero { 
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('Header.jpeg'); 
    background-size: cover; 
    background-position: top center;
    color: var(--white); 
    padding: 120px 0; 
    text-align: center; 
}

.hero h1 { 
    font-size: 3rem; 
    line-height: 1.2; 
    margin-bottom: 1rem; 
    font-weight: 800; 
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8); 
}

.hero p { 
    font-size: 1.2rem; 
    color: #f3f4f6; 
    max-width: 700px; 
    margin: 0 auto 2rem; 
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8); 
}

.hero-btns { 
    display: flex; 
    gap: 1rem; 
    justify-content: center; 
}

/* --- BUTTONS --- */
.btn-main { 
    background: var(--accent); 
    color: var(--white); 
    padding: 1rem 2rem; 
    border-radius: 4px; 
    font-weight: bold; 
    border: none;
    cursor: pointer;
}

.btn-main:hover { 
    background: #d97706; 
    transform: translateY(-2px); 
}

.btn-outline { 
    border: 2px solid var(--white); 
    color: var(--white); 
    padding: 1rem 2rem; 
    border-radius: 4px; 
    font-weight: bold; 
}

.btn-outline:hover { 
    background: var(--white); 
    color: var(--primary); 
}

/* --- ABOUT SECTION --- */
.about { padding: 80px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-text h2 { font-size: 2.2rem; margin-bottom: 1rem; color: var(--primary); }
.feature-box { margin-top: 2rem; border-left: 4px solid var(--accent); padding-left: 1rem; }
.feature-box h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--primary); }
.feature-box p { font-size: 0.95rem; color: var(--secondary); }
.about-image img { border-radius: 8px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* --- SERVICES SECTION --- */
.services { padding: 80px 0; background: var(--light); }
.section-header { text-align: center; margin-bottom: 3rem; max-width: 700px; margin: 0 auto 3rem auto; }
.section-header h2 { font-size: 2.2rem; margin-bottom: 1rem; color: var(--primary); }

.service-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
}

.card { 
    background: var(--white); 
    padding: 2.5rem; 
    border-radius: 8px; 
    transition: 0.3s; 
    border: 1px solid #e5e7eb; 
}

.card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); 
    border-color: var(--accent); 
}

.icon { font-size: 2.5rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--primary); }
.card p { color: var(--secondary); font-size: 0.95rem; }

/* --- CONTACT SECTION (INTEGRATED REVIEWS) --- */
.contact { padding: 80px 0; background: var(--primary); color: var(--white); }
.contact h2 { text-align: center; font-size: 2.2rem; margin-bottom: 0.5rem; }

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #9ca3af;
}

.contact-wrapper { display: flex; flex-wrap: wrap; gap: 50px; justify-content: space-between; }
.contact-details { flex: 1; min-width: 300px; }
.detail-item { margin-bottom: 2rem; }
.detail-item h4 { color: var(--accent); margin-bottom: 0.5rem; font-size: 1.1rem; }

.review-card {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05); /* Subtle dark highlight */
    border-radius: 8px;
    border: 1px dashed var(--accent); /* Industrial look */
    max-width: 350px;
}

.review-card h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.review-card p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.btn-outline-small {
    display: inline-block;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    transition: 0.3s;
}

.btn-outline-small:hover {
    background: var(--accent);
    color: var(--white);
}

/* Form Styles */
.form-box { 
    background: var(--white); 
    padding: 2.2rem; 
    border-radius: 8px; 
    flex: 1; 
    min-width: 300px; 
    color: var(--primary); 
}
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.9rem; }
input, select, textarea { width: 100%; padding: 0.8rem; border: 1px solid #d1d5db; border-radius: 4px; font-family: inherit; }
.full-width { width: 100%; border: none; cursor: pointer; font-size: 1rem; margin-top: 1rem; }

/* --- FOOTER --- */
footer { 
    background: #0b1521; /* Slightly darker than primary for depth */
    color: #9ca3af; 
    padding: 30px 0; 
    text-align: center; 
    font-size: 0.9rem; 
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: 0.3s ease;
}
.whatsapp-float img { width: 25px; height: 25px; }
.whatsapp-float:hover { background-color: #128c7e; transform: translateY(-5px); }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .nav-container { flex-direction: column; gap: 1rem; }
    nav ul { gap: 1rem; }
    .about-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .hero-btns { flex-direction: column; }
    .btn-main, .btn-outline { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
    .whatsapp-float span { display: none; }
    .whatsapp-float {
        padding: 15px;
        bottom: 20px;
        right: 20px;
        border-radius: 50%;
    }
}

.fb-top-link:hover svg {
    fill: var(--accent) !important;
    transform: scale(1.1);
}

.fb-top-link {
    transition: 0.3s;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .fb-top-link {
        margin: 10px 0; /* Adds space on mobile menu */
    }
}