.contact-touch-section {
    position: relative;
    padding: 110px 0 90px;
    background: radial-gradient(circle at 12% 20%, rgba(101, 209, 255, 0.12), transparent 55%), radial-gradient(circle at 85% 10%, rgba(255, 214, 153, 0.18), transparent 45%), linear-gradient(135deg, #010a34 0%, #022fa2 65%, #041b5f 100%);
    color: #f5f8ff;
    overflow: hidden;
}

.contact-touch-section .container {
    position: relative;
    z-index: 3;
}

.contact-touch-row {
    row-gap: 32px;
}

.contact-touch-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.25;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%), linear-gradient(300deg, rgba(255, 255, 255, 0.04) 40%, transparent 40%);
    background-size: 40px 40px;
    z-index: 1;
}

.contact-touch-orb {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, rgba(2, 47, 162, 0.0) 70%);
    opacity: 0.45;
    filter: blur(0px);
    z-index: 1;
    animation: floatOrbit 16s ease-in-out infinite alternate;
}

.contact-touch-orb--left {
    bottom: -120px;
    left: -140px;
}

.contact-touch-orb--right {
    top: -80px;
    right: -100px;
    animation-delay: 4s;
}

.contact-touch-header {
    margin-bottom: 28px;
    max-width: 640px;
}

.contact-touch-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8cd6ff;
    background: rgba(255, 255, 255, 0.12);
}

.contact-touch-label::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #66e4ff;
    box-shadow: 0 0 12px rgba(102, 228, 255, 0.9);
}

.contact-touch-label--light {
    color: #022fa2;
    background: rgba(2, 47, 162, 0.12);
    letter-spacing: 0.12em;
}

.contact-touch-label--light::before {
    background: #022fa2;
    box-shadow: none;
}

.contact-touch-header h2 {
    color: #fff;
    font-size: 38px;
    line-height: 1.2;
    margin: 18px 0 12px;
}

.contact-touch-header p {
    color: rgba(245, 248, 255, 0.8);
    margin-bottom: 18px;
}

.contact-touch-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-touch-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #d8e6ff;
    font-size: 13px;
    line-height: 1.3;
}

.contact-touch-badge__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6fd3ff;
    box-shadow: 0 0 10px rgba(111, 211, 255, 0.8);
    animation: pulseDot 2s infinite;
}

.contact-touch-badge__dot--alt {
    background: #ffdd9b;
    box-shadow: 0 0 10px rgba(255, 221, 155, 0.8);
    animation-delay: 0.6s;
}

.contact-touch-card-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    z-index: 2;
}

.contact-touch-card {
    position: relative;
    border-radius: 28px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(1, 9, 39, 0.45);
    color: #fff;
    min-height: 240px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    backdrop-filter: blur(10px);
}

.contact-touch-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.contact-touch-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 35px 80px rgba(1, 9, 39, 0.6);
}

.contact-touch-card:hover::after {
    opacity: 1;
}

.contact-touch-card__icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    font-size: 24px;
    color: #fff;
}

.contact-touch-card__icon--accent {
    background: linear-gradient(135deg, #ff9f6b, #ff6f91);
}

.contact-touch-card__icon--call {
    background: linear-gradient(135deg, #66e4ff, #0e78ff);
}

.contact-touch-card__body h3 {
    font-size: 21px;
    margin-bottom: 6px;
    color: #fff;
}

.contact-touch-card__body p {
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.contact-touch-card__meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #dfe9ff;
    font-size: 14px;
    line-height: 1.5;
}

.contact-touch-card__cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-touch-card__note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.contact-touch-card--wide {
    grid-column: span 2;
}

.contact-touch-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #fff;
    text-transform: none;
}

.contact-touch-link i {
    transition: transform 0.3s ease;
}

.contact-touch-link:hover i {
    transform: translateX(4px);
}

.contact-touch-form-wrapper {
    position: relative;
    background: #ffffff;
    color: #1c1f3d;
    border-radius: 32px;
    padding: 40px 36px;
    box-shadow: 0 45px 80px rgba(2, 47, 162, 0.2);
}

.contact-touch-form__header h3 {
    font-size: 26px;
    margin: 12px 0 8px;
    color: #0f1f56;
}

.contact-touch-form__header p {
    color: #4f5675;
    margin-bottom: 18px;
}

.contact-touch-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-touch-form__group {
    display: flex;
    gap: 18px;
}

.contact-touch-form__group--split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-touch-input label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: #0f1f56;
    margin-bottom: 6px;
}

.contact-touch-input input,
.contact-touch-input select,
.contact-touch-input textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(2, 47, 162, 0.18);
    background: #f8faff;
    padding: 14px 16px;
    font-size: 15px;
    color: #1c1f3d;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-touch-input textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-touch-input select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #022fa2 50%), linear-gradient(135deg, #022fa2 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 15px) calc(50% - 3px);
    background-size: 6px 6px;
    background-repeat: no-repeat;
}

.contact-touch-input input:focus,
.contact-touch-input select:focus,
.contact-touch-input textarea:focus {
    outline: none;
    border-color: #022fa2;
    box-shadow: 0 0 0 3px rgba(2, 47, 162, 0.15);
    background: #ffffff;
}

.contact-touch-submit {
    margin-top: 4px;
}

.contact-touch-form__status {
    font-size: 14px;
    font-weight: 500;
    color: #022fa2;
    opacity: 0;
    transition: opacity 0.25s ease, color 0.25s ease;
    min-height: 18px;
}

.contact-touch-form__status.is-visible {
    opacity: 1;
}

.contact-touch-form__status.is-error {
    color: #c3182c;
}

.contact-touch-form__note {
    font-size: 13px;
    color: #6a7393;
    margin: 0;
}

.contact-touch-section.is-rtl {
    direction: rtl;
    text-align: right;
}

.contact-touch-section.is-rtl .contact-touch-label {
    letter-spacing: 0.09em;
}

.contact-touch-section.is-rtl .contact-touch-card__meta {
    text-align: right;
}

.contact-touch-section.is-rtl .contact-touch-card--wide {
    grid-column: span 2;
}

.contact-touch-section.is-rtl .contact-touch-link {
    flex-direction: row-reverse;
}

.contact-touch-section.is-rtl .contact-touch-link i {
    transform: rotate(180deg);
}

.contact-touch-section.is-rtl .contact-touch-link:hover i {
    transform: rotate(180deg) translateX(-4px);
}

.contact-touch-section.is-rtl .contact-touch-form-wrapper {
    text-align: right;
}

.contact-touch-section.is-rtl .contact-touch-form__group--split {
    direction: rtl;
}

.contact-touch-section.is-rtl .contact-touch-input label {
    letter-spacing: 0;
}

@media (max-width: 1199px) {
    .contact-touch-section {
        padding: 90px 0 70px;
    }
}

@media (max-width: 991px) {
    .contact-touch-header h2 {
        font-size: 32px;
    }

    .contact-touch-form-wrapper {
        padding: 32px 28px;
    }

    .contact-touch-card--wide {
        grid-column: span 1;
    }
}

@media (max-width: 767px) {
    .contact-touch-section {
        padding: 70px 0 60px;
    }

    .contact-touch-form__group--split {
        grid-template-columns: 1fr;
    }

    .contact-touch-label {
        letter-spacing: 0.08em;
    }
}

@media (max-width: 575px) {
    .contact-touch-card-grid {
        grid-template-columns: 1fr;
    }

    .contact-touch-form-wrapper {
        border-radius: 24px;
    }
}

@keyframes floatOrbit {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    100% {
        transform: translate3d(40px, -20px, 0) scale(1.1);
    }
}

@keyframes pulseDot {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

