:root {
    
    --primary-red: #D32F2F;   
    --accent-yellow: #FFC107;
    --dark-bg: #1a1a1a;      
    --light-bg: #f4f4f4;      
    --text-dark: #333333;
    --text-light: #ffffff;
    --teal-icon: #00897b;     
}


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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-light);
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }


.navbar {
    background-color: var(--dark-bg);
    height: 80px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 60px; 
}

.nav-menu { display: flex; align-items: center; gap: 30px; }

.nav-menu a {
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover { color: var(--accent-yellow); }

.btn-nav {
    background: var(--primary-red);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
}

.btn-nav:hover { background: #b71c1c; }


.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    margin-top: 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-style: italic; 
}

.text-highlight { color: var(--accent-yellow); }

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    margin: 0 10px;
    transition: all 0.3s ease;
}

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

.btn-outline { border: 2px solid var(--text-light); color: var(--text-light); }
.btn-outline:hover { background: var(--text-light); color: var(--dark-bg); }


.features { padding: 80px 0; background: white; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }

.feature-card {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}

.feature-card:hover { transform: translateY(-10px); }

.feature-card img, .feature-card i {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--teal-icon); 
}

.feature-card h3 { color: var(--teal-icon); margin-bottom: 10px; }


.about { padding: 80px 0; background-color: var(--light-bg); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.about-text h2 { 
    color: var(--primary-red); 
    font-size: 2.5rem; 
    margin-bottom: 20px; 
    border-bottom: 3px solid var(--accent-yellow);
    display: inline-block;
}

.lead { font-size: 1.1rem; font-weight: 500; margin-bottom: 15px; }

.about-vision-mision .card {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-red);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-vision-mision h3 { color: var(--dark-bg); margin-bottom: 10px; display: flex; align-items: center; gap: 10px;}


.services { padding: 80px 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; text-transform: uppercase; color: var(--dark-bg); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.service-item {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.service-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.service-item:hover .service-img { transform: scale(1.05); }

.service-info { padding: 30px; text-align: center; }
.service-info h3 { color: var(--primary-red); font-size: 1.8rem; margin-bottom: 15px; text-transform: uppercase; }


footer { background: var(--dark-bg); color: var(--text-light); padding: 50px 0 20px; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; border-bottom: 1px solid #333; padding-bottom: 30px; margin-bottom: 20px; }

.footer-logo { width: 150px; margin-bottom: 15px; }
.contact-details h3 { color: var(--accent-yellow); margin-bottom: 20px; }
.contact-details p { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }

.footer-bottom { text-align: center; font-size: 0.9rem; opacity: 0.7; }


.fade-in-up, .fade-in, .fade-in-left, .fade-in-right {
    opacity: 0;
    transition: all 1s ease-out;
}

.fade-in-up { transform: translateY(30px); }
.fade-in-left { transform: translateX(-30px); }
.fade-in-right { transform: translateX(30px); }

.visible { opacity: 1; transform: translateY(0) translateX(0); }


@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .split, .grid-2 { grid-template-columns: 1fr; }
    .nav-menu { display: none; } 
    

    .hamburger { display: block; cursor: pointer; }
    .bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: white; transition: all 0.3s; }
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 40px;
}

.service-item {
    display: flex;
    flex-direction: column;
}
.service-info {
    flex-grow: 1;
}