/*
Theme Name: MissionOS
Theme URI: https://example.com
Author: Your Name
Description: Custom Bootstrap 5 theme for MissionOS
Version: 1.0
Requires PHP: 8.0
Text Domain: missionos
*/

body {
    margin: 0;
}

body.page-template-page-contact-php section.hero {
    padding-bottom: 7rem;
}



/* Wrapper stays inside Bootstrap container */
.integrationheader-wrapper {
    position: relative;
    width: 100%;
}

.integrationheader {
    width: 100%;
    transition: all 0.2s ease;
}

.integrationheader.is-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    border-radius: 10px;
    z-index: 1000;
    background: var(--section-bg);
    padding: 10px 27px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.post-type-archive-integrations .hero {
    min-height: auto;
    padding-bottom: 0px;
}

.expertise-section {

    color: white;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-weight: 700;
}

/* Search Box Styles */
.search-container {
    position: relative;
    margin-right: 15px;
}

.search-input {
    width: 100%;
    padding: 8px 35px 8px 15px;
    background: var(--section-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}



/* Scrollable tabs container */
.tabs-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Make tabs take available space */
.tabs-scroll {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    flex: 1;
}

.arrow-group {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
}

.tabs-scroll::-webkit-scrollbar {
    display: none;
}

/* Tabs styling */
.expertise-tabs {
    flex-wrap: nowrap;
    margin-bottom: 0;
}

.expertise-tabs .nav-link {
    color: #aaa;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 8px;
    border-radius: 50px;
    white-space: nowrap;
    padding: 6px 20px;
    transition: all 0.3s ease;
}

.expertise-tabs .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.expertise-tabs .nav-link.active {
    background: var(--btn-color);
    color: black;

}

/* Scroll buttons */
.scroll-btn {
    background: var(--section-bg);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.scroll-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}





.category-header {
    margin-bottom: 30px;
    padding-bottom: 5px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.category-title {

    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.expertise-category .row {
    align-items: stretch;
}

/* Card Styling */
/* ===== NEW ICON CARD STYLE ===== */
.expertise-card {
    background: var(--section-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.expertise-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

/* Icon container */
.expertise-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* Text content */
.expertise-content h5 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.expertise-content p {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
}


.expertise-card img {
    transition: transform 0.6s ease;
    width: 25px;
}

.expertise-card:hover img {
    transform: scale(1.1);
}

/* Dark overlay */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transition: all 0.3s ease;
}

.expertise-card:hover .card-overlay {
    padding-bottom: 35px;
}

.card-overlay h5 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.card-description {
    font-size: 0.9rem;
    color: #ddd;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.expertise-card:hover .card-description {
    opacity: 1;
    transform: translateY(0);
    max-height: 100px;
}



@media (min-width: 767px) {
    .search-container {
        max-width: 275px;

    }

}


@media (max-width: 1399px) {
    .integrationheader.is-fixed {
        max-width: 1320px;
        /* Bootstrap xl */
    }
}

@media (max-width: 1199px) {
    .integrationheader.is-fixed {
        max-width: 1140px;
        /* Bootstrap lg */
    }
}

@media (max-width: 991px) {
    .integrationheader.is-fixed {
        max-width: 960px;
        /* Bootstrap md */
    }
}

@media (max-width: 767px) {
    .integrationheader.is-fixed {
        max-width: 720px;
        /* Bootstrap sm */
    }

    .tabs-wrapper {
        margin-top: 1.5rem;
    }
}

@media (max-width: 575px) {
    .integrationheader.is-fixed {
        max-width: 100%;
        /* mobile */
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* ================= SECTION ================= */

.quote-section {
    background: #fff;
    padding-bottom: 90px;
    color: #000;
    padding-top: 0px;
}

/* ================= LEFT ================= */

.quote-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 14px;
}

.quote-desc {
    max-width: 520px;
    font-size: 15px;
    color: #8a8a8a;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* ================= FORM ================= */

.quote-form input,
.quote-form textarea {
    width: 100%;
    border: 1.5px solid #9a9a9a;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
    outline: none;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: #b0b0b0;
    font-weight: 500;
}

.quote-form textarea {
    resize: none;
}

/* ================= BUTTON ================= */

button.quote-btn {
    width: 100%;
    border: none;
    background: #ff6a00;
    color: #fff;
    border-radius: 999px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 106, 0, 0.35);
}

/* ================= RIGHT ================= */

.quote-eyebrow {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    color: #9a9a9a;
    margin-bottom: 14px;
    font-weight: 600;
}

.quote-side-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.os-highlight {
    color: #ff6a00;
}

.quote-side-desc {
    font-size: 15px;
    color: #8a8a8a;
    max-width: 420px;
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .quote-section {
        padding: 70px 0;
    }

    .quote-side-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .quote-title {
        font-size: 28px;
    }

    .quote-desc,
    .quote-side-desc {
        font-size: 14px;
    }
}



/* ================= CTA SECTION ================= */

.cta-wrap {
    background: #fff;
    padding: 80px 20px;
}

.cta-box {

    margin: 0 auto;
    padding: 90px 30px;
    text-align: center;
    background: #fff;
    border-radius: 40px;
    position: relative;
    overflow: hidden;

    /* soft bottom glow */
    background:
        radial-gradient(ellipse at 50% 120%,
            rgba(255, 120, 0, 0.35) 0%,
            rgba(255, 120, 0, 0.18) 35%,
            rgba(255, 255, 255, 0.0) 70%),
        #ffffff;

    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* ================= TEXT ================= */

.cta-eyebrow {
    display: block;
    font-size: 22px;
    letter-spacing: 2px;
    color: #9a9a9a;
    margin-bottom: 14px;
    font-weight: 600;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
    color: #000;
}

.cta-desc {
    max-width: 560px;
    margin: 0 auto 36px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    color: #8a8a8a;
}

/* ================= BUTTON ================= */

.cta-btn {
    display: inline-block;
    background: #ff6a00;
    color: #fff;
    padding: 14px 36px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 106, 0, 0.35);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .cta-box {
        padding: 70px 25px;
        border-radius: 28px;
    }

    .cta-title {
        font-size: 30px;
    }

    .cta-desc {
        font-size: 14px;
    }
}


.contact-card.boxeffect:hover {
    cursor: default;
}

/* CARD BASE */
img.cticons {
    width: 62px;
}

.contact-card {
    background: #000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);

}



/* Icon container */
.icon-box {
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255, 120, 0, 0.6);
    background: rgba(0, 0, 0, 0.6);
}

/* Icon size */
.icon-box img {
    width: 26px;
    height: 26px;
}

/* Muted text tuning */
.contact-card .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.gradient-band-section {
    min-height: 500px;
    /* adjust as needed */
    width: 100%;

    background:
        linear-gradient(to bottom,
            #000000 0%,
            #1a0a00 12%,
            #ff5a00 22%,
            #ff8a4c 32%,
            #ffd2b8 45%,
            #fff4ec 60%,
            #ffffff 100%);

}

/* =========================
   FORM WRAPPER
========================= */
.quote-form-wrapper {
    position: relative;
    min-height: 420px;
}

/* =========================
   FORM STYLING
========================= */
.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    font-size: 15px;
    transition: all 0.25s ease;
    background: #fff;
}

.quote-form input:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: #0057ff;
    box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.12);
}

.quote-btn {
    padding: 14px 32px;
    border-radius: 999px;
    background: #0057ff;
    color: #fff;
    border: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
}

.quote-btn:hover {

    transform: translateY(-1px);
}

/* =========================
   FIELD ERRORS (IMPROVED)
========================= */
.field-error {
    color: #e53935;
    font-size: 13px;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.25s ease;
}

.field-error.show {
    opacity: 1;
    transform: translateY(0);
}

input.error,
textarea.error {
    border-color: #e53935 !important;
    animation: shake 0.25s ease;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-4px);
    }

    50% {
        transform: translateX(4px);
    }

    75% {
        transform: translateX(-4px);
    }

    100% {
        transform: translateX(0);
    }
}

/* =========================
   SUCCESS MESSAGE (CENTERED)
========================= */
.form-success-message {
    position: absolute;
    inset: 0;
    display: none;

    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 30px;
    background: #f7fbff;
    border-radius: 16px;

    font-size: 20px;
    font-weight: 500;
    color: #ff6a00;

    line-height: 1.4;
}

.field-error {
    color: red;
    font-size: 13px;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.25s ease;
}

.field-error.show {
    opacity: 1;
    transform: translateY(0);
}

input.error,
textarea.error {
    border-color: red !important;
    animation: shake 0.25s ease;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-4px);
    }

    50% {
        transform: translateX(4px);
    }

    75% {
        transform: translateX(-4px);
    }

    100% {
        transform: translateX(0);
    }
}