body.touch-page {
    color: #ffffff;
    background-color: #060b1f;
    background-image:
        linear-gradient(rgba(5, 0, 40, 0.64), rgba(5, 0, 40, 0.68)),
        url('Images/Get in Touch background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.logo a {
    display: inline-flex;
    align-items: center;
}

.nav-menu a.active-page {
    background: linear-gradient(to right, #393a59 50%, #393a59 50%, #9cc53b 50%, #9cc53b 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    padding: 10px 20px;
    border-radius: 4px;
    color: white !important;
}

.nav-menu a.active-page::after {
    display: none;
}

.mobile-primary-link.active-page {
    background: linear-gradient(135deg, #393a59, #9cc53b);
    border-color: transparent;
    color: #ffffff;
}

.touch-main {
    width: 95%;
    max-width: 1240px;
    margin: 32px auto 70px;
    position: relative;
    z-index: 1;
}

.touch-hero-section {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 26px;
    align-items: start;
}

.touch-hero-copy {
    padding: 18px 6px 18px 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

.touch-form-panel {
    position: relative;
    overflow: hidden;
    padding: 34px 28px;
    border-radius: 26px;
    background: rgba(28, 29, 57, 0.96);
    border: 1px solid rgba(4, 170, 201, 0.2);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    isolation: isolate;
}


.touch-form-header,
.touch-form {
    position: relative;
    z-index: 1;
}

.touch-subtitle {
    max-width: 620px;
}

.touch-eyebrow,
.touch-panel-tag {
    display: inline-block;
    color: #04aac9;
    font-family: 'Poppins Light';
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.touch-title,
.touch-form-header h2 {
    margin: 0 0 14px;
    font-family: 'Poppins Bold';
    line-height: 1.18;
    color: #ffffff;
    animation: touchFadeIn 1.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.touch-title {
    font-size: clamp(34px, 5vw, 54px);
}

.touch-form-header h2 {
    font-size: clamp(28px, 4vw, 38px);
}

.touch-subtitle,
.touch-form-header p,
.touch-info-card p,
.touch-form-note {
    margin: 0;
    font-family: 'Poppins Light';
    font-size: 15px;
    line-height: 1.85;
    color: #d4e0e9;
}

.touch-hero-copy > *:not(.touch-title),
.touch-form-header > *:not(h2) {
    animation: touchRevealUp 1.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.touch-hero-copy .touch-subtitle,
.touch-form-header p {
    animation-delay: 0.2s;
}

.touch-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.touch-info-card {
    position: relative;
    overflow: hidden;
    padding: 18px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.touch-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.touch-info-call {
    background: #04aac9;
}

.touch-info-visit {
    background: #5b5ea6;
}

.touch-info-hours {
    background: #9cc53b;
}

.touch-info-email {
    background: #2c315f;
}

.touch-info-hours h3,
.touch-info-hours p,
.touch-info-hours a {
    color: #10200a;
}

.touch-info-card h3 {
    margin: 0 0 8px;
    font-family: 'Poppins Bold';
    font-size: 17px;
}

.touch-info-card a {
    color: #dff9ff;
    text-decoration: none;
}

.touch-form-header {
    margin-bottom: 16px;
}

.touch-form-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 18px;
}

.touch-meta-pill {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: left;
    min-height: 56px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-family: 'Poppins Bold';
    font-size: 12px;
    letter-spacing: 0.03em;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.touch-meta-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.touch-meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

.touch-meta-icon svg {
    width: 16px;
    height: 16px;
}

.touch-meta-secure {
    background: #04aac9 !important;
    border-color: #04aac9 !important;
    color: #ffffff !important;
}

.touch-meta-fast {
    background: #5b5ea6 !important;
    border-color: #5b5ea6 !important;
    color: #ffffff !important;
}

.touch-meta-server {
    background: #9cc53b !important;
    border-color: #9cc53b !important;
    color: #10200a !important;
}

.touch-meta-secure .touch-meta-icon,
.touch-meta-fast .touch-meta-icon {
    background: rgba(255, 255, 255, 0.22);
}

.touch-meta-server .touch-meta-icon {
    background: rgba(16, 32, 10, 0.14);
}

.touch-form {
    display: grid;
    gap: 18px;
}

.touch-form-shell {
    display: grid;
    gap: 16px;
}

.touch-form-section {
    display: grid;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(4, 170, 201, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.touch-form-section-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.touch-form-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #04aac9;
    color: #ffffff;
    font-family: 'Poppins Bold';
    font-size: 12px;
    flex-shrink: 0;
}

.touch-form-section-head h3 {
    margin: 0 0 4px;
    font-family: 'Poppins Bold';
    font-size: 18px;
    color: #ffffff;
}

.touch-form-section-head p {
    margin: 0;
    color: #d4e0e9;
    font-size: 13px;
    line-height: 1.6;
}

.touch-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.touch-field {
    display: grid;
    gap: 8px;
}

.touch-field span {
    font-family: 'Poppins Bold';
    font-size: 13px;
    color: #f6fbff;
}

.touch-field input,
.touch-field select,
.touch-field textarea {
    width: 100%;
    border: 1px solid rgba(151, 167, 196, 0.16);
    border-radius: 12px;
    padding: 13px 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-family: 'Poppins Light';
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.touch-field input:hover,
.touch-field select:hover,
.touch-field textarea:hover {
    border-color: rgba(4, 170, 201, 0.24);
}

.touch-field input:focus,
.touch-field select:focus,
.touch-field textarea:focus {
    border-color: rgba(4, 170, 201, 0.72);
    box-shadow: 0 0 0 3px rgba(4, 170, 201, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    background: rgba(4, 170, 201, 0.08);
    transform: translateY(-1px);
}

.touch-field option {
    color: #1c1d39;
}

.touch-field-full {
    grid-column: 1 / -1;
}

.touch-field textarea {
    min-height: 150px;
    resize: vertical;
}

.touch-form-actions {
    display: grid;
    grid-template-columns: auto minmax(240px, 1fr);
    align-items: center;
    gap: 12px 14px;
}

.touch-success-message {
    margin: 0;
    min-height: 24px;
    padding: 10px 14px;
    border-radius: 12px;
    font-family: 'Poppins Bold';
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.touch-success-message[hidden] {
    display: none !important;
}

.touch-success-message.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.touch-success-message.is-success {
    color: #f4ffe9;
    background: linear-gradient(135deg, rgba(156, 197, 59, 0.2), rgba(4, 170, 201, 0.12));
    border: 1px solid rgba(156, 197, 59, 0.45);
}

.touch-success-message.is-info {
    color: #eaf9ff;
    background: linear-gradient(135deg, rgba(4, 170, 201, 0.18), rgba(28, 29, 57, 0.3));
    border: 1px solid rgba(4, 170, 201, 0.4);
}

.touch-success-message.is-error {
    color: #fff1f1;
    background: linear-gradient(135deg, rgba(204, 69, 69, 0.26), rgba(28, 29, 57, 0.3));
    border: 1px solid rgba(255, 134, 134, 0.45);
}

.touch-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    padding: 14px 30px;
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Poppins Bold';
    letter-spacing: 0.02em;
    cursor: pointer;
    background: #04aac9;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 14px 30px rgba(4, 170, 201, 0.28);
}

.touch-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #9cc53b;
    transition: left 0.3s ease;
    z-index: -1;
}

.touch-submit-btn:hover::before {
    left: 0;
}

.touch-submit-btn:hover {
    transform: translateY(-2px);
}

.touch-submit-btn:disabled {
    cursor: wait;
    opacity: 0.82;
    transform: none;
    box-shadow: 0 10px 22px rgba(4, 170, 201, 0.2);
}


.touch-hero-copy,
.touch-info-card,
.touch-form-panel {
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s ease, filter 0.9s ease, box-shadow 0.35s ease;
    will-change: transform, opacity, filter;
}

.touch-form-panel:hover {
    box-shadow: 0 34px 78px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@keyframes touchFadeIn {
    from {
        opacity: 0;
        filter: blur(4px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes touchRevealUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0);
    }
}

.touch-hero-copy.service-reveal-init,
.touch-info-card.service-reveal-init,
.touch-form-panel.service-reveal-init {
    opacity: 0;
    filter: blur(4px);
    transform: translate3d(0, 32px, 0) scale(0.985);
}

.touch-hero-copy.service-reveal-visible,
.touch-info-card.service-reveal-visible,
.touch-form-panel.service-reveal-visible {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 980px) {
    .touch-hero-section,
    .touch-form-grid,
    .touch-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .touch-main {
        width: 98%;
        margin-top: 20px;
    }

    .touch-hero-copy {
        padding: 8px 0 0;
    }

    .touch-form-panel {
        padding: 24px 18px;
    }

    .touch-form-section {
        padding: 16px;
    }

    .touch-form-section-head {
        align-items: center;
    }

    .touch-form-actions {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .touch-submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .touch-main {
        width: 100%;
    }

    .touch-title {
        font-size: 30px;
    }
}
