body {
    font-family: "Manrope", "Segoe UI", sans-serif;
}

.contact-hero {
    min-height: 420px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, rgba(8, 24, 48, 0.88) 0%, rgba(14, 45, 83, 0.82) 100%),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1400&h=700&fit=crop') center/cover;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(227, 178, 60, 0.14), transparent 45%);
}

/* ---------- Hero decorative graphics ---------- */
.hero-decor {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.55;
    animation: heroBlobFloat 9s ease-in-out infinite;
}

.blob-1 {
    top: 12%;
    left: 8%;
    width: 14px;
    height: 14px;
    background: #e3b23c;
    animation-delay: 0s;
}

.blob-2 {
    top: 65%;
    left: 15%;
    width: 9px;
    height: 9px;
    background: #f4d37a;
    animation-delay: 1.4s;
    animation-duration: 7s;
}

.blob-3 {
    top: 30%;
    right: 10%;
    width: 11px;
    height: 11px;
    background: #e3b23c;
    animation-delay: 2.6s;
    animation-duration: 8s;
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(227, 178, 60, 0.25);
    animation: heroRingSpin 22s linear infinite;
}

.ring-1 {
    width: 260px;
    height: 260px;
    top: -80px;
    right: -60px;
}

.ring-2 {
    width: 160px;
    height: 160px;
    bottom: -50px;
    left: -40px;
    animation-direction: reverse;
    animation-duration: 16s;
}

@keyframes heroBlobFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
    50% { transform: translateY(-22px) translateX(10px); opacity: 0.9; }
}

@keyframes heroRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(46, 204, 113, 0.14);
    border: 1px solid rgba(46, 204, 113, 0.4);
    color: #7be6a5;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #37d67a;
    box-shadow: 0 0 0 0 rgba(55, 214, 122, 0.6);
    animation: statusPulse 1.8s ease-out infinite;
}

@keyframes statusPulse {
    0% { box-shadow: 0 0 0 0 rgba(55, 214, 122, 0.55); }
    70% { box-shadow: 0 0 0 8px rgba(55, 214, 122, 0); }
    100% { box-shadow: 0 0 0 0 rgba(55, 214, 122, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-blob, .hero-ring, .status-dot {
        animation: none;
    }
}

.contact-hero-box {
    max-width: 820px;
    margin: 0 auto;
    background: rgba(8, 24, 48, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 38px 32px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-hero-box h1 {
    color: #ffffff;
    margin-bottom: 14px;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.3px;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
}

.contact-hero-box p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.hero-eyebrow {
    color: #e3b23c;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    margin-bottom: 10px;
}

.hero-metrics {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 12px 10px;
}

.metric-card {
    transition: transform 0.3s ease, background 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
}

.metric-icon {
    display: block;
    color: #e3b23c;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.metric-icon-pulse {
    animation: metricPulse 1.6s ease-in-out infinite;
}

@keyframes metricPulse {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.18); opacity: 1; }
}

.metric-card strong {
    display: block;
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 800;
}

.metric-card span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
}

@media (prefers-reduced-motion: reduce) {
    .metric-icon-pulse { animation: none; }
}

.contact-page-section {
    background: linear-gradient(180deg, #0b1f3a 0%, #10284a 100%);
    padding-top: 70px;
}

.contact-page-intro {
    max-width: 950px;
    margin: 0 auto 44px;
    text-align: center;
}

.intro-eyebrow {
    color: #e3b23c;
    font-size: 0.82rem;
    letter-spacing: 1.4px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-page-intro h2 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 3.6vw, 3rem);
    color: #ffffff;
    font-family: "Playfair Display", Georgia, serif;
}

.contact-page-intro p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.08rem;
    line-height: 1.85;
    max-width: 820px;
    margin: 0 auto;
}

.contact-highlights {
    margin-top: 24px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-highlights span {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(227, 178, 60, 0.14);
    border: 1px solid rgba(227, 178, 60, 0.35);
    color: #f5d78a;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-process {
    max-width: 1150px;
    margin: 0 auto 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.process-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 22px 18px 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
    border-color: rgba(227, 178, 60, 0.4);
}

.process-icon-wrap {
    position: relative;
    display: inline-flex;
    margin-bottom: 14px;
}

.process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e3b23c 0%, #f4d37a 100%);
    color: #0b1f3a;
    font-size: 1.05rem;
    box-shadow: 0 8px 18px rgba(227, 178, 60, 0.28);
}

.process-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0b1f3a;
    border: 2px solid #10284a;
    color: #f5d78a;
    font-size: 0.68rem;
    font-weight: 800;
}

.process-card:not(:last-child)::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 33px;
    right: -22px;
    color: rgba(227, 178, 60, 0.55);
    font-size: 0.9rem;
    animation: connectorNudge 1.8s ease-in-out infinite;
    z-index: 1;
}

@keyframes connectorNudge {
    0%, 100% { transform: translateX(0); opacity: 0.55; }
    50% { transform: translateX(4px); opacity: 1; }
}

.process-card h3 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 7px;
}

.process-card p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    line-height: 1.65;
}

.contact-page-section .contact-container {
    position: relative;
    align-items: stretch;
    gap: 28px;
    max-width: 1150px;
}

.contact-page-section .contact-container::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 50%;
    width: 420px;
    height: 260px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(227, 178, 60, 0.22), transparent 70%);
    filter: blur(10px);
    pointer-events: none;
    z-index: 0;
}

.contact-page-section form,
.contact-page-section .contact-info {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(9, 31, 58, 0.08);
}

.form-title,
.info-title {
    color: #0b1f3a;
    margin: 0 0 6px;
    font-size: 1.3rem;
    font-weight: 800;
}

.form-subtitle,
.info-subtitle {
    margin: 0 0 14px;
    color: #5a6678;
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
}

.form-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(227, 178, 60, 0.12);
    border: 1px solid rgba(227, 178, 60, 0.3);
    color: #8a6a1a;
    font-size: 0.76rem;
    font-weight: 700;
}

.form-trust-row i {
    color: #d4a12f;
    font-size: 0.75rem;
}

.contact-page-section form .field-wrap {
    position: relative;
}

.contact-page-section form .field-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: #9aa8bd;
    font-size: 0.95rem;
    transition: color 0.25s ease;
    pointer-events: none;
}

.contact-page-section form .field-icon-top {
    top: 22px;
    transform: none;
}

.contact-page-section form .field-wrap:focus-within .field-icon {
    color: #d4a12f;
}

.contact-page-section form input,
.contact-page-section form select,
.contact-page-section form textarea {
    width: 100%;
    background: #f7f9fc;
    border: 1px solid #dae2ef;
    padding-left: 44px;
}

.contact-page-section form input:focus,
.contact-page-section form select:focus,
.contact-page-section form textarea:focus {
    box-shadow: 0 0 0 4px rgba(227, 178, 60, 0.16);
    border-color: #e3b23c;
}

.contact-page-section form .field-wrap-textarea .field-icon {
    top: 24px;
}

.contact-page-section form .send-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(120deg, #0b1f3a 0%, #163e6f 100%);
    color: #ffffff;
    box-shadow: 0 10px 26px rgba(11, 31, 58, 0.32);
    letter-spacing: 0.7px;
    position: relative;
    overflow: hidden;
    animation: sendBtnGlow 2.6s ease-in-out infinite;
}

.contact-page-section form .send-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.contact-page-section form .send-btn:hover::after {
    left: 150%;
}

.contact-page-section form .send-btn-icon {
    transition: transform 0.3s ease;
}

.contact-page-section form .send-btn:hover .send-btn-icon {
    transform: translateX(4px) translateY(-2px);
}

.contact-page-section form .send-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(120deg, #173964 0%, #1f4e86 100%);
}

@keyframes sendBtnGlow {
    0%, 100% { box-shadow: 0 10px 26px rgba(11, 31, 58, 0.32); }
    50% { box-shadow: 0 10px 30px rgba(227, 178, 60, 0.38); }
}

@media (prefers-reduced-motion: reduce) {
    .contact-page-section form .send-btn { animation: none; }
}

.contact-page-section .contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(170deg, #ffffff 0%, #f4f8ff 100%);
}

.premium-contact-card {
    position: relative;
    overflow: hidden;
    gap: 12px;
}

.premium-contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0b1f3a 0%, #2b5f96 65%, #e3b23c 100%);
}

.info-kicker {
    margin: 6px 0 0;
    color: #2b5f96;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.contact-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 12px;
    border: 1px solid #e3eaf6;
    border-radius: 12px;
    text-decoration: none;
    background: #ffffff;
    transition: all 0.25s ease;
}

.contact-row:hover {
    border-color: #bfd0ea;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(17, 43, 76, 0.12);
}

.icon-tag {
    min-width: 46px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: #ffffff;
    background: linear-gradient(120deg, #0b1f3a 0%, #2b5f96 100%);
}

.contact-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.contact-copy strong {
    color: #0b1f3a;
    font-size: 1.03rem;
    line-height: 1.2;
}

.contact-copy small {
    color: #4b596e;
    font-size: 0.95rem;
    line-height: 1.45;
    white-space: normal;
    word-break: break-word;
}

.row-arrow {
    color: #7e8da6;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.contact-page-section .contact-item h4 {
    color: #0b1f3a;
}

.contact-page-section .contact-item p,
.contact-page-section .contact-item a {
    color: #364152;
}

.contact-page-section .contact-item .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(120deg, #0b1f3a 0%, #2b5f96 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 300px;
    }

    .contact-hero-box {
        margin: 0 14px;
        padding: 26px 18px;
    }

    .contact-page-section form,
    .contact-page-section .contact-info {
        padding: 20px;
    }

    .hero-metrics,
    .contact-process {
        grid-template-columns: 1fr;
    }

    .process-card:not(:last-child)::after {
        content: none;
    }

    .ring-1, .ring-2 {
        display: none;
    }

    .contact-page-section .contact-container::before {
        width: 260px;
        height: 160px;
    }
}
