:root {
    --formasist-red: #C41230;
    --formasist-gray: #333333;
}

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 112px; /* Adjusted for larger navbar */
}

/* Hero Section */
.hero-section {
    min-height: calc(100vh - 112px); /* Adjusted for larger navbar */
    background-color: #f8f9fa;
    padding: 100px 0;
    margin-bottom: 0; /* Remove bottom margin */
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem;
}

.navbar-brand img {
    max-height: 80px;
    width: auto;
}

/* Services Section */
.services-section {
    background-color: white;
    padding: 60px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--formasist-red);
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-title {
    font-size: 1.5rem;
    color: var(--formasist-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-text {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    margin-bottom: 0.5rem;
    color: #555;
}

.service-features li i {
    color: var(--formasist-red);
    margin-right: 0.5rem;
}

.card {
    border: none;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

/* Contact Form */
.form-control:focus {
    border-color: var(--formasist-red);
    box-shadow: 0 0 0 0.2rem rgba(196, 18, 48, 0.25);
}

/* Custom Button Styles */
.btn-primary {
    background-color: var(--formasist-red);
    border-color: var(--formasist-red);
}

.btn-primary:hover {
    background-color: #a30f28;
    border-color: #a30f28;
}

/* Footer */
footer {
    background-color: var(--formasist-gray);
}

.social-links a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--formasist-red) !important;
}

/* Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Flash Messages */
.alert {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Map Container */
.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 50px 0;
    }

    .hero-section img {
        margin-top: 2rem;
    }
    .map-container {
        margin-top: 2rem;
        height: 350px;
    }
}

/* Map */
#map {
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}