/* ===== QNTRA TECHNOLOGY - MAIN STYLESHEET ===== */
:root {
    --orange: #F47920;
    --orange-dark: #d4661a;
    --orange-light: #ff9a45;
    --dark: #293133;
    --dark-2: #323a3c;
    --dark-3: #3d4749;
    --gray: #6c757d;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text: #333333;
    --transition: all 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; }

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ===== NAVBAR ===== */
.qntra-nav {
    background: var(--dark) !important;
    padding: 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--orange);
    transition: var(--transition);
}

.qntra-nav.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.nav-logo {
    height: 42px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.nav-brand-text {
    color: white;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1;
}

.nav-brand-text span { color: var(--orange); }

.qntra-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.8rem;
    padding: 1.2rem 0.7rem !important;
    letter-spacing: 0.2px;
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
}

.qntra-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: var(--orange);
    transition: var(--transition);
}

.qntra-nav .nav-link:hover::after,
.qntra-nav .nav-link.active::after {
    left: 0; right: 0;
}

.qntra-nav .nav-link:hover,
.qntra-nav .nav-link.active {
    color: var(--orange) !important;
}

.qntra-nav .dropdown-menu {
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    border-top: 2px solid var(--orange);
    border-radius: 0 0 8px 8px;
    min-width: 220px;
    padding: 0.5rem 0;
}

.qntra-nav .dropdown-item {
    color: rgba(255,255,255,0.8);
    padding: 0.6rem 1.2rem;
    font-size: 0.875rem;
    transition: var(--transition);
}

.qntra-nav .dropdown-item:hover {
    background: var(--dark-3);
    color: var(--orange);
    padding-left: 1.6rem;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 1rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.7);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.lang-btn.active, .lang-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    width: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* YouTube video background */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

#hero-yt-player {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video,
#hero-yt-player iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Cover trick: always fill the section regardless of aspect ratio */
    width: 177.78vh;   /* 16:9 at full height */
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw; /* 16:9 at full width */
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
}

/* Dark overlay — light enough to see the video, dark enough to read text */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 25, 27, 0.58);
    z-index: 1;
}

/* Blend into next section */
.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--dark));
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 3rem;
    padding-bottom: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text-col {
    max-width: 760px;
}

/* Eyebrow label */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.hero-eyebrow-dot {
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Main heading */
.hero-heading {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-heading em {
    font-style: normal;
    color: var(--orange);
}

/* Description */
.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 2.25rem;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* CTA row */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    justify-content: center;
}

.hero-link {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.hero-link:hover {
    color: var(--orange);
    gap: 12px;
}

/* Stats row */
.hero-stats {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
    gap: 0;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

.hero-stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    letter-spacing: -1px;
}

.hero-stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    font-weight: 600;
}

/* Mobile hero adjustments */
@media (max-width: 767px) {
    .hero-overlay { background: rgba(20,25,27,0.6); }
    .hero-overlay::after { display: none; }
    .hero-stats { padding: 1rem 1.25rem; }
    .hero-stat { padding: 0 1.25rem; }
    .hero-heading { letter-spacing: -0.5px; }
}

/* ===== BUTTONS ===== */
.btn-orange {
    background: var(--orange);
    color: white;
    border: 2px solid var(--orange);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.6px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(244,121,32,0.3);
}

.btn-orange:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(244,121,32,0.5);
}

.btn-outline-orange {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-orange:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244,121,32,0.3);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
    border-color: white;
    background: rgba(255,255,255,0.15);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

/* ===== SECTION STYLES ===== */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--dark); color: white; }
.section-gray { background: var(--light-gray); }

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    max-width: 560px;
    line-height: 1.7;
}

.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

.divider-orange {
    width: 50px;
    height: 3px;
    background: var(--orange);
    margin: 1rem 0 1.5rem;
    border-radius: 2px;
}

/* ===== PRODUCT CATEGORY CARDS ===== */
.category-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.06);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(244,121,32,0.2);
    border-color: var(--orange);
}

.category-card-img {
    height: 220px;
    overflow: hidden;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.category-card-img img {
    max-height: 180px;
    object-fit: contain;
    transition: var(--transition);
}

.category-card:hover .category-card-img img {
    transform: scale(1.05);
}

.category-card-body {
    padding: 1.5rem;
}

.category-card-icon {
    width: 44px; height: 44px;
    background: rgba(244,121,32,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.category-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.category-card-desc {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.category-card-link {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.category-card-link:hover { gap: 10px; color: var(--orange-dark); }

/* ===== PRODUCT CARDS ===== */
.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.07);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.06);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(244,121,32,0.15);
    border-color: rgba(244,121,32,0.3);
}

.product-card-img {
    height: 200px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow: hidden;
}

.product-card-img img {
    max-height: 160px;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-card-body { padding: 1.25rem; }

.product-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.product-card-summary {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ===== STATS STRIP ===== */
.stats-strip {
    background: var(--orange);
    padding: 50px 0;
}

.stat-item { text-align: center; }

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

/* ===== PROJECTS GRID ===== */
.project-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.project-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img { transform: scale(1.08); }

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-card-overlay { opacity: 1; }

.project-card-title {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.project-card-cat {
    color: var(--orange-light);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== NEWS CARDS ===== */
.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.07);
    transition: var(--transition);
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.news-card-img {
    height: 200px;
    overflow: hidden;
}

.news-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-img img { transform: scale(1.05); }

.news-card-body { padding: 1.25rem; }

.news-card-date {
    font-size: 0.8rem;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-card-summary {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-hero {
    background: var(--dark);
    padding: 120px 0 60px;
    color: white;
}

.product-breadcrumb {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}

.product-breadcrumb a { color: var(--orange); }
.product-breadcrumb span { margin: 0 8px; }

.product-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.product-summary-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    line-height: 1.7;
}

.product-image-main {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border: 1px solid rgba(255,255,255,0.08);
}

.product-image-main img {
    max-height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(244,121,32,0.2));
}

.spec-table { width: 100%; }

.spec-table tr { border-bottom: 1px solid rgba(0,0,0,0.06); }
.spec-table tr:last-child { border-bottom: none; }

.spec-table td {
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--dark);
    width: 40%;
}

.spec-table td:last-child { color: var(--gray); }

.feature-list { list-style: none; padding: 0; }

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px; height: 8px;
    background: var(--orange);
    border-radius: 50%;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.doc-item:hover {
    background: rgba(244,121,32,0.1);
    color: var(--orange);
}

.doc-item i { color: var(--orange); font-size: 1.1rem; }

/* ===== RICH CONTENT (Quill output) ===== */
.rich-content h1, .rich-content h2, .rich-content h3 {
    font-weight: 700;
    color: var(--dark);
    margin: 1.25rem 0 0.5rem;
}
.rich-content h1 { font-size: 1.6rem; }
.rich-content h2 { font-size: 1.3rem; }
.rich-content h3 { font-size: 1.1rem; }
.rich-content p { margin-bottom: 0.9rem; }
.rich-content ul, .rich-content ol { padding-left: 1.5rem; margin-bottom: 0.9rem; }
.rich-content li { margin-bottom: 0.3rem; }
.rich-content strong { font-weight: 700; }
.rich-content em { font-style: italic; }
.rich-content a { color: var(--orange); text-decoration: underline; }
.rich-content img { max-width: 100%; border-radius: 8px; margin: 0.75rem 0; }

/* ===== CONTACT SECTION ===== */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 44px; height: 44px;
    background: rgba(244,121,32,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    margin-bottom: 2px;
}

.contact-info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

/* ===== FOOTER ===== */
.qntra-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-logo img { height: 50px; margin-bottom: 1rem; }

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 280px;
}

.footer-heading {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--orange);
}

.footer-links { list-style: none; padding: 0; }

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover { color: var(--orange); padding-left: 4px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 0;
    margin-top: 3rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

.social-links { display: flex; gap: 10px; margin-top: 1rem; }

.social-link {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-2px);
}

/* ===== ADMIN PANEL ===== */
.admin-sidebar {
    background: var(--dark);
    min-height: 100vh;
    width: 260px;
    position: fixed;
    top: 0; left: 0;
    padding: 0;
    z-index: 100;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.admin-sidebar-logo {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-sidebar-logo img { height: 36px; }

.admin-sidebar-logo span {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 1.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.admin-nav-item:hover, .admin-nav-item.active {
    color: white;
    background: rgba(244,121,32,0.1);
    border-left-color: var(--orange);
}

.admin-nav-item i { width: 18px; text-align: center; }

.admin-nav-section {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.25);
    font-weight: 600;
}

.admin-content {
    margin-left: 260px;
    min-height: 100vh;
    background: #f8f9fa;
}

.admin-topbar {
    background: white;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 50;
}

.admin-topbar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.admin-main { padding: 2rem; }

.admin-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    margin-bottom: 1.5rem;
}

/* Quill editor container in admin forms */
.quill-editor-box {
    min-height: 200px;
    background: white;
    border-radius: 0 0 6px 6px;
}
.ql-toolbar { border-radius: 6px 6px 0 0 !important; }
.ql-container { border-radius: 0 0 6px 6px !important; font-size: 0.9rem; }

.admin-stat-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-stat-icon {
    width: 52px; height: 52px;
    background: rgba(244,121,32,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.3rem;
}

.admin-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.admin-stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 2px;
}

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
    background: var(--light-gray);
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    text-align: left;
}

.admin-table td {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    vertical-align: middle;
}

.admin-table tr:hover td { background: rgba(244,121,32,0.03); }

.badge-orange {
    background: rgba(244,121,32,0.15);
    color: var(--orange);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 140px 0 80px;
    color: white;
}

.timeline { position: relative; padding-left: 2rem; }

.timeline::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange), transparent);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.4rem;
    top: 4px;
    width: 12px; height: 12px;
    background: var(--orange);
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 3px rgba(244,121,32,0.2);
}

.timeline-year {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.timeline-text {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== ABOUT TIMELINE (new) ===== */
.about-timeline { position: relative; padding-left: 0; }

.about-timeline-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    align-items: flex-start;
}

.about-timeline-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: rgba(244,121,32,0.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--orange);
    font-size: 1rem;
    margin-top: 2px;
}

.about-timeline-year {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.2rem;
}

.about-timeline-title {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.about-timeline-text {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== UTILITY ===== */
.text-orange { color: var(--orange) !important; }
.bg-orange { background: var(--orange) !important; }
.bg-dark-custom { background: var(--dark) !important; }

.page-top-padding { padding-top: 80px; }

.img-placeholder {
    background: linear-gradient(135deg, rgba(244,121,32,0.06), rgba(244,121,32,0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .admin-sidebar { transform: translateX(-100%); transition: var(--transition); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-content { margin-left: 0; }
    .hero-inner { flex-direction: column; gap: 2.5rem; padding-bottom: 4rem; }
    .hero-visual-col { width: 100%; max-width: 420px; }
    .hero::before { width: 100%; clip-path: none; opacity: 0.5; }
}

@media (max-width: 767px) {
    .section { padding: 60px 0; }
    .hero { min-height: auto; padding: 100px 0 40px; }
    .hero-heading { font-size: clamp(1.8rem, 7vw, 2.4rem); }
    .hero-stats { gap: 0; }
    .hero-stat { padding-right: 1.25rem; }
    .hero-stat-divider { margin-right: 1.25rem; }
    .stats-strip .stat-number { font-size: 2.2rem; }
    .qntra-nav .nav-link { padding: 0.75rem 1rem !important; }
}

/* ===== CLIENTS STRIP ===== */
.clients-strip {
    background: var(--light-gray);
    padding: 40px 0;
    overflow: hidden;
}

.clients-strip-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin: 0;
}

.clients-track-wrap {
    overflow: hidden;
    position: relative;
}

.clients-track-wrap::before,
.clients-track-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.clients-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--light-gray), transparent);
}

.clients-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--light-gray), transparent);
}

.clients-track {
    display: flex;
    gap: 16px;
    animation: scrollClients 30s linear infinite;
    width: max-content;
}

.clients-track:hover { animation-play-state: paused; }

@keyframes scrollClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-chip {
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 10px 22px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    transition: var(--transition);
    cursor: default;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.client-chip:hover {
    border-color: var(--orange);
    color: var(--orange);
    box-shadow: 0 4px 16px rgba(244,121,32,0.12);
}

/* ===== FLOATING CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: white;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 30px rgba(244,121,32,0.5);
    transition: var(--transition);
    text-decoration: none;
}

.floating-cta-btn:hover {
    background: var(--orange-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(244,121,32,0.6);
}

.floating-cta-btn i {
    font-size: 1rem;
    animation: phonePulse 2s ease-in-out infinite;
}

@keyframes phonePulse {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(0deg); }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--dark-2);
    border-top: 2px solid var(--orange);
    z-index: 9999;
    padding: 16px 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-text {
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    line-height: 1.6;
    flex: 1;
    min-width: 200px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* ===== MOBILE DRAWER ===== */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1099;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.mobile-drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--dark);
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-drawer-close {
    background: rgba(255,255,255,0.08);
    border: none;
    color: white;
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.mobile-drawer-close:hover { background: var(--orange); }

.mobile-drawer-nav {
    flex: 1;
    padding: 1rem 0;
}

.mobile-drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.875rem 1.5rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.mobile-drawer-link:hover {
    color: white;
    background: rgba(244,121,32,0.1);
    border-left-color: var(--orange);
}

.mobile-drawer-link i {
    width: 20px;
    text-align: center;
    color: var(--orange);
    font-size: 0.9rem;
}

.mobile-drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* ===== PARKING RENTAL SECTION ===== */
.parking-rental-section {
    background: white;
}

.rental-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.rental-feature-item:hover {
    border-color: rgba(244,121,32,0.3);
    background: rgba(244,121,32,0.04);
}

.rental-feature-item i {
    color: var(--orange);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.rental-feature-title {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--dark);
    margin-bottom: 2px;
}

.rental-feature-desc {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.4;
}

.rental-visual {
    position: relative;
    display: inline-block;
    width: 100%;
}

.rental-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--orange);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(244,121,32,0.4);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--dark); }

.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem; right: 1.5rem;
    font-size: 5rem;
    color: rgba(244,121,32,0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: rgba(244,121,32,0.3);
    background: rgba(244,121,32,0.05);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--orange);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px; height: 44px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-name {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-role {
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
}

/* ===== SECTION SPACING IMPROVEMENTS ===== */
.section { padding: 100px 0; }

.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===== GLIGHTBOX OVERRIDES ===== */
.glightbox-clean .gslide-description { background: var(--dark); }
.glightbox-clean .gdesc-inner { padding: 1rem 1.5rem; }

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 1199px) {
    .floating-cta-label { display: none; }
    .floating-cta-btn { padding: 14px; border-radius: 50%; }
}

@media (max-width: 767px) {
    .section { padding: 70px 0; }
    .cookie-banner-content { flex-direction: column; align-items: flex-start; }
    .floating-cta { bottom: 20px; right: 20px; }
    .rental-badge { font-size: 0.8rem; padding: 8px 14px; }
}

/* ===== HOW IT WORKS ===== */
.how-it-works-section { background: white; }

.hiw-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    position: relative;
}

.hiw-step {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.hiw-step-num {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(244,121,32,0.08);
    line-height: 1;
    margin-bottom: -1rem;
    font-family: 'Inter', sans-serif;
}

.hiw-step-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    margin: 0 auto 1.25rem;
    box-shadow: 0 12px 30px rgba(244,121,32,0.35);
    transition: var(--transition);
}

.hiw-step:hover .hiw-step-icon {
    transform: translateY(-4px) rotate(5deg);
    box-shadow: 0 18px 40px rgba(244,121,32,0.45);
}

.hiw-step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.hiw-step-desc {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

.hiw-connector {
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--orange);
    font-size: 1.2rem;
    opacity: 0.4;
    z-index: 2;
}

/* ===== BEFORE / AFTER SLIDER ===== */
.ba-section {
    background: var(--dark);
}

.ba-slider-wrap {
    max-width: 960px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    position: relative;
    user-select: none;
}

/* Drag track — invisible overlay for capturing mouse events */
.ba-drag-track {
    position: absolute;
    inset: 0;
    z-index: 20;
    cursor: ew-resize;
}

.ba-drag-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.ba-handle-line {
    flex: 1;
    width: 2px;
    background: white;
    opacity: 0.7;
}

.ba-handle-btn {
    width: 44px; height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    flex-shrink: 0;
    gap: 2px;
}

/* Two panels */
.ba-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    position: relative;
}

.ba-panel {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
    transition: flex 0.05s linear;
}

.ba-panel-before {
    background: #111;
    border-right: none;
}

.ba-panel-after {
    background: #1a1a1a;
}

.ba-panel-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    width: fit-content;
}

.ba-panel-before .ba-panel-label {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.12);
}

.ba-panel-after .ba-panel-label {
    background: var(--orange);
    color: white;
}

/* Metric bars */
.ba-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.ba-metric-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ba-metric-name {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    width: 90px;
    flex-shrink: 0;
}

.ba-bar-wrap {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    overflow: hidden;
}

.ba-bar {
    height: 100%;
    border-radius: 4px;
    width: var(--val);
    transition: width 1s ease;
}

.ba-bar-bad {
    background: linear-gradient(to right, #ff5555, #ff3333);
}

.ba-bar-good {
    background: linear-gradient(to right, var(--orange), #28c840);
}

.ba-metric-val {
    font-size: 0.78rem;
    font-weight: 700;
    width: 60px;
    text-align: right;
    flex-shrink: 0;
}

.ba-metric-val.bad { color: #ff5555; }
.ba-metric-val.good { color: #28c840; }

/* Tags */
.ba-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ba-tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ba-tag.bad {
    background: rgba(255,85,85,0.1);
    color: rgba(255,255,255,0.45);
    border: 1px solid rgba(255,85,85,0.2);
}

.ba-tag.good {
    background: rgba(40,200,64,0.1);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(40,200,64,0.25);
}

.ba-tag.bad i { color: #ff5555; }
.ba-tag.good i { color: #28c840; }

/* Divider line between panels */
.ba-panels::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255,255,255,0.15);
    pointer-events: none;
    z-index: 5;
}

@media (max-width: 991px) {
    .ba-panels { min-height: 360px; }
    .ba-panel { padding: 1.75rem 1.25rem; }
    .ba-metric-name { width: 70px; font-size: 0.72rem; }
}

@media (max-width: 767px) {
    .ba-panels { grid-template-columns: 1fr 1fr; min-height: 300px; }
    .ba-panel { padding: 1.25rem 0.875rem; gap: 1rem; }
    .ba-metric-name { display: none; }
    .ba-metric-val { width: 44px; font-size: 0.7rem; }
    .ba-tags { display: none; }
}

.bulgaria-map-svg {
    width: 100%;
    height: auto;
}

.bg-country {
    fill: rgba(244,121,32,0.08);
    stroke: rgba(244,121,32,0.3);
    stroke-width: 2;
}

.map-dot-main {
    fill: var(--orange);
    cursor: pointer;
    transition: r 0.2s;
}

.map-dot-pulse {
    fill: rgba(244,121,32,0.2);
    animation: mapPulse 2s ease-in-out infinite;
}

.map-city-dot:hover .map-dot-main { r: 8; }

@keyframes mapPulse {
    0%, 100% { opacity: 0.3; r: 12; }
    50% { opacity: 0.6; r: 16; }
}

.map-city-label {
    font-size: 9px;
    fill: var(--dark);
    text-anchor: middle;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    pointer-events: none;
}

.map-live-counter {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--dark);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.map-live-dot {
    width: 8px; height: 8px;
    background: #28c840;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

#mapLiveCount { color: var(--orange); font-weight: 800; }

.map-city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 1rem;
}

.map-city-chip {
    background: rgba(244,121,32,0.08);
    border: 1px solid rgba(244,121,32,0.2);
    color: var(--dark);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
    cursor: default;
}

.map-city-chip i { color: var(--orange); font-size: 0.65rem; }

.map-city-chip:hover {
    background: rgba(244,121,32,0.15);
    border-color: var(--orange);
}

/* ===== AWARDS ===== */
.award-card {
    background: white;
    border-radius: 14px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    height: 100%;
}

.award-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    box-shadow: 0 16px 40px rgba(244,121,32,0.15);
}

.award-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(244,121,32,0.12), rgba(244,121,32,0.06));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.4rem;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.award-card:hover .award-icon {
    background: var(--orange);
    color: white;
}

.award-title {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.award-desc {
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ===== FAQ ===== */
.faq-section { background: white; }

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.07); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.faq-question:hover { color: var(--orange); }
.faq-question.open { color: var(--orange); }

.faq-icon {
    color: var(--orange);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 200px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.75;
    margin: 0;
}

/* ===== VIBER BUTTON ===== */
.viber-btn {
    position: fixed;
    bottom: 96px;
    right: 32px;
    z-index: 998;
    width: 50px; height: 50px;
    background: #7360f2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(115,96,242,0.5);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.viber-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.viber-btn:hover {
    background: #5b4bc4;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(115,96,242,0.6);
}

/* ===== STICKY QUOTE SIDEBAR ===== */
.sticky-quote-sidebar {
    position: sticky;
    top: 100px;
    margin-bottom: 1.5rem;
}

.sticky-quote-inner {
    background: linear-gradient(135deg, var(--dark) 0%, #2a1a0a 100%);
    border-radius: 14px;
    padding: 1.5rem;
    border: 1px solid rgba(244,121,32,0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.sticky-quote-header {
    color: var(--orange);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.sticky-quote-product {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.btn-viber-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(115,96,242,0.4);
    border-radius: 6px;
    color: #a89af5;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    background: rgba(115,96,242,0.08);
}

.btn-viber-outline:hover {
    background: #7360f2;
    border-color: #7360f2;
    color: white;
}

.sticky-quote-note {
    margin-top: 1rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.sticky-quote-note i { color: var(--orange); }

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 991px) {
    .hiw-connector { display: none; }
    .hiw-step { min-width: 160px; }
    .sticky-quote-sidebar { position: static; }
}

@media (max-width: 767px) {
    .ba-dashboard-mock { display: none; }
    .viber-btn { bottom: 80px; right: 20px; }
}

/* ===== HOW IT WORKS ===== */
.how-it-works-section { background: white; }

.hiw-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    position: relative;
}

.hiw-step {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.hiw-step-num {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(244,121,32,0.08);
    line-height: 1;
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    letter-spacing: -2px;
}

.hiw-step-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 12px 30px rgba(244,121,32,0.35);
    transition: var(--transition);
}

.hiw-step:hover .hiw-step-icon {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(244,121,32,0.45);
}

.hiw-step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.hiw-step-desc {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.6;
}

.hiw-connector {
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--orange);
    font-size: 1.2rem;
    opacity: 0.4;
    z-index: 2;
}

/* ===== LEAFLET MAP ===== */
.leaflet-map-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.06);
    height: 420px;
}

#bulgariaLeafletMap {
    width: 100%;
    height: 100%;
}

/* Custom Leaflet marker popup */
.leaflet-popup-content-wrapper {
    background: var(--dark);
    color: white;
    border-radius: 10px;
    border: 1px solid rgba(244,121,32,0.4);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.leaflet-popup-tip {
    background: var(--dark);
}

.leaflet-popup-content {
    margin: 10px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
}

.qntra-popup-title {
    font-weight: 700;
    color: var(--orange);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.qntra-popup-count {
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
}

/* Leaflet attribution override */
.leaflet-control-attribution {
    font-size: 0.65rem;
    opacity: 0.6;
}

@media (max-width: 767px) {
    .leaflet-map-wrap { height: 300px; }
}

/* ===== LIVE COUNTER ===== */
.live-counter-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--dark);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(244,121,32,0.2);
}

.live-dot {
    width: 12px; height: 12px;
    background: #2ecc71;
    border-radius: 50%;
    flex-shrink: 0;
    animation: livePulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(46,204,113,0.4);
}

@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(46,204,113,0.4); }
    70% { box-shadow: 0 0 0 10px rgba(46,204,113,0); }
    100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}

.live-counter-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}

.live-counter-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    line-height: 1.4;
}

.map-stat-card {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.map-stat-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}

.map-stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 4px;
}

/* ===== AWARDS ===== */
.awards-section { background: white; }

.award-card {
    text-align: center;
    padding: 1.75rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.07);
    transition: var(--transition);
    height: 100%;
    background: white;
}

.award-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(244,121,32,0.12);
}

.award-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(244,121,32,0.12), rgba(244,121,32,0.06));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.4rem;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.award-card:hover .award-icon {
    background: var(--orange);
    color: white;
}

.award-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.award-desc {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ===== FAQ ===== */
.faq-section { background: var(--light-gray); }

.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.07);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open { border-color: rgba(244,121,32,0.3); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    gap: 1rem;
    transition: var(--transition);
}

.faq-question:hover { color: var(--orange); }
.faq-item.open .faq-question { color: var(--orange); }

.faq-icon {
    color: var(--orange);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 1.25rem;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.25rem 1.1rem;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.75;
    margin: 0;
}

/* ===== STICKY PRODUCT SIDEBAR ===== */
.product-sticky-sidebar {
    position: sticky;
    top: 100px;
}

.sticky-quote-card {
    background: var(--dark);
    border-radius: 14px;
    padding: 1.5rem;
    border: 1px solid rgba(244,121,32,0.2);
    margin-top: 1.5rem;
}

.sticky-quote-title {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-quote-title i { color: var(--orange); }

.sticky-quote-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* Sticky sidebar from Detail.cshtml (existing) */
.sticky-quote-sidebar { position: sticky; top: 100px; }

.sticky-quote-inner {
    background: var(--dark);
    border-radius: 14px;
    padding: 1.5rem;
    border: 1px solid rgba(244,121,32,0.2);
    margin-bottom: 1.5rem;
}

.sticky-quote-header {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-quote-header i { color: var(--orange); }

.sticky-quote-product {
    color: var(--orange);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sticky-quote-note {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.sticky-quote-note i { color: var(--orange); }

/* ===== VIBER BUTTON ===== */
.btn-viber {
    background: #7360f2;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
}

.btn-viber:hover {
    background: #5a4bd1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(115,96,242,0.4);
}

.btn-viber-outline {
    background: rgba(115,96,242,0.1);
    color: #7360f2;
    border: 1px solid rgba(115,96,242,0.3);
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.btn-viber-outline:hover {
    background: #7360f2;
    color: white;
    border-color: #7360f2;
}

.viber-float {
    position: fixed;
    bottom: 96px;
    right: 32px;
    z-index: 998;
    width: 52px; height: 52px;
    background: #7360f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 20px rgba(115,96,242,0.5);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.viber-float.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.viber-float:hover {
    background: #5a4bd1;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(115,96,242,0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hiw-steps { flex-direction: column; align-items: center; }
    .hiw-connector { display: none; }
    .hiw-step { max-width: 100%; width: 100%; }
    .product-sticky-sidebar, .sticky-quote-sidebar { position: static; }
    .viber-float { bottom: 84px; right: 20px; }
}

@media (max-width: 767px) {
    .map-city-label { display: none; }
}
