/* General Styles */
:root {
    --primary-color: #d32f2f;
    --secondary-color: #1976d2;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header Styles */
.header-top {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    max-width: 250px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: var(--secondary-color);
}

.phone-number i {
    margin-right: 8px;
}

/* Navigation Styles */
.navbar {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-title {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.8);
    margin-top: 1rem;
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Overview Cards */
.service-card {
    background: linear-gradient(135deg, var(--primary-color), #e53935);
    color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
}

.service-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* About Section */
.about-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.highlight-box {
    background: linear-gradient(135deg, var(--secondary-color), #1e88e5);
    color: #fff;
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 8px 20px rgba(25, 118, 210, 0.3);
}

.highlight-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.highlight-box .lead {
    font-size: 1.3rem;
    font-weight: 500;
}

/* Services List */
.services-list {
    background: linear-gradient(to bottom, #fff, var(--light-color));
}

.services-list h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
}

.services-checklist {
    list-style: none;
    padding: 0;
}

.services-checklist li {
    font-size: 1.2rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.services-checklist li:hover {
    padding-left: 10px;
    color: var(--primary-color);
}

.services-checklist li i {
    color: var(--secondary-color);
    margin-right: 1rem;
    font-size: 1.5rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #e53935);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
    background: linear-gradient(135deg, #c62828, #d32f2f);
}

/* Location Section */
.location-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
}

.contact-info-box {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-info-box h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-info-box h3:first-child {
    margin-top: 0;
}

.contact-info-box i {
    margin-right: 8px;
}

.contact-info-box a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-box a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
}

/* Contact Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), #e53935);
    color: #fff;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: bold;
}

.contact-section .contact-item {
    margin-bottom: 1.5rem;
}

.contact-form-box {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-form-box h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-control {
    border-radius: var(--border-radius);
    border: 2px solid #e0e0e0;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(25, 118, 210, 0.25);
}

/* Feature Boxes */
.feature-box {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-box i {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--text-color);
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: #fff;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color);
}

.social-links a {
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-section h2,
    .services-list h2,
    .location-section h2 {
        font-size: 2rem;
    }
    
    .phone-number {
        font-size: 1.2rem;
    }
    
    .logo {
        max-width: 200px;
    }
}
