/* ---------------------------- How We Work section ---------------------------- */
.section-introduction-geo {
    padding: 10rem 1.5rem;
    border-top: 0.1rem solid rgba(var(--light-rgb), 0.06);
    background: #060606;
    margin-bottom: 10rem;
}
.introduction-geo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6.6rem;
    align-items: center;
}
/* Left side - Image */
.introduction-geo-left {
    position: relative;
}
.introduction-geo-image {
    width: 100%;
    height: 100%;
    border-radius: 1.6rem;
    overflow: hidden;
    position: relative;
}
.introduction-geo-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.00) 100%);
}
.introduction-geo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Image Overlay */
.introduction-geo-overlay {
    position: absolute;
    bottom: 2.2rem;
    left: 2.6rem;
    right: 2.6rem;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 1.4rem 2rem;
    border-radius: 1.5rem;
}
.introduction-geo-overlay-title {
    color: rgba(var(--light-rgb), 0.40);
    font-size: 1.6rem;
    font-weight:700;
    line-height: 1.23;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    margin: 0 0 0.5rem 0;
}
.introduction-geo-overlay-text {
    font-size: 1.6rem;
    font-weight: 400;
    margin: 0;
}
/* Right side - Content */
.introduction-geo-right {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}
.introduction-geo-label {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-color);
    display: inline-flex;
    margin-bottom: 1.8rem;
}
.introduction-geo-heading {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 2rem;
}
.introduction-geo-description {
    font-size: 1.6rem;
    font-weight: 400;
    color: rgba(var(--light-rgb), 0.55);
    line-height: 2.5rem;
}
/* Cards Container */
.introduction-geo-cards {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}
.introduction-geo-card {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 2rem 0;
}
.introduction-geo-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-left: 2rem;
    border-left: 0.4rem solid var(--primary-color);
}
.introduction-geo-card-title {
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .introduction-geo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    .introduction-geo-heading {
        font-size: 3rem;
    }
}
@media (max-width: 1050px) {
    .section-introduction-geo {
        padding: 6rem 1.5rem;
        margin-bottom: 7rem;
    }
}
@media (max-width: 992px) {
    .introduction-geo-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .introduction-geo-heading {
        font-size: 2.6rem;
        max-width: 100%;
    }
    .introduction-geo-description {
        max-width: 100%;
    }
    .introduction-geo-overlay {
        bottom: 2rem;
        left: 1.6rem;
        right: 1.6rem;
        padding: 1.2rem 1.6rem;
        border-radius: 0.8rem;
    }
    .introduction-geo-card-title {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .introduction-geo-heading {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    .introduction-geo-description {
        font-size: 1.4rem;
    }
    .introduction-geo-cards {
        gap: 1.2rem;
    }
}