/* ПЪЛЕН ОБНОВЕН STYLE.CSS ЗА ELENA TRAIL RUN 2026 */

:root {
    --orange: #d35400;
    --brown: #2c1810;
    --accent: #e67e22;
    --cream: #fdf5e6;
    --white: #ffffff;
    --text: #2c1a17;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; 
    scroll-behavior: smooth; 
}

body { 
    background: var(--cream); 
    color: var(--text); 
    overflow-x: hidden; 
    line-height: 1.6;
}

/* --- НАВИГАЦИЯ (NAVBAR) --- */
.navbar {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 15px 5%; 
    background: rgba(44, 24, 16, 0.95);
    position: fixed; 
    width: 100%; 
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-text { 
    color: white; 
    text-decoration: none; 
    font-weight: 900; 
    font-size: 1.4rem; 
    letter-spacing: 1px; 
}

/* Добави това, за да фиксираш размера на логото */
.logo-img {
    height: 60px;       /* Това е идеалната височина за менюто */
    width: auto;         /* Запазва пропорциите, за да не се разпъва */
    margin-right: 15px; /* Прави малко разстояние до текста Elena Trail Run */
    vertical-align: middle; /* Центрира го вертикално спрямо текста */
}

.logo-text span { 
    color: var(--orange); 
}

.nav-links { 
    display: flex; 
    list-style: none; 
    align-items: center; 
}

.nav-links a { 
    color: #fdf5e6; 
    text-decoration: none; 
    font-size: 11px; 
    font-weight: 700; 
    text-transform: uppercase; 
    margin-left: 20px; 
    transition: var(--transition); 
}

.nav-links a:hover, 
.nav-links a.active { 
    color: var(--orange); 
}

/* Акцент върху бутона Регистрация в менюто */
.nav-reg { 
    background: var(--orange); 
    padding: 10px 20px !important; 
    border-radius: 50px; 
    color: white !important; 
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3); 
}

.nav-reg:hover {
    background: var(--accent) !important;
    transform: translateY(-2px);
}

/* Подобрен Language Switcher (EN) */
.lang-switch {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 11px;
    margin-left: 15px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lang-switch:hover {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 0 15px rgba(211, 84, 0, 0.4);
}

/* --- HERO СЕКЦИЯ --- */
.hero {
    height: 100vh; 
    position: relative;
    background: url('https://images.unsplash.com/photo-1476820865390-c52aeebb9891?q=80&w=2070') no-repeat center center/cover;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: white;
}

.hero-overlay { 
    position: absolute; 
    top:0; left:0; width:100%; height:100%; 
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(44, 24, 16, 0.7)); 
}

.hero-content { 
    position: relative; 
    z-index: 2; 
    padding: 0 20px;
}

.hero-badge { 
    font-weight: 700; 
    font-size: 0.85rem; 
    letter-spacing: 2px; 
    color: var(--accent); 
    margin-bottom: 15px; 
    text-transform: uppercase;
}

.hero h1 { 
    font-size: clamp(2.5rem, 8vw, 5.5rem); 
    line-height: 0.95; 
    margin-bottom: 20px; 
    font-weight: 900; 
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero h1 span { 
    color: var(--orange); 
}

.hero-sub { 
    font-size: clamp(1rem, 3vw, 1.4rem); 
    font-weight: 300; 
    letter-spacing: 5px; 
    margin-bottom: 40px; 
    text-transform: uppercase;
}

/* --- ТАЙМЕР (COUNTDOWN) --- */
.countdown-wrapper p { 
    font-weight: 700; 
    font-size: 0.8rem; 
    margin-bottom: 15px; 
    opacity: 0.8; 
    letter-spacing: 2px; 
}

.countdown { 
    display: flex; 
    gap: 15px; 
    justify-content: center; 
    flex-wrap: wrap;
}

.time-box { 
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(10px);
    padding: 15px 20px; 
    border-radius: 15px; 
    min-width: 90px; 
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.time-box span { 
    font-size: 2.2rem; 
    font-weight: 900; 
    display: block; 
    color: var(--orange); 
    line-height: 1;
}

.time-box p { 
    font-size: 0.7rem; 
    margin: 5px 0 0; 
    opacity: 0.7; 
    letter-spacing: 1px;
}

/* --- БУТОНИ --- */
.btn-main { 
    background: var(--orange); 
    color: white; 
    text-decoration: none; 
    padding: 18px 45px; 
    font-weight: 800; 
    border-radius: 50px; 
    display: inline-block; 
    margin-top: 40px; 
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(211, 84, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-main:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 30px rgba(211, 84, 0, 0.5); 
    background: var(--accent);
}

/* --- СЕКЦИИ --- */
.section { 
    padding: 30px 5%; 
    max-width: 1400px;
    margin: 0 auto;
}

.section-intro { 
    text-align: center; 
    max-width: 850px; 
    margin: 0 auto 60px; 
}

.sub-title { 
    color: var(--orange); 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-size: 0.9rem;
}

.section-title { 
    font-size: clamp(2rem, 5vw, 3rem); 
    color: var(--brown); 
    margin: 10px 0 20px; 
    font-weight: 900; 
    line-height: 1.2;
}

.section-title.white { 
    color: white; 
}

.main-p { 
    font-size: 1.15rem; 
    opacity: 0.85; 
}

/* --- ХАРАКТЕРИСТИКИ (FEATURES) --- */
.features-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
    gap: 30px; 
    margin-top: 50px; 
}

.feature-item { 
    text-align: center; 
    padding: 40px 30px; 
    background: white; 
    border-radius: 20px; 
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.feature-item:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 50px rgba(62, 39, 35, 0.1); 
}

.f-icon { 
    font-size: 2.5rem; 
    color: var(--orange); 
    margin-bottom: 25px; 
}

.feature-item h4 {
    margin-bottom: 15px;
    font-weight: 800;
    font-size: 1.2rem;
}

/* --- ТРАСЕТА (TRAILS SECTION) --- */
.trails-fancy { 
    background: var(--brown); 
    width: 100%;
    max-width: none;
}

.trails-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px; 
    margin-top: 50px; 
}

.trail-card-new { 
    background: rgba(255,255,255,0.05); 
    border: 1px solid rgba(255,255,255,0.1);
    padding: 60px 40px; 
    border-radius: 25px; 
    position: relative; 
    overflow: hidden; 
    color: white;
    transition: var(--transition);
}

.trail-card-new:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}

.trail-card-new.featured { 
    background: rgba(211, 84, 0, 0.1); 
    border-color: var(--orange); 
}

.t-badge { 
    position: absolute; 
    top: 25px; 
    right: 25px; 
    font-size: 0.7rem; 
    font-weight: 900; 
    background: var(--orange); 
    padding: 6px 15px; 
    border-radius: 50px; 
    letter-spacing: 1px;
}

.trail-card-new h3 { 
    font-size: 3.8rem; 
    font-weight: 900; 
    margin-bottom: 20px; 
    line-height: 1;
}

.trail-card-new h3 span { 
    font-size: 1.2rem; 
    opacity: 0.6; 
}

.t-info p { 
    margin-bottom: 12px; 
    font-size: 1.1rem; 
    opacity: 0.85; 
    display: flex;
    align-items: center;
}

.t-info i {
    width: 25px;
    color: var(--orange);
    margin-right: 10px;
}

.t-btn { 
    display: inline-block; 
    margin-top: 35px; 
    color: white; 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 0.95rem; 
    border-bottom: 2px solid var(--orange); 
    padding-bottom: 5px;
    transition: var(--transition);
}

.t-btn:hover {
    color: var(--orange);
    padding-left: 10px;
}

/* --- FOOTER --- */
.main-footer { 
    background: #1a0f0a; 
    color: white; 
    padding: 100px 5% 40px; 
}

.footer-container { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 60px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.footer-brand .logo-text {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 20px;
}

.footer-brand p { 
    opacity: 0.6; 
    font-size: 1rem;
}

.footer-contacts h4, 
.footer-social h4 { 
    margin-bottom: 25px; 
    font-size: 0.85rem; 
    letter-spacing: 2px; 
    color: var(--orange); 
    text-transform: uppercase;
}

.footer-contacts p { 
    margin-bottom: 15px; 
    opacity: 0.8; 
    display: flex;
    align-items: center;
}

.footer-contacts i { 
    color: var(--orange); 
    margin-right: 15px; 
    font-size: 1.1rem;
}

.s-icons {
    display: flex;
    gap: 20px;
}

.s-icons a { 
    color: white; 
    font-size: 1.6rem; 
    transition: var(--transition); 
    background: rgba(255,255,255,0.05);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.s-icons a:hover { 
    color: white; 
    background: var(--orange);
    transform: translateY(-5px);
}

.footer-bottom { 
    text-align: center; 
    margin-top: 80px; 
    padding-top: 30px; 
    border-top: 1px solid rgba(255,255,255,0.05); 
    font-size: 0.85rem; 
    opacity: 0.4; 
}

/* --- АНИМАЦИЯ НА МИШКАТА --- */
.hero-scroll { 
    position: absolute; 
    bottom: 30px; 
    left: 50%; 
    transform: translateX(-50%); 
    text-align: center; 
    opacity: 0.7; 
    z-index: 2;
}

.mouse { 
    width: 26px; 
    height: 42px; 
    border: 2px solid white; 
    border-radius: 20px; 
    margin: 0 auto 10px; 
    position: relative; 
}

.mouse::before { 
    content: ''; 
    width: 4px; 
    height: 8px; 
    background: white; 
    position: absolute; 
    top: 8px; 
    left: 50%; 
    transform: translateX(-50%); 
    border-radius: 2px; 
    animation: scrollAnimation 2s infinite; 
}

@keyframes scrollAnimation { 
    0% { opacity: 1; top: 8px; } 
    100% { opacity: 0; top: 22px; } 
}

/* --- МОБИЛНА АДАПТАЦИЯ (RESPONSIVE) --- */
@media (max-width: 1024px) {
    .nav-links a { margin-left: 12px; font-size: 10px; }
    .hero h1 { font-size: 4rem; }
}

@media (max-width: 768px) {
    .navbar { padding: 15px 3%; }
    .nav-links { display: none; } /* Тук обикновено се слага мобилно меню */
    .hero h1 { font-size: 3rem; }
    .hero-sub { font-size: 1rem; letter-spacing: 2px; }
    .countdown { gap: 10px; }
    .time-box { min-width: 75px; padding: 10px; }
    .time-box span { font-size: 1.8rem; }
    .section { padding: 60px 5%; }
}

/* Page Header */
.page-header { 
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/cover.png') center/cover;
    padding: 150px 0 80px;
    text-align: center;
    color: white;
}
.page-header h1 { font-size: 3rem; font-weight: 900; text-transform: uppercase; }

/* Trail Blocks */
.trail-block { display: flex; gap: 50px; align-items: center; margin-bottom: 80px; }
.trail-block.reverse { flex-direction: row-reverse; }
.trail-info { flex: 1; }
.trail-image { flex: 1; text-align: center; }
.trail-image img { width: 100%; border-radius: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.img-caption { font-size: 0.8rem; color: #666; margin-top: 10px; font-style: italic; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin: 20px 0; }
.stat { background: white; padding: 10px; border-radius: 5px; font-weight: 700; font-size: 0.9rem; border-left: 4px solid var(--orange); }
.stat i { color: var(--orange); margin-right: 8px; }

.trail-list { list-style: none; margin-top: 20px; }
.trail-list li { margin-bottom: 8px; font-size: 0.95rem; }

.itra-badge { background: #000; color: #fff; display: inline-block; padding: 5px 15px; font-weight: 900; border-radius: 4px; margin-bottom: 10px; }

@media (max-width: 768px) {
    .trail-block, .trail-block.reverse { flex-direction: column; gap: 20px; }
}

/* ОБНОВЕНИ СТИЛОВЕ ЗА ТРАСЕТА */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/cover.png') center/cover;
    padding: 140px 0 60px;
    text-align: center;
    color: white;
}

.trails-section { padding: 80px 0; background: #fff; }

.trail-card-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 100px;
    align-items: center;
}

.trail-card-detail.reverse {
    direction: rtl; /* Обръща реда за четене */
}

.trail-card-detail.reverse .trail-content {
    direction: ltr; /* Връща текста в правилната посока */
}

.map-placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.map-placeholder img { width: 100%; display: block; }

.elevation-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.elevation-tag span { font-weight: 900; color: var(--orange); font-size: 0.9rem; }

.trail-slogan { color: var(--orange); font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; }

.trail-content h2 { font-size: 2.2rem; margin: 10px 0 20px; color: var(--brown); }

.trail-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin: 25px 0; }

.t-stat { font-weight: 700; font-size: 0.9rem; color: #555; display: flex; align-items: center; gap: 10px; }

.t-stat i { color: var(--orange); }

.trail-btns { display: flex; gap: 15px; margin-top: 30px; }

.btn-sm { 
    background: var(--orange); 
    color: white; 
    text-decoration: none; 
    padding: 10px 20px; 
    border-radius: 5px; 
    font-weight: 700; 
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-sm.btn-outline { background: none; border: 2px solid var(--orange); color: var(--orange); }

.btn-sm:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(211, 84, 0, 0.3); }

.itra-label { background: black; color: white; display: inline-block; padding: 4px 10px; font-weight: 900; border-radius: 3px; font-size: 0.7rem; margin-bottom: 10px; }

/* Mobile Adaptability */
@media (max-width: 900px) {
    .trail-card-detail, .trail-card-detail.reverse { grid-template-columns: 1fr; gap: 30px; }
}
/* ИНТЕРАКТИВНИ СТИЛОВЕ ЗА ТРАСЕТА */
.custom-spacing { padding: 80px 5%; max-width: 1300px; }

.trail-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.trail-row.reverse { flex-direction: row-reverse; }

.trail-image-box { flex: 1; }
.trail-text-box { flex: 1.2; }

.el-val { font-size: 1.8rem; font-weight: 900; color: var(--brown); line-height: 1; }
.el-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #888; }

/* Текстове */
.trail-slogan-accent { color: var(--orange); font-weight: 800; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 3px; display: block; margin-bottom: 10px; }
.trail-text-box h2 { font-size: 2.8rem; font-weight: 900; margin-bottom: 25px; color: var(--brown); }
.trail-long-desc { font-size: 1.1rem; color: #555; line-height: 1.8; margin-bottom: 30px; text-align: justify; }

/* Интерактивна мрежа със статистики */
.interactive-stats { display: flex; gap: 30px; margin-bottom: 40px; }
.i-stat { display: flex; align-items: center; gap: 12px; transition: 0.3s; }
.i-stat i { font-size: 1.5rem; color: var(--orange); }
.i-stat span { font-weight: 700; font-size: 1rem; color: var(--brown); }
.i-stat:hover { transform: translateY(-5px); }

/* Бутони */
.action-group { display: flex; align-items: center; gap: 25px; }
.btn-interactive {
    background: var(--brown);
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(62, 39, 35, 0.2);
}

.btn-interactive.orange-btn { background: var(--orange); box-shadow: 0 10px 20px rgba(211, 84, 0, 0.2); }
.btn-interactive.black-btn { background: #000; }

.btn-interactive:hover { transform: scale(1.05); box-shadow: 0 15px 30px rgba(0,0,0,0.3); }

.btn-minimal { color: #888; text-decoration: none; font-weight: 700; font-size: 0.9rem; transition: 0.3s; }
.btn-minimal:hover { color: var(--orange); }

.itra-premium-badge { background: gold; color: black; display: inline-block; padding: 5px 15px; font-weight: 900; border-radius: 5px; font-size: 0.8rem; margin-bottom: 15px; }

/* Mobile */
@media (max-width: 1000px) {
    .trail-row, .trail-row.reverse { flex-direction: column; gap: 40px; text-align: center; }
    .trail-long-desc { text-align: center; }
    .interactive-stats { justify-content: center; }
    .action-group { flex-direction: column; }
}

/* СТИЛОВЕ ЗА СТРАНИЦА СПОНСОРИ */
.sponsors-section { padding: 60px 0; text-align: center; }
.sponsor-tier { margin-bottom: 80px; }
.tier-title { font-size: 1.8rem; font-weight: 800; color: #2c1810; margin-bottom: 40px; text-transform: uppercase; position: relative; display: inline-block; }
.tier-title::after { content: ''; width: 60px; height: 3px; background: #d35400; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); }

.gold { color: #b8860b; }
.silver { color: #7a7a7a; }

.sponsor-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; align-items: center; }
.sponsor-item { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.sponsor-item:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.sponsor-item img { max-width: 100%; height: auto; filter: grayscale(100%); opacity: 0.7; transition: 0.3s; }
.sponsor-item:hover img { filter: grayscale(0%); opacity: 1; }

.sponsor-grid.large img { height: 120px; }
.sponsor-grid.medium img { height: 80px; }
.sponsor-grid.small img { height: 60px; }

.divider { border: 0; height: 1px; background: rgba(0,0,0,0.1); margin: 60px auto; width: 60%; }

.become-sponsor { background: #fff; padding: 50px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-top: 100px; }
.become-sponsor h3 { font-size: 1.5rem; margin-bottom: 15px; }
.become-sponsor p { margin-bottom: 25px; opacity: 0.8; }

/* СТИЛОВЕ ЗА СТРАНИЦА КОНТАКТИ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 60px 0;
}

.contact-info-block h2 {
    font-size: 2rem;
    color: #2c1810;
    margin-bottom: 20px;
    font-weight: 900;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.method-item i {
    font-size: 1.5rem;
    color: #d35400;
    background: rgba(211, 84, 0, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.method-item span {
    display: block;
    font-weight: 700;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
}

.method-item p {
    font-weight: 700;
    color: #2c1810;
}

.contact-form-block {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #d35400;
    outline: none;
    box-shadow: 0 0 10px rgba(211, 84, 0, 0.1);
}

.s-icons-contact {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.s-icons-contact a {
    color: #2c1810;
    font-size: 1.4rem;
    transition: 0.3s;
}

.s-icons-contact a:hover {
    color: #d35400;
}

.map-container {
    margin-top: 50px;
    line-height: 0;
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* РАЗВИТИ СТИЛОВЕ ЗА ЕКИП */
.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    padding: 40px 0;
}

.lead-p {
    font-size: 1.3rem;
    color: var(--brown);
    font-weight: 600;
    margin-bottom: 25px;
}

.image-stack {
    position: relative;
}

.main-team-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 5px solid white;
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--orange);
    color: white;
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 20px rgba(211, 84, 0, 0.3);
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-badge strong { font-size: 1.5rem; display: block; }
.experience-badge span { font-size: 0.6rem; text-transform: uppercase; font-weight: 700; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 50px 35px;
    border-radius: 25px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.03);
}

.value-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }

.v-icon {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 25px;
}

.value-card h3 { font-weight: 900; color: var(--brown); margin-bottom: 15px; }

@media (max-width: 900px) {
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .experience-badge { top: 10px; right: 10px; width: 80px; height: 80px; }
}

/* СТИЛОВЕ ЗА ДОБРОВОЛЦИ */
.volunteers-section {
    padding: 80px 0;
    background: var(--brown); /* Контрастен тъмен цвят за тази секция */
    color: white;
}

.volunteers-box {
    display: flex;
    align-items: center;
    gap: 60px;
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.volunteers-content { flex: 1.2; }
.volunteers-img { flex: 0.8; }

.volunteers-img img {
    width: 100%;
    border-radius: 20px;
    filter: sepia(20%) contrast(1.1);
}

.volunteers-content h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin: 10px 0 20px;
    color: var(--white);
}

.volunteers-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.vol-benefits {
    list-style: none;
    margin-bottom: 35px;
}

.vol-benefits li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.vol-benefits i {
    color: var(--orange);
    font-size: 1.2rem;
}

.vol-btn {
    display: inline-block;
    border: none;
    cursor: pointer;
}

@media (max-width: 900px) {
    .volunteers-box {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }
    .vol-benefits li { justify-content: center; }
}
/* Корекция за секцията Екип */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Правим двете колони равни */
    gap: 50px;
    align-items: center;
    padding: 60px 0;
}

.story-visual {
    position: relative;
    display: flex;
    justify-content: center; /* Центрира снимката в нейната зона */
}

.image-stack {
    position: relative;
    width: 100%;
    max-width: 500px; /* Ограничава снимката, за да не стане огромна */
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: -30px; /* Мести значката леко извън снимката, но без да "бяга" */
    background: var(--orange);
    color: white;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(211, 84, 0, 0.4);
    z-index: 2;
}
/* СТИЛОВЕ ЗА СТРАНИЦА ИНФОРМАЦИЯ */
.info-section { padding: 60px 0; }
#gear.info-block,
.info-block {
    display: flex !important; /* Форсираме флексбокс подредба */
    gap: 30px; /* Разстоянието между иконата и текста */
    align-items: flex-start; /* Иконата застава вляво и горе до заглавието */
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
#gear.info-block .info-icon,
.info-icon {
    flex: 0 0 80px; /* Твърда ширина за кутията с иконата */
    width: 80px;
    height: 80px;
    background-color: #fdf5e6; /* Твой оранжев фонов цвят */
    color: #d35400; /* Твой оранжев цвят за иконата */
    border-radius: 15px; /* Заоблени ъгли за кутийката */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem; /* Много голяма икона */
    margin-top: 10px; /* Позиционираме я малко по-надолу */
}
#gear.info-block .info-content,
.info-content h2 { font-weight: 900; margin-bottom: 20px; color: var(--brown); }

.schedule { margin-top: 15px; }
.schedule-item {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    font-size: 1.05rem;
}
.schedule-item span {
    font-weight: 900;
    color: var(--orange);
    margin-right: 15px;
    display: inline-block;
    width: 110px;
}
.schedule-item.highlight {
    background: rgba(211, 84, 0, 0.05);
    padding: 15px;
    border-radius: 10px;
    border-bottom: none;
    font-weight: 700;
}

.info-list { list-style: none; margin-top: 15px; }
.info-list li { margin-bottom: 10px; display: flex; align-items: center; gap: 15px; }
.info-list i { color: #27ae60; }

@media (max-width: 768px) {
    .info-block { flex-direction: column; gap: 20px; padding: 25px; }
    .schedule-item span { display: block; width: auto; margin-bottom: 5px; }
}
/* ОБНОВЕНИ СТИЛОВЕ ЗА СПОНСОРИ (БЕЗ НИВА) */
.sponsors-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}
.sponsors-intro h2 { font-size: 2.2rem; color: var(--brown); font-weight: 900; margin-bottom: 20px; }

.partners-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.partner-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.partner-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }

.partner-logo {
    flex: 0 0 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border-radius: 15px;
    padding: 20px;
}
.partner-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

.partner-info { flex: 1; }
.partner-info h3 { font-size: 1.5rem; color: var(--brown); margin-bottom: 12px; font-weight: 800; }
.partner-info p { font-size: 1rem; color: #666; margin-bottom: 15px; line-height: 1.6; }

.partner-link {
    display: inline-block;
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}
.partner-link:hover { color: var(--brown); text-decoration: underline; }

.join-partners {
    margin-top: 80px;
    background: var(--orange);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    color: white;
}
.join-content h3 { font-size: 2rem; font-weight: 900; margin-bottom: 15px; }
.join-content p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.9; }

@media (max-width: 768px) {
    .partner-card { flex-direction: column; text-align: center; gap: 20px; }
    .partner-logo { flex: 0 0 150px; width: 150px; height: 150px; margin: 0 auto; }
}
/* ИНФО СТРАНИЦА - ЦЕНИ И ПАКЕТИ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 равни колони */
    gap: 20px;
    margin-top: 25px;
    justify-content: center; /* Центрира колоните в контейнера */
    max-width: 1000px; /* Оптимална ширина за 3 карти */
    margin-left: auto;
    margin-right: auto;
}
.price-card {
    background: #fdf5e6; padding: 20px; border-radius: 15px;
    border: 1px solid rgba(211, 84, 0, 0.2); text-align: center;
}
.price-card h3 { color: var(--orange); margin-bottom: 10px; font-weight: 800; }
.p-row {
    display: flex; 
    justify-content: space-between; 
    align-items: center; /* Центрира ги перфектно по вертикала */
    gap: 15px; /* ТОВА Е КЛЮЧЪТ: Гарантира винаги поне 15px разстояние между текста и цената */
    font-size: 0.85rem;
    padding: 8px 0; 
    border-bottom: 1px dashed #ddd;
    text-align: left; /* Презаписва централното подравняване на картата */
}
.p-row strong { color: #2c1810; font-weight: 900; }

.include-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 25px;
}
.inc-item { display: flex; gap: 15px; font-size: 0.9rem; line-height: 1.4; }
.inc-item i { color: var(--orange); }

.not-included {
    margin-top: 35px; background: #fff5f5; padding: 20px;
    border-radius: 12px; border-left: 5px solid #e74c3c;
}
.not-included h3 { color: #e74c3c; margin-bottom: 10px; font-size: 1rem; }
.not-included li { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
/* Програма по дни */
.day-schedule h3 {
    color: var(--brown);
    font-size: 1.3rem;
    margin-bottom: 5px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

.day-schedule h3::after { display: none; } /* Премахваме чертичката тук */

.location-text {
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.highlight-start {
    background: rgba(211, 84, 0, 0.08);
    border-radius: 8px;
    font-weight: 700;
    padding-left: 10px !important;
}

.highlight-award {
    border-left: 4px solid #27ae60;
    padding-left: 10px !important;
    font-weight: 700;
    color: #27ae60;
}
/* ПЛАВНО ПРЕВЪРТАНЕ */
html {
    scroll-behavior: smooth;
}

/* ВЪТРЕШНО МЕНЮ */
.page-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    margin-top: -20px;
}

.page-menu-link {
    background: white;
    padding: 12px 25px;
    border-radius: 50px;
    color: var(--brown, #2c1810);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 2px solid transparent;
}

.page-menu-link i {
    color: var(--orange, #d35400);
    margin-right: 8px;
}

.page-menu-link:hover {
    border-color: var(--orange, #d35400);
    color: var(--orange, #d35400);
    transform: translateY(-3px);
}

/* ПОДРАВНЯВАНЕ НА БЛОКОВЕТЕ ЗА ДА НЕ СА СКРИТИ ОТ НАВИГАЦИЯТА */
.info-block {
    scroll-margin-top: 100px; /* Оставя място отгоре, за да не се скрива заглавието под главното меню */
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px auto;
    display: flex;
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
/* ПРЕМАХВАНЕ НА ПОЛЕТАТА ЗА FULL-BLEED ВИДЕО */

/* 1. Премахваме padding-а на самия контейнер с черната рамка */
.trail-image-box {
    padding: 0 !important;      /* Никакво разстояние между рамката и съдържанието */
    border: 2px solid #000;     /* Твоята черна рамка */
    overflow: hidden;           /* Крие всичко, което излиза извън рамката */
    background: transparent;    /* Премахва черния фон на самия бокс, ако има такъв */
    display: block;             /* Гарантира правилно изчисляване на размерите */
    width: 100%;                /* Заема цялото налично място в колоната */
    aspect-ratio: 16 / 9;       /* ПРИНУДИТЕЛНО съотношение (промени на 4/3 ако видеата са по-квадратни) */
}

.image-wrapper {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* ГЛАВЕН КОНТЕЙНЕР ЗА ЦЕЛИЯ САЙТ */
.container {
    width: 100%;
    max-width: 1200px; /* Не позволява на сайта да стане прекалено широк на големи монитори */
    margin: 0 auto;    /* Центрира целия блок в средата на екрана */
    padding-left: 20px;  /* СПАСИТЕЛНИЯТ ОТСТЪП ОТЛЯВО */
    padding-right: 20px; /* СПАСИТЕЛНИЯТ ОТСТЪП ОТДЯСНО */
}

/* Ако използваш .trails-section за трасетата, увери се, че и там няма нещо, което "разпъва" страницата извън ръбовете */
.trails-section {
    padding-top: 50px;
    padding-bottom: 50px;
    overflow-x: hidden; /* Спира появата на хоризонтален скрол, ако нещо стърчи */
}
/* 1. ЖЕЛЯЗНАТА РАМКА - Тук задаваме твърдия размер */
.trail-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Прави всички кутии абсолютно еднакви като пропорция */
    border: 2px solid #000; /* Черната рамка */
    border-radius: 20px;
    overflow: hidden; /* Реже всичко извън заоблените ъгли */
    padding: 0 !important;
    margin: 0;
    background: #111; /* Тъмен фон, докато зареди видеото */
    display: block;
}

/* 2. КОНТЕЙНЕРЪТ ВЪТРЕ - Залепваме го за рамката */
.image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* =========================================
   СТАТИЧНИ СНИМКИ: КАРТА + ДЕНИВЕЛАЦИЯ
   ========================================= */

/* Колоната, която държи двете снимки */
.trail-media-column {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Разстоянието между картата и графиката */
    flex: 1 1 50%; /* Заема половината екран на десктоп */
    min-width: 300px;
}

/* Обвивката на всяка снимка */
.media-box {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* Приятна, мека сянка */
    border: 1px solid rgba(0, 0, 0, 0.05); /* Много фина рамка */
    background: #fff; /* Бял фон, ако графиката има прозрачност */
}

/* Самите снимки */
.trail-static-img {
    display: block;
    width: 100%;
    height: auto; /* Автоматично запазва оригиналната пропорция на снимката! Никакво мачкане! */
    object-fit: contain; /* Показва цялата снимка без да реже нищо */
    transition: transform 0.3s ease;
}

/* Лек ефект при посочване с мишката */
.media-box:hover .trail-static-img {
    transform: scale(1.02);
}

/* МИНИМАЛИСТИЧЕН СТИЛ ЗА ТРАСЕТАТА */
.minimalist-style h2 {
    font-size: 2.2rem;
    color: #d35400; /* Оранжевият акцент */
    margin-bottom: 25px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.clean-stats-list {
    list-style-type: none; /* Маха стандартните грозни точки */
    padding: 0;
    margin: 0 0 30px 0;
}

.clean-stats-list li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

/* Добавяме стилна оранжева точка (булет) пред всеки ред */
.clean-stats-list li::before {
    content: "•";
    color: #d35400;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -4px;
}

/* Изравняване на бутоните да са един под друг (както е в Първа пушка) или един до друг */
.minimalist-style .action-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
/* =========================================
   МОБИЛНО МЕНЮ (ХАМБУРГЕР)
   ========================================= */

/* По подразбиране (на десктоп) крием хамбургер бутона */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: #2c1810; /* Цвета на логото ти */
}

/* Когато екранът се свие (под 768px - телефони и половин екран) */
@media (max-width: 768px) {
    /* =========================================
   МОБИЛНО МЕНЮ (ХАМБУРГЕР) - ФИКС ЦВЕТОВЕ
   ========================================= */

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 2rem; /* Малко по-голяма икона */
    color: #d35400 !important; /* Форсираме я да е оранжева, за да се вижда на всеки фон! */
    z-index: 1000;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block; 
    }

    .nav-links {
        display: none; 
        flex-direction: column;
        width: 100%;
        background: #ffffff !important; /* Твърд бял фон за падащото меню */
        position: absolute;
        top: 70px; /* Ако менюто закрива логото, увеличи това на 80px или 90px */
        left: 0;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        text-align: center;
        z-index: 999;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links li {
        margin: 10px 0;
        width: 100%; /* Заема цялата широчина */
    }

    /* ФОРСИРАМЕ ЦВЕТА НА ТЕКСТА ДА Е ТЪМЕН */
    .nav-links li a {
        color: #2c1810 !important; /* Тъмно кафяво/черно за текста */
        font-size: 1.2rem !important;
        font-weight: 700 !important;
        display: block;
        padding: 10px 20px;
    }

    /* Цвят при посочване в мобилното меню */
    .nav-links li a:hover,
    .nav-links li a.active {
        color: #d35400 !important;
        background: rgba(211, 84, 0, 0.05); /* Леко оцветяване на реда */
    }
}}
/* =========================================
   ЕКИПИРОВКА И ВАЖНИ СЪОБЩЕНИЯ (ALERTS)
   ========================================= */

.gear-heading {
    font-size: 1.4rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}

.text-red { color: #e74c3c; }
.text-green { color: #27ae60; }

/* Изчистен списък за екипировката */
.clean-gear-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.clean-gear-list li {
    display: flex;
    align-items: flex-start; /* Подравнява иконката с първия ред текст */
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.4;
    color: #333;
}

.clean-gear-list li small {
    display: block;
    color: #e67e22; /* Оранжев цвят за важното еко съобщение */
    margin-top: 4px;
    font-size: 0.85rem;
}

.icon-red { color: #e74c3c; margin-top: 4px; font-size: 1.1rem; }
.icon-green { color: #27ae60; margin-top: 4px; font-size: 1.1rem; }

/* Дизайн на предупредителните кутии */
.alert-box {
    display: flex;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.alert-box i {
    font-size: 1.5rem;
    margin-top: 2px;
}

.alert-box p {
    margin: 0;
}

/* Червена кутия (Дисквалификация) */
.alert-danger {
    background: #fff5f5;
    border-left: 4px solid #e74c3c;
    color: #c0392b;
}
.alert-danger i { color: #e74c3c; }

/* Синя кутия (Инфо) */
.alert-info {
    background: #f0f8ff;
    border-left: 4px solid #3498db;
    color: #2980b9;
}
.alert-info i { color: #3498db; }
/* =========================================
   ФОРСИРАНЕ НА ИКОНАТА В КУТИЙКАТА ЗА ЕКИПИРОВКА
   ========================================= */

/* Насочваме се към тага <i> вътре в кутийката */
#gear.info-block .info-icon i {
    color: #d35400 !important; /* Форсираме оранжевия цвят */
    font-size: 3.5rem !important; /* Форсираме голям размер */
    visibility: visible !important; /* Махаме евентуално скриване */
    opacity: 1 !important; /* Махаме евентуална прозрачност */
    display: inline-block !important; /* Гарантираме, че се рендерира */
    font-weight: 900 !important; /* Задължително за Font Awesome Solid иконки */
}
/* =========================================
   СТАТУС СЪОБЩЕНИЕ НА ФОРМАТА ЗА КОНТАКТИ
   ========================================= */
.form-status-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    display: none; /* Скрито е по подразбиране */
}

.form-status-message.success {
    display: block;
    background-color: #e8f5e9; /* Светло зелено */
    color: #2e7d32; /* Тъмно зелено */
    border: 1px solid #c8e6c9;
}

.form-status-message.error {
    display: block;
    background-color: #ffebee; /* Светло червено */
    color: #c62828; /* Тъмно червено */
    border: 1px solid #ffcdd2;
}
/* =========================================
   ГЛАВЕН БУТОН ЗА ИЗПРАЩАНЕ (.btn-main)
   ========================================= */

/* Основен вид на бутона */
.btn-main {
    display: inline-block;
    width: 100%; /* Прави бутона да заема цялата широчина на формата - стои много по-добре */
    padding: 15px 30px;
    background-color: #d35400; /* Твоят основен оранжев цвят */
    color: #ffffff; /* Бял текст */
    border: none;
    border-radius: 8px; /* Леко заоблени ъгли */
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase; /* Прави буквите главни */
    letter-spacing: 1px;
    cursor: pointer; /* ТОВА Е КЛЮЧЪТ: Прави курсора на "ръчичка" */
    transition: all 0.3s ease; /* Плавен преход за ховър ефекта */
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3); /* Лека оранжева сянка */
}

/* Ефект, когато минеш с мишката върху него (Hover) */
.btn-main:hover {
    background-color: #e67e22; /* Малко по-светло оранжево */
    transform: translateY(-2px); /* Леко повдига бутона нагоре */
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.4); /* Засилва сянката */
}

/* Ефект, когато го кликнеш (Active) */
.btn-main:active {
    transform: translateY(1px); /* Бутонът "хлътва" леко надолу */
    box-shadow: 0 2px 10px rgba(211, 84, 0, 0.3);
}

/* Стил, когато бутонът се зарежда (този вече го имаш, просто го оставяме тук за прегледност) */
.btn-main.loading {
    opacity: 0.7;
    cursor: not-allowed; /* Курсорът показва, че не може да се цъка пак */
    transform: none; /* Спира ховър ефекта по време на зареждане */
    box-shadow: none;
}
/* Стил, когато бутонът се зарежда */
.btn-main.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* =========================================
   СТРАНИЦА "ОЧАКВАЙТЕ СКОРО"
   ========================================= */
.coming-soon-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh; /* Гарантира, че блокът заема поне половината екран на височина */
    padding: 60px 20px;
    background-color: #f9f9f9; /* Лек сив фон, за да изпъкне бялата кутия (по желание) */
}

.coming-soon-content {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 600px;
    width: 100%;
}

.coming-soon-content i {
    font-size: 4rem;
    color: #d35400; /* Твоят оранжев цвят */
    margin-bottom: 20px;
    /* Лека анимация, която кара часовника да "диша" */
    animation: pulse 2s infinite ease-in-out; 
}

.coming-soon-content h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 900;
}

.coming-soon-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Анимацията за иконката */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}
/* =========================================
   СТРАНИЦА "ОЧАКВАЙТЕ СКОРО"
   ========================================= */

   /* =========================================
   ФИКС ЗА ЦЕНИТЕ НА МОБИЛЕН ТЕЛЕФОН
   ========================================= */

@media (max-width: 768px) {
    /* Нареждаме картичките една под друга */
    .pricing-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
    }

    /* Гарантираме, че картичката не излиза от екрана */
    .price-card {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px 15px !important; /* Леко намаляваме вътрешното разстояние за повече въздух */
    }

    /* Намаляваме леко шрифта на редовете, за да не се сбутва дългият текст */
    .p-row {
        font-size: 0.95rem !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
}
/* =========================================
   ФИКС ЗА ЦЕНИТЕ НА МОБИЛЕН ТЕЛЕФОН
   ========================================= */

   /* =========================================
   ФИКС ЗА ДЪЛГИ ЗАГЛАВИЯ НА МОБИЛЕН
   ========================================= */

@media (max-width: 768px) {
    /* Хващаме всички главни заглавия (h1, h2) и класа за секционни заглавия */
    h1, h2, .section-title {
        font-size: 1.8rem !important; /* Намаляваме леко размера за телефон */
        line-height: 1.3 !important;
        
        /* Тройна защита срещу излизане от екрана: */
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        hyphens: auto !important; /* Позволява слагането на тире при сричкопренасяне */
        
        max-width: 100% !important;
        padding-left: 10px;
        padding-right: 10px;
    }
}
/* =========================================
   ФИКС ЗА ДЪЛГИ ЗАГЛАВИЯ НА МОБИЛЕН
   ========================================= */