/* ========================================
   BOOKING PAGE STYLES
   ======================================== */

/* Hero Section */
.booking-hero {
    background: linear-gradient(135deg, #0d4227 0%, #1a5f3f 100%);
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
}

@media (max-width: 1024px) {
    .booking-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Hero Content */
.booking-hero-content {
    text-align: center;
}

.booking-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.booking-hero-subtitle {
    font-family: 'Merriweather', serif;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0;
}

/* Hero Contacts Block */
.booking-hero-contacts {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-contact-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

.hero-contact-value {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: block;
}

.hero-contact-value:hover {
    opacity: 0.9;
    transform: translateX(5px);
}

.hero-contact-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-contact-qr img {
    width: 120px;
    height: 120px;
    background: #ffffff;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-contact-qr img:hover {
    transform: scale(1.05);
}

.hero-contact-qr-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    text-align: center;
}

@media (max-width: 1024px) {
    .booking-hero-contacts {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-contact-info {
        flex-direction: row;
        gap: 30px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .booking-hero-contacts {
        padding: 25px;
        border-radius: 12px;
    }

    .hero-contact-value {
        font-size: 1rem;
    }

    .hero-contact-qr img {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 480px) {
    .booking-hero-contacts {
        padding: 20px;
        gap: 20px;
    }

    .hero-contact-info {
        flex-direction: column;
        gap: 15px;
    }

    .hero-contact-value {
        font-size: 0.95rem;
    }

    .hero-contact-label {
        font-size: 0.7rem;
    }

    .hero-contact-qr img {
        width: 100px;
        height: 100px;
    }
}

.booking-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>') repeat;
    opacity: 0.5;
}

.booking-hero-description {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 40px;
    opacity: 0.92;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* Main Content */
.booking-main {
    padding-bottom: 60px;
}

/* Events Story Section */
.booking-events {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);
}

/* Contact Banner Section - приглашение к календарю */
.contact-banner {
    padding: 60px 20px 0;
    background-color: white;
}
.contact-banner-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    background: linear-gradient(135deg, #0d4227 0%, #1a5f3f 100%);
    color: #fff;
    border-radius: 16px;
    padding: 18px 22px;
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 12px 30px rgba(0,0,0,.14);
}
.contact-banner-inner.promo {
    grid-template-columns: auto 1fr;
    background: linear-gradient(135deg, #ffffff 0%, #f7f9ff 100%);
    color: #1a1a1a;
    border: 1px solid rgba(13,66,39,.08);
    position: relative;
    overflow: hidden;
}
.contact-banner-inner.promo::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120px 120px at 10% 20%, rgba(26,95,63,.08) 0%, rgba(26,95,63,0) 60%),
        radial-gradient(160px 160px at 80% 80%, rgba(26,95,63,.06) 0%, rgba(26,95,63,0) 65%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cdefs%3E%3Cpattern id='p' width='18' height='18' patternUnits='userSpaceOnUse'%3E%3Crect width='18' height='18' fill='none'/%3E%3Ccircle cx='9' cy='9' r='1' fill='%230d4227' fill-opacity='.08'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23p)'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat, repeat;
    pointer-events: none;
}
.contact-banner-inner.promo .contact-banner-visual { 
    display: grid; place-items: center; width: 84px; height: 84px; 
    background: #ffffff; border: 1px solid rgba(13,66,39,.12); border-radius: 14px; 
    box-shadow: 0 10px 24px rgba(0,0,0,.08); position: relative; z-index: 1;
}
.contact-banner-inner.promo .contact-banner-visual i { color: #0d4227; font-size: 34px; opacity: .9; }
.contact-banner-inner.promo .contact-banner-content { position: relative; z-index: 1; }
.contact-banner-inner.promo .banner-title { font-family: 'Oswald', sans-serif; font-weight: 900; letter-spacing: .6px; margin: 0 0 6px 0; font-size: clamp(1.1rem, 3vw, 1.5rem); }
.contact-banner-inner.promo .banner-sub { margin: 0 0 12px 0; color: #2a2f2c; opacity: .9; line-height: 1.55; font-family: 'Merriweather', serif; }
.contact-banner-inner.promo .banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.banner-cta-secondary { border: 2px solid rgba(13,66,39,.22); color: #0d4227; border-radius: 12px; padding: 10px 14px; text-decoration: none; font-weight: 900; letter-spacing: .4px; }
.banner-cta-secondary:hover { background: rgba(13,66,39,.06); }
@media (max-width: 768px) {
    .contact-banner { padding: 14px 10px 0; }
    .contact-banner-inner { grid-template-columns: 1fr; gap: 10px; text-align: center; }
    .contact-banner-inner.promo { grid-template-columns: 1fr; }
    .contact-banner-inner.promo .contact-banner-visual { margin: 0 auto; }
}

/* Divider */
.contact-banner-divider {
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    border-radius: 50px;
}

@media (max-width: 1024px) {
    .contact-banner-divider {
        display: none;
    }
}

.contact-banner-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
}

.contact-banner-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.contact-banner-item a,
.contact-banner-item p {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(0.95rem, 2.5vw, 1.3rem);
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.6px;
    display: block;
    transition: all 0.3s ease;
    margin: 0;
    white-space: nowrap;
}

.contact-banner-item a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.contact-banner-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-banner-qr h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.contact-banner-qr img {
    width: 110px;
    height: 110px;
    background: #ffffff;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.contact-banner-qr img:hover {
    transform: scale(1.05);
}

.contact-banner-qr-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 900;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-banner-item a,
    .contact-banner-item p {
        font-size: 1.1rem;
        white-space: normal;
    }

    .contact-banner-qr img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .contact-banner-item a,
    .contact-banner-item p {
        font-size: 1rem;
    }

    .contact-banner-item h3 {
        font-size: 0.65rem;
    }

    .contact-banner-qr img {
        width: 90px;
        height: 90px;
    }

    .contact-banner-qr-label {
        font-size: 0.6rem;
    }
}

.events-story {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

/* Section Header - БОЛЕЕ ЯРКИЙ */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 8vw, 3.8rem);
    font-weight: 900;
    color: #0d4227;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #0d4227 0%, #1a5f3f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: 'Merriweather', serif;
}

/* Story Item */
.event-story-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-story-item-reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.event-story-item-reverse > * {
    direction: ltr;
}

.event-story-content {
    padding: 10px;
}

/* Badge - БОЛЕЕ ЯРКИЙ */
.event-story-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0d4227 0%, #1a5f3f 100%);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(13, 66, 39, 0.3);
    display: inline-block;
}

.event-story-badge::before {
    content: '✦ ';
    margin-right: 6px;
}

/* Title - ОЧЕНЬ БОЛЬШОЙ И ЖИРНЫЙ */
.event-story-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 900;
    color: #0d4227;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    line-height: 1.1;
    text-transform: uppercase;
}

/* Выделение в заголовке */
.event-story-title em {
    font-style: normal;
    background: linear-gradient(120deg, #0d4227, #1a5f3f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.event-story-text {
    font-family: 'Merriweather', serif;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: #444;
    line-height: 1.85;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Жирные слова в тексте */
.event-story-text strong {
    color: #0d4227;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.event-story-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.event-story-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: #333;
    font-weight: 600;
    line-height: 1.6;
}

.event-story-features i {
    color: #0d4227;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.event-story-image {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
    border: 3px solid #0d4227;
}

.event-story-image:hover {
    transform: scale(1.03);
}

.event-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contact Section */
.booking-contact {
    padding: 100px 20px;
    background: #ffffff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Genres Sidebar */
.genres-sidebar {
    background: linear-gradient(135deg, #f0f0f0 0%, #fafafa 100%);
    padding: 20px;
    border-radius: 16px;
    position: sticky;
    top: 100px;
    border: 3px solid #0d4227;
}

.genres-sidebar h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: #0d4227;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.genres-description {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 25px;
    font-weight: 600;
}

.genres-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.genre-item {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
    padding: 14px 15px;
    border-radius: 10px;
    background: #ffffff;
    border: 2px solid #e8e8e8;
    font-weight: 600;
}

.genre-item:hover {
    color: #0d4227;
    background: linear-gradient(135deg, #f5f5f5, #ffffff);
    border-color: #0d4227;
    transform: translateX(5px);
}

.genre-checkbox {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: #0d4227;
    flex-shrink: 0;
    border-radius: 6px;
}

.genre-checkbox:checked + span {
    color: #0d4227;
    font-weight: 900;
}

/* Contact Form */
.contact-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
}

.form-group {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    margin-bottom: 10px;
    color: #0d4227;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group label i {
    font-size: 1.1rem;
    opacity: 0.9;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f9f9f9;
    color: #333;
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0d4227;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(13, 66, 39, 0.15);
    transform: translateY(-2px);
}

.form-group select {
    cursor: pointer;
    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 fill='%230d4227' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 38px;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-family: 'Merriweather', serif;
    line-height: 1.6;
}

.form-hint {
    font-size: 0.85rem;
    color: #0d4227;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.form-hint::before {
    content: '💡 ';
}

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

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .genres-sidebar { display: none; }
}

/* Contact Methods Section */
.contact-methods-section {
    background: linear-gradient(135deg, rgba(13, 66, 39, 0.08) 0%, rgba(26, 95, 63, 0.08) 100%);
    padding: 28px;
    border-radius: 12px;
    border: 3px solid #0d4227;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.contact-methods-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(13, 66, 39, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-methods-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.contact-methods-header h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 900;
    color: #0d4227;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin: 0;
}

.contact-methods-header h4::before {
    content: '📞 ';
    margin-right: 8px;
}

.contact-badge {
    background: linear-gradient(135deg, #0d4227 0%, #1a5f3f 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(13, 66, 39, 0.3);
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
}

.contact-methods-grid .form-group {
    margin-bottom: 0;
}

.btn-large {
    width: 100%;
    padding: 16px 30px;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .event-story-item,
    .event-story-item-reverse {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    /* На мобильных фото всегда под текстом */
    .event-story-content { grid-row: 1; }
    .event-story-image { grid-row: 2; }

    .event-story-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .booking-hero {
        padding: 70px 15px;
        min-height: 550px;
        margin-bottom: 40px;
    }

    .booking-hero-title {
        font-size: 2rem;
    }

    .booking-hero-subtitle {
        font-size: 1.1rem;
    }

    .booking-events,
    .booking-contact {
        padding: 60px 15px;
    }

    .events-story {
        gap: 60px;
    }

    .event-story-content {
        padding: 0;
    }

    .event-story-title {
        font-size: 1.6rem;
    }

    .event-story-text {
        font-size: 0.95rem;
    }

    .event-story-features {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 35px;
    }

    .contact-badge {
        min-width: max-content;
    }

    .genres-sidebar {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .booking-hero {
        padding: 50px 10px;
        min-height: auto;
        margin-bottom: 30px;
    }

    .booking-hero-title {
        font-size: 1.4rem;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .booking-hero-subtitle {
        font-size: 0.95rem;
    }

    .booking-hero-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .booking-events,
    .booking-contact {
        padding: 40px 10px;
    }

    .events-story {
        gap: 45px;
    }

    .event-story-badge {
        font-size: 0.7rem;
        padding: 8px 14px;
        margin-bottom: 15px;
    }

    .event-story-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
        letter-spacing: 0.8px;
    }

    .event-story-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .event-story-features {
        gap: 10px;
    }

    .event-story-features li {
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .genres-sidebar {
        margin-bottom: 20px;
        padding: 20px;
    }

    .contact-methods-section {
        padding: 20px;
        margin-bottom: 20px;
    }

    .contact-methods-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .form-row {
        gap: 18px;
    }

    .section-title {
        font-size: 1.4rem;
    }
}

