:root {
    --cc-primary: #0f5cff;
    --cc-primary-dark: #0732a8;
    --cc-primary-soft: #eaf2ff;
    --cc-cyan: #19c9f5;
    --cc-navy: #061b4f;
    --cc-text: #0a1e52;
    --cc-muted: #637198;
    --cc-border: rgba(15, 92, 255, 0.13);
    --cc-card: rgba(255, 255, 255, 0.86);
    --cc-bg: #f4f8ff;
    --cc-bg-blue: #edf5ff;
    --cc-shadow: 0 24px 70px rgba(12, 48, 120, 0.12);
    --cc-radius: 28px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--cc-text);
    background:
        radial-gradient(circle at 12% 8%, rgba(15, 92, 255, 0.12), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(25, 201, 245, 0.10), transparent 30%),
        linear-gradient(180deg, #f7fbff 0%, #edf5ff 42%, #f8fbff 100%);
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
}

.site-container {
    max-width: 1440px;
    padding-left: 32px;
    padding-right: 32px;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0 0;
    background: linear-gradient(180deg, rgba(247, 251, 255, 0.96), rgba(247, 251, 255, 0.72));
    backdrop-filter: blur(18px);
}

.navbar {
    min-height: 76px;
}

.site-header .navbar .site-container {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--cc-border);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(10, 30, 82, 0.08);
    padding-top: 10px;
    padding-bottom: 10px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 850;
    color: var(--cc-navy);
    text-decoration: none;
    letter-spacing: -0.04em;
    font-size: 1.35rem;
}

.brand:hover {
    color: var(--cc-primary);
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 28px rgba(15, 92, 255, 0.28);
    overflow: hidden;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.navbar-nav {
    gap: 8px;
}

.nav-link {
    color: var(--cc-text);
    font-size: 0.92rem;
    font-weight: 650;
    padding: 10px 14px !important;
    border-radius: 999px;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--cc-primary);
    background: var(--cc-primary-soft);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--cc-primary-dark);
    background: #ffffff;
    border: 1px solid var(--cc-border);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
}

.admin-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cc-primary);
    background: var(--cc-primary-soft);
    border: 1px solid var(--cc-border);
    border-radius: 999px;
    text-decoration: none;
}

.btn-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 22px;
    border: 0;
    border-radius: 14px;
    color: white;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cc-primary), #0b43d9);
    box-shadow: 0 16px 34px rgba(15, 92, 255, 0.28);
    text-decoration: none;
}

.btn-brand:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 20px 42px rgba(15, 92, 255, 0.34);
}

/* MAIN */

.site-main {
    padding-top: 38px;
}

/* OBECNÉ SEKCE */

.content-section {
    position: relative;
    padding: 44px 0;
}

.content-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(15, 92, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 92, 255, 0.045) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at 80% 10%, #000 0%, transparent 38%);
}

.section-tint {
    background:
        radial-gradient(circle at 15% 10%, rgba(15, 92, 255, 0.10), transparent 34%),
        linear-gradient(135deg, rgba(237, 245, 255, 0.95), rgba(246, 250, 255, 0.95));
}

.section-white {
    background:
        radial-gradient(circle at 90% 10%, rgba(25, 201, 245, 0.10), transparent 30%),
        rgba(255, 255, 255, 0.35);
}

.section-card {
    position: relative;
    overflow: hidden;
    padding: 58px;
    border-radius: var(--cc-radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 255, 0.78));
    border: 1px solid var(--cc-border);
    box-shadow: var(--cc-shadow);
}

.section-card::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -140px;
    top: -150px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(15, 92, 255, 0.12), transparent 65%);
    pointer-events: none;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--cc-primary);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cc-primary), var(--cc-cyan));
}

.section-card h2 {
    max-width: 720px;
    margin: 0 0 18px;
    color: var(--cc-navy);
    font-size: clamp(2rem, 4vw, 4.1rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.065em;
}

.section-card p {
    max-width: 650px;
    margin-bottom: 28px;
    color: var(--cc-muted);
    font-size: 1.06rem;
    line-height: 1.75;
}

.section-image-wrap {
    position: relative;
    padding: 16px;
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.92), rgba(234,242,255,0.72));
    border: 1px solid var(--cc-border);
    box-shadow: 0 20px 55px rgba(10, 30, 82, 0.12);
}

.section-image {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.visual-placeholder {
    position: relative;
    min-height: 360px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 24% 28%, rgba(25, 201, 245, 0.18), transparent 28%),
        linear-gradient(135deg, #f8fbff, #eaf2ff);
    border: 1px solid var(--cc-border);
    box-shadow: 0 20px 55px rgba(10, 30, 82, 0.12);
    overflow: hidden;
}

.visual-placeholder::before {
    content: "";
    position: absolute;
    inset: 40px;
    border-radius: 26px;
    border: 1px solid rgba(15, 92, 255, 0.12);
    background-image:
        linear-gradient(rgba(15, 92, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 92, 255, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
}

.visual-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255,255,255,0.86);
    border: 1px solid var(--cc-border);
    box-shadow: 0 18px 45px rgba(10, 30, 82, 0.14);
}

.visual-card-main {
    left: 54px;
    top: 60px;
    width: 250px;
}

.visual-card-main span,
.visual-card-small span {
    color: var(--cc-muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.visual-card-main strong {
    color: var(--cc-primary);
    font-size: 3.4rem;
    line-height: 1;
}

.visual-card-main small {
    color: var(--cc-muted);
}

.visual-card-small {
    right: 46px;
    bottom: 54px;
    flex-direction: row;
    align-items: center;
}

.visual-card-small i {
    color: var(--cc-primary);
    font-size: 1.8rem;
}

/* FOOTER */

.site-footer {
    padding: 42px 0 30px;
    background:
        linear-gradient(180deg, rgba(239, 246, 255, 0.55), rgba(222, 235, 255, 0.78));
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 42px;
    padding: 42px;
    border-radius: 30px;
    color: white;
    background:
        radial-gradient(circle at 80% 20%, rgba(25, 201, 245, 0.35), transparent 36%),
        linear-gradient(135deg, var(--cc-primary-dark), var(--cc-primary));
    box-shadow: 0 24px 70px rgba(15, 92, 255, 0.24);
}

.footer-cta .section-kicker {
    color: #b8dcff;
}

.footer-cta h2 {
    margin: 0 0 10px;
    font-size: clamp(1.7rem, 3vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.05em;
}

.footer-cta p {
    margin: 0;
    color: rgba(255,255,255,0.78);
}

.footer-cta-btn {
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 16px;
    color: var(--cc-primary-dark);
    font-weight: 900;
    white-space: nowrap;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 38px;
    padding: 36px;
    border-radius: 28px;
    background: rgba(255,255,255,0.68);
    border: 1px solid var(--cc-border);
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-text {
    max-width: 420px;
    color: var(--cc-muted);
    line-height: 1.7;
}

.footer-content h6 {
    color: var(--cc-navy);
    font-weight: 900;
    margin-bottom: 14px;
}

.footer-content a,
.footer-content span {
    display: block;
    margin-bottom: 9px;
    color: var(--cc-muted);
    text-decoration: none;
    font-size: 0.94rem;
}

.footer-content a:hover {
    color: var(--cc-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    color: var(--cc-muted);
    font-size: 0.88rem;
}

.footer-bottom a {
    color: var(--cc-muted);
    text-decoration: none;
    margin-left: 18px;
}

.footer-bottom a:hover {
    color: var(--cc-primary);
}

/* CHAT */

#chatBubble {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1200;
    width: 64px;
    height: 64px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    font-size: 25px;
    background: linear-gradient(135deg, var(--cc-primary), var(--cc-cyan));
    box-shadow: 0 20px 42px rgba(15, 92, 255, 0.34);
}

.chat-dot {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: #00d991;
    border: 2px solid white;
}

#chatWindow {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 1200;
    width: min(360px, calc(100vw - 32px));
    height: 460px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255,255,255,0.94);
    border: 1px solid var(--cc-border);
    box-shadow: 0 24px 80px rgba(10, 30, 82, 0.24);
    backdrop-filter: blur(18px);
}

.chat-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    color: white;
    background: linear-gradient(135deg, var(--cc-primary-dark), var(--cc-primary));
}

.chat-header .status {
    display: block;
    margin-top: 2px;
    color: #9fffd8;
    font-size: 0.78rem;
}

.chat-header button {
    border: 0;
    background: transparent;
    color: white;
    font-size: 1.6rem;
    line-height: 1;
}

#chatMessages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    font-size: 0.92rem;
}

.chat-message {
    margin-bottom: 12px;
    padding: 11px 13px;
    border-radius: 14px;
    line-height: 1.5;
}

.chat-message.user {
    background: var(--cc-primary-soft);
}

.chat-message.ai {
    background: #f5f8ff;
    border: 1px solid var(--cc-border);
}

.chat-input {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid var(--cc-border);
}

.chat-input input {
    flex: 1;
    min-height: 44px;
    border: 1px solid var(--cc-border);
    border-radius: 14px;
    padding: 0 14px;
    outline: none;
}

.chat-input input:focus {
    border-color: rgba(15, 92, 255, 0.45);
    box-shadow: 0 0 0 4px rgba(15, 92, 255, 0.08);
}

.chat-input button {
    width: 44px;
    border: 0;
    border-radius: 14px;
    color: white;
    background: var(--cc-primary);
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .site-header .navbar .site-container {
        border-radius: 20px;
    }

    .navbar-collapse {
        padding-top: 18px;
    }

    .nav-actions {
        align-items: stretch;
        flex-direction: column;
        margin-top: 16px;
    }

    .admin-link,
    .language-switch,
    .btn-brand {
        width: 100%;
    }

    .section-card {
        padding: 36px 24px;
    }

    .footer-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .site-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .site-main {
        padding-top: 22px;
    }

    .content-section {
        padding: 28px 0;
    }

    .section-card h2 {
        font-size: 2.2rem;
    }

    .section-card p {
        font-size: 1rem;
    }

    .visual-placeholder {
        min-height: 280px;
    }

    .visual-card-main {
        left: 24px;
        top: 34px;
        width: 220px;
    }

    .visual-card-small {
        right: 24px;
        bottom: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom a {
        margin-left: 0;
        margin-right: 14px;
    }
}

/* ================================
   LIGHT ANIMATIONS
================================ */

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-card,
.footer-cta,
.footer-content {
    will-change: transform;
}

.section-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(12, 48, 120, 0.16);
}

.section-image-wrap {
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.section-image-wrap:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 28px 70px rgba(10, 30, 82, 0.16);
}

.btn-brand,
.language-switch,
.admin-link {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.btn-brand:hover,
.language-switch:hover,
.admin-link:hover {
    transform: translateY(-2px);
}

.brand-mark {
    position: relative;
    overflow: hidden;
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: linear-gradient(
        120deg,
        transparent 35%,
        rgba(255, 255, 255, 0.55),
        transparent 65%
    );
    transform: translateX(-120%) rotate(18deg);
    animation: logoShine 4.8s ease-in-out infinite;
}

@keyframes logoShine {
    0% {
        transform: translateX(-120%) rotate(18deg);
    }

    45% {
        transform: translateX(140%) rotate(18deg);
    }

    100% {
        transform: translateX(140%) rotate(18deg);
    }
}

.section-tint::after,
.section-white::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(15, 92, 255, 0.10), transparent 65%);
    filter: blur(4px);
    animation: softFloat 8s ease-in-out infinite;
}

.section-tint::after {
    left: 5%;
    top: 12%;
}

.section-white::after {
    right: 7%;
    bottom: 8%;
}

@keyframes softFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(16px, -18px, 0);
    }
}

.visual-card {
    animation: cardFloat 6s ease-in-out infinite;
}

.visual-card-small {
    animation-delay: 1.2s;
}

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

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

/* Respektuje nastavení uživatele v systému */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}


/* ================================
   CONTACT PAGE
================================ */

.contact-hero {
    padding: 44px 0 34px;
}

.contact-hero-card {
    position: relative;
    overflow: hidden;
    padding: 64px;
    border-radius: var(--cc-radius);
    background:
        radial-gradient(circle at 78% 10%, rgba(15, 92, 255, 0.11), transparent 34%),
        radial-gradient(circle at 10% 88%, rgba(25, 201, 245, 0.10), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.90), rgba(237, 245, 255, 0.82));
    border: 1px solid var(--cc-border);
    box-shadow: var(--cc-shadow);
}

.contact-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(15, 92, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 92, 255, 0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at 82% 10%, #000 0%, transparent 42%);
}

.contact-hero-card > .row {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    max-width: 720px;
    margin: 0 0 22px;
    color: var(--cc-navy);
    font-size: clamp(2.4rem, 5vw, 5rem);
    font-weight: 950;
    line-height: 1.02;
    letter-spacing: -0.07em;
}

.contact-hero p {
    max-width: 650px;
    margin-bottom: 34px;
    color: var(--cc-muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

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

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-height: 116px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--cc-border);
    box-shadow: 0 16px 44px rgba(10, 30, 82, 0.07);
}

.contact-info-icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--cc-primary);
    background: var(--cc-primary-soft);
    font-size: 1.25rem;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--cc-navy);
    font-weight: 900;
}

.contact-info-item a,
.contact-info-item span {
    color: var(--cc-muted);
    text-decoration: none;
    line-height: 1.55;
}

.contact-info-item a:hover {
    color: var(--cc-primary);
}

.contact-form-card {
    position: relative;
    padding: 36px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--cc-border);
    box-shadow: 0 24px 70px rgba(10, 30, 82, 0.13);
    backdrop-filter: blur(16px);
}

.contact-form-heading {
    margin-bottom: 26px;
}

.contact-form-heading span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--cc-primary);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.contact-form-heading h2 {
    margin: 0 0 8px;
    color: var(--cc-navy);
    font-size: 2rem;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.contact-form-heading p {
    margin: 0;
    color: var(--cc-muted);
    font-size: 0.98rem;
}

.contact-form .form-label {
    color: var(--cc-navy);
    font-weight: 850;
    font-size: 0.9rem;
}

.contact-form .form-control {
    min-height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(15, 92, 255, 0.16);
    color: var(--cc-text);
    background: rgba(248, 251, 255, 0.88);
    padding: 13px 15px;
    box-shadow: none;
}

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

.contact-form .form-control::placeholder {
    color: #9aa8c9;
}

.contact-form .form-control:focus {
    border-color: rgba(15, 92, 255, 0.55);
    background: #ffffff;
    box-shadow: 0 0 0 5px rgba(15, 92, 255, 0.09);
}

.form-hp {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 24px;
}

.contact-form-footer p {
    max-width: 390px;
    margin: 0;
    color: var(--cc-muted);
    font-size: 0.83rem;
    line-height: 1.55;
}

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

.contact-map-card {
    overflow: hidden;
    border-radius: var(--cc-radius);
    background:
        linear-gradient(135deg, rgba(237, 245, 255, 0.95), rgba(255, 255, 255, 0.86));
    border: 1px solid var(--cc-border);
    box-shadow: var(--cc-shadow);
}

.contact-map-content {
    padding: 42px 42px 26px;
}

.contact-map-content h2 {
    margin: 0 0 12px;
    color: var(--cc-navy);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 950;
    letter-spacing: -0.05em;
}

.contact-map-content p {
    max-width: 720px;
    margin: 0;
    color: var(--cc-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.contact-map {
    padding: 0 18px 18px;
}

.contact-map iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border-radius: 24px;
    filter: saturate(0.96) contrast(1.02);
}

/* Contact responsive */

@media (max-width: 991px) {
    .contact-hero-card {
        padding: 42px 28px;
    }

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

    .contact-form-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-form-footer .btn-brand {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        padding: 26px 0;
    }

    .contact-hero-card {
        padding: 32px 20px;
        border-radius: 24px;
    }

    .contact-hero h1 {
        font-size: 2.45rem;
    }

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

    .contact-info-item {
        min-height: auto;
    }

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

    .contact-map-content {
        padding: 30px 22px 20px;
    }

    .contact-map {
        padding: 0 12px 12px;
    }

    .contact-map iframe {
        min-height: 340px;
        border-radius: 20px;
    }
}
