﻿:root {
    --wct-bg: #fdfcf9;
    --wct-surface: rgba(255,255,255,0.84);
    --wct-surface-strong: rgba(255,255,255,0.94);
    --wct-border: rgba(224, 216, 204, 0.18);
    --wct-border-strong: rgba(208, 196, 180, 0.28);
    --wct-text: #1f2430;
    --wct-text-soft: #6f7786;
    --wct-title: #1f2430;
    --wct-primary: #9f7a50;
    --wct-primary-deep: #7f603d;
    --wct-primary-soft: rgba(181,145,92,0.10);
    --wct-success: #23a26d;
    --wct-danger: #d14f5b;
    --wct-shadow-sm: 0 12px 32px rgba(74, 60, 42, 0.06);
    --wct-shadow-md: 0 18px 48px rgba(74, 60, 42, 0.10);
    --wct-shadow-lg: 0 28px 80px rgba(74, 60, 42, 0.14);
    --wct-radius-sm: 18px;
    --wct-radius-md: 24px;
    --wct-radius-lg: 34px;
    --wct-transition: 0.35s ease;
}

body {
    background: var(--wct-bg);
}

.wct-contact-hero,
.wct-contact-grid-section,
.wct-contact-band-section,
.wct-form-section,
.wct-cta-section {
    position: relative;
}

.wct-container {
    width: 100%;
    max-width: none !important;
    padding-left: clamp(16px, 2vw, 32px);
    padding-right: clamp(16px, 2vw, 32px);
}

/* HERO */
.wct-contact-hero {
    padding: 72px 0 34px;
    background: transparent; /*radial-gradient(circle at top left, rgba(181,145,92,.10), transparent 24%), radial-gradient(circle at top right, rgba(79,124,255,.06), transparent 24%), linear-gradient(180deg, #fbfaf7 0%, #f3f6fb 100%);*/
}

.wct-contact-shell {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    padding: 34px;
    background: linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(248,250,255,.92) 100%);
    border: 1px solid rgba(181,145,92,.10);
    box-shadow: var(--wct-shadow-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

    .wct-contact-shell::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 85% 20%, rgba(79,124,255,.08), transparent 20%), radial-gradient(circle at 10% 80%, rgba(181,145,92,.08), transparent 24%);
    }

.wct-floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    opacity: .28;
    pointer-events: none;
    animation: wctFloat 8s ease-in-out infinite;
}

.wct-orb-1 {
    width: 180px;
    height: 180px;
    right: 8%;
    top: 10%;
    background: radial-gradient(circle, rgba(79,124,255,.18), transparent 70%);
}

.wct-orb-2 {
    width: 140px;
    height: 140px;
    left: 4%;
    bottom: 8%;
    background: radial-gradient(circle, rgba(181,145,92,.22), transparent 70%);
    animation-delay: 1.5s;
}

.wct-kicker,
.wct-panel-kicker,
.wct-office-badge,
.wct-info-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--wct-primary-soft);
    color: var(--wct-primary-deep);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    line-height: 1;
}

.wct-hero-copy,
.wct-hero-panel,
.wct-cta-copy {
    position: relative;
    z-index: 2;
}

.wct-hero-title {
    margin: 18px 0 18px;
    font-size: clamp(2.5rem, 4vw, 2.5rem);
    line-height: 1.02;
    font-weight: 900;
    color: var(--wct-title);
    letter-spacing: -0.045em;
    max-width: none;
}

.wct-hero-text,
.wct-panel-main p,
.wct-panel-card p,
.wct-strip-item span,
.wct-office-copy,
.wct-office-address p,
.wct-band-copy p,
.wct-info-card h3,
.wct-form-copy p,
.wct-form-note p,
.wct-cta-copy p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.86;
    color: var(--wct-text-soft);
    max-width: none;
}

.wct-hero-actions,
.wct-office-actions,
.wct-form-actions,
.wct-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.wct-btn-primary,
.wct-btn-secondary,
.wct-btn-map {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 18px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    transition: transform var(--wct-transition), box-shadow var(--wct-transition), background var(--wct-transition), border-color var(--wct-transition), color var(--wct-transition);
}

.wct-btn-primary {
    background: linear-gradient(135deg, #b48a56, #a2743f);
    color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 14px 30px rgba(162,116,63,0.22);
}

    .wct-btn-primary:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 18px 38px rgba(162,116,63,0.30);
    }

.wct-btn-secondary,
.wct-btn-map {
    background: rgba(255,255,255,.92);
    color: var(--wct-title);
    border: 1px solid rgba(18,32,51,0.10);
    box-shadow: 0 8px 22px rgba(15,23,42,0.04);
}

    .wct-btn-secondary:hover,
    .wct-btn-map:hover {
        color: var(--wct-title);
        transform: translateY(-2px);
        background: #fff;
        border-color: rgba(181,145,92,0.22);
    }

.wct-panel-main,
.wct-panel-card {
    background: rgba(255,255,255,.70);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 24px;
    box-shadow: var(--wct-shadow-sm);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .wct-panel-main:hover,
    .wct-panel-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--wct-shadow-md);
        border-color: rgba(181,145,92,.16);
    }

.wct-panel-main {
    padding: 24px;
}

    .wct-panel-main h3 {
        margin: 14px 0 10px;
        color: var(--wct-title);
        font-size: 1.42rem;
        line-height: 1.3;
        font-weight: 850;
    }

.wct-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
}

.wct-panel-card {
    padding: 20px;
}

    .wct-panel-card h4 {
        margin: 0 0 8px;
        color: var(--wct-title);
        font-size: 1rem;
        font-weight: 850;
    }

.wct-hero-strip {
    position: relative;
    z-index: 2;
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.wct-strip-item {
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 14px 34px rgba(8,18,35,.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

    .wct-strip-item strong {
        display: block;
        margin-bottom: 6px;
        color: var(--wct-title);
        font-size: 1rem;
        font-weight: 850;
    }

/* SECTION HEAD */
.wct-section-head {
    margin-bottom: 24px;
}

    .wct-section-head h2 {
        margin: 16px 0 12px;
        font-size: clamp(2rem, 3.2vw, 2rem);
        line-height: 1.05;
        letter-spacing: -0.045em;
        font-weight: 900;
        color: var(--wct-title);
        max-width: none;
    }

    .wct-section-head p {
        margin: 0;
        color: var(--wct-text-soft);
        font-size: 1.02rem;
        line-height: 1.9;
        max-width: none;
    }

/* OFFICE CARDS */
.wct-contact-grid-section {
    padding: 22px 0 36px;
}

.wct-office-card {
    height: 100%;
    padding: 24px 22px;
    border-radius: 26px;
    background: rgba(255,255,255,.70);
    border: 1px solid rgba(255,255,255,.45);
    box-shadow: var(--wct-shadow-sm);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    transform-style: preserve-3d;
}

    .wct-office-card:hover {
        transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-6px);
        box-shadow: var(--wct-shadow-md);
        border-color: rgba(181,145,92,.18);
    }

.wct-office-card-featured {
    background: linear-gradient(180deg, rgba(255,255,255,.82) 0%, rgba(246,249,255,.78) 100%);
}

.wct-office-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.wct-office-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b48a56, #a2743f);
    color: #fff;
    font-size: 1.15rem;
    box-shadow: 0 12px 24px rgba(162,116,63,.20);
}

.wct-office-card h3 {
    margin: 0 0 6px;
    color: var(--wct-title);
    font-size: 1.28rem;
    line-height: 1.3;
    font-weight: 850;
}

.wct-office-card h4 {
    margin: 0 0 12px;
    color: var(--wct-primary-deep);
    font-size: 0.98rem;
    font-weight: 800;
}

.wct-office-address {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(18,32,51,.08);
}

    .wct-office-address strong {
        display: block;
        margin-bottom: 8px;
        color: var(--wct-title);
        font-size: 0.95rem;
        font-weight: 850;
    }

/* BAND */
.wct-contact-band-section {
    padding: 10px 0 36px;
}

.wct-contact-band {
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(246,249,255,.96) 100%);
    border: 1px solid rgba(181,145,92,.10);
    box-shadow: 0 24px 60px rgba(15,23,42,.07);
}

.wct-band-copy h2,
.wct-form-copy h2,
.wct-cta-copy h2 {
    margin: 16px 0 14px;
    font-size: clamp(2rem, 3vw, 2rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 900;
    color: var(--wct-title);
    max-width: none;
}

.wct-bullet-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

    .wct-bullet-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: var(--wct-title);
        line-height: 1.72;
        font-weight: 500;
    }

    .wct-bullet-list i {
        color: var(--wct-primary);
        margin-top: 2px;
    }

.wct-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.wct-info-card {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(181,145,92,.08);
    box-shadow: var(--wct-shadow-sm);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    min-height: 150px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .wct-info-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--wct-shadow-md);
        border-color: rgba(181,145,92,.16);
    }

.wct-info-card-lg {
    min-height: 220px;
}

.wct-info-card-wide {
    grid-column: 1 / -1;
    min-height: 120px;
}

.wct-info-card h3 {
    margin: 14px 0 0;
    color: var(--wct-title);
    font-size: 1.08rem;
    line-height: 1.48;
    font-weight: 850;
}

/* FORM */
.wct-form-section {
    padding: 8px 0 40px;
}

.wct-form-copy {
    padding-right: 16px;
}

.wct-contact-points {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.wct-contact-point {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(181,145,92,.08);
    box-shadow: var(--wct-shadow-sm);
}

    .wct-contact-point i {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #b48a56, #a2743f);
        color: #fff;
        font-size: 1rem;
        box-shadow: 0 10px 20px rgba(162,116,63,.18);
    }

    .wct-contact-point strong {
        display: block;
        margin-bottom: 4px;
        color: var(--wct-title);
        font-size: 0.96rem;
        font-weight: 850;
    }

    .wct-contact-point span {
        color: var(--wct-text-soft);
        font-size: 0.96rem;
        line-height: 1.7;
    }

.wct-form-card {
    padding: 26px;
    border-radius: 28px;
    background: rgba(255,255,255,.74);
    border: 1px solid rgba(255,255,255,.45);
    box-shadow: var(--wct-shadow-md);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.form-label {
    color: var(--wct-title);
    font-weight: 800;
    margin-bottom: 8px;
}

.wct-input {
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(18,32,51,.10);
    background: rgba(255,255,255,.82);
    color: var(--wct-title);
    box-shadow: none;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

    .wct-input:focus {
        border-color: rgba(35,162,109,.40);
        box-shadow: 0 0 0 4px rgba(35,162,109,.10);
        transform: translateY(-1px);
    }

    .wct-input.is-invalid,
    .wct-input.error {
        border-color: rgba(209,79,91,.48);
        box-shadow: 0 0 0 4px rgba(209,79,91,.10);
    }

.wct-textarea {
    min-height: 180px;
    padding-top: 14px;
    resize: vertical;
}

.wct-form-note {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(18,32,51,.08);
}

/* CTA */
.wct-cta-section {
    padding: 6px 0 70px;
}

.wct-cta-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 34px;
    background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(246,249,255,.96) 100%);
    border: 1px solid rgba(181,145,92,.10);
    box-shadow: 0 24px 60px rgba(15,23,42,.08);
}

    .wct-cta-box::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at right, rgba(79,124,255,.08), transparent 30%), radial-gradient(circle at left, rgba(181,145,92,.08), transparent 28%);
    }

.wct-cta-copy,
.wct-cta-actions {
    position: relative;
    z-index: 2;
}

.wct-cta-actions {
    justify-content: flex-end;
}

/* MAP HOVER FEEL */
.wct-office-card:hover .wct-btn-map {
    box-shadow: 0 14px 32px rgba(15,23,42,.08);
}

/* ANIMATION */
@keyframes wctFloat {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-14px);
    }
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
    .wct-hero-title,
    .wct-band-copy h2,
    .wct-form-copy h2,
    .wct-cta-copy h2 {
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .wct-panel-grid,
    .wct-info-grid,
    .wct-hero-strip {
        grid-template-columns: 1fr 1fr;
    }

    .wct-cta-actions {
        justify-content: flex-start;
    }

    .wct-form-copy {
        padding-right: 0;
    }
}

@media (max-width: 767.98px) {
    .wct-contact-hero {
        padding: 58px 0 26px;
    }

    .wct-contact-shell,
    .wct-contact-band,
    .wct-form-card,
    .wct-cta-box {
        padding: 22px;
        border-radius: 24px;
    }

    .wct-panel-grid,
    .wct-info-grid,
    .wct-hero-strip {
        grid-template-columns: 1fr;
    }

    .wct-info-card-wide {
        grid-column: auto;
    }

    .wct-hero-actions,
    .wct-office-actions,
    .wct-form-actions,
    .wct-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .wct-btn-primary,
    .wct-btn-secondary,
    .wct-btn-map {
        width: 100%;
    }

    .wct-hero-title {
        font-size: clamp(3rem, 8vw, 3rem);
    }

    .wct-contact-point {
        grid-template-columns: 1fr;
    }
}






.wct-input:focus {
    border-color: rgba(181,145,92,0.38);
    box-shadow: 0 0 0 4px rgba(181,145,92,0.10);
    transform: translateY(-1px);
}

.wct-btn-secondary,
.wct-btn-map {
    background: rgba(255,255,255,.96);
    color: var(--wct-title);
    border: 1px solid rgba(18,32,51,0.08);
    box-shadow: 0 8px 18px rgba(15,23,42,0.03);
}

    .wct-btn-secondary:hover,
    .wct-btn-map:hover {
        color: var(--wct-title);
        transform: translateY(-2px);
        background: #fff;
        border-color: rgba(181,145,92,0.18);
        box-shadow: 0 12px 24px rgba(15,23,42,0.05);
    }



.input-validation-error {
    border-color: #d14f5b !important;
    box-shadow: 0 0 0 4px rgba(209, 79, 91, 0.10) !important;
}

.field-validation-error {
    display: block;
    margin-top: 6px;
    font-size: 0.88rem;
    color: #d14f5b;
    font-weight: 600;
}


.wct-input {
    height: 52px;
}

.wct-textarea {
    min-height: 140px;
}

/* Prevent validation shifting layout */
.field-validation-error {
    position: absolute;
    font-size: 0.8rem;
    margin-top: 4px;
}

/* Wrap each input properly */
.col-md-6 {
    position: relative;
}




.wct-country-picker {
    position: relative;
}

.wct-country-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    padding-inline: 14px;
}

.wct-country-trigger-left,
.wct-country-option-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.wct-country-flag {
    font-size: 1.1rem;
    line-height: 1;
}

.wct-country-label {
    color: var(--wct-title);
    font-weight: 500;
}

.wct-country-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    z-index: 50;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(18,32,51,0.08);
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(15,23,42,0.10);
    padding: 12px;
    display: none;
}

    .wct-country-dropdown.is-open {
        display: block;
    }

.wct-country-search-wrap {
    position: relative;
    margin-bottom: 10px;
}

    .wct-country-search-wrap i {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--wct-text-soft);
    }

.wct-country-search {
    width: 100%;
    min-height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(18,32,51,0.08);
    padding: 0 14px 0 36px;
    outline: none;
}

.wct-country-list {
    display: grid;
    gap: 6px;
    max-height: 260px;
    overflow-y: auto;
}

.wct-country-option {
    width: 100%;
    border: 0;
    background: transparent;
    border-radius: 14px;
    min-height: 46px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: var(--wct-title);
}

    .wct-country-option:hover {
        background: rgba(181,145,92,0.08);
    }

.wct-country-code {
    color: var(--wct-text-soft);
    font-weight: 700;
}

.wct-btn-primary.is-disabled,
.wct-btn-primary:disabled {
    opacity: .55;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
}

.text-muted {
    display: block;
    margin-top: 7px;
    font-size: 0.82rem;
    color: var(--wct-text-soft) !important;
}

.text-danger.field-validation-error,
.field-validation-error {
    display: block;
    margin-top: 6px;
    font-size: 0.84rem;
    color: #d14f5b;
    font-weight: 600;
    position: static;
}

.input-validation-error {
    border-color: rgba(209,79,91,.70) !important;
    box-shadow: 0 0 0 4px rgba(209,79,91,.10) !important;
}

.wct-textarea {
    min-height: 150px;
    max-height: 260px;
}

/* MAP SECTION */
.wct-maps-section {
    padding: 10px 0 40px;
}

.wct-maps-shell {
    padding: 26px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(246,249,255,.96) 100%);
    border: 1px solid rgba(181,145,92,.10);
    box-shadow: 0 24px 60px rgba(15,23,42,.07);
}

.wct-map-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.wct-map-tab {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 60px;
    padding: 12px 16px;
    border-radius: 18px;
    border: 1px solid rgba(18,32,51,0.08);
    background: rgba(255,255,255,.82);
    color: var(--wct-title);
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
    box-shadow: 0 8px 20px rgba(15,23,42,.04);
}

.wct-map-tab:hover {
    transform: translateY(-2px);
    border-color: rgba(181,145,92,0.18);
    background: #fff;
}

.wct-map-tab.is-active {
    background: linear-gradient(135deg, rgba(181,145,92,.14), rgba(255,255,255,.95));
    border-color: rgba(181,145,92,0.28);
    box-shadow: 0 14px 30px rgba(162,116,63,0.10);
}

.wct-map-tab-flag {
    font-size: 1.25rem;
    line-height: 1;
}

.wct-map-tab-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.wct-map-tab-text strong {
    font-size: 0.95rem;
    font-weight: 850;
    color: var(--wct-title);
}

.wct-map-tab-text small {
    font-size: 0.82rem;
    color: var(--wct-text-soft);
}

.wct-map-stage {
    margin-top: 8px;
}

.wct-map-copy-card,
.wct-map-frame-card {
    height: 100%;
    border-radius: 26px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(255,255,255,.45);
    box-shadow: var(--wct-shadow-sm);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.wct-map-copy-card {
    padding: 24px;
}

.wct-map-copy-card h3 {
    margin: 14px 0 10px;
    color: var(--wct-title);
    font-size: 1.38rem;
    line-height: 1.25;
    font-weight: 850;
}

.wct-map-copy-card p {
    margin: 0;
    color: var(--wct-text-soft);
    line-height: 1.82;
}

.wct-map-address-block {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(18,32,51,.08);
}

.wct-map-address-block strong {
    display: block;
    margin-bottom: 8px;
    color: var(--wct-title);
    font-size: 0.95rem;
    font-weight: 850;
}

.wct-map-meta {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.wct-map-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--wct-title);
    font-weight: 600;
}

.wct-map-meta-item i {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b48a56, #a2743f);
    color: #fff;
    box-shadow: 0 10px 20px rgba(162,116,63,.18);
}

.wct-map-frame-card {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    padding: 12px;
}

.wct-map-frame {
    display: none;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.wct-map-frame.is-active {
    display: block;
}

.wct-map-frame iframe {
    width: 100%;
    height: 496px;
    border: 0;
    border-radius: 20px;
    display: block;
}

@media (max-width: 991.98px) {
    .wct-map-frame-card {
        min-height: 460px;
    }

    .wct-map-frame iframe {
        height: 436px;
    }
}

@media (max-width: 767.98px) {
    .wct-maps-shell {
        padding: 20px;
        border-radius: 24px;
    }

    .wct-map-tabs {
        flex-direction: column;
    }

    .wct-map-tab {
        width: 100%;
        justify-content: flex-start;
    }

    .wct-map-frame-card {
        min-height: 380px;
        padding: 10px;
    }

    .wct-map-frame iframe {
        height: 360px;
        border-radius: 18px;
    }
}