/* --- Variables & Reset --- */
:root {
    --primary: #c62828; /* Strong Red */
    --primary-dark: #8e0000;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f4f6f8;
    --white: #ffffff;
    --max-width: 1100px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Layout Utilities --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 60px 0; }
.bg-light { background-color: var(--bg-light); }

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

/* --- Navigation --- */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 500; transition: color 0.3s; font-size: 1.05rem; }
.nav-links a:hover { color: var(--primary); }

.hamburger { display: none; cursor: pointer; font-size: 1.5rem; }

/* --- Hero Section --- */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('background.jpg') no-repeat center center/cover;
    
    height: 80vh; 
    position: relative;
    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);
}

.hero-content { position: relative; z-index: 1; padding: 20px; }

.hero h1 { font-size: 3rem; margin-bottom: 15px; }
.hero p { font-size: 1.25rem; margin-bottom: 30px; opacity: 0.9; }

.hero-btns .btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 5px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); }

.btn-secondary { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--text-dark); }

/* --- Info Strip --- */
.info-strip {
    background: var(--primary);
    color: var(--white);
    padding: 30px 0;
    margin-top: -5px;
}

.info-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.info-item { display: flex; align-items: center; gap: 15px; }
.info-item i { font-size: 2rem; opacity: 0.8; }
.info-item h3 { font-size: 1.1rem; margin-bottom: 2px; }
.info-item p { font-size: 0.9rem; opacity: 0.9; }

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    border-bottom: 4px solid transparent;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--primary);
}

.icon-box {
    width: 60px; height: 60px;
    background: #ffebee;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

/* --- Contact & Footer --- */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-details { flex: 1; padding: 40px; min-width: 300px; }
.map-box { flex: 1; min-height: 400px; min-width: 300px; }

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-row i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 5px;
}

footer {
    background: #222;
    color: #999;
    text-align: center;
    padding: 20px 0;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    
    .hero h1 { font-size: 2rem; }
    
    .info-grid { flex-direction: column; align-items: center; text-align: left; }
    .info-item { width: 100%; max-width: 300px; }
}