/* =========================================
   MEIPL Website Design System & Styling
   ========================================= */

:root {
    /* Color Palette */
    --primary: #FE5A0E;
    /* Brand Orange */
    --primary-hover: #E04812;
    --dark-navy: #111111;
    /* Almost black */
    --text-main: #333333;
    --text-muted: #666666;
    --light-bg: #F9F9F9;
    /* Very light gray for form fields */
    --white: #FFFFFF;
    --border-color: #EAEAEA;

    /* Typography */
    --font-primary: 'Outfit', sans-serif;

    /* Layout & Spacing */
    --max-width: 100%;
    --nav-height: 90px;
    --section-padding: 80px 0;

    /* Effects */
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: var(--section-padding);
}

.text-center {
    text-align: center;
}

/* Typography Utilities */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-full {
    width: 100%;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: var(--white);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    justify-self: start;
}

.logo-img {
    width: 115px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background-color: var(--dark-navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.logo-icon.white {
    background-color: var(--white);
    color: var(--dark-navy);
    border: 2px solid var(--white);
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0c1f4a;
    letter-spacing: 0.02em;
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    grid-column: 2;
    justify-self: center;
}

.nav-links a {
    font-weight: 500;
    color: #111111;
    font-size: 1rem;
    position: relative;
    padding-bottom: 10px;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #111111;
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
    border-radius: 2px;
}

.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    grid-column: 3;
    justify-self: end;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-navy);
    padding: 8px;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 60px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--dark-navy);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 90%;
    line-height: 1.8;
}

.hero-images {
    height: 700px;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom,
            transparent 0%,
            #000 12%,
            #000 88%,
            transparent 100%);
    mask-image: linear-gradient(to bottom,
            transparent 0%,
            #000 12%,
            #000 88%,
            transparent 100%);
}

.hero-image-grid-animated {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    height: 100%;
}

.scroll-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: scroll-up 9s linear infinite;
}

.scroll-column.reverse-anim {
    animation-direction: reverse;
    animation-duration: 12s;
}

.scroll-column img {
    border-radius: 12px;
    width: 100%;
    height: 342px;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(calc(-50% - 7.5px));
    }
}

/* Services Section */
.services-container {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr;
    gap: 60px;
    align-items: start;
    padding-top: 20px;
}

.services-image {
    position: sticky;
    top: 120px;
}

.services-image-wrapper {
    position: relative;
    width: 100%;
    height: 522px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    background-color: #f0f0f0;
}

.service-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    border-radius: 16px;
}

.service-img.active {
    opacity: 1;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: 24px;
    font-weight: 600;
    color: #282828;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--dark-navy);
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
    color: #616161;
}

.accordion-icon svg {
    width: 16px;
    height: 16px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content p {
    padding-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.accordion-item.active .accordion-header {
    color: var(--dark-navy);
}

/* Projects Section */
.projects {
    padding-bottom: 80px;
}

.projects-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 700px;
}

.project-item {
    border-radius: 16px;
    overflow: hidden;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-item:hover img {
    transform: scale(1.06);
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-36px);
}

.reveal-left.is-visible {
    transform: translateX(0);
}

.reveal-right {
    transform: translateX(36px);
}

.reveal-right.is-visible {
    transform: translateX(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .project-item img {
        transition: none;
    }

    .project-item:hover img {
        transform: none;
    }
}

.project-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.project-item:nth-child(2) {
    grid-column: 2 / span 2;
    grid-row: 1;
}

.project-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

.project-item:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
}

/* EPC Division */
.epc-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.epc-content h3 {
    font-size: 1.8rem;
    color: var(--dark-navy);
    margin-bottom: 20px;
    line-height: 1.3;
}

.epc-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.epc-image img {
    border-radius: 16px;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.info-item {
    margin-bottom: 25px;
}

.info-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #999;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.info-value {
    font-size: 1rem;
    color: var(--dark-navy);
    font-weight: 500;
}

.social-links {
    margin-top: 30px;
}

.social-links .icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    color: var(--primary);
}

.contact-form {
    background-color: var(--white);
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 15px;
    border: none;
    background-color: var(--light-bg);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: 1px solid var(--primary);
}

/* Footer */
.footer {
    background-color: #000000;
    color: var(--white);
    padding: 70px 0 28px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1.1fr 1.4fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand-title {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.footer-brand-white {
    color: var(--white);
}

.footer-brand-accent {
    color: var(--primary);
}

.footer-brand p {
    color: #a8a8a8;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer h4 {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b5b5b5;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #b5b5b5;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact li a {
    color: #b5b5b5;
    transition: color 0.2s ease;
}

.footer-contact li a:hover {
    color: var(--white);
}

.footer-contact li svg {
    color: var(--primary);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid #1f1f1f;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2a2a2a;
    color: var(--white);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-socials a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.footer-copyright {
    color: #8a8a8a;
    font-size: 0.85rem;
    margin: 0;
    text-align: right;
}

/* Responsive */
@media (max-width: 992px) {

    .hero-container,
    .services-container,
    .epc-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .project-item:nth-child(1),
    .project-item:nth-child(2),
    .project-item:nth-child(3),
    .project-item:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }

    .project-item:nth-child(1) {
        grid-column: 1 / span 2;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-copyright {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Services Page Styles
   ========================================= */

.services-page {
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 50px;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.services-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.services-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: lowercase;
}

.services-header p::first-letter {
    text-transform: uppercase;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-row {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.service-row:nth-child(even) {
    grid-template-columns: 0.85fr 1.15fr;
}

.service-row:nth-child(even) .service-img-col {
    order: 1;
}

.service-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 60px;
    padding-right: 20px;
}

.service-row:nth-child(even) .service-text-col {
    order: 2;
    padding-left: 20px;
    padding-right: 60px;
}

.service-text-col h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 20px;
    line-height: 1.25;
}

.service-text-col p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 35px;
}

.service-img-col {
    width: 100%;
}

.service-img-col img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}

.service-row:hover .service-img-col img {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Button Micro-Animations */
.service-text-col .btn svg {
    transition: transform 0.3s ease;
}

.service-text-col .btn:hover svg {
    transform: translateX(5px);
}

/* Responsive design for Services Page */
@media (max-width: 992px) {
    .services-list {
        gap: 80px;
    }

    .service-row,
    .service-row:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-row:nth-child(even) .service-text-col {
        order: 1;
        padding-left: 0;
        padding-right: 0;
    }

    .service-text-col {
        padding-left: 0;
        padding-right: 0;
    }

    .service-row:nth-child(even) .service-img-col {
        order: 2;
    }

    .service-img-col img {
        height: 380px;
    }

    .services-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .services-page {
        padding-top: calc(var(--nav-height) + 40px);
    }

    .services-header {
        margin-bottom: 50px;
    }

    .services-header h1 {
        font-size: 2.2rem;
    }

    .service-text-col h2 {
        font-size: 1.8rem;
    }

    .service-img-col img {
        height: 280px;
    }
}

/* =========================================
   Project Page Styles
   ========================================= */

.project-row {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 0;
}

.project-row:nth-child(even) {
    grid-template-columns: 0.85fr 1.15fr;
}


.project-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 60px;
    padding-right: 20px;
}

.project-row:nth-child(even) .project-text-col {
    order: 2;
    padding-left: 20px;
    padding-right: 60px;
}

.project-row:nth-child(even) .project-img-col {
    order: 1;
}

.project-metadata-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
    width: 100%;
}

.metadata-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.metadata-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--dark-navy);
    flex-shrink: 0;
    margin-top: 4px;
}

.metadata-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.metadata-info {
    display: flex;
    flex-direction: column;
}

.metadata-label {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.metadata-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-navy);
    line-height: 1.4;
}

.metadata-subvalue {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.project-img-col {
    width: 100%;
}

.project-img-col img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}

.project-row:hover .project-img-col img {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Responsive design for Project Page */
@media (max-width: 992px) {

    .project-row,
    .project-row:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }

    .project-row:nth-child(even) .project-text-col {
        order: 1;
    }

    .project-row:nth-child(even) .project-img-col {
        order: 2;
    }

    .project-text-col,
    .project-row:nth-child(even) .project-text-col {
        padding-left: 0;
        padding-right: 0;
    }

    .project-img-col img {
        height: 380px;
    }
}

@media (max-width: 576px) {
    .project-metadata-list {
        gap: 28px;
    }

    .metadata-item {
        gap: 16px;
    }

    .metadata-icon {
        width: 40px;
        height: 40px;
    }

    .metadata-icon svg {
        width: 18px;
        height: 18px;
    }

    .metadata-value {
        font-size: 1.05rem;
    }

    .project-img-col img {
        height: 280px;
    }
}

/* ==========================================================================
   TESTIMONIALS & CERTIFICATES SECTION SHARED
   ========================================================================== */
.section-title-block {
    text-align: center;
    margin-bottom: 20px;
}

.section-title-block h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-navy);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 50px 0;
    background-color: #fafafa;
}

.testimonials-marquee {
    overflow: hidden;
    width: 100%;
    margin-top: 50px;
    padding: 20px 0;
    position: relative;
}

/* Optional fading edges */
.testimonials-marquee::before,
.testimonials-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.testimonials-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fafafa 0%, transparent 100%);
}

.testimonials-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fafafa 0%, transparent 100%);
}

.testimonials-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollTestimonials 30s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.testimonial-card {
    background: #ffffff;
    padding: 30px 30px 30px 24px;
    border-radius: 4px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 350px;
    /* Fixed width for cards in marquee */
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark-navy);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark-navy);
}

.testimonial-role {
    font-size: 0.75rem;
    font-weight: 600;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
}

.testimonial-stars {
    margin-top: auto;
    color: #f97316;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.star-muted {
    color: #e2e8f0;
}

/* ==========================================================================
   CERTIFICATES SECTION
   ========================================================================== */
.certificates-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.certificates-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.certificates-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
}

.certificates-card {
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    padding: 20px;
    border-radius: 8px;
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}

.certificates-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.certificate-doc {
    border: 12px solid #20b2aa;
    padding: 40px;
    text-align: center;
    background-image: linear-gradient(135deg, rgba(32, 178, 170, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

.cert-logo-box {
    display: inline-block;
    background-color: #20b2aa;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.5rem;
    padding: 10px 20px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.cert-title-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cert-type {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark-navy);
    letter-spacing: 1px;
}

.cert-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cert-company {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
}

.cert-desc {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.5;
    margin: 10px 0;
}

.cert-number {
    font-size: 0.85rem;
    color: #888;
}

.cert-issuer {
    margin-top: 20px;
    font-weight: 700;
    color: var(--dark-navy);
}

.cert-partner {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .certificates-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .certificates-card {
        transform: rotate(0);
        margin-top: 30px;
    }
}

/* =========================================
   Career Page Styles
   ========================================= */
.career-body {
    background: #ffffff;
}

.career-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.career-body .container {
    padding-left: 40px;
    padding-right: 40px;
}

.career-navbar {
    position: absolute;
}

.career-nav-container {
    grid-template-columns: 1fr auto 1fr;
}

.career-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    grid-column: 3;
}

.career-login,
.career-signup {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.career-login {
    padding: 0 20px;
    color: #111111;
    background: #ffffff;
    border: 1px solid #e7e7e7;
}

.career-signup {
    gap: 5px;
    padding: 0 18px;
    color: #ffffff;
    background: var(--primary);
    box-shadow: 0 8px 18px rgba(254, 90, 14, 0.2);
}

.career-hero {
    padding: 185px 0 72px;
}

.career-hero h1,
.career-section-heading h2 {
    color: #111111;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0;
}

.career-hero h1 {
    font-size: clamp(2.35rem, 4vw, 3rem);
    margin-bottom: 22px;
}

.career-hero p,
.career-section-heading p {
    color: #777b83;
    font-size: 0.98rem;
    line-height: 1.7;
}

.career-pillars {
    padding: 20px 0 68px;
}

.career-feature-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.career-feature-card {
    min-height: 196px;
    padding: 28px 28px 24px;
    background: #ffffff;
    border: 1px solid #f3f3f3;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.05);
}

.career-icon,
.benefit-item span,
.life-safety span {
    color: var(--primary);
}

.career-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 8px;
    background: rgba(254, 90, 14, 0.1);
}

.career-icon svg,
.benefit-item svg,
.life-safety svg {
    width: 22px;
    height: 22px;
}

.career-feature-card h3,
.job-card h3,
.benefit-item h3,
.life-grid h3 {
    color: #242934;
    font-weight: 800;
    line-height: 1.25;
}

.career-feature-card h3 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.career-feature-card p {
    color: #6b7280;
    font-size: 0.86rem;
    line-height: 1.45;
}

.career-section {
    padding: 66px 0;
}

.career-section-heading {
    max-width: 660px;
    margin: 0 auto 54px;
}

.career-section-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3vw, 2.65rem);
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.job-card {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    min-height: 160px;
    padding: 32px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.05);
}

.job-copy p {
    display: flex;
    gap: 13px;
    align-items: center;
    margin-bottom: 8px;
    color: #89909b;
    font-size: 0.78rem;
    font-weight: 700;
}

.job-copy p span {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.job-card h3 {
    margin-bottom: 10px;
    font-size: 1.38rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    color: #69717d;
    font-size: 0.9rem;
    font-weight: 600;
}

.job-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 22px;
    flex-shrink: 0;
}

.job-apply {
    display: inline-flex;
    min-width: 118px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.job-details {
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.life-section {
    padding-top: 76px;
}

.life-grid {
    display: grid;
    grid-template-columns: 1.22fr 0.58fr 0.58fr;
    grid-template-rows: 270px 270px;
    gap: 20px;
}

.life-grid article {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #f5f5f5;
}

.life-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.life-large {
    grid-row: span 2;
}

.life-wide {
    grid-column: span 2;
}

.life-large::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 55%);
}

.life-large div {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 1;
}

.life-large h3 {
    color: #ffffff;
    margin-bottom: 3px;
    font-size: 1.25rem;
}

.life-large p,
.life-safety p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.86rem;
}

.life-safety {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px;
    background: #FE7B3E !important;
    color: #ffffff;
}

.life-safety span {
    color: #ffffff;
    margin-bottom: 18px;
}

.life-safety h3 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.benefits-section {
    padding-top: 52px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 72px 60px;
    max-width: 920px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
}

.benefit-item span {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.85rem;
    font-weight: 400;
}

.benefit-item h3 {
    margin-bottom: 8px;
    font-size: 1.12rem;
}

.benefit-item p {
    color: #73808f;
    font-size: 0.92rem;
    line-height: 1.5;
}

.career-contact {
    padding-bottom: 90px;
}

.career-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 90px;
    align-items: start;
}

.career-contact-info {
    padding-top: 6px;
}

.career-contact-form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.career-contact-form .form-row {
    margin-bottom: 0;
}

.career-contact-form input,
.career-contact-form textarea {
    width: 100%;
    border: none;
    border-radius: 0;
    background: #f6f6f6;
    color: #222222;
    font-family: var(--font-primary);
    font-size: 0.95rem;
}

.career-contact-form input {
    min-height: 50px;
    padding: 0 20px;
}

.career-contact-form textarea {
    min-height: 160px;
    padding: 20px;
    resize: vertical;
}

.career-contact-form button {
    min-height: 54px;
    border-radius: 3px;
}

@media (max-width: 1180px) {
    .career-feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .career-actions {
        display: none;
    }
}

@media (max-width: 992px) {
    .career-hero {
        padding-top: 150px;
    }

    .job-grid,
    .career-contact-layout {
        grid-template-columns: 1fr;
    }

    .career-contact-layout {
        gap: 40px;
    }

    .life-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 320px 240px 240px;
    }

    .life-large,
    .life-wide {
        grid-column: span 2;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .career-body .container,
    .career-container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .career-feature-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .job-card {
        flex-direction: column;
        padding: 24px;
    }

    .job-actions {
        align-items: stretch;
    }

    .job-apply {
        width: 100%;
    }

    .life-grid {
        display: flex;
        flex-direction: column;
    }

    .life-grid article {
        min-height: 240px;
    }

    .career-contact-form .form-row {
        flex-direction: column;
    }
}

/* =========================================
   About Page Styles
   ========================================= */
.about-body {
    background: #ffffff;
}

.about-navbar {
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.about-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* —— Hero —— */
.about-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(145deg, #3a4f6a 0%, #5a7a9a 40%, #c47a3a 100%);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.28) 55%, rgba(0, 0, 0, 0.12) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 80px 0;
    text-align: left;
    margin-left: 40px;
}

.about-hero h1 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
}

.about-hero-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.7;
}

/* —— Section spacing —— */
.about-intro,
.about-mv,
.about-why,
.about-team,
.about-contact {
    padding: 100px 0;
}

/* —— Intro + Stats —— */
.about-intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-intro-copy h2 {
    margin-bottom: 20px;
    color: #111111;
    font-size: clamp(1.55rem, 2.4vw, 1.95rem);
    font-weight: 800;
    line-height: 1.25;
}

.about-intro-copy > p {
    margin-bottom: 36px;
    color: #5f6773;
    font-size: 0.95rem;
    line-height: 1.75;
}

.about-intro-img {
    width: 100%;
    min-height: 440px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
    background: linear-gradient(145deg, #2a3544 0%, #4a5f72 45%, #6b7d8f 100%);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 36px;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-stat-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #3b6fd4;
    background: rgba(59, 111, 212, 0.1);
}

.about-stat-icon svg {
    width: 22px;
    height: 22px;
}

.about-stat strong {
    display: block;
    margin-bottom: 2px;
    color: #111111;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1;
}

.about-stat span {
    color: #6b7280;
    font-size: 0.84rem;
    font-weight: 500;
}

/* —— Mission & Vision —— */
.about-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.about-mv-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    padding: 40px 36px;
    border-radius: 16px;
}

.about-mv-watermark {
    position: absolute;
    right: 24px;
    bottom: 16px;
    opacity: 0.12;
    pointer-events: none;
}

.about-mv-watermark svg {
    width: 90px;
    height: 90px;
}

.about-mv-mission {
    background: var(--primary);
    color: #ffffff;
}

.about-mv-mission h3,
.about-mv-mission p {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.about-mv-vision {
    background: #fff3eb;
}

.about-mv-vision .about-mv-watermark {
    color: var(--primary);
}

.about-mv-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
    font-size: 1.35rem;
    font-weight: 800;
}

.about-mv-mission h3 {
    color: #ffffff;
}

.about-mv-vision h3 {
    color: #111111;
}

.about-mv-card p {
    position: relative;
    z-index: 1;
    max-width: 92%;
    font-size: 0.94rem;
    line-height: 1.75;
}

.about-mv-vision p {
    color: #5f6773;
}

/* —— Why Choose Us —— */
.about-why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-why-left h2 {
    margin-bottom: 16px;
    color: #111111;
    font-size: clamp(1.55rem, 2.4vw, 1.95rem);
    font-weight: 800;
    line-height: 1.25;
}

.about-why-left > p {
    margin-bottom: 28px;
    color: #5f6773;
    font-size: 0.95rem;
    line-height: 1.75;
}

.about-testimonial {
    padding: 28px 30px;
    background: #fff3eb;
    border-radius: 12px;
    border: none;
}

.about-testimonial p {
    margin-bottom: 12px;
    color: #333333;
    font-size: 0.94rem;
    font-style: italic;
    line-height: 1.7;
}

.about-testimonial cite {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    font-style: normal;
}

.about-why-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px 26px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(17, 17, 17, 0.06);
    border: 1px solid #f3f3f3;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
    background: rgba(254, 90, 14, 0.1);
}

.about-feature-icon svg {
    width: 20px;
    height: 20px;
}

.about-feature h4 {
    margin-bottom: 5px;
    color: #242934;
    font-size: 1rem;
    font-weight: 800;
}

.about-feature p {
    color: #6b7280;
    font-size: 0.86rem;
    line-height: 1.55;
}

/* —— Team —— */
.about-team {
    background: #ffffff;
}

.about-team-heading {
    margin-bottom: 56px;
    color: #111111;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
}

.about-team-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.about-team-featured {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.about-team-card {
    display: flex;
    gap: 24px;
    align-items: center;
}

.about-team-photo {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.about-team-photo-1 {
    background: linear-gradient(145deg, #2a3544, #4a5f72);
}

.about-team-photo-2 {
    background: linear-gradient(145deg, #3d4f63, #5a6f82);
}

.about-team-card h3 {
    margin-bottom: 4px;
    color: #111111;
    font-size: 1.15rem;
    font-weight: 800;
}

.about-team-card p {
    color: var(--primary);
    font-size: 0.86rem;
    font-weight: 600;
}

.about-team-list {
    list-style: none;
    position: relative;
    margin: 0;
    padding: 4px 0 4px 28px;
    border-left: 2px solid #f0e0d6;
}

.about-team-list li {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 0 28px 20px;
}

.about-team-list li::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px #f0e0d6;
}

.about-team-list li:last-child {
    padding-bottom: 0;
}

.about-team-list strong {
    color: #111111;
    font-size: 0.98rem;
    font-weight: 800;
}

.about-team-list span {
    color: #6b7280;
    font-size: 0.86rem;
    font-weight: 500;
}

/* —— Contact —— */
.about-contact {
    background: #ffffff;
}

.about-contact-heading {
    max-width: 560px;
    margin: 0 auto 52px;
}

.about-contact-heading h2 {
    margin-bottom: 12px;
    color: #111111;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
}

.about-contact-heading p {
    color: #777b83;
    font-size: 0.96rem;
    line-height: 1.6;
}

.about-contact .career-contact-layout {
    gap: 80px;
}

@media (max-width: 992px) {
    .about-intro,
    .about-mv,
    .about-why,
    .about-team,
    .about-contact {
        padding: 72px 0;
    }

    .about-intro-layout,
    .about-mv-grid,
    .about-why-layout,
    .about-team-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro-img {
        min-height: 300px;
    }

    .about-hero {
        min-height: 340px;
    }

    .about-hero-content {
        padding: 60px 0;
    }

    .about-contact .career-contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 700px) {
    .about-container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-intro,
    .about-mv,
    .about-why,
    .about-team,
    .about-contact {
        padding: 56px 0;
    }
}

/* =========================================
   NEW CONTACT PAGE LAYOUT
   ========================================= */
.contact-page {
    background-color: #fff;
}
.contact-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}
.contact-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 50px;
}
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.contact-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: left;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.contact-card .card-icon {
    width: 48px;
    height: 48px;
    background-color: #fff0e8;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.contact-card h4 {
    font-size: 1.1rem;
    color: #111;
    margin-bottom: 10px;
    font-weight: 700;
}
.contact-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}
.contact-hero {
    padding-bottom: 50px;
}
.get-in-touch-section {
    padding-top: 50px;
    padding-bottom: 50px;
}
.get-in-touch-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: stretch;
}
.get-in-touch-form {
    background: #fff;
    padding: 0;
}
.get-in-touch-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
}
.get-in-touch-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.get-in-touch-form .form-group {
    margin-bottom: 20px;
    width: 100%;
}
.get-in-touch-form .form-row {
    display: flex;
    gap: 20px;
}
.get-in-touch-form input,
.get-in-touch-form textarea {
    width: 100%;
    padding: 16px;
    background-color: #e6e8eb;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #333;
}
.get-in-touch-form input:focus,
.get-in-touch-form textarea:focus {
    outline: 1px solid var(--primary);
    background-color: #fff;
}
.get-in-touch-form button {
    padding: 16px 32px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 6px;
}
.get-in-touch-info {
    display: flex;
    flex-direction: column;
}
.toll-plaza-image {
    width: 100%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}
.toll-plaza-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.quick-connect-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.quick-connect {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.quick-connect-btn {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    padding: 12px 20px;
    border-radius: 10px;
    color: #111;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}
.quick-connect-btn:hover {
    background-color: #ececec;
}
.quick-connect-btn .icon {
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.quick-connect-btn .icon svg {
    width: 16px;
    height: 16px;
}
.quick-connect-btn .chevron {
    margin-left: auto;
    color: #999;
}
.faq-section {
    padding-top: 50px;
    padding-bottom: 100px;
}
.faq-narrow-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-container-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-card {
    background: #f5f5f5;
    border-radius: 8px;
    border: none;
    padding: 5px 20px;
    transition: background-color 0.3s ease;
}
.faq-card:hover {
    background-color: #ececec;
}
.faq-card .accordion-header {
    font-size: 1.1rem;
    padding: 15px 0;
    border: none;
}
.faq-card .accordion-content p {
    padding-bottom: 15px;
}
}
@media (max-width: 992px) {
    .contact-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    .get-in-touch-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    .get-in-touch-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* =========================================
   EPC Division Page Styling
   ========================================= */

.epc-page {
    background-color: var(--white);
    overflow: hidden;
}

/* Hero Section */
.epc-hero {
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 30px;
    background-color: var(--white);
}

.epc-hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.epc-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

/* Benefits & Other Sections */
.epc-benefits-section,
.epc-vision-section,
.epc-tabs-section,
.epc-packages-section {
    padding: 50px 0;
}

/* Benefits Grid */
.epc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.epc-benefit-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.epc-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.06);
    border-color: rgba(254, 90, 14, 0.15);
}

.benefit-icon-wrapper,
.package-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #FFF2EB;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.epc-benefit-card:hover .benefit-icon-wrapper,
.epc-package-card:hover .package-icon-wrapper {
    background-color: var(--primary);
    color: var(--white);
}

.epc-benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.epc-benefit-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Vision Split Section */
.epc-vision-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: start;
}

.vision-tag-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.vision-line {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--primary);
}

.vision-tag-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.epc-vision-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.25;
    margin-bottom: 20px;
}

.epc-vision-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.epc-cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: #FFF2EB;
    border-radius: 30px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.2px;
}

.cert-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.epc-vision-image-col {
    display: flex;
    justify-content: flex-end;
}

.epc-vision-image-wrapper {
    width: 550px;
    height: 500px;
    margin-left: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
}

.epc-vision-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.epc-vision-image-wrapper:hover img {
    transform: scale(1.04);
}

/* Interactive Tabs Section */
.tabs-section-header {
    margin-bottom: 35px;
}

.tabs-section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.epc-tabs-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.epc-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.epc-tab-btn {
    background-color: transparent;
    border: none;
    outline: none;
    text-align: left;
    padding: 16px 20px;
    border-left: 3px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0 6px 6px 0;
}

.epc-tab-btn:hover {
    background-color: #FAFAFA;
}

.epc-tab-btn.active {
    border-left-color: var(--primary);
    background-color: #FFF8F4;
}

.tab-service-num {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    transition: var(--transition);
}

.tab-service-title {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-navy);
    transition: var(--transition);
}

.epc-tab-btn.active .tab-service-num {
    color: var(--primary);
}

.epc-tab-btn.active .tab-service-title {
    color: var(--primary);
    font-weight: 700;
}

.epc-tabs-content-viewport {
    background-color: var(--white);
}

.epc-tabs-content-pane {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: none;
}

.epc-tabs-content-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.epc-tab-pane-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
}

.epc-tab-content-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 16px;
    line-height: 1.3;
}

.epc-tab-content-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.epc-tab-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.epc-tab-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--dark-navy);
    font-weight: 500;
}

.epc-tab-features-list .check-icon {
    color: #10B981;
    flex-shrink: 0;
}

.epc-tab-img-wrapper {
    width: 340px;
    height: 500px;
    margin-left: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.05);
}

.epc-tab-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.epc-tab-img-wrapper:hover img {
    transform: scale(1.03);
}

/* Packages Offered */
.epc-packages-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 16px;
}

.epc-packages-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.epc-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.epc-package-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 35px 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: left;
}

.epc-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.06);
    border-color: rgba(254, 90, 14, 0.25);
}

.epc-package-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 12px;
}

.epc-package-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive Rules for EPC Page */
@media (max-width: 1200px) {
    .epc-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .epc-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .epc-tabs-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .epc-tab-pane-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .epc-hero-title {
        font-size: 2.5rem;
    }
    .epc-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .epc-vision-image-col {
        justify-content: center;
    }
    .epc-vision-image-wrapper {
        width: 100%;
        height: 300px;
        margin-left: 0;
    }
    .epc-tab-pane-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .epc-tab-img-wrapper {
        width: 100%;
        height: 260px;
        margin-left: 0;
    }
    .epc-benefits-grid {
        grid-template-columns: 1fr;
    }
    .epc-packages-grid {
        grid-template-columns: 1fr;
    }
    .epc-benefits-section,
    .epc-vision-section,
    .epc-tabs-section,
    .epc-packages-section {
        padding: 40px 0;
    }
}

/* ====================================================================
   JOB DETAIL PAGE
   ==================================================================== */

.jd-header-section {
    padding: 130px 0 50px;
    background-color: var(--white);
}

.jd-category-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 16px;
}

.jd-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.15;
    margin-bottom: 24px;
}

.jd-meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.jd-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 400;
}

.jd-badge svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* --- Two-Column Layout --- */
.jd-content-section {
    padding: 50px 0 80px;
    background-color: var(--white);
}

.jd-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 50px;
    align-items: start;
}

/* --- Main Content Column --- */
.jd-block {
    margin-bottom: 50px;
}

.jd-section-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.jd-heading-dash {
    color: var(--primary);
    font-weight: 400;
    font-size: 1.4rem;
}

.jd-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.jd-overview-image {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    margin-top: 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.jd-overview-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* --- Key Responsibilities --- */
.jd-responsibilities-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.jd-responsibility-item {
    display: flex;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
}

.jd-responsibility-item:first-child {
    padding-top: 0;
}

.jd-responsibility-item:last-child {
    border-bottom: none;
}

.jd-resp-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.jd-resp-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.jd-resp-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* --- Qualifications Box --- */
.jd-qualifications-box {
    background-color: #F8F9FA;
    border-radius: 16px;
    padding: 40px;
}

.jd-qual-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 30px;
}

.jd-qual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.jd-qual-col-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--primary);
    margin-bottom: 18px;
}

.jd-qual-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.jd-qual-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-body);
}

.jd-qual-list li svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- Sidebar --- */
.jd-sidebar {
    position: sticky;
    top: 100px;
}

.jd-apply-card {
    background-color: var(--white);
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 32px 28px;
    margin-bottom: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.jd-apply-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 12px;
}

.jd-apply-card p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.jd-apply-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    background-color: var(--primary);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    box-sizing: border-box;
}

.jd-apply-btn:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.35);
}

.jd-refer-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    background-color: transparent;
    color: var(--dark-navy);
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    box-sizing: border-box;
}

.jd-refer-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: #FFF8F4;
}

/* --- Benefits Icons --- */
.jd-benefits-icons {
    padding: 24px 0;
    margin-bottom: 20px;
}

.jd-benefits-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-align: center;
}

.jd-benefits-row {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.jd-benefit-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.jd-benefit-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-navy);
    transition: var(--transition);
}

.jd-benefit-icon-item:hover .jd-benefit-circle {
    border-color: var(--primary);
    color: var(--primary);
    background-color: #FFF8F4;
}

.jd-benefit-icon-item span {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    text-align: center;
}

/* --- Have Questions Card --- */
.jd-questions-card {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFEEE6 100%);
    border: 1px solid rgba(230, 126, 34, 0.15);
    border-radius: 14px;
    padding: 28px 24px;
}

.jd-questions-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.jd-questions-card p {
    font-size: 0.84rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.jd-email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.jd-email-link:hover {
    color: #d35400;
}

/* --- Job Detail Responsive --- */
@media (max-width: 992px) {
    .jd-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .jd-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .jd-apply-card {
        grid-column: 1 / -1;
    }
    .jd-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .jd-header-section {
        padding: 110px 0 30px;
    }
    .jd-title {
        font-size: 1.8rem;
    }
    .jd-meta-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .jd-qual-grid {
        grid-template-columns: 1fr;
    }
    .jd-qualifications-box {
        padding: 24px;
    }
    .jd-sidebar {
        grid-template-columns: 1fr;
    }
    .jd-overview-image img {
        height: 220px;
    }
}

/* ====================================================================
   JOB APPLICATION PAGE
   ==================================================================== */

.apply-section {
    padding: 130px 0 80px;
    background-color: var(--white);
}

.apply-layout {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 70px;
    align-items: start;
}

/* --- Left Column Info --- */
.apply-info-col {
    position: sticky;
    top: 110px;
}

.apply-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 18px;
}

.apply-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.15;
    margin-bottom: 24px;
}

.apply-subtext {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.apply-feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.apply-feature-card {
    display: flex;
    gap: 18px;
    align-items: center;
    background-color: #F8F9FA;
    border-radius: 12px;
    padding: 20px 24px;
    transition: var(--transition);
}

.apply-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.03);
}

.apply-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background-color: #FFF5F0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.apply-feature-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 4px;
}

.apply-feature-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Featured Image with Overlay label */
.apply-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.apply-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apply-image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    padding: 12px 18px;
    color: var(--white);
}

.apply-image-overlay h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.apply-image-overlay span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary);
}

/* --- Right Column Form --- */
.apply-progress-decor {
    display: flex;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 40px;
}

.apply-decor-filled {
    width: 45%;
    background-color: var(--primary);
}

.apply-decor-empty {
    width: 55%;
    background-color: #ECECEC;
}

.apply-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
    margin-bottom: 32px;
}

.apply-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.apply-form-group.full-width {
    grid-column: 1 / -1;
}

.apply-form-group label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--dark-navy);
}

.apply-form-group input[type="text"],
.apply-form-group input[type="email"],
.apply-form-group input[type="tel"],
.apply-form-group input[type="number"],
.apply-form-group select,
.apply-form-group textarea {
    width: 100%;
    background-color: #E6E8EA;
    border: none;
    border-radius: 8px;
    padding: 16px 20px;
    font-family: var(--font-primary);
    font-size: 0.92rem;
    color: var(--dark-navy);
    outline: none;
    transition: var(--transition);
}

.apply-form-group input::placeholder,
.apply-form-group textarea::placeholder {
    color: #8D9399;
}

.apply-form-group input:focus,
.apply-form-group select:focus,
.apply-form-group textarea:focus {
    background-color: #DFE2E5;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* Custom Dropdown select */
.apply-select-wrapper {
    position: relative;
    width: 100%;
}

.apply-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 45px;
}

.apply-select-wrapper::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23111111' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

/* Custom file attachment upload field */
.apply-file-wrapper {
    position: relative;
    width: 100%;
    height: 52px;
}

.apply-file-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}

.apply-file-dummy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #E6E8EA;
    border: 1.5px dashed #C3C7CC;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1;
    pointer-events: none;
    transition: var(--transition);
}

.apply-file-wrapper:hover .apply-file-dummy {
    background-color: #DFE2E5;
    border-color: var(--primary);
}

.file-placeholder {
    font-size: 0.92rem;
    color: #8D9399;
}

.file-icon {
    display: flex;
    align-items: center;
    color: var(--dark-navy);
}

/* Form Footer Row */
.apply-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 36px;
    border-top: 1px solid #ECECEC;
    padding-top: 28px;
}

.apply-security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.apply-security-badge svg {
    color: #27ae60;
}

.apply-submit-btn {
    padding: 15px 36px;
    background-color: var(--primary);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.apply-submit-btn:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.35);
}

/* --- Responsive apply page --- */
@media (max-width: 992px) {
    .apply-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .apply-info-col {
        position: static;
    }
    .apply-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .apply-section {
        padding: 110px 0 60px;
    }
    .apply-heading {
        font-size: 1.8rem;
    }
    .apply-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .apply-form-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 20px;
    }
    .apply-security-badge {
        justify-content: center;
    }
    .apply-image-wrapper {
        height: 200px;
    }
}


