/* Base Reset & Typography */
:root {
    --primary-color: #D32F2F; /* Red */
    --primary-dark: #B71C1C;
    --secondary-color: #263238; /* Dark Blue/Grey */
    --success-color: #25D366; /* WhatsApp Green */
    --text-color: #333;
    --light-bg: #F5F5F5;
    --white: #FFF;
    --font-main: 'Inter', sans-serif;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-success {
    background-color: var(--success-color);
    color: var(--white);
    border: 2px solid var(--success-color);
}

.btn-success:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-full {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 800;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

.nav ul {
    display: flex;
    gap: 20px;
}

.nav a {
    font-weight: 500;
    color: var(--secondary-color);
}

.nav a:hover {
    color: var(--primary-color);
}

.header-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Mobile Menu Hide/Show (Simple) */
@media (max-width: 768px) {
    .nav {
        display: none; /* Can be enhanced with JS toggle later */
    }
    .header-btn {
        display: none; /* Save space on mobile header, use CTAs in hero */
    }
    .header-container {
        justify-content: center;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-image: url('https://lh3.googleusercontent.com/sitesv/AAzXCkfPzlEtAcxgwcezQCZC-9H_BLW9eTl84sqpZfiCCnWnTQ4K_VOGd0Qnfc6I_vokfJ6V3RAkuoV5QgeeH_bXEx60TGFRvLxMDkciu3pD-DbDPeQBRErHNETx4Xepgyx9Ppzerd6F7rCNUbTPzHReXjjg_DGSw2cJoVwdPO7ytLDlMxTekP6CzFJOaRs=w16383');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Darkens the image */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 20px;
}

.service-info h4 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.service-info p {
    color: #555;
    font-size: 0.95rem;
}

/* Info Section */
.info-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.info-box {
    max-width: 800px;
    margin: 0 auto;
}

.info-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-item .icon {
    font-size: 1.5rem;
}

.contact-item h5 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.map-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.map-container {
    background: #eee;
    border-radius: 12px;
    overflow: hidden;
    min-height: 350px;
}

.map-btn {
    width: 100%;
    text-align: center;
    background-color: #25D366; /* WhatsApp/Navigation green-ish or brand color */
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.map-btn:hover {
    background-color: #20bd5a;
    transform: translateY(-2px);
    color: white;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: rgba(255,255,255,0.8);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer .disclaimer {
    margin-top: 10px;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Header Contact Area */
.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-link {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
    display: block;
}

.phone-link:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .phone-link {
        display: none;
    }
}
