/* ============================================================
   ORE Academy — Contact Page Stylesheet
   Companion to style.css (global). Contact-specific only.
   Extracted from style.css, which previously held this inline
   alongside every other page's CSS.
   ============================================================ */

/* CONTACT PAGE*/
/* --- INTERNAL PAGE STYLING (About & Contact) --- */
/* --- PRESTIGE CONTACT STYLES --- */
    #ore-contact-portal {
        --navy: #40439c;
        --gold: #c58b43;
        --off-white: #f9fbfb;
        background: #fff;
        overflow-x: hidden;
        min-height: 100vh;

    }

    /* ASYMMETRIC HEADER SECTION */
    .executive-contact-header {
        background: #fff;
        padding-top: 0px;
    }

    .header-split {
        display: flex;
        min-height: 600px;
        background: #f4f4f4;
    }

    .header-text-block {
        flex: 1.2;
        background: var(--navy);
        color: #fff;
        padding: 120px 8% 120px 10%;
        display: flex;
        justify-content: center;
        align-items: center;
        /* Industrial Angle */
        clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
        z-index: 2;
    }

    .inner-content { max-width: 550px; }

    .top-label {
        color: var(--gold);
        font-weight: 900;
        font-size: 0.8rem;
        letter-spacing: 3px;
        display: block;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .split-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
        line-height: 1.1;
        font-weight: 900;
        margin-bottom: 30px;
        text-align: left;
    }

    .split-title .highlight {
        color: var(--gold);
        text-align: left;
        }

    .intro-p {
        font-size: 1.1rem;
        line-height: 1.6;
        opacity: 0.9;
        margin-bottom: 40px;
        font-weight: 300;
    }

    .quick-access-icons {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 30px;
    }

    .q-item {
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: monospace;
        letter-spacing: 1px;
    }

    .q-item i { color: var(--gold); font-size: 1.1rem; }

/* VISUAL BLOCK (RIGHT SIDE) */
    .header-visual-block {
        flex: 1;
        margin-left: -8%;
        z-index: 1;
        position: relative;
    }

    .visual-wrapper {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .visual-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(20%) contrast(1.1);
        animation: slowZoom 20s infinite alternate;
    }

    @keyframes slowZoom {
        from { transform: scale(1); }
        to { transform: scale(1.15); }
    }

    .floating-accent-box {
        position: absolute;
        bottom: 40px;
        right: 40px;
        background: #fff;
        padding: 25px;
        box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
        border-top: 3px solid var(--gold);
        position: absolute; bottom: 20px; right: -20px;
        z-index: 10;
    }

    .floating-accent-box strong { 
        display: block; 
        font-size: 1.2rem; 
        color: var(--navy);
        font-weight: 900;
    }

    .floating-accent-box span { 
        font-size: 0.8rem; 
        color: #666; 
        text-transform: uppercase;
        letter-spacing: 1px;
    }



/* FADE SLIDER STYLES */
/* Container for the slider */
    .fade-slider {
        position: relative;
        width: 100%;
        aspect-ratio: 2/3; /* Keeps height consistent to prevent scroll jumps */
        overflow: hidden;
        border-radius: 8px;
    }

    /* Position images on top of each other */
    .fade-slider img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        animation: cssFadeLoop 12s infinite; /* 4s per image x 3 images */
    }

    /* Stagger the start times for each image */
    .fade-slider img:nth-child(1) { animation-delay: 0s; }
    .fade-slider img:nth-child(2) { animation-delay: 4s; }
    .fade-slider img:nth-child(3) { animation-delay: 8s; }

    @keyframes cssFadeLoop {
        0% { opacity: 0; }
        10% { opacity: 1; }  /* Fade In */
        33% { opacity: 1; }  /* Stay Visible */
        43% { opacity: 0; }  /* Fade Out */
        100% { opacity: 0; }
    }

/* MAIN SPLIT LAYOUT */
    .inquiry-section {
        padding: 120px 0;
    }

    .main-split {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 100px;
        align-items: start;
    }

    /* FORM STYLING */
    .form-heading h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 10px; }
    .form-heading p { color: #888; margin-bottom: 40px; font-size: 0.9rem; }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .field.full-width { grid-column: span 2; }

    .field label {
        display: block;
        font-weight: 900;
        font-size: 0.75rem;
        letter-spacing: 1px;
        margin-bottom: 10px;
        color: var(--navy);
        text-transform: uppercase;
    }

    .field input, .field select, .field textarea {
        width: 100%;
        padding: 18px;
        border: 1px solid #eee;
        background: var(--off-white);
        font-family: inherit;
        font-size: 1rem;
        transition: 0.3s;
    }

    .field input:focus, .field textarea:focus {
        outline: none;
        border-color: var(--gold);
        background: #fff;
        box-shadow: 10px 10px 0px rgba(197, 139, 67, 0.05);
    }

    .submit-action-btn {
        margin-top: 40px;
        background: var(--navy);
        color: #fff;
        border: none;
        padding: 22px 60px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 3px;
        cursor: pointer;
        transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        -webkit-transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        -moz-transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        -ms-transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        -o-transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .submit-action-btn:hover {
        background: var(--gold);
        transform: translate(-5px, -5px);
        box-shadow: 10px 10px 0px var(--navy);
    }

    /* SIDE INFO */
    .info-group { margin-bottom: 40px; }
    .info-group h4 { font-size: 0.8rem; letter-spacing: 2px; color: var(--gold); margin-bottom: 10px; }
    .info-group p, .info-group a { font-size: 1.1rem; color: var(--navy); font-weight: 700; text-decoration: none; }

    .embedded-map {
        height: 350px;
        border: 1px solid #eee;
        filter: grayscale(1) contrast(1.2);
        -webkit-filter: grayscale(1);
    }

    .embedded-map iframe {
        width: 100%; height: 100%; border: 0;
        pointer-events: none; /* Disables interaction by default */
        transition: 0.3s;
    }

    .embedded-map.active iframe {
        pointer-events: auto; /* Re-enables interaction when clicked */
    }

/* Styling for the clickable address in the contact section */
    .contact-map-link {
        color: white; /* Matches your header text color */
        text-decoration: none;
        transition: opacity 0.3s ease;
        display: inline-flex;
        align-items: center;
    }

    .contact-map-link:hover {
        opacity: 0.8;
        text-decoration: underline; /* Optional: adds visual cue on hover */
    }

    /* Ensure the icon next to the link stays aligned */
    .q-item i {
        margin-right: 10px;
    }


/* MOBILE RESPONSIVE */
    @media (max-width: 1024px) {
        .header-split { min-height: auto; flex-direction: column; }
        .header-text-block { 
            clip-path: none; 
            padding: 80px 5%; 
            text-align: center;
            align-items: center;
        }
        .split-title { text-align: center; }
        .header-visual-block { 
            margin-left: 0; 
            height: 400px; 
        }    
        .main-split { 
            grid-template-columns: 1fr; 
            gap: 80px; 
        }
        .form-grid { grid-template-columns: 1fr; }
        .field.full-width { grid-column: span 1; }
        .floating-accent-box {
            bottom: 20px;
            right: 20px;
            padding: 20px;
        }
    }

    @media (max-width: 600px) {
        .form-grid { grid-template-columns: 1fr; }
        .field.full-width { grid-column: span 1; }
        .quick-access-icons { justify-content: center; }

        .inquiry-section {
            padding: 60px 0; /* was 120px 0 everywhere, untouched by either breakpoint */
        }

        .submit-action-btn {
            width: 100%;
            padding: 18px 30px; /* was 22px 60px, oversized relative to a small screen */
        }

        .header-text-block {
            padding: 60px 6%; /* was 80px 5% from the 1024px breakpoint, tighten further */
        }
    }
