        /* ГЛОБАЛНИ СТИЛОВЕ */
        :root {
            --brand-red: #e30613;
            --dark-bg: #111111;
            --text-gray: #1a2a3a;
            --light-bg: #f8f8f8;
            --border-color: #eee;
            --accent-color: var(--brand-red);
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Oswald', sans-serif; /* Уеднаквен основен шрифт */
            color: var(--text-gray);
            background-color: #fff;
            padding-top: 0px; 
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ХЕДЪР */
        .header {
            background: #fff;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            border-bottom: 1px solid #eee;
        }

        .top-language-bar {
            background: #f8f8f8;
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }

        .lang-wrapper {
            display: flex;
            justify-content: flex-end;
            gap: 20px;
        }

        .lang-link {
            color: #333;
            text-decoration: none;
            font-family: 'Oswald', sans-serif;
            font-size: 13px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.6;
            transition: var(--transition);
        }

        .lang-link:hover, .lang-link.active {
            opacity: 1;
            color: var(--accent-color) !important; /* Поправен синтаксис на цвета */
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0; /* Уеднаквен отстъп */
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #111;
            gap: 12px;
        }

        .logo img { height: 55px; } /* Уеднаквена височина на логото */

        .logo-text {
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            font-size: 1.6rem;
            line-height: 1;
            text-transform: uppercase;
            color: #1a2a3a;
        }

        .logo-text span { color: var(--brand-red); }
        .logo-text small { display: block; font-size: 0.65rem; letter-spacing: 3px; color: #888; }

        .menu {
            display: flex;
            list-style: none;
            gap: 5px;
            margin: 0;
            align-items: center;
        }

        .menu a {
            text-decoration: none;
            color: #1a2a3a;
            font-family: 'Oswald', sans-serif !important;
            font-size: 0.95rem;
            font-weight: 400; /* Уеднаквена дебелина */
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 10px 20px; /* Добавен същия padding за червения бутон */
            border-radius: 4px;
            transition: var(--transition);
            display: inline-block;
        }

        .menu a:hover, .menu a.active { 
            background: var(--brand-red); 
            color: #fff; 
        }

        /* ВЪТРЕШЕН HERO */
        .page-header {
            background: var(--dark-bg);
            color: #fff;
            padding: 60px 0;
            text-align: center;
        }

        .page-header h1 {
            font-family: 'Oswald', sans-serif;
            font-size: 42px;
            text-transform: uppercase;
            margin: 0;
        }

        .page-header p {
            color: var(--brand-red);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Oswald', sans-serif;
            margin-top: 10px;
            font-size: 14px;
        }

        /* КОНТАКТНА МРЕЖА */
        .contact-content {
            padding: 80px 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 50px;
        }

        /* ЛЯВА КОЛОНА: ГЛАВНА ИНФО */
        .info-card {
            background: var(--light-bg);
            padding: 40px;
            border-left: 5px solid var(--brand-red);
            margin-bottom: 30px;
        }

        .info-card h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 24px;
            margin-top: 0;
            text-transform: uppercase;
        }

        .info-card p {
            margin: 15px 0;
            font-size: 15px;
        }

        .info-card strong { color: #000; }

        .map-wrapper {
            filter: grayscale(1);
            transition: 0.5s;
            border: 1px solid var(--border-color);
        }

        .map-wrapper:hover { filter: grayscale(0); }

        /* ДЯСНА КОЛОНА: ЕКИП */
        .director-box {
            background: var(--dark-bg);
            color: #fff;
            padding: 30px;
            margin-bottom: 30px;
            position: relative;
        }

        .director-box h2 {
            font-family: 'Oswald', sans-serif;
            margin: 0;
            font-size: 28px;
        }

        .director-box .position {
            color: var(--brand-red);
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 1px;
        }

        .staff-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .staff-item {
            padding: 25px;
            border: 1px solid var(--border-color);
            transition: 0.3s;
        }

        .staff-item:hover {
            border-color: var(--brand-red);
            background: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .staff-item h4 {
            font-family: 'Oswald', sans-serif;
            margin: 0 0 5px 0;
            font-size: 18px;
            text-transform: uppercase;
        }

        .staff-item span {
            display: block;
            font-size: 12px;
            color: #888;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .staff-item p {
            margin: 5px 0;
            font-size: 14px;
        }

        .highlight {
            background: #fff5f5;
            border-color: #ffcccc;
        }

        /* ФУТЪР */
        .footer {
            background: var(--dark-bg);
            color: #fff;
            padding: 60px 0 20px 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 50px;
        }

        .footer-links h4 { font-family: 'Oswald', sans-serif; color: var(--brand-red); }
        .footer-links ul { list-style: none; padding: 0; }
        .footer-links a { color: #aaa; text-decoration: none; font-size: 14px; }
        .footer-links a:hover { color: #fff; }

  /* ==========================================
   АДАПТИВЕН (RESPONSIVE) СТИЛ ЗА МОБИЛНИ УСТРОЙСТВА
   ========================================== */

/* За екрани под 991px (Таблети) */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .staff-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 30px !important;
    }
    
    .lang-wrapper {
        justify-content: center !important;
    }
}

/* За екрани под 768px (Мобилни телефони) */
@media (max-width: 768px) {
    
    /* СВИВАМЕ СЛУЖЕБНО ВИСОЧИНАТА НА БЕЛИЯ БЛОК */
    .header .nav-wrapper {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
        margin: 0 auto !important;
        height: 55px !important; /* Твърдо ограничаваме кутията, за да няма празно бяло пространство */
        display: flex !important;
        align-items: center !important;
    }

    /* ИЗТЪНЯВАМЕ СИВАТА ЛЕНТА С ЕЗИЦИТЕ */
    .top-language-bar {
        padding: 2px 0 !important;
        margin: 0 !important;
    }

    .lang-wrapper {
        gap: 12px !important;
        justify-content: center !important;
    }

    /* НАМАЛЯВАМЕ ЛОГОТО, ЗА ДА СЕ СЪБЕРЕ В ТЕЗИ 55px */
    .logo img {
        height: 32px !important;
        width: auto !important;
    }

    .logo-text {
        font-size: 1.1rem !important;
    }

    .logo-text small {
        display: none !important; /* Скриваме подзаглавието "БУРГАС" на телефон, за да не тежи */
    }

    /* БУРГЕР БУТОН */
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 24px !important;
        height: 16px !important;
        cursor: pointer !important;
    }

    .hamburger span {
        display: block !important;
        width: 100% !important;
        height: 3px !important;
        background-color: #111111 !important;
    }

    /* Превръщане на бургера в X при отваряне */
    .hamburger.active span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg) !important;
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0 !important;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg) !important;
    }

    /* МОБИЛНО ПАДАЩО МЕНЮ */
    .header .menu {
        display: none !important; 
        flex-direction: column !important;
        position: absolute !important;
        top: 100% !important; 
        left: 0 !important;
        width: 100% !important;
        background: #ffffff !important;
        padding: 15px 0 !important;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1) !important;
        border-top: 1px solid #eee !important;
        z-index: 999 !important;
    }

    .menu.active {
        display: flex !important; 
    }

    .menu li {
        width: 100% !important;
        text-align: center !important;
    }

    .menu a {
        display: block !important;
        padding: 12px 0 !important;
        width: 100% !important;
    }

    /* КОРЕКЦИЯ ЗА ЧЕРНИЯ БАНЕР (HERO СЕКЦИЯТА) */
    .page-header {
        margin-top: 0 !important;
        padding: 40px 0 !important;
    }
    
    .page-header h1 {
        font-size: 26px !important;
    }
}
    

    
        