* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =====================================================
   Contact Page V2
===================================================== */

.contact-page-v2 {
    background: #ffffff;
    overflow: hidden;
}

.contact-page-v2-svg {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* Hero */
.contact-page-v2-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: #031522;
    overflow: hidden;
}

.contact-page-v2-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.contact-page-v2-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(3, 21, 34, 0.96), rgba(6, 31, 51, 0.86), rgba(3, 21, 34, 0.76)),
        radial-gradient(circle at 20% 22%, rgba(247, 148, 29, 0.30), transparent 34%);
    z-index: 1;
}

.contact-page-v2-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.45;
    z-index: 2;
}

.contact-page-v2-hero .container {
    position: relative;
    z-index: 3;
}

.contact-page-v2-hero-content {
    max-width: 900px;
    padding: 105px 0;
}

.contact-page-v2-hero-content > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #061f33;
    background: linear-gradient(135deg, #f7941d, #ffc400);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 22px;
}

.contact-page-v2-hero-content > span svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.contact-page-v2-hero-content h1 {
    color: #ffffff;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 950;
    line-height: 1.04;
    letter-spacing: -1.6px;
    margin-bottom: 24px;
}

.contact-page-v2-hero-content h1::after {
    content: "";
    display: block;
    width: 110px;
    height: 5px;
    border-radius: 50px;
    background: linear-gradient(90deg, #f7941d, #ffc400);
    margin-top: 24px;
}

.contact-page-v2-hero-content p {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 26px;
}

.contact-page-v2-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.74);
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    padding: 11px 16px;
    border-radius: 50px;
}

.contact-page-v2-breadcrumb a {
    color: #ffc400;
    font-weight: 900;
    text-decoration: none;
}

.contact-page-v2-breadcrumb em {
    font-style: normal;
    color: rgba(255,255,255,0.45);
}

.contact-page-v2-breadcrumb strong {
    color: #ffffff;
    font-weight: 900;
}

/* Quick Cards */
.contact-page-v2-cards-section {
    position: relative;
    padding: 0 0 72px;
    background:
        radial-gradient(circle at 10% 18%, rgba(247, 148, 29, 0.10), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f5f9fc 55%, #eef6fb 100%);
}

.contact-page-v2-card-grid {
    position: relative;
    z-index: 4;
    margin-top: -62px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.contact-page-v2-card {
    position: relative;
    min-height: 210px;
    padding: 28px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(6, 31, 51, 0.08);
    box-shadow: 0 28px 76px rgba(6, 31, 51, 0.14);
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    transition: all 0.45s ease;
}

.contact-page-v2-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #061f33, #0872b9);
    opacity: 0;
    z-index: -2;
    transition: all 0.45s ease;
}

.contact-page-v2-card::after {
    content: "";
    position: absolute;
    top: -70%;
    left: -90%;
    width: 55%;
    height: 240%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.34), transparent);
    transform: rotate(25deg);
    z-index: -1;
    transition: left 0.75s ease;
}

.contact-page-v2-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 38px 96px rgba(6, 31, 51, 0.22);
}

.contact-page-v2-card:hover::before {
    opacity: 1;
}

.contact-page-v2-card:hover::after {
    left: 135%;
}

.contact-page-v2-card-icon {
    width: 66px;
    height: 66px;
    border-radius: 22px;
    color: #061f33;
    background: linear-gradient(135deg, #f7941d, #ffc400);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    box-shadow: 0 18px 42px rgba(247, 148, 29, 0.28);
    transition: all 0.4s ease;
}

.contact-page-v2-card-icon svg {
    width: 34px;
    height: 34px;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.contact-page-v2-card:nth-child(3) .contact-page-v2-card-icon svg {
    fill: currentColor;
    stroke: none;
}

.contact-page-v2-card:hover .contact-page-v2-card-icon {
    color: #0872b9;
    background: #ffffff;
    transform: rotate(-8deg) scale(1.08);
}

.contact-page-v2-card span {
    display: inline-flex;
    color: #f7941d;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 8px;
    transition: all 0.35s ease;
}

.contact-page-v2-card h3 {
    color: #061f33;
    font-size: 21px;
    font-weight: 950;
    line-height: 1.25;
    margin-bottom: 10px;
    transition: all 0.35s ease;
    word-break: break-word;
}

.contact-page-v2-card p {
    color: #657282;
    font-size: 14px;
    line-height: 1.62;
    margin: 0;
    transition: all 0.35s ease;
}

.contact-page-v2-card:hover span,
.contact-page-v2-card:hover h3,
.contact-page-v2-card:hover p {
    color: #ffffff;
}

/* Main Form Section */
.contact-page-v2-main-section {
    position: relative;
    padding: 92px 0;
    background:
        radial-gradient(circle at 8% 14%, rgba(247, 148, 29, 0.10), transparent 30%),
        radial-gradient(circle at 92% 86%, rgba(8, 114, 185, 0.12), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f5f9fc 48%, #eef6fb 100%);
    overflow: hidden;
}

.contact-page-v2-main-section::before,
.contact-page-v2-location-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(6, 31, 51, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 31, 51, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.58;
    pointer-events: none;
}

.contact-page-v2-main-section .container,
.contact-page-v2-location-section .container {
    position: relative;
    z-index: 2;
}

.contact-page-v2-heading {
    max-width: 820px;
    margin: 0 auto 46px;
    text-align: center;
}

.contact-page-v2-heading span {
    display: inline-flex;
    color: #f7941d;
    background: rgba(247, 148, 29, 0.10);
    border: 1px solid rgba(247, 148, 29, 0.20);
    padding: 8px 17px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
}

.contact-page-v2-heading h2 {
    color: #061f33;
    font-size: clamp(31px, 4vw, 50px);
    font-weight: 950;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.contact-page-v2-heading h2::after {
    content: "";
    display: block;
    width: 96px;
    height: 5px;
    margin: 18px auto 0;
    border-radius: 50px;
    background: linear-gradient(90deg, #f7941d, #ffc400);
}

.contact-page-v2-heading p {
    color: #5f6f7f;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.contact-page-v2-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: stretch;
}

/* Info Panel */
.contact-page-v2-info {
    position: relative;
    padding: 38px;
    border-radius: 36px;
    background: linear-gradient(135deg, #061f33, #0872b9);
    box-shadow: 0 34px 96px rgba(6, 31, 51, 0.26);
    overflow: hidden;
    isolation: isolate;
}

.contact-page-v2-info::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 28px;
    border: 1px dashed rgba(255, 255, 255, 0.20);
    pointer-events: none;
    z-index: 2;
}

.contact-page-v2-info::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -130px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 148, 29, 0.46), transparent 68%);
    z-index: -1;
}

.contact-page-v2-info-head {
    position: relative;
    z-index: 3;
    margin-bottom: 24px;
}

.contact-page-v2-info-head span {
    display: inline-flex;
    color: #ffc400;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.contact-page-v2-info-head h3 {
    color: #ffffff;
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 950;
    line-height: 1.12;
    letter-spacing: -0.8px;
    margin-bottom: 15px;
}

.contact-page-v2-info-head h3::after {
    content: "";
    display: block;
    width: 90px;
    height: 5px;
    margin-top: 18px;
    border-radius: 50px;
    background: linear-gradient(90deg, #f7941d, #ffc400);
}

.contact-page-v2-info-head p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.contact-page-v2-info-list {
    position: relative;
    z-index: 3;
    display: grid;
    gap: 13px;
}

.contact-page-v2-info-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.35s ease;
}

.contact-page-v2-info-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(6px);
}

.contact-page-v2-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    color: #061f33;
    background: linear-gradient(135deg, #f7941d, #ffc400);
    display: grid;
    place-items: center;
    transition: all 0.35s ease;
}

.contact-page-v2-info-icon svg {
    width: 29px;
    height: 29px;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.contact-page-v2-info-item:hover .contact-page-v2-info-icon {
    background: #ffffff;
    color: #0872b9;
    transform: rotate(-8deg) scale(1.06);
}

.contact-page-v2-info-item h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 950;
    margin-bottom: 6px;
}

.contact-page-v2-info-item p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0;
}

/* Form */
.contact-page-v2-form-card {
    position: relative;
    padding: 38px;
    border-radius: 36px;
    background: #ffffff;
    border: 1px solid rgba(6, 31, 51, 0.08);
    box-shadow: 0 34px 96px rgba(6, 31, 51, 0.13);
    overflow: hidden;
}

.contact-page-v2-form-card::before {
    content: "";
    position: absolute;
    right: -130px;
    top: -130px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(8, 114, 185, 0.08);
}

.contact-page-v2-form-card::after {
    content: "";
    position: absolute;
    left: -140px;
    bottom: -140px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(247, 148, 29, 0.10);
}

.contact-page-v2-form-card > * {
    position: relative;
    z-index: 2;
}

.contact-page-v2-form-title {
    margin-bottom: 26px;
}

.contact-page-v2-form-title span {
    display: inline-flex;
    color: #f7941d;
    background: rgba(247, 148, 29, 0.10);
    border: 1px solid rgba(247, 148, 29, 0.20);
    padding: 8px 17px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.contact-page-v2-form-title h3 {
    color: #061f33;
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 950;
    line-height: 1.12;
    letter-spacing: -0.8px;
    margin: 0;
}

.contact-page-v2-form-title h3::after {
    content: "";
    display: block;
    width: 86px;
    height: 5px;
    border-radius: 50px;
    background: linear-gradient(90deg, #f7941d, #ffc400);
    margin-top: 16px;
}

.contact-page-v2-form .form-label {
    color: #061f33;
    font-size: 14px;
    font-weight: 950;
    margin-bottom: 8px;
}

.contact-page-v2-form .form-control,
.contact-page-v2-form .form-select {
    height: 56px;
    border-radius: 16px;
    border: 1px solid rgba(6, 31, 51, 0.13);
    background: #f8fbfd;
    color: #061f33;
    font-size: 14px;
    font-weight: 750;
    padding: 13px 16px;
    box-shadow: none;
    transition: all 0.35s ease;
}

.contact-page-v2-form textarea.form-control {
    height: auto;
    min-height: 145px;
    resize: none;
}

.contact-page-v2-form .form-control::placeholder {
    color: #97a4b2;
}

.contact-page-v2-form .form-control:focus,
.contact-page-v2-form .form-select:focus {
    background: #ffffff;
    border-color: #0872b9;
    box-shadow: 0 0 0 4px rgba(8, 114, 185, 0.12);
    transform: translateY(-2px);
}

.contact-page-v2-form-actions {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-wrap: wrap;
}

.contact-page-v2-submit,
.contact-page-v2-mail-btn {
    position: relative;
    min-height: 56px;
    padding: 15px 28px;
    border: 0;
    border-radius: 50px;
    color: #ffffff;
    background: linear-gradient(135deg, #f7941d, #d87508);
    font-size: 15px;
    font-weight: 950;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(247, 148, 29, 0.30);
    transition: all 0.35s ease;
}

.contact-page-v2-mail-btn {
    color: #061f33;
    background: #ffffff;
    border: 1px solid rgba(6, 31, 51, 0.12);
    box-shadow: 0 12px 32px rgba(6, 31, 51, 0.08);
}

.contact-page-v2-submit svg,
.contact-page-v2-mail-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.contact-page-v2-mail-btn svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-page-v2-submit:hover,
.contact-page-v2-mail-btn:hover {
    color: #ffffff;
    background: #0872b9;
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(8, 114, 185, 0.30);
}

/* Location */
.contact-page-v2-location-section {
    position: relative;
    padding: 92px 0;
    background:
        radial-gradient(circle at 10% 18%, rgba(247, 148, 29, 0.10), transparent 30%),
        linear-gradient(135deg, #f7fbfe 0%, #eef6fb 52%, #ffffff 100%);
    overflow: hidden;
}

.contact-page-v2-location-wrapper {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 28px;
    align-items: stretch;
}

.contact-page-v2-location-content {
    position: relative;
    padding: 38px;
    border-radius: 36px;
    background: linear-gradient(135deg, #061f33, #0872b9);
    box-shadow: 0 34px 96px rgba(6, 31, 51, 0.25);
    overflow: hidden;
}

.contact-page-v2-location-content::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 28px;
    border: 1px dashed rgba(255, 255, 255, 0.20);
    pointer-events: none;
}

.contact-page-v2-location-content span {
    display: inline-flex;
    color: #ffc400;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.contact-page-v2-location-content h2 {
    color: #ffffff;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 950;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.contact-page-v2-location-content h2::after {
    content: "";
    display: block;
    width: 88px;
    height: 5px;
    margin-top: 18px;
    border-radius: 50px;
    background: linear-gradient(90deg, #f7941d, #ffc400);
}

.contact-page-v2-location-content p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 26px;
}

.contact-page-v2-location-points {
    display: grid;
    gap: 12px;
}

.contact-page-v2-location-points div {
    padding: 17px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-page-v2-location-points strong {
    display: block;
    color: #ffc400;
    font-size: 18px;
    font-weight: 950;
    margin-bottom: 5px;
}

.contact-page-v2-location-points span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13.5px;
    font-weight: 800;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

.contact-page-v2-map {
    min-height: 460px;
    border-radius: 36px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(6, 31, 51, 0.08);
    box-shadow: 0 34px 96px rgba(6, 31, 51, 0.15);
}

.contact-page-v2-map iframe {
    width: 100%;
    height: 100%;
    min-height: 460px;
    border: 0;
    display: block;
}

/* Animation */
.contact-page-v2-animate {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.contact-page-v2-animate.contact-page-v2-show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1199px) {
    .contact-page-v2-wrapper,
    .contact-page-v2-location-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-page-v2-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-page-v2-card-grid .contact-page-v2-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 991px) {
    .contact-page-v2-hero-content {
        padding: 88px 0;
        text-align: center;
        margin: 0 auto;
    }

    .contact-page-v2-hero-content h1::after {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-page-v2-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-page-v2-main-section,
    .contact-page-v2-location-section {
        padding: 74px 0;
    }

    .contact-page-v2-info,
    .contact-page-v2-form-card,
    .contact-page-v2-location-content {
        text-align: center;
    }

    .contact-page-v2-info-head h3::after,
    .contact-page-v2-form-title h3::after,
    .contact-page-v2-location-content h2::after {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-page-v2-info-item {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .contact-page-v2-hero {
        min-height: auto;
    }

    .contact-page-v2-hero-content {
        padding: 72px 0;
    }

    .contact-page-v2-hero-content h1 {
        font-size: 32px;
    }

    .contact-page-v2-hero-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .contact-page-v2-cards-section {
        padding-bottom: 58px;
    }

    .contact-page-v2-card-grid {
        grid-template-columns: 1fr;
        margin-top: -42px;
        gap: 14px;
    }

    .contact-page-v2-card-grid .contact-page-v2-card:last-child {
        grid-column: auto;
    }

    .contact-page-v2-card {
        min-height: auto;
        text-align: center;
        padding: 26px 18px;
        border-radius: 24px;
    }

    .contact-page-v2-card-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-page-v2-main-section,
    .contact-page-v2-location-section {
        padding: 58px 0;
    }

    .contact-page-v2-heading {
        margin-bottom: 32px;
    }

    .contact-page-v2-heading h2 {
        font-size: 28px;
    }

    .contact-page-v2-heading p {
        font-size: 14.5px;
    }

    .contact-page-v2-info,
    .contact-page-v2-form-card,
    .contact-page-v2-location-content {
        padding: 28px 18px;
        border-radius: 26px;
    }

    .contact-page-v2-info::before,
    .contact-page-v2-location-content::before {
        inset: 9px;
        border-radius: 20px;
    }

    .contact-page-v2-info-head h3,
    .contact-page-v2-location-content h2 {
        font-size: 25px;
    }

    .contact-page-v2-info-head p,
    .contact-page-v2-location-content p {
        font-size: 14.5px;
    }

    .contact-page-v2-info-item {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .contact-page-v2-form-title h3 {
        font-size: 26px;
    }

    .contact-page-v2-form .form-control,
    .contact-page-v2-form .form-select {
        font-size: 16px;
    }

    .contact-page-v2-form-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .contact-page-v2-submit,
    .contact-page-v2-mail-btn {
        width: 100%;
    }

    .contact-page-v2-map {
        min-height: 360px;
        border-radius: 26px;
    }

    .contact-page-v2-map iframe {
        min-height: 360px;
    }
}

@media (max-width: 420px) {
    .contact-page-v2-hero-content h1 {
        font-size: 28px;
    }

    .contact-page-v2-heading h2,
    .contact-page-v2-info-head h3,
    .contact-page-v2-location-content h2 {
        font-size: 24px;
    }

    .contact-page-v2-form-card,
    .contact-page-v2-info,
    .contact-page-v2-location-content {
        padding: 26px 15px;
    }
}

.padding-top {
    padding-top: 100px;
}

/* =====================================================
   Contact Quick Cards V3
===================================================== */

.contact-quick-v3-section {
    position: relative;
    padding: 92px 0;
    background:
        radial-gradient(circle at 10% 16%, rgba(247, 148, 29, 0.12), transparent 30%),
        radial-gradient(circle at 90% 84%, rgba(8, 114, 185, 0.14), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f5f9fc 48%, #eef6fb 100%);
    overflow: hidden;
}

.contact-quick-v3-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(6, 31, 51, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 31, 51, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.58;
    pointer-events: none;
}

.contact-quick-v3-section::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -180px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(247, 148, 29, 0.11);
    pointer-events: none;
}

.contact-quick-v3-section .container {
    position: relative;
    z-index: 2;
}

/* Heading */
.contact-quick-v3-heading {
    max-width: 820px;
    margin: 0 auto 46px;
    text-align: center;
}

.contact-quick-v3-heading span {
    display: inline-flex;
    color: #f7941d;
    background: rgba(247, 148, 29, 0.10);
    border: 1px solid rgba(247, 148, 29, 0.20);
    padding: 8px 17px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
}

.contact-quick-v3-heading h2 {
    color: #061f33;
    font-size: clamp(31px, 4vw, 50px);
    font-weight: 950;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.contact-quick-v3-heading h2::after {
    content: "";
    display: block;
    width: 96px;
    height: 5px;
    margin: 18px auto 0;
    border-radius: 50px;
    background: linear-gradient(90deg, #f7941d, #ffc400);
}

.contact-quick-v3-heading p {
    color: #5f6f7f;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 700px;
}

/* Grid */
.contact-quick-v3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card */
.contact-quick-v3-card {
    position: relative;
    min-height: 345px;
    padding: 32px 28px;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid rgba(6, 31, 51, 0.08);
    box-shadow: 0 24px 68px rgba(6, 31, 51, 0.12);
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.45s ease;
}

.contact-quick-v3-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #061f33 0%, #0872b9 100%);
    opacity: 0;
    z-index: -2;
    transition: all 0.45s ease;
}

.contact-quick-v3-card::after {
    content: "";
    position: absolute;
    top: -70%;
    left: -90%;
    width: 58%;
    height: 240%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.38),
        transparent
    );
    transform: rotate(25deg);
    z-index: -1;
    transition: left 0.85s ease;
}

.contact-quick-v3-card:hover {
    transform: translateY(-12px);
    border-color: transparent;
    box-shadow: 0 38px 96px rgba(6, 31, 51, 0.24);
}

.contact-quick-v3-card:hover::before {
    opacity: 1;
}

.contact-quick-v3-card:hover::after {
    left: 135%;
}

/* Featured Middle Card */
.contact-quick-v3-card-featured {
    background: linear-gradient(135deg, #061f33 0%, #0872b9 100%);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 32px 88px rgba(6, 31, 51, 0.26);
    /* transform: translateY(-14px); */
}

.contact-quick-v3-card-featured::before {
    background: linear-gradient(135deg, #f7941d 0%, #ffc400 100%);
}

.contact-quick-v3-card-featured:hover {
    transform: translateY(-24px);
}

.contact-quick-v3-card-featured .contact-quick-v3-content span,
.contact-quick-v3-card-featured .contact-quick-v3-content h3,
.contact-quick-v3-card-featured .contact-quick-v3-content p,
.contact-quick-v3-card-featured .contact-quick-v3-link strong {
    color: #ffffff;
}

.contact-quick-v3-card-featured .contact-quick-v3-number {
    color: rgba(255, 255, 255, 0.18);
}

.contact-quick-v3-card-featured:hover .contact-quick-v3-content span,
.contact-quick-v3-card-featured:hover .contact-quick-v3-content h3,
.contact-quick-v3-card-featured:hover .contact-quick-v3-content p,
.contact-quick-v3-card-featured:hover .contact-quick-v3-link strong {
    color: #061f33;
}

.contact-quick-v3-card-featured:hover .contact-quick-v3-icon {
    background: #061f33;
    color: #ffffff;
}

/* Big Background Text */
.contact-quick-v3-bg-text {
    position: absolute;
    right: -10px;
    bottom: 12px;
    color: rgba(6, 31, 51, 0.045);
    font-size: 82px;
    font-weight: 950;
    line-height: 1;
    pointer-events: none;
    transition: all 0.45s ease;
}

.contact-quick-v3-card:hover .contact-quick-v3-bg-text {
    color: rgba(255, 255, 255, 0.14);
    transform: translateX(-8px);
}

.contact-quick-v3-card-featured .contact-quick-v3-bg-text {
    color: rgba(255, 255, 255, 0.13);
}

.contact-quick-v3-card-featured:hover .contact-quick-v3-bg-text {
    color: rgba(6, 31, 51, 0.09);
}

/* Top */
.contact-quick-v3-top {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 26px;
}

.contact-quick-v3-icon {
    width: 76px;
    height: 76px;
    border-radius: 25px;
    color: #061f33;
    background: linear-gradient(135deg, #f7941d, #ffc400);
    display: grid;
    place-items: center;
    box-shadow: 0 20px 46px rgba(247, 148, 29, 0.30);
    transition: all 0.45s ease;
}

.contact-quick-v3-icon svg {
    width: 38px;
    height: 38px;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.contact-quick-v3-whatsapp svg {
    fill: currentColor;
    stroke: none;
}

.contact-quick-v3-card:hover .contact-quick-v3-icon {
    color: #0872b9;
    background: #ffffff;
    transform: rotate(-8deg) scale(1.08);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.contact-quick-v3-number {
    color: rgba(6, 31, 51, 0.07);
    font-size: 58px;
    font-weight: 950;
    line-height: 1;
    transition: all 0.35s ease;
}

.contact-quick-v3-card:hover .contact-quick-v3-number {
    color: rgba(255, 255, 255, 0.20);
}

/* Content */
.contact-quick-v3-content {
    position: relative;
    z-index: 3;
}

.contact-quick-v3-content span {
    display: inline-flex;
    color: #f7941d;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 10px;
    transition: all 0.35s ease;
}

.contact-quick-v3-content h3 {
    color: #061f33;
    font-size: 24px;
    font-weight: 950;
    line-height: 1.2;
    margin-bottom: 12px;
    word-break: break-word;
    transition: all 0.35s ease;
}

.contact-quick-v3-content h3::after {
    content: "";
    display: block;
    width: 58px;
    height: 4px;
    border-radius: 50px;
    background: linear-gradient(90deg, #f7941d, #ffc400);
    margin-top: 14px;
    transition: all 0.35s ease;
}

.contact-quick-v3-content p {
    color: #657282;
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
    transition: all 0.35s ease;
}

.contact-quick-v3-card:hover .contact-quick-v3-content span,
.contact-quick-v3-card:hover .contact-quick-v3-content h3,
.contact-quick-v3-card:hover .contact-quick-v3-content p {
    color: #ffffff;
}

.contact-quick-v3-card:hover .contact-quick-v3-content h3::after {
    width: 92px;
}

/* Bottom Link */
.contact-quick-v3-link {
    position: relative;
    z-index: 3;
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 52px;
    padding: 13px 17px;
    border-radius: 50px;
    background: #f8fbfd;
    border: 1px solid rgba(6, 31, 51, 0.08);
    transition: all 0.35s ease;
}

.contact-quick-v3-card-featured .contact-quick-v3-link {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
}

.contact-quick-v3-link strong {
    color: #061f33;
    font-size: 14px;
    font-weight: 950;
    transition: all 0.35s ease;
}

.contact-quick-v3-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    color: #f7941d;
    transition: all 0.35s ease;
}

.contact-quick-v3-card:hover .contact-quick-v3-link {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.22);
}

.contact-quick-v3-card:hover .contact-quick-v3-link strong,
.contact-quick-v3-card:hover .contact-quick-v3-link svg {
    color: #ffffff;
}

.contact-quick-v3-card:hover .contact-quick-v3-link svg {
    transform: translateX(6px);
}

.contact-quick-v3-card-featured:hover .contact-quick-v3-link {
    background: rgba(6, 31, 51, 0.10);
    border-color: rgba(6, 31, 51, 0.14);
}

.contact-quick-v3-card-featured:hover .contact-quick-v3-link strong,
.contact-quick-v3-card-featured:hover .contact-quick-v3-link svg {
    color: #061f33;
}

/* Responsive */
@media (max-width: 1199px) {
    .contact-quick-v3-grid {
        gap: 18px;
    }

    .contact-quick-v3-card {
        padding: 28px 22px;
    }

    .contact-quick-v3-content h3 {
        font-size: 21px;
    }
}

@media (max-width: 991px) {
    .contact-quick-v3-section {
        padding: 74px 0;
    }

    .contact-quick-v3-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin: 0 auto;
    }

    .contact-quick-v3-card,
    .contact-quick-v3-card-featured {
        transform: none;
        min-height: auto;
    }

    .contact-quick-v3-card-featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 767px) {
    .contact-quick-v3-section {
        padding: 58px 0;
    }

    .contact-quick-v3-heading {
        margin-bottom: 32px;
    }

    .contact-quick-v3-heading h2 {
        font-size: 28px;
    }

    .contact-quick-v3-heading p {
        font-size: 14.5px;
    }

    .contact-quick-v3-card {
        padding: 28px 18px;
        border-radius: 26px;
        text-align: center;
    }

    .contact-quick-v3-top {
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 22px;
    }

    .contact-quick-v3-icon {
        width: 68px;
        height: 68px;
        border-radius: 22px;
    }

    .contact-quick-v3-icon svg {
        width: 34px;
        height: 34px;
    }

    .contact-quick-v3-number {
        position: absolute;
        right: 0;
        top: -4px;
        font-size: 46px;
    }

    .contact-quick-v3-content h3 {
        font-size: 21px;
    }

    .contact-quick-v3-content h3::after {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-quick-v3-content p {
        font-size: 14px;
        line-height: 1.62;
    }

    .contact-quick-v3-link {
        justify-content: center;
    }

    .contact-quick-v3-bg-text {
        font-size: 58px;
        right: 8px;
        bottom: 8px;
    }

    .contact-quick-v3-card:hover {
        transform: translateY(-7px);
    }
}

@media (max-width: 420px) {
    .contact-quick-v3-heading h2 {
        font-size: 25px;
    }

    .contact-quick-v3-card {
        padding: 26px 15px;
    }

    .contact-quick-v3-content h3 {
        font-size: 20px;
    }
}

/* =====================================================
   Contact Form V3
===================================================== */

.contact-form-v3-section {
    position: relative;
    padding: 96px 0;
    background:
        radial-gradient(circle at 10% 16%, rgba(247, 148, 29, 0.12), transparent 30%),
        radial-gradient(circle at 90% 84%, rgba(8, 114, 185, 0.14), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f5f9fc 48%, #eef6fb 100%);
    overflow: hidden;
}

.contact-form-v3-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(6, 31, 51, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 31, 51, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.58;
    pointer-events: none;
}

.contact-form-v3-section::after {
    content: "";
    position: absolute;
    right: -190px;
    bottom: -190px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(247, 148, 29, 0.11);
    pointer-events: none;
}

.contact-form-v3-section .container {
    position: relative;
    z-index: 2;
}

/* Heading */
.contact-form-v3-heading {
    max-width: 820px;
    margin: 0 auto 46px;
    text-align: center;
}

.contact-form-v3-heading span {
    display: inline-flex;
    color: #f7941d;
    background: rgba(247, 148, 29, 0.10);
    border: 1px solid rgba(247, 148, 29, 0.20);
    padding: 8px 17px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
}

.contact-form-v3-heading h2 {
    color: #061f33;
    font-size: clamp(31px, 4vw, 50px);
    font-weight: 950;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.contact-form-v3-heading h2::after {
    content: "";
    display: block;
    width: 96px;
    height: 5px;
    margin: 18px auto 0;
    border-radius: 50px;
    background: linear-gradient(90deg, #f7941d, #ffc400);
}

.contact-form-v3-heading p {
    color: #5f6f7f;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 700px;
}

/* Wrapper */
.contact-form-v3-wrapper {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 28px;
    align-items: stretch;
}

/* Left Info */
.contact-form-v3-info {
    position: relative;
    padding: 40px;
    border-radius: 36px;
    background: linear-gradient(135deg, #061f33 0%, #0872b9 100%);
    box-shadow: 0 34px 96px rgba(6, 31, 51, 0.26);
    overflow: hidden;
    isolation: isolate;
}

.contact-form-v3-info::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 28px;
    border: 1px dashed rgba(255, 255, 255, 0.20);
    pointer-events: none;
    z-index: 2;
}

.contact-form-v3-info::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -130px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 148, 29, 0.46), transparent 68%);
    z-index: -1;
}

.contact-form-v3-info-top,
.contact-form-v3-info-list,
.contact-form-v3-mini-grid {
    position: relative;
    z-index: 3;
}

.contact-form-v3-info-top {
    margin-bottom: 26px;
}

.contact-form-v3-info-top span {
    display: inline-flex;
    color: #ffc400;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.contact-form-v3-info-top h3 {
    color: #ffffff;
    font-size: clamp(27px, 3.4vw, 42px);
    font-weight: 950;
    line-height: 1.12;
    letter-spacing: -0.8px;
    margin-bottom: 15px;
}

.contact-form-v3-info-top h3::after {
    content: "";
    display: block;
    width: 90px;
    height: 5px;
    margin-top: 18px;
    border-radius: 50px;
    background: linear-gradient(90deg, #f7941d, #ffc400);
}

.contact-form-v3-info-top p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Info Items */
.contact-form-v3-info-list {
    display: grid;
    gap: 13px;
}

.contact-form-v3-info-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.35s ease;
}

.contact-form-v3-info-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(6px);
}

.contact-form-v3-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    color: #061f33;
    background: linear-gradient(135deg, #f7941d, #ffc400);
    display: grid;
    place-items: center;
    transition: all 0.35s ease;
}

.contact-form-v3-info-icon svg {
    width: 29px;
    height: 29px;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.contact-form-v3-info-item:hover .contact-form-v3-info-icon {
    background: #ffffff;
    color: #0872b9;
    transform: rotate(-8deg) scale(1.06);
}

.contact-form-v3-info-item h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 950;
    margin-bottom: 6px;
}

.contact-form-v3-info-item p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0;
}

.contact-form-v3-info-item a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-form-v3-info-item a:hover {
    color: #ffc400;
}

/* Mini Grid */
.contact-form-v3-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 26px;
}

.contact-form-v3-mini-grid div {
    padding: 18px 16px;
    border-radius: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: all 0.35s ease;
}

.contact-form-v3-mini-grid div:hover {
    background: #ffffff;
    transform: translateY(-6px);
}

.contact-form-v3-mini-grid strong {
    display: block;
    color: #ffc400;
    font-size: 24px;
    font-weight: 950;
    line-height: 1;
    margin-bottom: 7px;
    transition: all 0.35s ease;
}

.contact-form-v3-mini-grid span {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12.5px;
    font-weight: 850;
    line-height: 1.35;
    transition: all 0.35s ease;
}

.contact-form-v3-mini-grid div:hover strong {
    color: #0872b9;
}

.contact-form-v3-mini-grid div:hover span {
    color: #061f33;
}

/* Form Card */
.contact-form-v3-card {
    position: relative;
    padding: 40px;
    border-radius: 36px;
    background: #ffffff;
    border: 1px solid rgba(6, 31, 51, 0.08);
    box-shadow: 0 34px 96px rgba(6, 31, 51, 0.13);
    overflow: hidden;
}

.contact-form-v3-card::before {
    content: "";
    position: absolute;
    right: -130px;
    top: -130px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(8, 114, 185, 0.08);
}

.contact-form-v3-card::after {
    content: "";
    position: absolute;
    left: -140px;
    bottom: -140px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(247, 148, 29, 0.10);
}

.contact-form-v3-card > * {
    position: relative;
    z-index: 2;
}

.contact-form-v3-card-head {
    margin-bottom: 26px;
}

.contact-form-v3-card-head span {
    display: inline-flex;
    color: #f7941d;
    background: rgba(247, 148, 29, 0.10);
    border: 1px solid rgba(247, 148, 29, 0.20);
    padding: 8px 17px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.contact-form-v3-card-head h3 {
    color: #061f33;
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 950;
    line-height: 1.12;
    letter-spacing: -0.8px;
    margin-bottom: 10px;
}

.contact-form-v3-card-head h3::after {
    content: "";
    display: block;
    width: 86px;
    height: 5px;
    border-radius: 50px;
    background: linear-gradient(90deg, #f7941d, #ffc400);
    margin-top: 16px;
}

.contact-form-v3-card-head p {
    color: #657282;
    font-size: 14px;
    font-weight: 800;
    margin: 0;
}

.contact-form-v3-card-head p b,
.contact-form-v3-field label b {
    color: #f7941d;
}

/* Fields */
.contact-form-v3-field {
    position: relative;
}

.contact-form-v3-field label {
    display: block;
    color: #061f33;
    font-size: 14px;
    font-weight: 950;
    margin-bottom: 8px;
}

.contact-form-v3-field input,
.contact-form-v3-field select,
.contact-form-v3-field textarea {
    width: 100%;
    border: 1px solid rgba(6, 31, 51, 0.13);
    outline: none;
    background: #f8fbfd;
    color: #061f33;
    font-size: 14px;
    font-weight: 750;
    border-radius: 17px;
    padding: 15px 16px;
    transition: all 0.35s ease;
}

.contact-form-v3-field input,
.contact-form-v3-field select {
    height: 58px;
}

.contact-form-v3-field textarea {
    min-height: 150px;
    resize: none;
}

.contact-form-v3-field input::placeholder,
.contact-form-v3-field textarea::placeholder {
    color: #96a4b2;
    font-weight: 700;
}

.contact-form-v3-field input:focus,
.contact-form-v3-field select:focus,
.contact-form-v3-field textarea:focus {
    background: #ffffff;
    border-color: #0872b9;
    box-shadow: 0 0 0 4px rgba(8, 114, 185, 0.12);
    transform: translateY(-2px);
}

.contact-form-v3-field input:valid,
.contact-form-v3-field select:valid,
.contact-form-v3-field textarea:valid {
    border-color: rgba(8, 114, 185, 0.28);
}

/* Buttons */
.contact-form-v3-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 6px;
}

.contact-form-v3-submit,
.contact-form-v3-email {
    position: relative;
    min-height: 58px;
    padding: 16px 30px;
    border: 0;
    border-radius: 50px;
    color: #ffffff;
    background: linear-gradient(135deg, #f7941d, #d87508);
    font-size: 15px;
    font-weight: 950;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(247, 148, 29, 0.30);
    transition: all 0.35s ease;
}

.contact-form-v3-submit::before,
.contact-form-v3-email::before {
    content: "";
    position: absolute;
    top: -80%;
    left: -90%;
    width: 50%;
    height: 260%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.38), transparent);
    transform: rotate(25deg);
    transition: left 0.75s ease;
}

.contact-form-v3-submit:hover::before,
.contact-form-v3-email:hover::before {
    left: 135%;
}

.contact-form-v3-submit span,
.contact-form-v3-email span,
.contact-form-v3-submit svg,
.contact-form-v3-email svg {
    position: relative;
    z-index: 2;
}

.contact-form-v3-submit svg,
.contact-form-v3-email svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.contact-form-v3-submit:hover {
    background: linear-gradient(135deg, #0872b9, #061f33);
    transform: translateY(-5px);
    box-shadow: 0 24px 54px rgba(8, 114, 185, 0.32);
}

.contact-form-v3-email {
    color: #061f33;
    background: #ffffff;
    border: 1px solid rgba(6, 31, 51, 0.12);
    box-shadow: 0 12px 32px rgba(6, 31, 51, 0.08);
}

.contact-form-v3-email:hover {
    color: #ffffff;
    background: #0872b9;
    transform: translateY(-5px);
    box-shadow: 0 24px 54px rgba(8, 114, 185, 0.28);
}

/* Responsive */
@media (max-width: 1199px) {
    .contact-form-v3-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .contact-form-v3-section {
        padding: 74px 0;
    }

    .contact-form-v3-info,
    .contact-form-v3-card {
        text-align: center;
    }

    .contact-form-v3-info-top h3::after,
    .contact-form-v3-card-head h3::after {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-form-v3-info-item {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .contact-form-v3-section {
        padding: 58px 0;
    }

    .contact-form-v3-heading {
        margin-bottom: 32px;
    }

    .contact-form-v3-heading h2 {
        font-size: 28px;
    }

    .contact-form-v3-heading p {
        font-size: 14.5px;
    }

    .contact-form-v3-info,
    .contact-form-v3-card {
        padding: 28px 18px;
        border-radius: 26px;
    }

    .contact-form-v3-info::before {
        inset: 9px;
        border-radius: 20px;
    }

    .contact-form-v3-info-top h3 {
        font-size: 25px;
    }

    .contact-form-v3-info-top p {
        font-size: 14.5px;
    }

    .contact-form-v3-info-item {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .contact-form-v3-mini-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-form-v3-card-head h3 {
        font-size: 26px;
    }

    .contact-form-v3-field input,
    .contact-form-v3-field select,
    .contact-form-v3-field textarea {
        font-size: 16px;
    }

    .contact-form-v3-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .contact-form-v3-submit,
    .contact-form-v3-email {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .contact-form-v3-heading h2,
    .contact-form-v3-info-top h3 {
        font-size: 24px;
    }

    .contact-form-v3-card,
    .contact-form-v3-info {
        padding: 26px 15px;
    }

    .contact-form-v3-card-head h3 {
        font-size: 24px;
    }
}