/* =========================================
   Egoli Fuel Terminals — Custom Overrides
   ========================================= */

/* ---- Header top bar — white background, black text ---- */
.main-menu__top {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}
.main-menu__top-inner {
    border-bottom: none;
}
.main-menu__contact-list li .text p,
.main-menu__contact-list li .text p a,
.main-menu__top-welcome-text,
.main-menu__social-title {
    color: #1a1a2e !important;
}
.main-menu__contact-list li .icon i {
    color: #1a1a2e !important;
}
.main-menu__social a {
    color: #1a1a2e !important;
}
.main-menu__social a:hover {
    color: #ffde59 !important;
}

/* ---- FAQ Page ---- */
.faq-col-heading {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 3px solid #ffde59;
    display: inline-block;
}

/* ---- Services Page ---- */
.services-intro {
    padding: 80px 0 30px;
}
.services-intro__text {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.85;
    color: #555555;
}
.services-cards {
    padding: 50px 0 80px;
}

/* Service card */
.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}
.service-card__img-box {
    position: relative;
    height: 230px;
    overflow: hidden;
}
.service-card__img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card__img-box img {
    transform: scale(1.06);
}
.service-card__img-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 35%, rgba(15, 20, 35, 0.55) 100%);
}
.service-card__number {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #ffde59;
    color: #0f1423;
    font-size: 12px;
    font-weight: 800;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    letter-spacing: 0.5px;
}
.service-card__body {
    padding: 0 28px 35px;
}
.service-card__icon {
    width: 64px;
    height: 64px;
    background: #ffde59;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #0f1423;
    margin-top: -32px;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
    border: 4px solid #ffffff;
    box-shadow: 0 6px 20px rgba(255, 222, 89, 0.35);
}
.service-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.3;
}
.service-card__text {
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Products parallax section */
.products-section {
    position: relative;
    padding: 100px 0 110px;
    overflow: hidden;
}
.products-section__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.products-section__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 20, 35, 0.78);
}
.products-section__content {
    position: relative;
    z-index: 2;
}
.products-section .section-title__tagline {
    color: #ffde59;
}
.products-section .section-title__tagline-shape {
    background-color: #ffde59;
}

/* Contact CTA strip */
.contact-cta {
    padding: 70px 0;
    background-color: #ffde59;
}
.contact-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.contact-cta__title {
    font-size: 28px;
    font-weight: 700;
    color: #0f1423;
    margin-bottom: 8px;
    line-height: 1.3;
}
.contact-cta__text {
    color: #333333;
    font-size: 16px;
    margin: 0;
}
.contact-cta .thm-btn {
    background-color: #0f1423;
    color: #ffffff;
    white-space: nowrap;
    flex-shrink: 0;
}
.contact-cta .thm-btn:hover {
    background-color: #1a2540;
}

/* Mission / Vision / Commitment — parallax cards */
.values-section {
    position: relative;
    padding: 100px 0 110px;
    overflow: hidden;
}
.values-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}
.values-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 20, 35, 0.78);
}
.values-section__content {
    position: relative;
    z-index: 2;
}
.values-section__title .section-title__tagline {
    color: #ffde59;
}
.values-section__title .section-title__title {
    color: #ffffff;
}
.value-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 12px;
    padding: 50px 30px 45px;
    text-align: center;
    margin-bottom: 30px;
    border-top: 4px solid transparent;
    transition: all 0.35s ease;
}
.value-card:hover {
    border-top-color: #ffde59;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.value-card__icon {
    font-size: 52px;
    color: #ffde59;
    margin-bottom: 22px;
    display: block;
    line-height: 1;
}
.value-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}
.value-card__text {
    color: #666666;
    line-height: 1.8;
    margin: 0;
    font-size: 15px;
}

/* Industries We Serve — icon cards */
.industries-serve {
    padding: 80px 0;
    background-color: #0f1423;
}
.industries-serve .section-title__tagline {
    color: #ffde59;
}
.industries-serve .section-title__title {
    color: #ffffff;
}
.industries-serve .section-title__tagline-shape {
    background-color: #ffde59;
}
.industry-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 40px 20px 35px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}
.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-bottom-color: #ffde59;
}
.industry-card__icon {
    font-size: 46px;
    color: #ffde59;
    margin-bottom: 18px;
    display: block;
    line-height: 1;
}
.industry-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
    line-height: 1.4;
}
.industry-card__text {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

/* Process section — equal height cards */
.process-one__inner .row > [class*="col-"] {
    display: flex;
}
.process-one__single-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.process-one__single {
    flex: 1;
    display: flex;
    flex-direction: column;
}
