/* =====================================================
   MIGUN re:borne — Основни стилове
   Визуална идентичност: Черно / Бяло / Злато
   ===================================================== */

:root {
    /* Основни цветове */
    --black: #1A1A1A;
    --white: #FFFFFF;
    --gold: #C9A96E;
    --gold-light: #D4BA8A;
    --gold-dark: #B08D4F;

    /* Допълнителни */
    --anthracite: #2D2D2D;
    --cream: #FAF7F2;
    --gray-light: #F5F5F5;
    --gray-medium: #E8E8E8;
    --gray-text: #6B6B6B;
    --gray-dark: #4A4A4A;

    /* Функционални */
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #595959;
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAF7F2;
    --bg-dark: #1A1A1A;
    --bg-dark-alt: #2D2D2D;
    --border: #E8E8E8;
    --success: #2D7A4F;
    --error: #C0392B;

    /* Сенки */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
    --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.3);

    /* Типография */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;
    --header-height: 76px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* =====================================================
   RESET & BASE
   ===================================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* Български език - по-четими шрифтове за кирилица */
html[lang="bg"] {
    --font-heading: 'Open Sans', 'Roboto', sans-serif;
    --font-body: 'Open Sans', 'Roboto', sans-serif;
}

html[lang="bg"] body {
    font-family: var(--font-body);
}

html[lang="bg"] h1,
html[lang="bg"] h2,
html[lang="bg"] h3,
html[lang="bg"] h4,
html[lang="bg"] h5,
html[lang="bg"] h6,
html[lang="bg"] .hero-title,
html[lang="bg"] .hero-title-2,
html[lang="bg"] .section-title,
html[lang="bg"] .trust-number {
    font-family: var(--font-heading);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

ul, ol {
    list-style: none;
}

/* =====================================================
   BASE HTML ELEMENTS
   ===================================================== */

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5em;
}

th, td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

th {
    font-weight: 600;
    color: var(--text-primary);
    background: var(--gray-light);
}

tr:hover td {
    background: var(--gray-light);
}

/* Blockquote */
blockquote {
    margin: 1.5em 0;
    padding: 20px 24px;
    border-left: 4px solid var(--gold);
    background: var(--bg-secondary);
    font-style: italic;
    color: var(--text-secondary);
}

blockquote p:last-child {
    margin-bottom: 0;
}

blockquote cite {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    font-style: normal;
    color: var(--text-muted);
}

/* Horizontal rule */
hr {
    border: none;
    height: 1px;
    background: var(--border);
    margin: 2em 0;
}

/* Code and preformatted */
code {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.9em;
    padding: 2px 6px;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
}

pre {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    padding: 20px;
    background: var(--bg-dark);
    color: var(--white);
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin-bottom: 1.5em;
}

pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* Mark / Highlight */
mark {
    background: rgba(201, 169, 110, 0.3);
    padding: 2px 4px;
    border-radius: 2px;
}

/* Abbreviation */
abbr[title] {
    text-decoration: underline dotted;
    cursor: help;
}

/* Keyboard input */
kbd {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.85em;
    padding: 3px 8px;
    background: var(--gray-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Small text */
small {
    font-size: 0.875em;
    color: var(--text-muted);
}

/* Subscript and Superscript */
sub, sup {
    font-size: 0.75em;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* Definition list */
dl {
    margin-bottom: 1.5em;
}

dt {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

dd {
    margin-left: 0;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

/* Figure and figcaption */
figure {
    margin: 1.5em 0;
}

figcaption {
    margin-top: 8px;
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
}

/* Address */
address {
    font-style: normal;
    margin-bottom: 1em;
    line-height: 1.7;
}

/* Details/Summary (accordion) */
details {
    margin-bottom: 1em;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

summary {
    padding: 16px 20px;
    font-weight: 600;
    cursor: pointer;
    background: var(--gray-light);
    border-radius: var(--radius-md);
    transition: background var(--transition-base);
}

summary:hover {
    background: var(--gray-medium);
}

details[open] summary {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

details > *:not(summary) {
    padding: 16px 20px;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: 56px; }
h2 { font-size: 42px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }

p {
    margin-bottom: 1em;
    color: var(--text-secondary);
}

p:last-child {
    margin-bottom: 0;
}

/* =====================================================
   LAYOUT
   ===================================================== */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
}

.section--dark {
    background-color: var(--bg-dark);
    color: var(--white);
}

.section--dark .section-title,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--white);
}

.section--dark p {
    color: rgba(255, 255, 255, 0.75);
}

.section--cream {
    background-color: var(--bg-secondary);
}

.section--gray {
    background-color: var(--gray-light);
}

/* =====================================================
   HEADER
   ===================================================== */

.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: height var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    transition: height var(--transition-base);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
    transition: transform var(--transition-base);
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: height var(--transition-base), opacity var(--transition-base);
}

.header.scrolled .logo-img {
    height: 44px;
}

.logo:hover .logo-img {
    opacity: 0.85;
}

/* Old text logo styles - keep for fallback */
.logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 2px;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: lowercase;
    margin-top: 2px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
    padding: 8px 0;
    position: relative;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--black);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Nav right section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta,
.nav-cta-desktop {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--white);
    background: var(--black);
    padding: 10px 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.nav-cta:hover,
.nav-cta-desktop:hover {
    background: var(--gold-dark);
    color: var(--white);
}

.nav-menu .nav-cta,
.nav-menu .lang-switch {
    display: none;
}

.lang-switch-desktop {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.lang-switch-desktop:hover {
    color: var(--black);
    border-color: var(--black);
}

/* Nav Language Switcher */
.nav-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
}

.nav-lang a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-base);
}

.nav-lang a:hover,
.nav-lang a.active {
    color: var(--black);
}

.nav-lang .lang-separator {
    color: var(--gray-medium);
    font-weight: 400;
}

/* Mobile Menu — hidden on desktop */
.mobile-menu-overlay,
.mobile-menu {
    display: none;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--black);
    transition: all var(--transition-base);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
    padding: 80px 24px;
}

.hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 8px;
    color: var(--black);
}

.hero-title-2 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-muted);
    margin-bottom: 44px;
    line-height: 1.7;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
}

.hero-trust {
    display: flex;
    gap: 48px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.trust-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Hero image placeholder */
.hero-visual {
    position: relative;
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 3 / 2;
    background: transparent;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* =====================================================
   PAIN POINTS
   ===================================================== */

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pain-card {
    padding: 40px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid var(--border);
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.pain-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.pain-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =====================================================
   THERAPY / HOW IT WORKS
   ===================================================== */

.therapy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.therapy-card {
    background: var(--white);
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.therapy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.therapy-number {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    color: var(--gray-light);
    line-height: 1;
    margin-bottom: 20px;
}

.therapy-icon {
    width: 56px;
    height: 56px;
    color: var(--gold);
    margin-bottom: 20px;
}

.therapy-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.therapy-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.therapy-more {
    text-align: center;
    margin-top: 20px;
}

.therapy-more a {
    color: var(--gold);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition-base);
}

.therapy-more a:hover {
    color: var(--gold-dark);
}

/* Process timeline */
.process-box {
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.process-box h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.process-dot {
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
    position: relative;
}

.process-item:not(:last-child) .process-dot::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 6px;
    width: 2px;
    height: 44px;
    background: var(--gray-medium);
}

.process-content h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.process-content p {
    font-size: 15px;
    color: var(--text-muted);
}

/* =====================================================
   FOR WHOM / PERSONAS
   ===================================================== */

.personas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.persona-card {
    padding: 40px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid var(--border);
}

.persona-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.persona-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: var(--black);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.persona-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.persona-age {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.persona-card > p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =====================================================
   WHY MIGUN
   ===================================================== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    padding: 40px 28px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.why-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
    line-height: 1;
}

.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    color: var(--gold);
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    line-height: 1.7;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    padding: 40px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--black);
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonials-more {
    text-align: center;
    margin-top: 48px;
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section {
    background: var(--bg-dark);
    padding: var(--section-padding) 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-text h2 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text .cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
}

.cta-benefits {
    margin-bottom: 40px;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.cta-benefits svg {
    color: var(--gold);
    flex-shrink: 0;
}

.cta-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    font-size: 15px;
}

.cta-contact svg {
    color: var(--gold);
    flex-shrink: 0;
}

.cta-contact a {
    color: rgba(255, 255, 255, 0.85);
}

.cta-contact a:hover {
    color: var(--gold);
}

/* =====================================================
   FORMS
   ===================================================== */

.form-card {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.form-group label .required {
    color: var(--gold);
    margin-left: 2px;
}

.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    background: var(--white);
    transition: border-color var(--transition-base);
    appearance: none;
    -webkit-appearance: none;
}

/* Checkboxes and radio buttons keep native appearance */
.form-group input[type="checkbox"],
.form-group input[type="radio"] {
    width: auto;
    padding: 0;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B6B6B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

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

/* Honeypot — hidden from users */
.form-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
}

.form-message {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
}

.form-message.success {
    background: #eaf7ee;
    color: var(--success);
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #fdf0ef;
    color: var(--error);
    border: 1px solid #f5c6cb;
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo img {
    height: 60px;
    width: auto;
    display: block;
    transition: opacity var(--transition-base);
}

.footer-logo:hover img {
    opacity: 0.85;
}

/* Legacy text logo styles (if needed) */
.footer-logo .logo-text {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-logo .logo-subtitle {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 3px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 15px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact-list svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list a:hover {
    color: var(--gold);
}

.viber-badge {
    font-size: 11px;
    background: rgba(201, 169, 110, 0.2);
    color: var(--gold);
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 4px;
}

.footer-hours li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 6px;
}

.footer-social-title {
    margin-top: 24px !important;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.75);
    transition: all var(--transition-base);
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* =====================================================
   FLOATING BUTTONS
   ===================================================== */

/* Viber Button - Left Side */
.viber-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 60px;
    height: 60px;
    background: #7360F2;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(115, 96, 242, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
}

.viber-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(115, 96, 242, 0.5);
}

/* Back to Top Button - Right Side */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: var(--black);
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-4px);
    box-shadow: 0 6px 28px rgba(201, 169, 110, 0.4);
}

/* =====================================================
   ANIMATIONS (scroll reveal)
   ===================================================== */

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

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

/* Staggered reveal for grids */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =====================================================
   FOOTER LEGAL LINKS
   ===================================================== */

.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: var(--text-muted);
    font-size: 13px;
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-legal-links a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.footer-legal-links span {
    color: var(--border);
    font-size: 12px;
}

/* =====================================================
   COOKIE CONSENT BANNER
   ===================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black);
    color: var(--white);
    padding: 20px 24px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 280px;
}

.cookie-banner-text svg {
    flex-shrink: 0;
    color: var(--gold);
}

.cookie-banner-text p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.cookie-banner-text a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: var(--gold-dark);
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
}

.cookie-btn--accept {
    background: var(--gold);
    color: var(--white);
}

.cookie-btn--accept:hover {
    background: var(--gold-dark);
}

.cookie-btn--decline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn--decline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-text {
        flex-direction: column;
    }
    
    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
}
