/* =========================================================
   RUSH4TIME – CONTACT PAGE
   Világos, prémium kapcsolatoldal
   ========================================================= */

.contact-page {
    --contact-red: #e83232;
    --contact-red-dark: #c92525;
    --contact-red-soft: rgba(232, 50, 50, 0.09);

    --contact-black: #17191d;
    --contact-dark: #23262c;

    --contact-bg: #f5f1eb;
    --contact-bg-light: #fbf9f6;
    --contact-card: #ffffff;

    --contact-text: #181a1f;
    --contact-muted: #6f727a;
    --contact-muted-light: #96999f;

    --contact-border: rgba(24, 26, 31, 0.1);
    --contact-border-strong: rgba(24, 26, 31, 0.17);

    --contact-shadow-sm:
        0 12px 35px rgba(34, 28, 22, 0.055);

    --contact-shadow:
        0 26px 75px rgba(34, 28, 22, 0.1);

    --contact-radius-sm: 14px;
    --contact-radius: 22px;
    --contact-radius-lg: 30px;

    position: relative;
    overflow: hidden;
    background: var(--contact-bg);
    color: var(--contact-text);
}

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

.contact-page .ico {
    display: block;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================================
   KÖZÖS ELEMEK
   ========================================================= */

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--contact-red);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.contact-eyebrow::before {
    width: 24px;
    height: 2px;
    content: "";
    background: currentColor;
    border-radius: 999px;
}

.contact-page .btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-page .btn:hover {
    transform: translateY(-2px);
}

.contact-page .btn-red {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--contact-red),
            var(--contact-red-dark)
        );
    border-color: var(--contact-red);
    box-shadow:
        0 12px 28px rgba(232, 50, 50, 0.25);
}

.contact-page .btn-red:hover {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #f23e3e,
            #d62424
        );
    box-shadow:
        0 16px 34px rgba(232, 50, 50, 0.32);
}

.contact-page .btn-lg {
    min-height: 54px;
    padding: 15px 24px;
    border-radius: 14px;
}

/* =========================================================
   HERO
   ========================================================= */

.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 76px;
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(232, 50, 50, 0.16),
            transparent 25rem
        ),
        radial-gradient(
            circle at 8% 100%,
            rgba(232, 50, 50, 0.07),
            transparent 27rem
        ),
        linear-gradient(
            135deg,
            #fffefa 0%,
            #f4eee7 100%
        );
    border-bottom: 1px solid var(--contact-border);
}

.contact-hero::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 100%;
    content: "";
    background-image:
        linear-gradient(
            rgba(232, 50, 50, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(232, 50, 50, 0.035) 1px,
            transparent 1px
        );
    background-size: 38px 38px;
    mask-image:
        linear-gradient(
            to left,
            rgba(0, 0, 0, 0.8),
            transparent
        );
    pointer-events: none;
}

.contact-hero-decoration {
    position: absolute;
    border: 1px solid rgba(232, 50, 50, 0.11);
    border-radius: 50%;
    pointer-events: none;
}

.contact-hero-decoration-top {
    top: -260px;
    right: -140px;
    width: 570px;
    height: 570px;
    background:
        radial-gradient(
            circle,
            rgba(232, 50, 50, 0.09),
            transparent 64%
        );
}

.contact-hero-decoration-bottom {
    bottom: -350px;
    left: -245px;
    width: 650px;
    height: 650px;
}

.contact-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(300px, 0.85fr);
    gap: 70px;
    align-items: center;
}

.contact-hero-content {
    max-width: 750px;
}

.contact-hero-title {
    margin: 15px 0 20px;
    color: var(--contact-black);
    font-size: clamp(50px, 7vw, 88px);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.contact-hero-description {
    max-width: 680px;
    margin: 0;
    color: var(--contact-muted);
    font-size: 17px;
    line-height: 1.75;
}

.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: center;
    margin-top: 30px;
}

.contact-hero-phone {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    color: var(--contact-text);
    text-decoration: none;
}

.contact-hero-phone-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--contact-red);
    background: #ffffff;
    border: 1px solid var(--contact-border);
    border-radius: 14px;
    box-shadow: var(--contact-shadow-sm);
}

.contact-hero-phone small,
.contact-hero-phone strong {
    display: block;
}

.contact-hero-phone small {
    margin-bottom: 3px;
    color: var(--contact-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-hero-phone strong {
    color: var(--contact-text);
    font-size: 16px;
}

.contact-hero-visual {
    display: flex;
    justify-content: flex-end;
}

.contact-hero-visual-frame {
    position: relative;
    width: min(100%, 360px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.9),
            rgba(255, 255, 255, 0.48)
        );
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 36px;
    box-shadow: var(--contact-shadow);
    transform: rotate(3deg);
}

.contact-hero-visual-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(24, 26, 31, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(24, 26, 31, 0.05) 1px,
            transparent 1px
        );
    background-size: 32px 32px;
}

.contact-hero-visual-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    width: 190px;
    height: 190px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            var(--contact-red),
            #bd2020
        );
    border-radius: 50%;
    box-shadow:
        0 30px 50px rgba(203, 34, 34, 0.3);
    transform: translate(-50%, -50%);
}

.contact-hero-visual-number {
    font-size: 88px;
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.08em;
}

.contact-hero-visual-word {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.28em;
}

.contact-hero-visual-line {
    position: absolute;
    top: 42px;
    right: 32px;
    width: 80px;
    height: 4px;
    background: var(--contact-red);
    border-radius: 999px;
}

.contact-hero-visual-dot {
    position: absolute;
    bottom: 35px;
    left: 38px;
    width: 18px;
    height: 18px;
    background: var(--contact-red);
    border-radius: 50%;
    box-shadow:
        28px 0 0 rgba(232, 50, 50, 0.45),
        56px 0 0 rgba(232, 50, 50, 0.18);
}

/* =========================================================
   ÉRTESÍTÉSEK
   ========================================================= */

.contact-notifications {
    position: relative;
    z-index: 5;
}

.contact-notifications .wrap {
    position: relative;
}

.contact-alert {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 30px;
    padding: 18px 20px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.contact-alert-icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 10px;
}

.contact-alert-success {
    color: #17683a;
    background: #eaf8ef;
    border: 1px solid #b9dfc8;
}

.contact-alert-success .contact-alert-icon {
    background: rgba(23, 104, 58, 0.1);
}

.contact-alert-warning {
    color: #785000;
    background: #fff6dd;
    border: 1px solid #ead29a;
}

.contact-alert-warning .contact-alert-icon {
    background: rgba(120, 80, 0, 0.1);
}

/* =========================================================
   FŐ TARTALOM
   ========================================================= */

.contact-main-section {
    position: relative;
    padding: 82px 0 92px;
}

.contact-main-section::before {
    position: absolute;
    top: 130px;
    right: -240px;
    width: 500px;
    height: 500px;
    content: "";
    background:
        radial-gradient(
            circle,
            rgba(232, 50, 50, 0.06),
            transparent 68%
        );
    pointer-events: none;
}

.contact-main-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(300px, 0.78fr)
        minmax(0, 1.22fr);
    gap: 42px;
    align-items: start;
}

.contact-section-heading {
    margin-bottom: 28px;
}

.contact-section-heading h2,
.contact-form-card-header h2 {
    margin: 11px 0 13px;
    color: var(--contact-black);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.contact-section-heading p,
.contact-form-card-header p {
    margin: 0;
    color: var(--contact-muted);
    line-height: 1.72;
}

/* =========================================================
   BAL OLDAL – ELÉRHETŐSÉGEK
   ========================================================= */

.contact-details {
    display: grid;
    gap: 14px;
}

.contact-detail-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 18px;
    background: var(--contact-card);
    border: 1px solid var(--contact-border);
    border-radius: 17px;
    box-shadow: var(--contact-shadow-sm);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-detail-card:hover {
    transform: translateY(-3px);
    border-color: rgba(232, 50, 50, 0.22);
    box-shadow:
        0 18px 45px rgba(34, 28, 22, 0.08);
}

.contact-detail-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: var(--contact-red);
    background: var(--contact-red-soft);
    border: 1px solid rgba(232, 50, 50, 0.14);
    border-radius: 15px;
}

.contact-detail-content {
    min-width: 0;
}

.contact-detail-label {
    display: block;
    margin-bottom: 5px;
    color: var(--contact-text);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.contact-detail-content p,
.contact-detail-value {
    display: block;
    margin: 0;
    color: var(--contact-muted);
    line-height: 1.55;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.contact-detail-value:hover {
    color: var(--contact-red);
}

.contact-detail-link {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    margin-top: 8px;
    color: var(--contact-red);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.contact-detail-link .ico {
    width: 15px;
    height: 15px;
}

.contact-opening-card,
.contact-social-card {
    margin-top: 20px;
    padding: 24px;
    background: var(--contact-card);
    border: 1px solid var(--contact-border);
    border-radius: 19px;
    box-shadow: var(--contact-shadow-sm);
}

.contact-opening-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

.contact-opening-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    color: var(--contact-red);
    background: var(--contact-red-soft);
    border-radius: 11px;
}

.contact-opening-header h3,
.contact-social-heading h3 {
    margin: 0;
    color: var(--contact-text);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.contact-opening-list {
    display: grid;
    gap: 12px;
}

.contact-opening-row {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 11px;
    color: var(--contact-muted);
    font-size: 14px;
    border-bottom: 1px solid var(--contact-border);
}

.contact-opening-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-opening-row strong {
    color: var(--contact-text);
    font-weight: 800;
    text-align: right;
}

.contact-social-heading {
    margin-bottom: 16px;
}

.contact-social-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.contact-social-link {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    color: var(--contact-text);
    background: var(--contact-bg-light);
    border: 1px solid var(--contact-border);
    border-radius: 11px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.contact-social-link:hover {
    color: #ffffff;
    background: var(--contact-black);
    border-color: var(--contact-black);
}

.contact-social-link .ico {
    width: 16px;
    height: 16px;
}

/* =========================================================
   ŰRLAP
   ========================================================= */

.contact-form-column {
    display: grid;
    gap: 20px;
}

.contact-form-card {
    padding: 34px;
    background: var(--contact-card);
    border: 1px solid var(--contact-border);
    border-radius: var(--contact-radius-lg);
    box-shadow: var(--contact-shadow);
}

.contact-form-card-header {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
}

.contact-form-card-header > div:first-child {
    max-width: 610px;
}

.contact-form-header-icon {
    display: grid;
    width: 60px;
    height: 60px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--contact-red);
    background: var(--contact-red-soft);
    border: 1px solid rgba(232, 50, 50, 0.14);
    border-radius: 18px;
}

.contact-form-header-icon .ico {
    width: 27px;
    height: 27px;
}

.contact-form {
    display: grid;
    gap: 21px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-form-group {
    display: grid;
    gap: 8px;
}

.contact-form-group label {
    color: var(--contact-text);
    font-size: 13px;
    font-weight: 850;
}

.contact-form-group label span {
    color: var(--contact-red);
}

.contact-input-wrap,
.contact-textarea-wrap {
    position: relative;
}

.contact-input-icon,
.contact-textarea-icon {
    position: absolute;
    z-index: 2;
    left: 15px;
    display: grid;
    place-items: center;
    color: var(--contact-muted-light);
    pointer-events: none;
}

.contact-input-icon {
    top: 50%;
    transform: translateY(-50%);
}

.contact-textarea-icon {
    top: 16px;
}

.contact-input-icon .ico,
.contact-textarea-icon .ico {
    width: 18px;
    height: 18px;
}

.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    min-width: 0;
    color: var(--contact-text);
    background: var(--contact-bg-light);
    border: 1px solid var(--contact-border);
    border-radius: 13px;
    outline: none;
    font: inherit;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-form input {
    height: 52px;
    padding: 0 16px 0 46px;
}

.contact-form textarea {
    min-height: 190px;
    padding: 15px 16px 15px 46px;
    line-height: 1.65;
    resize: vertical;
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: var(--contact-border-strong);
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: #ffffff;
    border-color: var(--contact-red);
    box-shadow:
        0 0 0 4px rgba(232, 50, 50, 0.09);
}

.contact-input-wrap:focus-within .contact-input-icon,
.contact-textarea-wrap:focus-within .contact-textarea-icon {
    color: var(--contact-red);
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
    border-color: #c92332;
    box-shadow:
        0 0 0 4px rgba(201, 35, 50, 0.08);
}

.contact-form-error {
    color: #bd2634;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.contact-checkbox-group {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.contact-checkbox-group input {
    width: 18px;
    height: 18px;
    margin: 3px 0 0;
    padding: 0;
    accent-color: var(--contact-red);
}

.contact-checkbox-group label {
    color: var(--contact-muted);
    font-size: 13px;
    line-height: 1.65;
}

.contact-form-footer {
    display: flex;
    justify-content: flex-start;
    padding-top: 2px;
}

.contact-submit {
    min-width: 210px;
}

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* =========================================================
   GYORS FOGLALÁS
   ========================================================= */

.contact-quick-booking {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at top right,
            rgba(232, 50, 50, 0.32),
            transparent 15rem
        ),
        var(--contact-black);
    border-radius: var(--contact-radius);
    box-shadow:
        0 22px 50px rgba(20, 21, 24, 0.18);
}

.contact-quick-booking-content {
    display: flex;
    gap: 17px;
    align-items: flex-start;
}

.contact-quick-booking-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    color: #ffffff;
    background: var(--contact-red);
    border-radius: 14px;
}

.contact-quick-booking-eyebrow {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-quick-booking h3 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
}

.contact-quick-booking p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.55;
}

/* =========================================================
   GOOGLE TÉRKÉP
   ========================================================= */

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

.contact-map-card {
    display: grid;
    grid-template-columns:
        minmax(280px, 0.42fr)
        minmax(0, 0.58fr);
    overflow: hidden;
    background: var(--contact-card);
    border: 1px solid var(--contact-border);
    border-radius: var(--contact-radius-lg);
    box-shadow: var(--contact-shadow);
}

.contact-map-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 44px;
    background:
        radial-gradient(
            circle at bottom left,
            rgba(232, 50, 50, 0.09),
            transparent 22rem
        ),
        #ffffff;
}

.contact-map-content h2 {
    margin: 12px 0 14px;
    color: var(--contact-black);
    font-size: clamp(32px, 4vw, 49px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.contact-map-content p {
    margin: 0 0 24px;
    color: var(--contact-muted);
    line-height: 1.7;
}

.contact-map-button {
    color: var(--contact-text);
    background: var(--contact-bg-light);
    border-color: var(--contact-border);
}

.contact-map-button:hover {
    color: #ffffff;
    background: var(--contact-black);
    border-color: var(--contact-black);
}

.contact-map-frame {
    position: relative;
    min-height: 520px;
    background: #e8e4dd;
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
}

/* =========================================================
   ALSÓ CTA
   ========================================================= */

.contact-bottom-cta {
    padding: 0 0 100px;
}

.contact-bottom-cta-inner {
    position: relative;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 42px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(232, 50, 50, 0.34),
            transparent 23rem
        ),
        var(--contact-black);
    border-radius: var(--contact-radius-lg);
    box-shadow:
        0 30px 70px rgba(20, 21, 24, 0.2);
}

.contact-bottom-cta-decoration {
    position: absolute;
    top: -170px;
    right: -120px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.contact-bottom-cta-decoration::before,
.contact-bottom-cta-decoration::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.contact-bottom-cta-decoration::before {
    width: 280px;
    height: 280px;
}

.contact-bottom-cta-decoration::after {
    width: 170px;
    height: 170px;
}

.contact-bottom-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.contact-bottom-cta .contact-eyebrow {
    color: #ff5b5b;
}

.contact-bottom-cta h2 {
    margin: 12px 0 12px;
    color: #ffffff;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.contact-bottom-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.7;
}

.contact-bottom-cta-inner > .btn {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {
    .contact-hero-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(250px, 0.6fr);
        gap: 35px;
    }

    .contact-main-grid {
        grid-template-columns:
            minmax(280px, 0.7fr)
            minmax(0, 1.3fr);
        gap: 28px;
    }

    .contact-form-card {
        padding: 28px;
    }

    .contact-map-content {
        padding: 34px;
    }
}

@media (max-width: 900px) {
    .contact-hero {
        padding: 105px 0 64px;
    }

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

    .contact-hero-visual {
        display: none;
    }

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

    .contact-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .contact-sidebar .contact-section-heading,
    .contact-sidebar .contact-details {
        grid-column: 1 / -1;
    }

    .contact-opening-card,
    .contact-social-card {
        margin-top: 0;
    }

    .contact-map-card {
        grid-template-columns: 1fr;
    }

    .contact-map-content {
        padding: 35px;
    }

    .contact-map-frame,
    .contact-map-frame iframe {
        min-height: 430px;
    }

    .contact-bottom-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 640px) {
    .contact-hero {
        padding: 92px 0 54px;
    }

    .contact-hero-title {
        margin-top: 12px;
        font-size: clamp(42px, 15vw, 62px);
    }

    .contact-hero-description {
        font-size: 15px;
    }

    .contact-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-hero-actions .btn {
        width: 100%;
    }

    .contact-hero-phone {
        padding: 4px 0;
    }

    .contact-main-section {
        padding: 58px 0 68px;
    }

    .contact-sidebar {
        display: block;
    }

    .contact-opening-card,
    .contact-social-card {
        margin-top: 18px;
    }

    .contact-social-links {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 22px;
        border-radius: 21px;
    }

    .contact-form-card-header {
        display: block;
    }

    .contact-form-header-icon {
        display: none;
    }

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

    .contact-submit {
        width: 100%;
    }

    .contact-quick-booking {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-quick-booking > .btn {
        width: 100%;
    }

    .contact-map-section {
        padding-bottom: 68px;
    }

    .contact-map-card {
        border-radius: 21px;
    }

    .contact-map-content {
        padding: 27px 23px;
    }

    .contact-map-button {
        width: 100%;
    }

    .contact-map-frame,
    .contact-map-frame iframe {
        min-height: 360px;
    }

    .contact-bottom-cta {
        padding-bottom: 75px;
    }

    .contact-bottom-cta-inner {
        padding: 30px 23px;
        border-radius: 21px;
    }

    .contact-bottom-cta-inner > .btn {
        width: 100%;
    }
}

/* =========================================================
   CSÖKKENTETT MOZGÁS
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .contact-page *,
    .contact-page *::before,
    .contact-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
