.page-hero {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.contact-hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
}

.contact-hero-bg {
    position: absolute;
    inset: -5%;
    z-index: -3;
background: url("../assets/contact.webp") center/cover no-repeat;
    transform: scale(1.06);
    animation: contactHeroBackground 16s ease-in-out infinite alternate;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(3, 13, 28, .78) 0%,
            rgba(4, 18, 36, .52) 45%,
            rgba(4, 18, 36, .35) 100%
        ),
        radial-gradient(
            circle at 78% 45%,
            rgba(20, 126, 232, .16),
            transparent 32%
        ),
        radial-gradient(
            circle at 15% 85%,
            rgba(139, 215, 42, .07),
            transparent 25%
        );
    pointer-events: none;
}

@keyframes contactHeroBackground {
    0% {
        transform: scale(1.06) translate3d(0, 0, 0);
    }

    50% {
        transform: scale(1.1) translate3d(-10px, -6px, 0);
    }

    100% {
        transform: scale(1.06) translate3d(8px, 5px, 0);
    }
}

.contact-hero-container {
    position: relative;
    z-index: 3;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
}

.contact-hero-content {
    position: relative;
    z-index: 5;
    max-width: 720px;
}

.contact-hero h1 {
    max-width: 800px;
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 7vw, 82px);
    line-height: .98;
    letter-spacing: -3px;
    font-weight: 800;
}

.contact-hero h1 em {
    display: inline-block;
    font-style: normal;
    background: linear-gradient(90deg, #fff, #8bd72a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero-content > p {
    max-width: 650px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
    line-height: 1.75;
}

.contact-hero-actions {
    display: flex;
    align-items: center;
    margin-top: 32px;
}

.contact-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 54px;
    padding: 0 24px 0 12px;
    border: 1px solid #1478e8;
    border-radius: 50px;
    background: #1478e8;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(20, 120, 232, .28);
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.contact-call-btn:hover {
    transform: translateY(-3px);
    background: #0d68d3;
    border-color: #0d68d3;
    box-shadow: 0 18px 35px rgba(20, 120, 232, .38);
}

.call-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    font-size: 13px;
    animation: phonePulse 2.4s ease-in-out infinite;
}

@keyframes phonePulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .25);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

.availability-badge {
    position: absolute;
    z-index: 6;
    right: 5%;
    top: 50%;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
    border: 2px solid rgba(20, 120, 232, .18);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
    transform: translateY(-50%) rotate(-5deg);
    animation: availabilityFloat 5s ease-in-out infinite;
}

.availability-badge::before {
    content: "";
    position: absolute;
    inset: -9px;
    border-radius: 50%;
    border: 1px dashed #8bd72a;
    animation: availabilityRotate 18s linear infinite;
}

.availability-badge::after {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: 50%;
    border: 1px solid rgba(20, 120, 232, .12);
    pointer-events: none;
}

@keyframes availabilityFloat {
    0%,
    100% {
        transform: translateY(-50%) rotate(-5deg);
    }

    50% {
        transform: translateY(calc(-50% - 10px)) rotate(-3deg);
    }
}

@keyframes availabilityRotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.availability-dot {
    position: absolute;
    top: 23px;
    right: 27px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #8bd72a;
    box-shadow: 0 0 0 5px rgba(139, 215, 42, .14);
    animation: availabilityPulse 2s infinite;
}

@keyframes availabilityPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 215, 42, .45);
    }

    70% {
        box-shadow: 0 0 0 9px rgba(139, 215, 42, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(139, 215, 42, 0);
    }
}

.availability-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: rotate(5deg);
}

.availability-text strong {
    color: #1478e8;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
}

.availability-text small {
    margin-top: 7px;
    color: #071a33;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 205px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 15px;
    background: rgba(8, 25, 45, .65);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .24);
    animation: floatingContactCard 5s ease-in-out infinite;
}

.contact-floating-card i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(20, 126, 232, .15);
    color: #8bd72a;
    font-size: 15px;
}

.contact-floating-card div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-floating-card strong {
    color: #fff;
    font-size: 12px;
}

.contact-floating-card small {
    color: rgba(255, 255, 255, .58);
    font-size: 10px;
}

.contact-card-one {
    right: 18%;
    top: 22%;
    animation-delay: .5s;
}

.contact-card-two {
    right: 8%;
    bottom: 14%;
    animation-delay: 1.5s;
}

@keyframes floatingContactCard {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.contact-section {
    position: relative;
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    padding: 80px 0;
    background:
        radial-gradient(
            circle at 8% 30%,
            rgba(22, 119, 232, .08),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 70%,
            rgba(139, 213, 43, .07),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #f8fbff 0,
            #edf5ff 55%,
            #f9fcff 100%
        );
}

.contact-wrapper {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    position: relative;
}

.contact-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: #1478e8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-info h1,
.contact-info h2 {
    margin: 0 0 18px;
    color: #071a33;
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
}

.contact-info h1 span,
.contact-info h2 span {
    display: block;
    background: linear-gradient(100deg, #1769d7, #0d91e8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info h2 em {
    color: #1478e8;
    font-style: normal;
}

.contact-info > p,
.contact-desc {
    max-width: 500px;
    margin-bottom: 30px;
    color: #5c708b;
    font-size: 15px;
    line-height: 1.75;
}

.contact-details,
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #243b58;
    font-size: 14px;
}

.contact-details a,
.contact-list a {
    color: #1478e8;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease, opacity .2s ease;
}

.contact-details a:hover,
.contact-list a:hover {
    color: #0d68d3;
    opacity: .85;
}

.contact-icon,
.contact-list a span {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(22, 119, 232, .09);
    color: #1478e8;
    font-size: 15px;
}

.contact-form-wrap {
    background: #fff;
    border: 1px solid #dbe7f2;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 20px 55px rgba(7, 26, 51, .08);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 0;
    color: #142c4b;
    font-size: 13px;
    font-weight: 600;
}

.contact-form label span {
    color: #1478e8;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 14px;
    border: 1.5px solid #dce7f5;
    border-radius: 10px;
    outline: none;
    background: #f8fbff;
    color: #17345b;
    font-family: inherit;
    font-size: 14px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input,
.contact-form select {
    min-height: 48px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aebbc9;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #1478e8;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(22, 119, 232, .1);
}

.contact-form select {
    appearance: none;
    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='%231677e8' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 50px;
    padding: 0 24px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(120deg, #1469d8, #099de8);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(20, 105, 216, .22);
    transition: transform .3s ease, box-shadow .3s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(20, 105, 216, .32);
}

.avyro-contact-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #eef9ff 0,
        #fff 48%,
        #eef5ff 100%
    );
}

.avyro-contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(20, 120, 232, .065) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(20, 120, 232, .065) 1px,
            transparent 1px
        );
    background-size: 55px 55px;
    pointer-events: none;
}

.avyro-contact-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -250px;
    top: -200px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(139, 215, 42, .1),
        transparent 68%
    );
    pointer-events: none;
}

.avyro-contact-container {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 55px;
    align-items: stretch;
}

.avyro-contact-info {
    padding: 60px 42px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid #dbe7f2;
    border-radius: 25px;
    box-shadow: 0 18px 45px rgba(7, 26, 51, .06);
}

.avyro-form-label,
.avyro-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
    color: #176fda;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.avyro-form-label::before,
.avyro-section-label::before {
    content: "";
    width: 32px;
    height: 4px;
    border-radius: 10px;
    background: linear-gradient(90deg, #1478e8, #8bd72a);
}

.avyro-contact-info h2 {
    margin: 0;
    max-width: 500px;
    color: #071a33;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.avyro-contact-info h2 em {
    display: block;
    color: #1478e8;
    font-style: normal;
}

.avyro-contact-info > p {
    max-width: 540px;
    margin: 23px 0 30px;
    color: #5c708b;
    font-size: 15px;
    line-height: 1.75;
}

.avyro-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 12px;
    padding: 15px;
    border: 1px solid #dce8f4;
    border-radius: 15px;
    background: #fff;
    text-decoration: none;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.avyro-contact-item:hover {
    transform: translateX(4px);
    border-color: rgba(20, 120, 232, .35);
    box-shadow: 0 8px 22px rgba(20, 120, 232, .08);
}

.avyro-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: #1478e8;
    background: #eaf4ff;
    font-size: 19px;
}

.avyro-contact-item:hover .avyro-contact-icon {
    color: #5e9e08;
    background: #f0fbdc;
}

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

.avyro-contact-item-content strong {
    color: #18385e;
    font-size: 14px;
    font-weight: 750;
}

.avyro-contact-item-content span {
    color: #607793;
    font-size: 13px;
    line-height: 1.5;
}

.avyro-project-form {
    padding: 40px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid #dbe7f2;
    border-radius: 25px;
    box-shadow: 0 18px 45px rgba(7, 26, 51, .06);
}

.avyro-project-form h2 {
    margin: 0;
    color: #071a33;
    font-size: clamp(34px, 3.5vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.avyro-project-form h2 em {
    color: #1478e8;
    font-style: normal;
}

.avyro-form-intro {
    max-width: 500px;
    margin: 18px 0 30px;
    color: #657892;
    font-size: 15px;
    line-height: 1.7;
}

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

.avyro-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.avyro-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.avyro-form-group label {
    color: #142c4b;
    font-size: 12px;
    font-weight: 750;
}

.avyro-form-group label span {
    color: #1478e8;
}

.avyro-form-group input,
.avyro-form-group select,
.avyro-form-group textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d3e1ef;
    border-radius: 12px;
    outline: none;
    background: #f8fbff;
    color: #17345b;
    font-family: inherit;
    font-size: 13px;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.avyro-form-group input,
.avyro-form-group select {
    height: 50px;
    padding: 0 15px;
}

.avyro-form-group textarea {
    min-height: 130px;
    padding: 14px 15px;
    resize: vertical;
}

.avyro-form-group input::placeholder,
.avyro-form-group textarea::placeholder {
    color: #a4b1c0;
}

.avyro-form-group input:focus,
.avyro-form-group select:focus,
.avyro-form-group textarea:focus {
    border-color: #1478e8;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(20, 120, 232, .08);
}

.avyro-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    min-height: 52px;
    margin-top: 3px;
    padding: 0 26px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #1478e8, #17a8dc);
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(20, 120, 232, .22);
    transition: transform .25s ease, box-shadow .25s ease;
}

.avyro-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(20, 120, 232, .3);
}

.avyro-submit-btn span {
    font-size: 17px;
    transition: transform .25s ease;
}

.avyro-submit-btn:hover span {
    transform: translateX(4px);
}

.contact-cta {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background: linear-gradient(
        120deg,
        #075fd1 0,
        #1478e8 52%,
        #079fce 100%
    );
    color: #fff;
}

.contact-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, .065) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .065) 1px,
            transparent 1px
        );
    background-size: 52px 52px;
    opacity: .65;
    pointer-events: none;
}

.contact-cta::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -175px;
    top: -205px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    box-shadow:
        0 0 0 65px rgba(255, 255, 255, .035),
        0 0 0 130px rgba(255, 255, 255, .025);
    pointer-events: none;
}

.contact-cta .contact-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.contact-cta-content {
    max-width: 720px;
}

.contact-cta-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: #e9ffc8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-cta-label::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(90deg, #fff, #8bd72a);
}

.contact-cta h2 {
    margin: 0;
    max-width: 700px;
    color: #fff;
    font-size: clamp(38px, 4.3vw, 56px);
    font-weight: 750;
    line-height: 1.08;
    letter-spacing: -2.3px;
}

.contact-cta h2 em {
    color: #dfffad;
    font-style: normal;
}

.contact-cta p {
    max-width: 650px;
    margin: 17px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: 15px;
    line-height: 1.7;
}

.contact-cta-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.contact-cta-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 23px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.contact-cta-buttons .cta-primary {
    color: #0865d3;
    background: #fff;
    border: 1px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 45, 110, .18);
}

.contact-cta-buttons .cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 45, 110, .25);
}

.contact-cta-buttons .cta-secondary {
    color: #fff;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .48);
}

.contact-cta-buttons .cta-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
}

.contact-cta-buttons a span {
    display: inline-flex;
    font-size: 16px;
    transition: transform .25s ease;
}

.contact-cta-buttons a:hover span {
    transform: translateX(4px);
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.contact-grid .contact-form {
    padding: 38px;
    background: #fff;
    border: 1px solid #dbe7f2;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(7, 26, 51, .08);
}

@media (max-width: 1000px) {
    .contact-hero-container {
        min-height: 590px;
    }

    .availability-badge {
        right: 3%;
        width: 190px;
        height: 190px;
    }

    .availability-text strong {
        font-size: 26px;
    }

    .contact-card-one {
        right: 3%;
        top: 18%;
    }

    .contact-card-two {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info > p,
    .contact-desc {
        max-width: 700px;
    }

    .avyro-contact-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .avyro-contact-info {
        padding: 45px 35px;
    }

    .avyro-project-form {
        padding: 35px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-cta .contact-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .contact-cta-buttons {
        width: 100%;
    }
}

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

    .contact-hero-container {
        min-height: 500px;
        display: flex;
        align-items: center;
        padding: 70px 18px 40px;
        box-sizing: border-box;
    }

    .contact-hero-content {
        width: 100%;
        max-width: 100%;
    }

    .contact-hero h1 {
        max-width: 100%;
        font-size: clamp(38px, 9vw, 52px);
        line-height: 1.02;
        letter-spacing: -1.8px;
    }

    .contact-hero-content > p {
        max-width: 100%;
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-hero-actions {
        margin-top: 23px;
    }

    .contact-call-btn {
        min-height: 50px;
        padding: 0 20px 0 10px;
        font-size: 13px;
    }

    .call-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .availability-badge,
    .contact-card-one,
    .contact-card-two,
    .contact-floating-card {
        display: none;
    }

    .contact-section {
        padding: 55px 0;
    }

    .contact-wrapper {
        padding: 0 18px;
        gap: 35px;
    }

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

    .avyro-contact-section {
        padding: 55px 0;
    }

    .avyro-contact-container {
        width: calc(100% - 28px);
    }

    .avyro-contact-info {
        padding: 35px 22px;
    }

    .avyro-project-form {
        padding: 28px 20px;
    }

    .contact-cta {
        padding: 55px 0;
    }

    .contact-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3, 12, 25, 0.78),
                rgba(4, 17, 34, 0.58)
            );
    }

    .contact-hero::before {
        background-position: 55% center;
        background-size: cover;
        transform: scale(1.02);
    }
}

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

    .contact-hero-container {
        min-height: 500px;
        padding: 65px 18px 35px;
    }

    .contact-hero h1 {
        font-size: 38px;
        line-height: 1.02;
        letter-spacing: -1.5px;
    }

    .contact-hero-content > p {
        margin-top: 17px;
        font-size: 13.5px;
        line-height: 1.6;
    }

    .contact-hero-actions {
        margin-top: 22px;
    }

    .contact-call-btn {
        min-height: 48px;
        padding: 0 19px 0 9px;
        font-size: 13px;
    }

    .call-icon {
        width: 29px;
        height: 29px;
    }

    .contact-section {
        min-height: auto;
        padding: 45px 0 55px;
    }

    .contact-wrapper {
        padding: 0 16px;
        gap: 30px;
    }

    .contact-info h1,
    .contact-info h2 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .contact-info > p,
    .contact-desc {
        font-size: 14px;
        line-height: 1.65;
    }

    .contact-form-wrap {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-form {
        gap: 16px;
    }

    .avyro-contact-section {
        padding: 50px 0;
    }

    .avyro-contact-container {
        width: calc(100% - 28px);
    }

    .avyro-contact-info {
        padding: 28px 18px;
        border-radius: 20px;
    }

    .avyro-project-form {
        padding: 28px 18px;
        border-radius: 20px;
    }

    .avyro-contact-info h2 {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .avyro-project-form h2 {
        font-size: 33px;
        letter-spacing: -1.3px;
    }

    .avyro-contact-info > p,
    .avyro-form-intro {
        font-size: 14px;
        line-height: 1.65;
    }

    .avyro-form-row {
        grid-template-columns: 1fr;
    }

    .avyro-contact-item {
        align-items: flex-start;
    }

    .avyro-contact-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .avyro-submit-btn {
        width: 100%;
    }

    .contact-cta {
        padding: 55px 0;
    }

    .contact-cta h2 {
        font-size: 36px;
        line-height: 1.1;
        letter-spacing: -1.5px;
    }

    .contact-cta p {
        font-size: 14px;
        line-height: 1.65;
    }

    .contact-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
    }

    .contact-cta-buttons a {
        width: 100%;
        box-sizing: border-box;
    }

    .contact-cta::after {
        width: 280px;
        height: 280px;
        right: -170px;
        top: -130px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-grid .contact-form {
        padding: 25px 18px;
    }
}

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

    .contact-hero-container {
        min-height: 480px;
        padding: 60px 16px 30px;
    }

    .contact-hero h1 {
        font-size: 34px;
        line-height: 1.02;
        letter-spacing: -1.3px;
    }

    .contact-hero-content > p {
        font-size: 13px;
        line-height: 1.6;
    }

    .contact-info h1,
    .contact-info h2 {
        font-size: 34px;
    }

    .avyro-contact-info h2 {
        font-size: 33px;
    }

    .avyro-project-form h2 {
        font-size: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-hero-bg,
    .call-icon,
    .availability-badge,
    .availability-badge::before,
    .availability-dot,
    .contact-floating-card {
        animation: none;
    }

    .contact-call-btn,
    .contact-floating-card,
    .avyro-contact-item,
    .avyro-submit-btn,
    .contact-submit {
        transition: none;
    }
}
.contact-map-section {
    position: relative;
    width: 100%;
    padding: 50px 0;
    background: #f7fbff;
    overflow: hidden;
}

.contact-map-section .container {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.contact-map-heading {
    display: block;
    width: 100%;
    max-width: 650px;
    margin: 0 0 24px;
}

.contact-map-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 10px;
    color: #1478e8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.2;
    text-transform: uppercase;
}

.contact-map-label::before {
    content: "";
    width: 28px;
    height: 3px;
    flex-shrink: 0;
    border-radius: 20px;
    background: linear-gradient(90deg, #1478e8, #8bd72a);
}

.contact-map-heading h2 {
    display: block;
    margin: 0;
    color: #071a33;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.contact-map-heading h2 em {
    color: #1478e8;
    font-style: normal;
}

.contact-map-heading p {
    display: block;
    margin: 12px 0 0;
    color: #5c708b;
    font-size: 15px;
    line-height: 1.6;
}

.contact-map {
    position: relative;
    display: block;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border: 1px solid #dbe7f2;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(7, 26, 51, .10);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 300px;
    min-height: 0;
    border: 0;
}

@media (max-width: 600px) {

    .contact-map-section {
        padding: 40px 0;
    }

    .contact-map-section .container {
        width: calc(100% - 30px);
        margin: 0 auto;
    }

    .contact-map-heading {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0 0 18px;
    }

    .contact-map-label {
        display: inline-flex;
        margin-bottom: 8px;
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .contact-map-label::before {
        width: 22px;
        height: 2px;
    }

    .contact-map-heading h2 {
        display: block;
        width: 100%;
        margin: 0;
        font-size: 32px;
        line-height: 1.1;
        letter-spacing: -1.2px;
    }

    .contact-map-heading p {
        display: block;
        width: 100%;
        margin: 9px 0 0;
        font-size: 13px;
        line-height: 1.55;
    }

    .contact-map {
        width: 100%;
        height: 240px;
        border-radius: 14px;
    }

    .contact-map iframe {
        width: 100%;
        height: 240px;
    }
}

@media (max-width: 380px) {

    .contact-map-section {
        padding: 35px 0;
    }

    .contact-map-section .container {
        width: calc(100% - 24px);
    }

    .contact-map-heading h2 {
        font-size: 29px;
    }

    .contact-map-heading p {
        font-size: 12px;
    }

    .contact-map {
        height: 220px;
    }

    .contact-map iframe {
        height: 220px;
    }
}