/* ======================================================================
   VARIABLES
   ====================================================================== */
:root {
    --accent: #d4af37;                   /* Золотой цвет акцента */
    --bg: #121212;                       /* Основной фон страницы */
    --bg-card: #1a1a1a;                  /* Фон карточек и панелей */
    --bg-input: #222222;                 /* Фон полей ввода */
    --bg-slot: #252525;                  /* Фон слотов времени */
    --bg-inner: #232222b4;                 /* Фон внутренних элементов */
    --bg-disabled: #171717;              /* Фон неактивных элементов */
    --border: #333333;                   /* Цвет границ */
    --border-light: #444444;             /* Более светлый цвет границ */
    --border-dark: #282828;              /* Более темный цвет границ */
    --text: #ffffff;                     /* Основной цвет текста */     
    --text-muted: #bbbbbb;               /* Цвет приглушенного текста */
    --text-dark: #000000;                /* Цвет темного текста */
    --text-inactive: #e9dcdc;            /* Цвет неактивного текста */
    --text-disabled: #777777;            /* Цвет текста для неактивных элементов */
    --text-light-muted: #aaaaaa;         /* Цвет светлого приглушенного текста */
    --text-dark-muted: #666666;          /* Цвет темного приглушенного текста */
    --accent-pink: #e02484;              /* Цвет для розовых акцентов */
    --wrapper-bg: #232222b4;             /* Фон для обертки сайта */
}

/* ======================================================================
   BASE STYLES
   ====================================================================== */
html {
    scroll-behavior: auto !important;
}

body {
    font-family: 'Helvetica Neue', sans-serif;
    overscroll-behavior-y: none;
    color: var(--text);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: var(--bg);
    background-image: none;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-fixed {             
    position: fixed;
    top: env(safe-area-inset-top, 0px);
    left: env(safe-area-inset-left, 0px);
    right: env(safe-area-inset-right, 0px);
    bottom: env(safe-area-inset-bottom, 0px);
    padding-top: env(safe-area-inset-top);
    box-sizing: content-box;
    height: calc(100% + 50px);
    min-height: 100vh;
    min-height: 100dvh;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.site-wrapper {
    background-color: var(--wrapper-bg);
    min-height: 100vh;
    padding: 20px;
    max-width: 700px;
    margin: 0 auto;
    z-index: 0;
}

.container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

h1 {
    font-size: 1.8rem; 
    color: var(--accent); 
    margin-bottom: 5px;
}

h2 {
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
    display: inline-block;
}

p { color: #bbb; 
    font-size: 1.1rem; 
    margin-bottom: 30px;
    max-width: 650px; 
    line-height: 1.5;
}

ul {
    font-size: 1.1rem;          
    max-width: 650px; 
    line-height: 1.5;
    margin-bottom: 20px;
}

li {
    font-size: 1.1rem;          
    max-width: 650px; 
    line-height: 1.5;
    margin-bottom: 20px;
}

.dredy-spis li strong {
    display: block;      /* Заставляет заголовок занять всю строку */
    margin-bottom: 5px;  /* Делает аккуратный микро-отступ перед текстом*/
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Пропорции 16:9 */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.centered-video {
    display: block;       /* Превращаем в блочный элемент */
    margin: 30px auto;    /* Центрируем по горизонтали + делаем отступы 30px сверху и снизу от текста */
    max-width: 70%;      /* Чтобы видео не вылезало за границы экрана на мобилках */
    width: 640px;         /* Задаем желаемую ширину видео на ПК (например, под ширину текстового блока) */
    border-radius: 8px;   /* По желанию: слегка скруглим углы, чтобы смотрелось аккуратнее */
}

/* ======================================================================
   HEADER
   ====================================================================== */
#mainHeader {
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.header-top-row {
    display: flex;
    flex-flow: row wrap; /* Разрешаем логотипу и кнопкам переноситься на мобилках */
    justify-content: center; /* Центрируем, если они перенеслись друг под друга */
    align-items: center;
    width: 100%;
    max-width: 600px;
    gap: 20px; /* Управляет расстоянием между лого и блоком кнопок */
    margin-bottom: 20px;
}

.header-nav {
    display: flex;
    flex-flow: row wrap; /* Кнопки идут в ряд и переносятся, когда нет места */
    gap: 10px;
    flex: 1; /* Занимает всё оставшееся пространство справа от логотипа */
    min-width: 250px; /* Минимальная ширина блока, чтобы он не сжимался в микро-колонку */
    justify-content: flex-start; /* На больших экранах прижимаем к логотипу */
}

.nav-btn {
    flex: 1 1 120px;
    max-width: 160px;
    padding: 8px 20px;
    border: 1px solid var(--accent);
    border-radius: 20px;
    color: var(--text);
    text-decoration: none;
    text-align: center;
    font-size: 0.9rem;
    box-sizing: border-box;

    /* Точка крепления "косички" — сверху по центру */
    transform-origin: top center;

    /* Запускаем сразу две анимации: мерцание и колыхание */
    animation: 
        neonFlicker 5s infinite alternate ease-in-out, 
        braidSway 4s infinite ease-in-out;
        
    will-change: filter, opacity, transform;
    transition: border-color 0.2s ease;
}

/* Разводим анимации по времени для каждой кнопки, чтобы они качались вразнобой */
.nav-btn:nth-child(2n) { animation-delay: 0s, 0.5s; }
.nav-btn:nth-child(3n) { animation-delay: 0s, 1.2s; }

/* При наведении косичка реагирует на "прикосновение" — пружинит */
.nav-btn:hover {
    border-color: #fff;
    animation-play-state: running, paused; /* Приостанавливаем медленное качание */
    animation: neonFlicker 5s infinite alternate ease-in-out, braidWobble 0.6s ease-in-out forwards;
}

/* 1. Постоянное плавное покачивание (как на ветру) */
@keyframes braidSway {
    0%, 100% { transform: rotate(0deg) skewX(0deg); }
    25% { transform: rotate(1.5deg) skewX(1deg); }
    75% { transform: rotate(-1.5deg) skewX(-1deg); }
}

/* 2. Быстрое затухающее пружинивание при наведении (эффект тронутой косички) */
@keyframes braidWobble {
    0% { transform: rotate(0deg); }
    15% { transform: rotate(5deg) scale(1.02); }
    30% { transform: rotate(-4deg); }
    45% { transform: rotate(3deg); }
    60% { transform: rotate(-2deg); }
    75% { transform: rotate(1deg); }
    100% { transform: rotate(0deg) scale(1.03); }
}

#headerLogo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.55));
    pointer-events: none;
    user-select: none;
    animation: neonFlicker 5s infinite alternate ease-in-out;
    will-change: transform;
    transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center center;
}

@keyframes neonFlicker {
    0%, 100% { filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.55)); opacity: 1; }
    50% { filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.75)); opacity: 0.95; }
    51% { filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2)); opacity: 0.85; }
    52% { filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.8)); opacity: 1; }
    53% { filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3)); opacity: 0.9; }
    54% { filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6)); opacity: 1; }
}

header h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.header-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

/* ======================================================================
   LANGUAGE SWITCHER
   ====================================================================== */
.lang-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 1000;
    display: flex;
    gap: 6px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-inactive);
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem;
    transition: 0.3s;
    padding: 2px 8px;
    border-radius: 12px;
}

a.lang-btn.active,
a.lang-btn.active:visited {
    color: var(--text-dark);
    background: var(--accent);
}

.lang-switcher.hidden {
    transform: translateY(-120px);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease-in-out !important;
    pointer-events: none;
}

/* ======================================================================
   SOCIALS BAR
   ====================================================================== */
.header-socials {
    position: fixed;
    left: 10px;
    top: 25%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 10px;
    border: 2px solid var(--accent);
    border-radius: 40px;
    background: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25), inset 0 0 10px rgba(212, 175, 55, 0.15);
    z-index: 1000;
    pointer-events: auto !important;
    transition: all 0.8s ease-in-out;
}

.header-socials.is-collapsed {
    left: -40px;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 1));
    cursor: pointer;
}

.header-socials.is-expanded {
    filter: drop-shadow(0 0 0px rgba(0,0,0,0));
    border: 1px solid var(--accent);
}

.header-socials.is-collapsed:hover {
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8));
}

.header-socials a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.7rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
}

.header-socials a:hover {
    color: var(--accent);
    transform: scale(1.15);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* ======================================================================
   PORTFOLIO SLIDER
   ====================================================================== */
.mySwiper {
    width: 100%;
    height: 500px;
    margin: 40px 0;
    position: relative;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-input);
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mySwiper .swiper-slide {
    width: 85%;
    max-width: 380px;
    opacity: 0.4;
}

.mySwiper .swiper-slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1.03);
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    -webkit-touch-callout: none;
    user-select: none;
}

.swiper-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    z-index: 10;
}

/* ======================================================================
   ACCORDIONS (FAQ & PRICE)
   ====================================================================== */
.faq-section, .price-section {
    padding: 30px 0;
    background: 0 /*var(--wrapper-bg)*/;
    padding-bottom: 60px;
}

.faq-container, .price-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item, .price-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item:hover, .price-item:hover {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.faq-question, .price-header-btn {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-item.active .faq-question,
.price-item.active .price-header-btn {
    color: var(--accent);
}

.faq-icon, .price-icon, #mainPriceIcon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after,
.price-icon::before, .price-icon::after,
#mainPriceIcon::before, #mainPriceIcon::after {
    content: '';
    position: absolute;
    background-color: var(--text);
    transition: 0.3s ease;
}

.faq-icon::before, .price-icon::before, #mainPriceIcon::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}

.faq-icon::after, .price-icon::after, #mainPriceIcon::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}

.faq-item.active .faq-icon::after,
.price-item.active .price-icon::after,
.main-price-toggle-item.active #mainPriceIcon::after {
    transform: rotate(90deg);
    background-color: var(--accent);
}

.faq-item.active .faq-icon::before,
.price-item.active .price-icon::before,
.main-price-toggle-item.active #mainPriceIcon::before {
    background-color: var(--accent);
}

.faq-answer, .price-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-inner);
}

.faq-item.active .faq-answer, .price-collapse.open {
    max-height: 2000px;
}

#mainPriceCollapsePanel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg);
}

#mainPriceCollapsePanel.open {
    max-height: 15000px;
}

.faq-answer-content, .price-collapse-content {
    padding: 0 20px 20px 20px;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-answer-content ul {
    padding-left: 20px;
    margin: 10px 0;
}

.faq-answer-content li {
    margin-bottom: 6px;
}

/* --- PRICE ACCORDION SPECIFIC STYLES --- */
.price-header-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.price-accordion-title-wrap,
.price-header-btn .price-icon {
    position: relative;
    z-index: 2;
    pointer-events: none;
}
.price-accordion-title-wrap span {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.6);
    font-weight: bold;
    letter-spacing: 0.5px;
}
.preview-thumbnails-bg {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
    visibility: visible;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.preview-thumbnails-bg .bg-thumb {
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.price-item.active .preview-thumbnails-bg {
    opacity: 0;
    transform: scale(0.95);
    visibility: hidden;
}


/* ======================================================================
   PRICE LIST - CONTROLS
   ====================================================================== */
.price-control-panel {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-search-wrapper {
    position: relative;
    width: 100%;
}

.price-search-input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 40px 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.price-search-input:focus {
    border-color: var(--accent);
}

.price-clear-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-dark-muted);
    font-size: 20px;
    cursor: pointer;
}

.price-tabs-wrapper {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.price-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.price-tab-btn {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text-light-muted);
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
}

.price-tab-btn.active {
    background: var(--accent);
    color: var(--text);
    border-color: var(--accent);
}

/* Прячем полосу прокрутки, сохраняя саму прокрутку */
.no-scrollbar::-webkit-scrollbar {
    display: none; /* Для Chrome, Safari, Opera и нового Edge */
}
.no-scrollbar {
    -ms-overflow-style: none;  /* Для старого IE и Edge */
    scrollbar-width: none;  /* Для Firefox */
}

/* ======================================================================
   PRICE LIST - CONTENT & GALLERY
   ====================================================================== */
.price-inner-card {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.price-value-tag {
    background: rgba(214, 175, 55, 0.1);
    border-left: 3px solid var(--accent);
    padding: 10px 14px;
    font-weight: bold;
    color: var(--text);
    margin-bottom: 12px;
    border-radius: 0 8px 8px 0;
    font-size: 1.15rem;
    display: inline-block;
    width: fit-content;
}

.price-comments {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    white-space: pre-line;
}

.price-delivery-badge {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    display: block;
}

.price-photo-scroll-row {
    display: flex !important;
    gap: 12px !important;
    overflow-x: auto !important;
    padding-bottom: 12px !important;
    margin-bottom: 15px !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    user-select: none;
}

.price-photo-scroll-row::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.photo-shield {
    display: inline-block;
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-dark);
}

.photo-shield .price-gallery-img {
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: cover;
    pointer-events: auto;
}

.price-photo-slider {
    width: 100%;
    overflow: hidden;
}

.price-photo-slider .swiper-slide {
    width: auto;
    height: 160px;
}

/* ======================================================================
   MEMO MODALS
   ====================================================================== */
.memo-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}
.memo-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-family: sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
}

.memo-list li .num-badge {
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: var(--accent-pink);
    color: var(--text);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.step-sublist {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 10px;
    border-left: 2px dashed var(--border-light);
}
.step-sublist li {
    padding-left: 45px;
    margin-bottom: 18px;
    font-size: 0.9rem;
    position: relative;
}

.step-sublist li .icon-badge {
    position: absolute;
    left: -14px;
    top: -2px;
    width: 26px;
    height: 26px;
    background: var(--bg-card);
    border: 2px solid var(--accent-pink);
    color: var(--accent-pink);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
}

/* ======================================================================
   FORM & CALENDAR
   ====================================================================== */
.native-calendar {
    background: var(--wrapper-bg);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid var(--border);
    touch-action: pan-y;
}

.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cal-header h3 {
    margin: 0;
    color: var(--accent);
}

.cal-btn {
    background: none;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: bold;
    font-size: 0.85rem;
    color: var(--text-inactive);
    margin-bottom: 10px;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.day {
    padding: 10px 0;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 500;
    background: var(--bg-slot);
}

.day:hover:not(.empty):not(.disabled) {
    background: var(--border);
    color: var(--accent);
}

.day.today {
    border: 1px solid var(--accent) !important;
    box-shadow: inset 0 0 5px rgba(212, 175, 55, 0.4);
}

.day.selected {
    background: var(--accent) !important;
    color: var(--text-dark) !important;
    font-weight: bold;
}

.day.empty {
    background: none;
    cursor: default;
}
.day.disabled {
    background: var(--bg-disabled);
    color: var(--border-light);
    cursor: not-allowed;
    pointer-events: none;
}

.time-section {
    display: none;
    margin-top: 25px;
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.time-slot {
    background: var(--bg-slot);
    border: 1px solid var(--border-light);
    color: var(--text);
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}

.time-slot:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.time-slot.selected {
    background: var(--accent);
    color: var(--text-dark);
    border-color: var(--accent);
}

.time-status {
    color: var(--text-inactive);
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 10px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input {
    padding: 12px;
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    color: var(--text);
    border-radius: 8px;
    font-size: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    background: var(--bg-card);
    padding: 15px;
    border-radius: 8px;
}

.checkbox-group input {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.legal-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.btn {
    background: var(--accent);
    color: var(--text-dark);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.8s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn:hover {
    transform: scale(1.05);
}

.btn:disabled, .btn.btn-disabled {
    background: var(--border) !important;
    color: var(--text-disabled) !important;
    border: 1px solid var(--border-light) !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

/* ======================================================================
   FOOTER
   ====================================================================== */
.footer {
    text-align: center;
    padding: 5px 5px;
    margin-top: 10px;
    border-top: 1px solid var(--accent);
    font-size: 0.85rem;
    color: var(--text);
    letter-spacing: 1px;
    clear: both;
}

/* ======================================================================
   RESPONSIVE / MOBILE STYLES
   ====================================================================== */
@media (max-width: 600px) {
    .header-top-row {
        align-items: center;
        gap: 15px;
        padding-top: 10px;
    }
    .header-nav {
        grid-template-columns: 1fr;
        justify-content: center;
        flex-wrap: wrap;
        margin-left: 0;
    }

    #headerLogo {
        width: 100px;
        margin-left: 5px;
    }
    header h1,
    .container h2,
    header p {
        margin-left: 5px;
        margin-top: 5px;
        margin-bottom: 10px;
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .header-socials {
        position: fixed !important;
        top: 20px !important;
        left: 20px !important;
        transform: none !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 12px !important;
        width: auto !important;
        height: auto !important;
        padding: 6px 14px !important;
        border: 1px solid var(--accent) !important;
        border-radius: 20px !important;
        background: rgba(26, 26, 26, 0.85) !important;
        backdrop-filter: blur(8px) !important;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
        z-index: 1000 !important;
        transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease-in-out !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .header-socials a {
        width: 24px !important;
        height: 24px !important;
        font-size: 1.2rem !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .header-socials.hidden-scroll {
        transform: translateY(-100px) !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .btn {
        margin: 0 auto;
        padding: 10px 25px !important;
    }
}

