/* ==========================================================
   SKY-ONE CONTACTS V1
   Page-scoped styles only.
   ========================================================== */

.sky-contact {
    --sky-contact-text: #17202a;
    --sky-contact-muted: #64707d;
    --sky-contact-line: #e3e8ed;
    --sky-contact-soft: #f5f7f9;
    --sky-contact-accent: #f05a28;
    --sky-contact-dark: #17212b;

    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 8px 0 54px;
    color: var(--sky-contact-text);
    box-sizing: border-box;
}


.sky-contact *,
.sky-contact *::before,
.sky-contact *::after {
    box-sizing: border-box;
}


.sky-contact a {
    text-decoration: none;
}


.sky-contact-hero {
    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 40px;

    padding: 48px 52px;

    background:
        linear-gradient(
            120deg,
            #17212b 0%,
            #202e3a 72%,
            #283c4c 100%
        );

    border-radius: 18px;
    color: #fff;
}


.sky-contact-hero::after {
    content: "";

    position: absolute;
    right: -90px;
    top: -120px;

    width: 310px;
    height: 310px;

    border: 54px solid rgba(255,255,255,.035);
    border-radius: 50%;

    pointer-events: none;
}


.sky-contact-hero-copy,
.sky-contact-hero-note {
    position: relative;
    z-index: 1;
}


.sky-contact-kicker {
    margin-bottom: 10px;

    color: var(--sky-contact-accent);

    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .12em;
}


.sky-contact-hero h1 {
    margin: 0 0 14px;

    color: #fff;

    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.02;
    letter-spacing: -.035em;
}


.sky-contact-hero p {
    max-width: 690px;

    margin: 0;

    color: rgba(255,255,255,.78);

    font-size: 17px;
    line-height: 1.6;
}


.sky-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 28px;
}


.sky-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0 20px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 750;

    transition:
        transform .16s ease,
        background-color .16s ease,
        border-color .16s ease;
}


.sky-contact-btn:hover {
    transform: translateY(-1px);
}


.sky-contact-btn-primary {
    background: var(--sky-contact-accent);
    color: #fff;
}


.sky-contact-btn-primary:hover {
    background: #db4d1e;
    color: #fff;
}


.sky-contact-btn-secondary {
    border: 1px solid rgba(255,255,255,.23);
    background: rgba(255,255,255,.07);
    color: #fff;
}


.sky-contact-btn-secondary:hover {
    background: rgba(255,255,255,.12);
    color: #fff;
}


.sky-contact-hero-note {
    align-self: end;

    padding: 18px 20px;

    border: 1px solid rgba(255,255,255,.13);
    border-radius: 12px;

    background: rgba(255,255,255,.055);
    backdrop-filter: blur(8px);
}


.sky-contact-hero-note strong,
.sky-contact-hero-note span {
    display: block;
}


.sky-contact-hero-note strong {
    margin-bottom: 5px;

    font-size: 17px;
}


.sky-contact-hero-note span {
    color: rgba(255,255,255,.66);

    font-size: 13px;
    line-height: 1.5;
}


.sky-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;

    margin-top: 20px;
}


.sky-contact-card {
    min-width: 0;
    padding: 23px 24px;

    border: 1px solid var(--sky-contact-line);
    border-radius: 14px;

    background: #fff;

    box-shadow:
        0 8px 28px rgba(16, 31, 46, .055);

    color: var(--sky-contact-text);

    transition:
        transform .16s ease,
        box-shadow .16s ease,
        border-color .16s ease;
}


.sky-contact-card:hover {
    transform: translateY(-2px);

    border-color: #ccd5dd;

    box-shadow:
        0 14px 34px rgba(16,31,46,.09);

    color: var(--sky-contact-text);
}


.sky-contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    margin-bottom: 17px;

    border-radius: 10px;

    background: #fff0ea;
    color: var(--sky-contact-accent);

    font-size: 18px;
    font-weight: 900;
}


.sky-contact-card-label,
.sky-contact-card strong,
.sky-contact-card small {
    display: block;
}


.sky-contact-card-label {
    margin-bottom: 6px;

    color: var(--sky-contact-muted);

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .055em;
}


.sky-contact-card strong {
    overflow-wrap: anywhere;

    font-size: 18px;
    line-height: 1.35;
}


.sky-contact-card small {
    margin-top: 5px;

    color: #7a8590;

    font-size: 13px;
}


.sky-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;

    margin-top: 16px;
}


.sky-contact-panel {
    padding: 28px 30px;

    border: 1px solid var(--sky-contact-line);
    border-radius: 14px;

    background: var(--sky-contact-soft);
}


.sky-contact-panel-title {
    margin-bottom: 20px;

    font-size: 21px;
    line-height: 1.25;
    font-weight: 800;
}


.sky-contact-panel p {
    margin: 16px 0 0;

    color: var(--sky-contact-muted);

    line-height: 1.65;
}


.sky-contact-panel a {
    color: #c9481d;
}


.sky-contact-schedule {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}


.sky-contact-schedule > div {
    padding: 15px 16px;

    border: 1px solid #e1e6eb;
    border-radius: 10px;

    background: #fff;
}


.sky-contact-schedule span,
.sky-contact-schedule strong {
    display: block;
}


.sky-contact-schedule span {
    margin-bottom: 5px;

    color: var(--sky-contact-muted);
    font-size: 12px;
}


.sky-contact-schedule strong {
    font-size: 16px;
}


.sky-contact-secondary {
    display: flex;
    justify-content: space-between;
    gap: 12px;

    margin-top: 17px;
    padding-top: 17px;

    border-top: 1px solid #dde3e8;

    color: var(--sky-contact-muted);
}


.sky-contact-checklist {
    display: grid;
    gap: 10px;

    margin: 15px 0 20px;
    padding: 0;

    list-style: none;
}


.sky-contact-checklist li {
    position: relative;

    padding-left: 28px;

    color: #404b56;

    line-height: 1.5;
}


.sky-contact-checklist li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    color: var(--sky-contact-accent);

    font-weight: 900;
}


.sky-contact-inline-link {
    font-weight: 750;
}


.sky-contact-location {
    margin-top: 40px;
}


.sky-contact-location-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;

    margin-bottom: 18px;
}


.sky-contact-location h2 {
    margin: 0 0 8px;

    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.1;
    letter-spacing: -.025em;
}


.sky-contact-location-head p {
    margin: 0;

    color: var(--sky-contact-muted);

    font-size: 15px;
}


.sky-contact-map-link {
    flex: 0 0 auto;

    color: #c9481d;

    font-size: 14px;
    font-weight: 750;
}


.sky-contact-map-shell {
    position: relative;
    overflow: hidden;

    min-height: 510px;

    border: 1px solid var(--sky-contact-line);
    border-radius: 16px;

    background: #eef1f4;

    box-shadow:
        0 12px 38px rgba(18,33,48,.075);
}


.sky-contact-map {
    width: 100%;
    height: 510px;
}


.sky-contact-map-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
    min-height: 510px;

    padding: 30px;

    color: #697681;
    text-align: center;
}


.sky-contact-map-loading strong {
    margin-bottom: 8px;

    color: #28343f;

    font-size: 18px;
}


.sky-contact-map-address {
    position: absolute;
    z-index: 5;

    left: 18px;
    top: 18px;

    display: flex;
    gap: 12px;

    width: min(410px, calc(100% - 36px));

    padding: 15px 17px;

    border: 1px solid rgba(20,35,48,.10);
    border-radius: 12px;

    background: rgba(255,255,255,.95);

    box-shadow:
        0 9px 30px rgba(20,35,48,.15);

    backdrop-filter: blur(8px);
}


.sky-contact-map-pin {
    flex: 0 0 auto;

    padding-top: 1px;

    color: var(--sky-contact-accent);

    font-size: 19px;
}


.sky-contact-map-address strong,
.sky-contact-map-address span,
.sky-contact-map-address small {
    display: block;
}


.sky-contact-map-address strong {
    margin-bottom: 3px;

    font-size: 14px;
}


.sky-contact-map-address span {
    font-size: 14px;
    line-height: 1.4;
}


.sky-contact-map-address small {
    margin-top: 3px;

    color: var(--sky-contact-muted);

    font-size: 12px;
}


@media (max-width: 900px) {

    .sky-contact-hero {
        grid-template-columns: 1fr;

        padding: 38px 34px;
    }


    .sky-contact-hero-note {
        max-width: 420px;
    }


    .sky-contact-cards {
        grid-template-columns: 1fr;
    }


    .sky-contact-info-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 640px) {

    .sky-contact {
        padding-bottom: 34px;
    }


    .sky-contact-hero {
        padding: 30px 22px;

        border-radius: 13px;
    }


    .sky-contact-actions {
        display: grid;
    }


    .sky-contact-btn {
        width: 100%;
    }


    .sky-contact-panel {
        padding: 23px 20px;
    }


    .sky-contact-schedule {
        grid-template-columns: 1fr;
    }


    .sky-contact-location-head {
        align-items: flex-start;
        flex-direction: column;

        gap: 12px;
    }


    .sky-contact-map-shell,
    .sky-contact-map,
    .sky-contact-map-loading {
        min-height: 440px;
        height: 440px;
    }


    .sky-contact-map-address {
        left: 12px;
        top: 12px;

        width: calc(100% - 24px);
    }

}


/* ==========================================================
   SKY-ONE CONTACTS V1.1
   OFFICE + WAREHOUSE + RESPONSIVE LOCATIONS
   ========================================================== */

.sky-contact-cards {
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
}


.sky-contact-location-count {
    flex: 0 0 auto;

    padding: 8px 12px;

    border: 1px solid var(--sky-contact-line);
    border-radius: 999px;

    background: var(--sky-contact-soft);
    color: var(--sky-contact-muted);

    font-size: 12px;
    font-weight: 750;
}


.sky-contact-location-list {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;

    margin-bottom: 16px;
}


.sky-contact-location-card {
    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 155px;

    padding: 20px 22px;

    border: 1px solid var(--sky-contact-line);
    border-radius: 13px;

    background: #fff;

    box-shadow:
        0 6px 24px rgba(16,31,46,.045);
}


.sky-contact-location-type {
    margin-bottom: 8px;

    color: var(--sky-contact-accent);

    font-size: 11px;
    line-height: 1.2;
    font-weight: 850;

    text-transform: uppercase;
    letter-spacing: .07em;
}


.sky-contact-location-card strong {
    display: block;

    margin-bottom: 7px;

    font-size: 16px;
    line-height: 1.45;
}


.sky-contact-location-card span {
    display: block;

    margin-bottom: 14px;

    color: var(--sky-contact-muted);

    font-size: 13px;
    line-height: 1.5;
}


.sky-contact-location-card a {
    margin-top: auto;

    color: #c9481d;

    font-size: 13px;
    font-weight: 750;
}


.sky-contact-map-address-office {
    top: 18px;
}


.sky-contact-map-address-warehouse {
    top: 112px;
}


.sky-contact-map-address-warehouse
.sky-contact-map-pin {
    color: #2f78c4;
}


@media (max-width: 1080px) {

    .sky-contact-cards {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 760px) {

    .sky-contact-location-list {
        grid-template-columns: 1fr;
    }


    .sky-contact-location-card {
        min-height: 0;
    }

}


@media (max-width: 640px) {

    /*
     * MOBILE:
     *
     * Never cover a large part of the map
     * with floating address cards.
     *
     * Full addresses are already displayed
     * immediately above the map.
     */
    .sky-contact-map-address {
        display: none;
    }


    .sky-contact-cards {
        grid-template-columns: 1fr;
    }


    .sky-contact-location-count {
        align-self: flex-start;
    }


    .sky-contact-location-card {
        padding: 18px;
    }


    .sky-contact-location-card strong {
        font-size: 15px;
    }

}
