/*==========================================
INNER PAGES STYLESHEET
(Extends style.css — uses the same design
tokens: --blue #1f6bff / --dark #071f52 /
--dark2 #0b2f78. Load AFTER style.css and
responsive.css)
==========================================*/

/*==========================
PAGE HEADER / BREADCRUMB
==========================*/

.page-header {
    position: relative;
    padding: 210px 0 110px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(160deg,#071f52,#0b2f78 60%,#071f52);
}

.page-header::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle,#266cff40,transparent);
    top: -380px;
    left: -150px;
}

.page-header::after {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle,#4aa8ff30,transparent);
    bottom: -320px;
    right: -120px;
}

.page-header .container {
    position: relative;
    z-index: 3;
}

.page-header span {
    display: inline-block;
    padding: 10px 22px;
    background: #0f3b96;
    border-radius: 40px;
    font-size: 14px;
    letter-spacing: 2px;
    color: #9fc2ff;
    margin-bottom: 22px;
}

.page-header h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #9fb4dd;
    font-size: 15px;
}

.breadcrumb a {
    color: #9fb4dd;
    transition: .3s;
}

.breadcrumb a:hover {
    color: #53a6ff;
}

.breadcrumb i {
    font-size: 11px;
    color: #4a6aa8;
}

.breadcrumb .current {
    color: #53a6ff;
}

.page-header-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

/*==========================
GENERIC SECTION SPACING
==========================*/

.page-section {
    padding: 120px 0;
}

.page-section.alt {
    background: #0a2a68;
}

/*==========================
CONTACT PAGE
==========================*/

.contact-section {
    padding: 120px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 50px;
    align-items: start;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    transition: .35s;
}

.info-card:hover {
    background: #0b2f78;
    transform: translateY(-6px);
}

.info-card i {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: linear-gradient(135deg,#2d80ff,#005eff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.info-card p {
    color: #cfd6ea;
    line-height: 1.9;
    font-size: 15px;
}

.info-card p span {
    display: block;
    direction: ltr;
    text-align: right;
}

.contact-socials {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.contact-form {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 25px;
    padding: 50px;
}

.contact-form h2 {
    font-size: 30px;
    margin-bottom: 12px;
}

.contact-form>p {
    color: #cfd6ea;
    margin-bottom: 35px;
    line-height: 1.9;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #cfd6ea;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: .3s;
}

.form-group select option {
    background: #0b2f78;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #2b8dff;
    background: rgba(255,255,255,.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button.btn {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.map-box {
    margin-top: 60px;
    height: 420px;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(92%) contrast(85%);
}

/*==========================
PROCESS / STEPS (Services page)
==========================*/

.process {
    padding: 0 0 140px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    counter-reset: step;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 40px 25px;
}

.process-step::before {
    content: "";
    position: absolute;
    top: 45px;
    left: -50%;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(to left,#2b8dff 0 8px,transparent 8px 16px);
    z-index: 1;
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    position: relative;
    z-index: 2;
    width: 86px;
    height: 86px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg,#2d80ff,#005eff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    font-family: "Peyda", sans-serif;
    box-shadow: 0 15px 35px rgba(0,98,255,.35);
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.process-step p {
    color: #cfd6ea;
    line-height: 1.9;
    font-size: 15px;
}

/*==========================
VALUES / MISSION (About page)
==========================*/

.values-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}

.value-card {
    position: relative;
    padding: 45px;
    background: rgba(255,255,255,.04);
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
    transition: .4s;
}

.value-card:hover {
    transform: translateY(-15px);
    background: #0b2f78;
    box-shadow: 0 25px 60px rgba(0,0,0,.3);
}

.value-card i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg,#2d80ff,#005eff);
    font-size: 28px;
    margin-bottom: 28px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.value-card p {
    color: #d6d6d6;
    line-height: 1.9;
}

/*==========================
TEAM (About page)
==========================*/

.team-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    overflow: hidden;
    transition: .4s;
}

.team-card:hover {
    transform: translateY(-10px);
    background: #0b2f78;
}

.team-photo {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.team-card:hover .team-photo img {
    transform: scale(1.1);
}

.team-info {
    padding: 26px 20px;
}

.team-info h3 {
    font-size: 19px;
    margin-bottom: 6px;
}

.team-info span {
    display: block;
    color: #53a6ff;
    font-size: 14px;
    margin-bottom: 16px;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfd6ea;
    font-size: 14px;
    transition: .3s;
}

.team-socials a:hover {
    background: #2b8dff;
    color: #fff;
}

/*==========================
PRODUCT PAGE SORT/META
==========================*/

.results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    color: #cfd6ea;
    font-size: 15px;
}

/*==========================
RESPONSIVE
==========================*/

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2,1fr);
    }

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

    .process-step::before {
        display: none;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 170px 0 90px;
    }

    .page-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}
