/* ════════════════════════════════════════
   SHARED UTILITIES
════════════════════════════════════════ */
.section-tag {
    display: inline-block;
    background: rgba(0, 147, 255, 0.1);
    color: #0093ff;
    font-family: 'nexa', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-left: 3px solid #0093ff;
    margin-bottom: 4px;
}

.section-title {
    font-family: 'TTFirsNeue', sans-serif;
    font-weight: 800;
    font-size: 38px;
    color: #0d1b2a;
    margin: 0;
    line-height: 1.2;
}

.section-title span {
    color: #0093ff;
}

.section-line {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #0093ff, transparent);
    border-radius: 2px;
    margin: 10px 0;
}

.section-text {
    font-family: 'nexa', sans-serif;
    font-size: 15px;
    line-height: 1.85;
    color: #5a6a82;
    margin: 0;
}

.section-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #21365c;
    color: #fff;
    font-family: 'TTFirsNeue', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 0;
    letter-spacing: 0.4px;
    transition: background 0.2s ease;
    margin-top: 8px;
}

.section-btn:hover {
    background-color: #0093ff;
}

/* ════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════ */
.about-section {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 100px 80px;
    background: #fff;
}

/* Images side */
.about-section__images {
    flex: 1;
    position: relative;
    display: flex;
    gap: 16px;
    align-items: flex-end;
    min-height: 480px;
}

.about-img__main {
    flex: 1.4;
    position: relative;
    z-index: 2;
}

.about-img__main img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-img__stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 40px;
}

.about-img__stack img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Floating badge */
.about-img__badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: #0093ff;
    color: #fff;
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0,147,255,0.35);
    z-index: 3;
}

.about-img__badge-num {
    font-family: 'TTFirsNeue', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1;
}

.about-img__badge-label {
    font-family: 'nexa', sans-serif;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Content side */
.about-section__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Stats row */
.about-section__stats {
    display: flex;
    gap: 20px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 100px;
    background: #f4f8ff;
    border-top: 3px solid #0093ff;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-card__num {
    font-family: 'TTFirsNeue', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: #0093ff;
}

.stat-card__label {
    font-family: 'nexa', sans-serif;
    font-size: 12px;
    color: #5a6a82;
    text-align: center;
}

/* ════════════════════════════════════════
   SERVICES SECTION
════════════════════════════════════════ */
.services-section {
    padding: 100px 80px;
    background: #f4f8ff;
    background-image:
        linear-gradient(rgba(0,147,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,147,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.services-section__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 60px;
}

.services-section__header .section-line {
    margin: 0;
}

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

/* Card */
.service-card {
    background: #fff;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-bottom: 3px solid transparent;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #0093ff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,147,255,0.12);
    border-color: #0093ff;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(0,147,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #0093ff;
    transition: background 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-card__icon {
    background: #0093ff;
    color: #fff;
}

.service-card__title {
    font-family: 'TTFirsNeue', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #0d1b2a;
    margin: 0;
}

.service-card__text {
    font-family: 'nexa', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #5a6a82;
    margin: 0;
    flex: 1;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0093ff;
    font-family: 'TTFirsNeue', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: gap 0.2s ease;
}

.service-card__link:hover {
    gap: 10px;
}

/* ════════════════════════════════════════
   FAQS SECTION
════════════════════════════════════════ */
.faqs-section {
    padding: 100px 80px;
    background: #fff;
}

.faqs-section__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 56px;
}

.faqs-section__header .section-line {
    margin: 0;
}

.faqs-wrapper {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1.5px solid #e4eaf4;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item--open {
    border-color: #0093ff;
}

.faq-item__question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'TTFirsNeue', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #0d1b2a;
    text-align: left;
    gap: 16px;
    transition: background 0.2s ease;
}

.faq-item--open .faq-item__question {
    background: rgba(0,147,255,0.05);
    color: #0093ff;
}

.faq-item__icon {
    font-size: 22px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #0093ff;
}

.faq-item--open .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item--open .faq-item__answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-item__answer p {
    font-family: 'nexa', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #5a6a82;
    margin: 0;
}

/* ════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════ */
.contact-section {
    padding: 100px 80px;
    background: #f4f8ff;
    background-image:
        linear-gradient(rgba(0,147,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,147,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.contact-section__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 60px;
}

.contact-section__header .section-line {
    margin: 0;
}

.contact-section__body {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Info cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 300px;
}

.contact-info__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.contact-info__card:hover {
    transform: translateX(6px);
}

.contact-info__icon {
    width: 46px;
    height: 46px;
    background: rgba(0,147,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0093ff;
    flex-shrink: 0;
}

.contact-info__card h4 {
    font-family: 'TTFirsNeue', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #0d1b2a;
    margin: 0 0 4px;
}

.contact-info__card p {
    font-family: 'nexa', sans-serif;
    font-size: 13px;
    color: #5a6a82;
    margin: 0;
    line-height: 1.6;
}

/* Form */
.contact-form-wrap {
    flex: 1;
    background: #fff;
    padding: 48px 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}

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

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form__input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #dde5f0;
    border-radius: 0;
    background: #f7f9fc;
    font-family: 'nexa', sans-serif;
    font-size: 14px;
    color: #0d1b2a;
    outline: none;
    transition: border-color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.contact-form__input::placeholder {
    color: #9aa4b8;
}

.contact-form__input:focus {
    border-color: #0093ff;
    background: #fff;
}

.contact-form__select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239aa4b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-color: #f7f9fc;
    padding-right: 40px;
}

.contact-form__textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: #21365c;
    color: #fff;
    font-family: 'TTFirsNeue', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 4px;
}

.contact-form__submit:hover {
    background: #0093ff;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .about-section,
    .services-section,
    .faqs-section,
    .contact-section {
        padding: 70px 40px;
    }

    .about-section {
        gap: 40px;
    }

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

    .contact-section__body {
        flex-direction: column;
    }

    .contact-info {
        flex: none;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        padding: 60px 20px;
    }

    .about-section__images {
        min-height: auto;
        width: 100%;
    }

    .about-img__main img {
        height: 300px;
    }

    .about-img__stack img {
        height: 140px;
    }

    .services-section,
    .faqs-section,
    .contact-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 30px 20px;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }
}

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

    .about-section__stats {
        flex-direction: column;
    }

    .section-title {
        font-size: 24px;
    }
}

/* ════════════════════════════════════════
   SERVICE CTA BANNER
════════════════════════════════════════ */
.svc-cta {
    background: linear-gradient(135deg, #21365c 0%, #0d1b2a 100%);
    padding: 70px 80px;
}

.svc-cta__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.svc-cta__text h2 {
    font-family: 'TTFirsNeue', sans-serif;
    font-weight: 800;
    font-size: 34px;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.2;
}

.svc-cta__text h2 span { color: #0093ff; }

.svc-cta__text p {
    font-family: 'nexa', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    margin: 0;
}

.svc-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #0093ff;
    color: #fff;
    font-family: 'TTFirsNeue', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s, transform .2s;
}

.svc-cta__btn:hover { background: #0078d4; transform: translateY(-2px); }
.svc-cta__btn i { font-size: 20px; }

@media (max-width: 768px) {
    .svc-cta { padding: 50px 24px; }
    .svc-cta__inner { flex-direction: column; text-align: center; }
    .svc-cta__text h2 { font-size: 26px; }
}
