/* Hero Section */
.hero {
    background-color: var(--color-bg);
    width: 100%;
    min-height: 70vh;
    overflow: visible;
    position: relative;
}

.hero>.hero-content {
    padding-left: 5%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.hero>.hero-content>.hero-title {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero>.hero-content>.hero-title>h1 {
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 0;

    /* GSAP Initial Settings */
    transform: translateY(70px);
}

.hero>.hero-content>.hero-title-suffix {
    overflow: hidden;
    /* background-color: #f0f; */
}

.hero>.hero-content>.hero-title-suffix>.hero-line {
    font-size: 2em;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-alt);
    margin-bottom: 0;

    /* GSAP Initial Settings */
    transform: translateY(-70px);
}

.hero>.hero-content>hr {
    width: 100px;
    height: 4px;
    border: none;
    background-color: var(--color-highlight);
}

.hero>.hero-content h1,
p {
    margin-bottom: 0;
}

.hero>img {
    position: absolute;
    right: 0px;
    top: 0;
    width: 60vw;
}

.hero-cta {
    margin-top: 20px;
    width: 290px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* gap: 30px; */
}

.hero-cta img {
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
    height: 80px;
    font-size: 30px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.orange-btn {
    background-color: var(--color-highlight);
    box-shadow: 0 4px 15px #F2810AA0;
}

.blue-btn {
    background-color: var(--color-alt);
    box-shadow: 0 4px 15px #071E4BA0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: var(--color-surface);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(4, 86, 146, 0.1);
}

.service-img-wrapper {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.05);
}

.service-content {
    padding: 2.5rem;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(4, 86, 146, 0.05);
    color: var(--color-alt);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--color-highlight);
    color: #fff;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Why GECC Section */
.why-gecc {
    background-color: var(--color-alt);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.why-gecc .section-title {
    color: #fff;
}

.why-gecc .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--color-highlight);
}

.feature-dot {
    width: 48px;
    height: 48px;
    background-color: rgba(243, 143, 3, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-highlight);
}

.feature-item h4 {
    margin-bottom: 0;
    font-size: 1.25rem;
    color: #fff;
}

/* Process Section */
.process {
    background-color: var(--color-bg);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(4, 86, 146, 0.1);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 4rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--color-surface);
    border: 2px solid var(--color-highlight);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--color-highlight);
    font-size: 1.25rem;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(243, 143, 3, 0.2);
}

.timeline-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-alt);
}

.timeline-content p {
    color: var(--color-text-muted);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 0;
    background-color: var(--color-alt);
    overflow: hidden;
}

.cta-section>img {
    z-index: -1;
    width: 100%;
}

.cta-content {
    position: absolute;
    left: 0;
    top: 50px;
    z-index: 1;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    max-width: 800px;
    color: #fff;
    text-align: left;
}

.cta-btn {
    width: 400px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image-wrapper {
        height: 50vh;
        order: -1;
    }

    .hero {
        padding-top: 120px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 2rem;
    }

    .hero>.hero-content {
        padding-left: 5%;
        padding-right: 5%;
        order: 1;
    }

    .hero>img {
        position: relative;
        /* removes absolute positioning */
        width: 100%;
        height: auto;
        order: 2;
        margin-top: 20px;
    }

    .hero>.hero-content>.hero-title>h1 {
        font-size: 40px;
        /* better fit for mobile */
    }

    .hero>.hero-content>.hero-title-suffix>.hero-line {
        font-size: 1.5em;
    }

    .orange-btn,
    .blue-btn {
        width: 100%;
        font-size: 18px;
    }
}
