/* ================= GENERAL ================= */
.contact-hero {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: #ffffff;
    padding: 6rem 2rem;
    text-align: left;
    text-decoration: none;
}


    .services-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ================= HERO ================= */
.services-hero {
    background: linear-gradient(135deg, #0f2027 0%, #2c5364 100%);
    color: #fff;
    padding: 6rem 2rem;
    position: relative;
}

.services-hero h1 {
    font-size: 2.5rem;
    color: #333
}

.services-hero p.lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Decorative Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    z-index: 1;
}
.hero-shape.shape1 {
    width: 200px;
    height: 200px;
    top: 50px;
    left: 30px;
}
.hero-shape.shape2 {
    width: 150px;
    height: 150px;
    bottom: 30px;
    right: 50px;
}

/* ================= SERVICE CARDS ================= */
.service-card {
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    padding: 2rem 1.5rem;
}

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

.service-card i {
    font-size: 2rem;
}

.bg-light a {
    text-decoration: none;
}

    .bg-light a:hover {
        text-decoration: none;
    }


/* Responsive Google Map */
.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px; /* optional rounded corners */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* subtle shadow */
}

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



/* Footer */

.footer-names {
    color: white;
}
.p,footer {
    font-size: 1rem;
    color: white;

}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: #38bdf8;
}

.footer-cta {
    background: linear-gradient(135deg, #203a43, #2c5364);
    text-align: center;
    padding: 3rem 1rem;
}

.footer-cta h3 {
    color: lightgray;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

.footer-social {
    margin-top: 1rem;
}

    .footer-social a {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        color: #cbd5f5;
        text-decoration: none;
        transition: 0.3s ease;
    }

        .footer-social a:hover {
            color: #0a66c2;
        }

    .footer-year {
        color: white;
        text-align: center;
        padding: 15px;
    }


.linkedin-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }
}



/* ================= CTA SECTION ================= */
.btn-glow {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: white;
    padding: 1rem 1.8rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
 }

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .services-hero h1 {
        font-size: 2rem;
    }
    .services-hero p.lead {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .map-container {
        padding-bottom: 40%; /* taller map on large screens */
    }
}
