/* =========================================================
   OLI TRAINING ACADEMY
   CONTACT PAGE
   PROFESSIONAL ISOLATED STYLESHEET
   Orange / Black / Blue / White
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

.contact-page {
    --orange: #f59e0b;
    --orange-dark: #d97706;
    --blue: #0b4f8a;
    --blue-dark: #083b68;
    --black: #111827;
    --dark: #1f2937;
    --text: #4b5563;
    --light-text: #6b7280;
    --white: #ffffff;
    --light: #f8fafc;
    --soft-orange: #fff7ed;
    --border: #e5e7eb;
    --shadow: 0 12px 35px rgba(15, 23, 42, 0.08);

    margin: 0;
    padding: 0;
    background: var(--white);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

.contact-page *,
.contact-page *::before,
.contact-page *::after {
    box-sizing: border-box;
}

.contact-page a {
    text-decoration: none;
}

.contact-page img {
    max-width: 100%;
    display: block;
}

.contact-page button,
.contact-page input,
.contact-page select,
.contact-page textarea {
    font: inherit;
}


/* =========================================================
   HEADER
========================================================= */

.contact-page .contact-header {
    width: 100%;
    min-height: 88px;
    padding: 12px 6%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    position: relative;
    z-index: 100;
}


/* =========================================================
   LOGO AREA
========================================================= */

.contact-page .logo-area {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
}

.contact-page .logo-area a {
    display: block;
}

.contact-page .logo-area img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    border-radius: 8px;
}

.contact-page .logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-page .logo-text h2 {
    margin: 0;
    color: var(--black);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.15;
}

.contact-page .logo-text p {
    margin: 5px 0 0;
    color: var(--orange-dark);
    font-size: 12px;
    font-weight: 600;
    font-style: italic;
}


/* =========================================================
   NAVIGATION
========================================================= */

.contact-page .navbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    flex-wrap: wrap;
}

.contact-page .navbar a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 13px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.contact-page .navbar a i {
    font-size: 13px;
    color: var(--blue);
}

.contact-page .navbar a:hover {
    color: var(--orange-dark);
    background: var(--soft-orange);
}

.contact-page .navbar a:hover i {
    color: var(--orange-dark);
}

.contact-page .navbar a.active {
    color: var(--orange-dark);
}

.contact-page .navbar a.active i {
    color: var(--orange-dark);
}

.contact-page .navbar a.active::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 2px;
    height: 3px;
    border-radius: 20px;
    background: var(--orange);
}


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-page .contact-hero {
    min-height: 430px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background:
        linear-gradient(
            120deg,
            rgba(7, 34, 59, 0.94),
            rgba(11, 79, 138, 0.82)
        );
}

.contact-page .contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(245, 158, 11, 0.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(245, 158, 11, 0.12),
            transparent 28%
        );
}

.contact-page .contact-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.20),
            transparent 55%
        );
}

.contact-page .contact-hero-content {
    position: relative;
    z-index: 2;
    width: min(850px, 90%);
    padding: 70px 20px;
}

.contact-page .contact-small-title {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-page .contact-hero-content h1 {
    margin: 0 auto 18px;
    color: var(--white);
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 800;
}

.contact-page .contact-hero-content p {
    max-width: 690px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
}

.contact-page .contact-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 5px;
    background: var(--orange);
    color: var(--black);
    font-size: 14px;
    font-weight: 800;
    transition: all 0.25s ease;
}

.contact-page .contact-hero-btn:hover {
    background: var(--white);
    color: var(--blue-dark);
    transform: translateY(-2px);
}


/* =========================================================
   GENERAL SECTION HEADING
========================================================= */

.contact-page .contact-section-heading {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.contact-page .contact-section-heading span,
.contact-page .contact-social-container > span,
.contact-page .contact-map-heading > span,
.contact-page .contact-cta-content > span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--orange-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-page .contact-section-heading h2,
.contact-page .contact-social-container h2,
.contact-page .contact-map-heading h2 {
    margin: 0 0 15px;
    color: var(--black);
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
}

.contact-page .contact-section-heading p,
.contact-page .contact-social-container p,
.contact-page .contact-map-heading p {
    margin: 0 auto;
    max-width: 720px;
    color: var(--text);
    font-size: 16px;
}


/* =========================================================
   CONTACT INTRO
========================================================= */

.contact-page .contact-intro {
    padding: 85px 6% 45px;
    background: var(--white);
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-page .contact-info-section {
    padding: 35px 6% 85px;
    background: var(--white);
}

.contact-page .contact-info-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-page .contact-info-card {
    padding: 30px 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-page .contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.contact-page .contact-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(11, 79, 138, 0.10);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.contact-page .contact-icon.whatsapp-icon {
    background: rgba(37, 211, 102, 0.12);
    color: #20a957;
}

.contact-page .contact-info-card h3 {
    margin: 0 0 8px;
    color: var(--black);
    font-size: 18px;
}

.contact-page .contact-info-card p {
    min-height: 48px;
    margin: 0 0 12px;
    color: var(--light-text);
    font-size: 14px;
}

.contact-page .contact-info-card a,
.contact-page .contact-info-card span {
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    word-break: break-word;
}

.contact-page .contact-info-card a:hover {
    color: var(--orange-dark);
}


/* =========================================================
   MAIN CONTACT SECTION
========================================================= */

.contact-page .contact-main-section {
    padding: 90px 6%;
    background: var(--light);
}

.contact-page .contact-main-container {
    max-width: 1180px;
    margin: auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 65px;
    align-items: start;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-page .contact-details {
    padding-top: 10px;
}

.contact-page .contact-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--orange-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-page .contact-details h2 {
    margin: 0 0 18px;
    color: var(--black);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
}

.contact-page .contact-details > p {
    margin: 0 0 35px;
    color: var(--text);
    font-size: 16px;
}

.contact-page .contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-page .detail-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 8px;
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page .contact-detail-item h4 {
    margin: 0 0 3px;
    color: var(--black);
    font-size: 16px;
}

.contact-page .contact-detail-item p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
}

.contact-page .contact-detail-item span {
    color: var(--orange-dark);
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-page .contact-form-wrapper {
    padding: 35px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-page .contact-form {
    width: 100%;
}

.contact-page .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-page .form-group {
    margin-bottom: 20px;
}

.contact-page .form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
}

.contact-page .form-group input,
.contact-page .form-group select,
.contact-page .form-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    outline: none;
    background: var(--white);
    color: var(--dark);
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page .form-group input,
.contact-page .form-group select {
    height: 48px;
}

.contact-page .form-group textarea {
    min-height: 145px;
    resize: vertical;
}

.contact-page .form-group input::placeholder,
.contact-page .form-group textarea::placeholder {
    color: #9ca3af;
}

.contact-page .form-group input:focus,
.contact-page .form-group select:focus,
.contact-page .form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(11, 79, 138, 0.10);
}

.contact-page .contact-submit-btn {
    width: 100%;
    min-height: 52px;
    border: none;
    border-radius: 6px;
    background: var(--orange);
    color: var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 800;
    transition: all 0.25s ease;
}

.contact-page .contact-submit-btn i {
    font-size: 19px;
}

.contact-page .contact-submit-btn:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
}


/* =========================================================
   SOCIAL MEDIA
========================================================= */

.contact-page .contact-social-section {
    padding: 85px 6%;
    background: var(--white);
    text-align: center;
}

.contact-page .contact-social-container {
    max-width: 750px;
    margin: auto;
}

.contact-page .contact-social-icons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
}

.contact-page .contact-social-icons a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.25s ease;
}

.contact-page .contact-social-icons a:hover {
    background: var(--orange);
    color: var(--black);
    transform: translateY(-4px);
}


/* =========================================================
   MAP SECTION
========================================================= */

.contact-page .contact-map-section {
    padding: 85px 6%;
    background: var(--light);
}

.contact-page .contact-map-heading {
    text-align: center;
    margin-bottom: 35px;
}

.contact-page .map-placeholder {
    max-width: 1150px;
    min-height: 350px;
    margin: auto;
    border-radius: 12px;
    overflow: hidden;
    position: relative;

    background:
        linear-gradient(
            135deg,
            rgba(11, 79, 138, 0.96),
            rgba(8, 59, 104, 0.96)
        );

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-page .map-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.05) 1px,
            transparent 1px
        );

    background-size: 45px 45px;
}

.contact-page .map-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

.contact-page .map-content > i {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.contact-page .map-content h3 {
    margin: 0 0 6px;
    color: var(--white);
    font-size: 25px;
}

.contact-page .map-content p {
    margin: 0 0 22px;
    color: rgba(255,255,255,0.82);
}

.contact-page .map-content a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 18px;
    border-radius: 5px;
    background: var(--white);
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 800;
    transition: all 0.25s ease;
}

.contact-page .map-content a:hover {
    background: var(--orange);
    color: var(--black);
}


/* =========================================================
   CTA
========================================================= */

.contact-page .contact-cta {
    padding: 90px 6%;
    background:
        linear-gradient(
            120deg,
            var(--blue-dark),
            var(--blue)
        );
    text-align: center;
}

.contact-page .contact-cta-content {
    max-width: 850px;
    margin: auto;
}

.contact-page .contact-cta-content > span {
    color: var(--orange);
}

.contact-page .contact-cta-content h2 {
    margin: 0 0 15px;
    color: var(--white);
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.2;
}

.contact-page .contact-cta-content p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.84);
    font-size: 16px;
}

.contact-page .contact-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.contact-page .cta-primary,
.contact-page .cta-secondary {
    min-width: 165px;
    padding: 13px 20px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.25s ease;
}

.contact-page .cta-primary {
    background: var(--orange);
    color: var(--black);
}

.contact-page .cta-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.55);
    color: var(--white);
}

.contact-page .cta-primary:hover {
    background: var(--white);
    color: var(--blue-dark);
    transform: translateY(-2px);
}

.contact-page .cta-secondary:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--blue-dark);
    transform: translateY(-2px);
}


/* =========================================================
   FOOTER
========================================================= */

.contact-page .contact-footer {
    background: #0d1724;
    color: var(--white);
}

.contact-page .footer-content {
    max-width: 1200px;
    margin: auto;
    padding: 65px 6% 45px;

    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 55px;
}

.contact-page .footer-brand img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
}

.contact-page .footer-brand h3 {
    margin: 0 0 5px;
    color: var(--white);
    font-size: 18px;
}

.contact-page .footer-brand p {
    margin: 0;
    color: #aeb8c5;
    font-size: 14px;
}

.contact-page .footer-links h4,
.contact-page .footer-contact h4 {
    margin: 0 0 18px;
    color: var(--orange);
    font-size: 16px;
}

.contact-page .footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-page .footer-links a {
    margin-bottom: 9px;
    color: #cbd5e1;
    font-size: 14px;
    transition: color 0.2s ease;
}

.contact-page .footer-links a:hover {
    color: var(--orange);
}

.contact-page .footer-contact p {
    margin: 0 0 13px;
    color: #cbd5e1;
    font-size: 14px;
}

.contact-page .footer-contact i {
    width: 20px;
    margin-right: 7px;
    color: var(--orange);
}

.contact-page .footer-bottom {
    max-width: 1200px;
    margin: auto;
    padding: 18px 6%;
    border-top: 1px solid rgba(255,255,255,0.10);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contact-page .footer-bottom p {
    margin: 0;
    color: #8f9baa;
    font-size: 12px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .contact-page .contact-header {
        padding: 12px 4%;
        gap: 20px;
    }

    .contact-page .navbar a {
        padding: 9px 8px;
        font-size: 13px;
    }

    .contact-page .navbar a i {
        display: none;
    }

    .contact-page .contact-info-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-page .contact-main-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-page .contact-details {
        max-width: 800px;
    }

    .contact-page .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .contact-page .contact-header {
        min-height: auto;
        padding: 15px 5%;
        flex-direction: column;
        align-items: center;
    }

    .contact-page .logo-area {
        width: 100%;
        justify-content: center;
    }

    .contact-page .logo-area img {
        width: 55px;
        height: 55px;
    }

    .contact-page .logo-text h2 {
        font-size: 17px;
    }

    .contact-page .logo-text p {
        font-size: 11px;
    }

    .contact-page .navbar {
        width: 100%;
        justify-content: center;
        gap: 3px;
    }

    .contact-page .navbar a {
        padding: 8px 7px;
        font-size: 12px;
    }

    .contact-page .navbar a i {
        display: none;
    }

    .contact-page .contact-hero {
        min-height: 380px;
    }

    .contact-page .contact-hero-content {
        padding: 55px 15px;
    }

    .contact-page .contact-hero-content h1 {
        font-size: 36px;
    }

    .contact-page .contact-hero-content p {
        font-size: 15px;
    }

    .contact-page .contact-intro {
        padding: 65px 6% 35px;
    }

    .contact-page .contact-info-section {
        padding: 30px 6% 65px;
    }

    .contact-page .contact-info-container {
        grid-template-columns: 1fr;
    }

    .contact-page .contact-main-section {
        padding: 65px 6%;
    }

    .contact-page .contact-details h2 {
        font-size: 30px;
    }

    .contact-page .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-page .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-page .contact-social-section,
    .contact-page .contact-map-section {
        padding: 65px 6%;
    }

    .contact-page .map-placeholder {
        min-height: 320px;
    }

    .contact-page .contact-cta {
        padding: 70px 6%;
    }

    .contact-page .contact-cta-content h2 {
        font-size: 31px;
    }

    .contact-page .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 55px 6% 35px;
    }

    .contact-page .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 18px 6%;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .contact-page .logo-text h2 {
        font-size: 15px;
    }

    .contact-page .navbar {
        gap: 2px;
    }

    .contact-page .navbar a {
        padding: 7px 5px;
        font-size: 11px;
    }

    .contact-page .contact-hero-content h1 {
        font-size: 31px;
    }

    .contact-page .contact-small-title {
        font-size: 11px;
    }

    .contact-page .contact-hero-content p {
        font-size: 14px;
    }

    .contact-page .contact-social-icons {
        gap: 8px;
    }

    .contact-page .contact-social-icons a {
        width: 43px;
        height: 43px;
    }
}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .contact-page *,
    .contact-page *::before,
    .contact-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}