/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../img/hero_bg.jpg') center/cover no-repeat;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.hero-content {
    z-index: 2;
    position: relative;
    width: 100%;
}

.hero-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

/* Insights Section */
.insights-section {
    position: relative;
    background-color: #fff;
    padding-top: 1rem;
    padding-bottom: 3rem;
}

.insights-container {
    position: relative;
    border: 2px solid #212529;
    /* border-dark */
    background-color: #fff;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    /* shadow-lg */
    padding: 3rem;
    margin-top: 0;
}

.insights-title-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    white-space: nowrap;
    border: 1px solid #f8f9fa;
    /* slightly blend the box */
    border-radius: 50px;
}

.bg-light-danger {
    background-color: #fff0f0;
}

/* Services / Why Choose */
.service-card {
    transition: all 0.3s ease;
    background: #fff;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Cities Section */
.city-card {
    background: #fff;
    transition: all 0.3s ease;
}

.city-card .city-name {
    color: #333;
    transition: color 0.3s;
}

.city-card:hover {
    background: #ba2224;
    transform: translateY(-5px);
}

.city-card:hover .city-name {
    color: #fff;
}

/* Contact Section */
.contact-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background: linear-gradient(135deg, #1e293b 0%, #ba2224 100%);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.glass-effect:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}

.contact-box .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        padding: 60px 0;
    }

    .hero-title h1 {
        font-size: 2.5rem;
        /* Adjust display-3 */
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .insights-container {
        border-radius: 20px;
        margin-top: 1rem;
        padding: 2rem 1rem;
    }

    .insights-title-wrapper h3 {
        font-size: 1.25rem;
    }
}

@media (min-width: 769px) {
    .insights-container {
        /* Removed partial overlap to create a distinct gap */
        margin-top: 2rem;
        border-radius: 30px;
        /* Reduced from 50rem/100px */
    }

    .hero-section {
        /* Reset padding to normal */
        padding-bottom: 4rem;
    }
}