/* ===== VitaxGo Template ===== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Top Bar ===== */
.top-bar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: #fff;
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.top-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-links a {
    color: #fff;
    opacity: 0.9;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-links a:hover {
    opacity: 1;
    color: #4ecdc4;
}

.top-links .divider {
    color: rgba(255, 255, 255, 0.3);
}

.flag-icon {
    width: 24px;
    height: 16px;
    border-radius: 2px;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-trigger {
    cursor: pointer;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 10px;
}

.language-selector:hover .lang-dropdown,
.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: #333 !important;
    font-size: 13px;
    transition: all 0.3s ease;
    opacity: 1 !important;
}

.lang-dropdown a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
}

.lang-dropdown a img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

/* ===== Main Header ===== */
.main-header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-section img {
    height: 55px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.5px;
}

.logo-text .brand-tagline {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Main Navigation ===== */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.nav-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding-left: 25px;
}

.dropdown-menu a i {
    width: 20px;
    color: #667eea;
}

.dropdown-menu a:hover i {
    color: #fff;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 10px;
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    height: 620px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 60px 40px 40px;
}

.slide-content {
    max-width: 800px;
}

.slide-title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.slide-title a {
    color: #fff;
}

.slide-title a:hover {
    color: #4ecdc4;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.slider-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.slider-pause {
    position: absolute;
    top: 20px;
    right: 100px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-pause:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* ===== Quick Access Buttons ===== */
.quick-access {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px 0;
}

.quick-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.quick-btn i {
    font-size: 32px;
    color: #4ecdc4;
}

.quick-btn span {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

/* ===== News Section ===== */
.news-section {
    padding: 50px 0;
    background: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

/* About bölümü grid - Logo sol, metin sağ */
.news-grid.about-grid {
    grid-template-columns: 1fr 2fr;
}

/* Contact bölümü grid - İletişim bilgileri sol, form sağ */
.news-grid.contact-grid {
    grid-template-columns: 1fr 1fr;
}

.news-column {
    background: #fff;
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
    margin-bottom: 20px;
}

.column-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
}

.column-more {
    color: #667eea;
    font-size: 13px;
    font-weight: 500;
}

.column-more:hover {
    color: #764ba2;
}

/* Featured News */
.featured-news {
    margin-bottom: 20px;
}

.featured-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.featured-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-news:hover .featured-image img {
    transform: scale(1.05);
}

.featured-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 8px;
}

.featured-title:hover {
    color: #667eea;
}

.featured-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #888;
    font-size: 13px;
}

/* News List */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    display: block;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.news-item:hover {
    background: #fff;
    border-left-color: #667eea;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.news-item.highlight {
    border-left-color: #e74c3c;
}

.news-item-title {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 8px;
}

.news-item-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #888;
    font-size: 12px;
}

.highlight-badge {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
}

/* ===== Phone Section ===== */
.phone-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.phone-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.phone-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.phone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.phone-icon {
    font-size: 40px;
    color: #667eea;
    margin-bottom: 15px;
}

.phone-number {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.phone-label {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.phone-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #667eea;
    color: #667eea;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: #fff;
}

/* ===== Footer ===== */
.main-footer {
    background: linear-gradient(135deg, #1a4d2e 0%, #2d6a4f 100%);
    color: #fff;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-brand-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #667eea;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-links a i {
    font-size: 10px;
    color: #667eea;
}

/* Footer Partners Section */
.footer-partners {
    padding: 30px 0;
    text-align: center;
}

.partners-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin-bottom: 25px;
}

.partners-title {
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partners-logos a {
    display: inline-block;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
    /* filter kaldırıldı - logolar orijinal renkleriyle görünsün */
}

.partners-logos a:hover {
    opacity: 1;
    transform: scale(1.08);
}

.partners-logos img {
    height: 45px;
    max-width: 150px;
    object-fit: contain;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-address {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-address i {
    color: #667eea;
    margin-right: 8px;
}

.footer-phone {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-phone i {
    color: #667eea;
    margin-right: 8px;
}

.footer-copyright {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Scroll to Top Button ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

/* ===== WhatsApp Chat Widget ===== */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.chat-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.chat-widget:hover .chat-tooltip {
    opacity: 1;
    visibility: visible;
}

.chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ===== Cookie Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1001;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #1a1a2e;
}

.cookie-text p {
    font-size: 13px;
    color: #666;
}

.cookie-text a {
    color: #667eea;
}

.cookie-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* ===== City Section ===== */
.city-section {
    padding: 50px 0;
    background: #fff;
}

.city-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 30px;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .quick-buttons {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-grid {
        grid-template-columns: 1fr 1fr;
    }

    .phone-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-slider {
        height: 400px;
    }

    .slide-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .quick-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .phone-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        text-align: center;
    }

    .footer-title {
        display: inline-block;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        align-items: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-slider {
        height: 300px;
    }

    .slide-overlay {
        padding: 30px 20px 20px;
    }

    .slide-title {
        font-size: 18px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-text .brand-name {
        font-size: 18px;
    }

    .quick-buttons {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .quick-btn {
        padding: 15px 10px;
    }

    .quick-btn i {
        font-size: 24px;
    }

    .quick-btn span {
        font-size: 11px;
    }
}

/* ===== Mobile Navigation ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

.mobile-nav-menu {
    padding: 20px;
}

.mobile-nav-item {
    border-bottom: 1px solid #eee;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: #333;
    font-weight: 500;
}

.mobile-nav-link i {
    transition: transform 0.3s ease;
}

.mobile-nav-item.active .mobile-nav-link i {
    transform: rotate(180deg);
}

.mobile-dropdown {
    display: none;
    padding-left: 15px;
    padding-bottom: 10px;
}

.mobile-nav-item.active .mobile-dropdown {
    display: block;
}

.mobile-dropdown a {
    display: block;
    padding: 10px 0;
    color: #666;
    font-size: 14px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== Scroll to Top ===== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    border: none;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* ===== Loading Spinner ===== */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-spinner p {
    margin-top: 20px;
    color: #666;
    font-size: 14px;
}

/* ===== Statistics Section ===== */
.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Partners Section ===== */
.partners-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.partners-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 40px;
}

.partners-slider {
    display: flex;
    animation: scroll 30s linear infinite;
}

.partners-slider:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    min-width: 200px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.testimonials-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: #667eea;
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #667eea;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 13px;
    color: #888;
}

.testimonial-rating {
    margin-top: 15px;
    color: #ffc107;
    font-size: 14px;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.faq-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: #1a1a2e;
    font-size: 16px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 25px;
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

/* ===== Newsletter Section ===== */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-icon {
    font-size: 48px;
    color: #4ecdc4;
    margin-bottom: 20px;
}

.newsletter-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.newsletter-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #4ecdc4;
}

.newsletter-btn {
    padding: 18px 35px;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a8a1 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.4);
}

/* ===== Timeline Section ===== */
.timeline-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.timeline-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.timeline-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-content {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 400px;
    position: relative;
    margin-right: 30px;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 30px;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.4);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ===== App Download Section ===== */
.app-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.app-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.app-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.app-mockup img {
    max-width: 300px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.app-content {
    flex: 1;
}

.app-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.3;
}

.app-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.app-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.app-feature i {
    color: #4ecdc4;
    font-size: 18px;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    background: #1a1a2e;
    color: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.app-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 26, 46, 0.3);
}

.app-btn i {
    font-size: 28px;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-btn-text span:first-child {
    font-size: 11px;
    opacity: 0.7;
}

.app-btn-text span:last-child {
    font-size: 16px;
    font-weight: 600;
}

/* ===== Live Chat Widget ===== */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 998;
}

.chat-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: none;
    position: relative;
}

.chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

.chat-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.chat-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    font-size: 13px;
    color: #333;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.chat-widget:hover .chat-tooltip {
    opacity: 1;
    visibility: visible;
}

.chat-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: #fff;
}

/* ===== Parallax Effects ===== */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ===== Hover Animations ===== */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.4);
}

/* ===== Reveal Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ===== New Responsive Styles ===== */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-container {
        flex-direction: column;
        text-align: center;
    }

    .app-content {
        max-width: 600px;
    }

    .app-buttons {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .timeline-dot {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .app-features {
        grid-template-columns: 1fr;
    }

    .app-buttons {
        flex-direction: column;
    }

    .chat-widget {
        bottom: 80px;
        right: 20px;
    }

    .chat-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 60px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
        width: 16px;
        height: 16px;
    }
}

/* ===== VitaxTV Video Popup ===== */
.video-popup-overlay,
.vitaxtv-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-popup-overlay.active,
.vitaxtv-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* VitaxTV Popup Container */
.vitaxtv-popup-container {
    position: relative;
    width: 90%;
    max-width: 550px;
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 50%, #16213e 100%);
    border-radius: 24px;
    padding: 35px;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.vitaxtv-popup-overlay.active .vitaxtv-popup-container {
    transform: scale(1) translateY(0);
}

.vitaxtv-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.vitaxtv-popup-close:hover {
    background: #ff0000;
    border-color: #ff0000;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.vitaxtv-popup-header {
    text-align: center;
    margin-bottom: 28px;
}

.vitaxtv-logo-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
    padding: 12px;
}

.vitaxtv-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    }

    50% {
        box-shadow: 0 10px 40px rgba(102, 126, 234, 0.7), 0 0 60px rgba(118, 75, 162, 0.4);
    }
}

.vitaxtv-popup-header h2 {
    color: #fff;
    font-size: 32px;
    margin: 0 0 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.vitaxtv-popup-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.vitaxtv-video-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.vitaxtv-video-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.vitaxtv-thumbnail {
    position: relative;
    overflow: hidden;
}

.vitaxtv-thumbnail img {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vitaxtv-video-card:hover .vitaxtv-thumbnail img {
    transform: scale(1.08);
}

.vitaxtv-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    pointer-events: none;
}

.vitaxtv-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
}

.vitaxtv-video-card:hover .vitaxtv-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.6);
}

.vitaxtv-play-btn i {
    color: #fff;
    font-size: 26px;
    margin-left: 5px;
}

.vitaxtv-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 5px;
}

.vitaxtv-badge i {
    color: #ff0000;
}

.vitaxtv-live-indicator {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.vitaxtv-info {
    padding: 20px;
}

/* YouTube Style Channel */
.vitaxtv-channel {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.vitaxtv-channel .channel-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: contain;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4px;
}

.vitaxtv-channel span {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.vitaxtv-channel .verified-badge {
    color: #1da1f2;
    font-size: 14px;
}

/* Video Duration Badge */
.vitaxtv-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.vitaxtv-duration i {
    font-size: 10px;
}

.vitaxtv-info h4 {
    font-size: 17px;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-weight: 700;
}

.vitaxtv-info p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.vitaxtv-video-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vitaxtv-meta {
    display: flex;
    gap: 15px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.vitaxtv-meta span {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.vitaxtv-meta span:hover {
    color: #667eea;
}

.vitaxtv-meta span i {
    color: #667eea;
    font-size: 11px;
}

.vitaxtv-footer {
    margin-top: 20px;
    text-align: center;
}

.vitaxtv-footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin: 0;
}

.vitaxtv-footer p i {
    margin-right: 5px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== News/Haberler Popup ===== */
.news-popup-overlay,
.news-detail-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.news-popup-overlay.active,
.news-detail-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* News Popup Container */
.news-popup-container {
    position: relative;
    width: 95%;
    max-width: 700px;
    max-height: 85vh;
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 50%, #16213e 100%);
    border-radius: 24px;
    padding: 0;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news-popup-overlay.active .news-popup-container {
    transform: scale(1) translateY(0);
}

.news-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.news-popup-close:hover {
    background: #ff4757;
    border-color: #ff4757;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.5);
}

.news-popup-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 85vh;
}

.news-popup-header {
    text-align: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.news-logo-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    animation: news-pulse 2s ease-in-out infinite;
}

.news-logo-wrapper i {
    color: #fff;
    font-size: 28px;
}

@keyframes news-pulse {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    }

    50% {
        box-shadow: 0 10px 40px rgba(255, 107, 107, 0.6), 0 0 60px rgba(238, 90, 36, 0.3);
    }
}

.news-popup-header h2 {
    color: #fff;
    font-size: 28px;
    margin: 0 0 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

.news-popup-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.news-popup-list {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 0;
}

.news-popup-list::-webkit-scrollbar {
    width: 8px;
}

.news-popup-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.news-popup-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
}

.news-popup-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

.news-popup-item {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.news-popup-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.news-item-image {
    width: 120px;
    min-width: 120px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.news-item-image img,
.news-item-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.5);
}

.news-item-badge i {
    color: #fff;
    font-size: 12px;
}

.news-item-badge.video-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.5);
}

.news-item-badge.app-badge {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    box-shadow: 0 3px 10px rgba(74, 222, 128, 0.5);
}

.news-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-item-date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.news-item-content h4 {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    margin: 0 0 5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item-read {
    font-size: 11px;
    color: #667eea;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.news-popup-item:hover .news-item-read {
    color: #ff6b6b;
}

.news-popup-item:hover .news-item-read i {
    transform: translateX(3px);
}

.news-item-read i {
    transition: transform 0.3s ease;
}

.news-popup-footer {
    padding: 15px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    flex-shrink: 0;
}

.news-popup-footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin: 0;
}

.news-popup-footer p i {
    margin-right: 5px;
    color: #ff6b6b;
}

/* ===== News Detail Popup ===== */
.news-detail-container {
    position: relative;
    width: 95%;
    max-width: 800px;
    max-height: 90vh;
    background: #fff;
    border-radius: 24px;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news-detail-overlay.active .news-detail-container {
    transform: scale(1) translateY(0);
}

.news-detail-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.news-detail-close:hover {
    background: #ff4757;
    transform: rotate(90deg) scale(1.1);
}

.news-detail-back {
    position: absolute;
    top: 18px;
    left: 18px;
    height: 42px;
    padding: 0 18px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 21px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.news-detail-back:hover {
    background: rgba(102, 126, 234, 0.9);
    transform: translateX(-3px);
}

.news-detail-content {
    overflow-y: auto;
    flex: 1;
}

.news-detail-header {
    position: relative;
}

.news-detail-media {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.news-detail-category {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.news-detail-body {
    padding: 30px;
}

.news-detail-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

.news-detail-body h2 {
    font-size: 26px;
    color: #1a1a2e;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.3;
}

.news-detail-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.news-detail-text p {
    margin-bottom: 15px;
}

.news-detail-text h5 {
    font-size: 18px;
    color: #1a1a2e;
    font-weight: 600;
    margin: 25px 0 12px;
}

.news-detail-text ul {
    margin: 15px 0;
    padding-left: 20px;
}

.news-detail-text li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.news-detail-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
}

/* ===== Team/Yönetim Popup ===== */
.team-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.team-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.team-popup-container {
    position: relative;
    width: 95%;
    max-width: 800px;
    max-height: 90vh;
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 50%, #16213e 100%);
    border-radius: 24px;
    padding: 0;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.team-popup-overlay.active .team-popup-container {
    transform: scale(1) translateY(0);
}

.team-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.team-popup-close:hover {
    background: #ff4757;
    border-color: #ff4757;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.5);
}

.team-popup-content {
    overflow-y: auto;
    padding: 30px;
}

.team-popup-content::-webkit-scrollbar {
    width: 6px;
}

.team-popup-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.team-popup-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.team-popup-header {
    text-align: center;
    margin-bottom: 30px;
}

.team-logo-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    animation: team-pulse 2s ease-in-out infinite;
}

.team-logo-wrapper i {
    color: #fff;
    font-size: 28px;
}

@keyframes team-pulse {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    }

    50% {
        box-shadow: 0 10px 40px rgba(102, 126, 234, 0.7), 0 0 60px rgba(118, 75, 162, 0.4);
    }
}

.team-popup-header h2 {
    color: #fff;
    font-size: 28px;
    margin: 0 0 8px;
    font-weight: 700;
}

.team-popup-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

/* Featured Member - CEO */
.team-featured-member {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.team-featured-member::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.team-featured-image {
    width: 150px;
    min-width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 4px solid rgba(102, 126, 234, 0.5);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.team-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-featured-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ffb800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
    animation: crown-glow 2s ease-in-out infinite;
}

.team-featured-badge i {
    color: #1a1a2e;
    font-size: 18px;
}

@keyframes crown-glow {

    0%,
    100% {
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
    }

    50% {
        box-shadow: 0 5px 25px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 184, 0, 0.4);
    }
}

.team-featured-info {
    flex: 1;
}

.team-featured-role {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-featured-info h3 {
    color: #fff;
    font-size: 24px;
    margin: 0 0 12px;
    font-weight: 700;
}

.team-featured-info>p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 15px;
}

.team-featured-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.team-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-stat i {
    color: #667eea;
    font-size: 14px;
}

.team-stat span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
}

.team-featured-social {
    display: flex;
    gap: 10px;
}

.team-featured-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.team-featured-social a:hover {
    background: #667eea;
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Team Members Grid */
.team-members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.team-member-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
}

.team-member-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.team-member-image {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-placeholder i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 32px;
}

.team-member-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.5);
}

.team-member-badge i {
    color: #fff;
    font-size: 11px;
}

.team-member-info {
    flex: 1;
}

.team-member-info h4 {
    color: #fff;
    font-size: 16px;
    margin: 0 0 4px;
    font-weight: 600;
}

.team-member-role {
    display: block;
    color: #667eea;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
}

.team-member-info>p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.5;
    margin: 0 0 10px;
}

.team-member-skills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.team-member-skills span {
    background: rgba(102, 126, 234, 0.15);
    color: #a5b4fc;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.team-member-skills span i {
    font-size: 9px;
    opacity: 0.8;
}

.team-member-role i {
    margin-right: 5px;
    opacity: 0.8;
}

.team-featured-role i {
    margin-right: 5px;
}

.team-popup-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.team-popup-footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

/* Video Player Popup */

.video-popup-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.video-popup-overlay.active .video-popup-container {
    transform: scale(1);
}

.video-popup-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.video-popup-close:hover {
    background: #ff0000;
    border-color: #ff0000;
    transform: rotate(90deg);
}

.video-popup-content {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.video-popup-content iframe {
    width: 100%;
    height: 100%;
}

/* Responsive Video Popup */
@media (max-width: 768px) {

    /* About & Contact Grid - Stack on Mobile */
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .about-grid .news-column:first-child {
        order: -1;
    }

    .about-grid .news-column img {
        max-width: 200px !important;
    }

    .contact-grid .phone-card {
        margin-bottom: 0 !important;
    }

    .news-grid {
        grid-template-columns: 1fr !important;
    }

    .video-popup-container {
        width: 95%;
    }

    .video-popup-close {
        top: -45px;
        right: 5px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .vitaxtv-popup-container {
        width: 95%;
        padding: 25px 20px;
        margin: 10px;
        border-radius: 20px;
    }

    .vitaxtv-popup-header h2 {
        font-size: 26px;
    }

    .vitaxtv-logo-wrapper {
        width: 60px;
        height: 60px;
    }

    .vitaxtv-logo-wrapper i {
        font-size: 26px;
    }

    .vitaxtv-play-btn {
        width: 65px;
        height: 65px;
    }

    .vitaxtv-play-btn i {
        font-size: 22px;
    }

    .vitaxtv-info {
        padding: 16px;
    }

    .vitaxtv-info h4 {
        font-size: 15px;
    }

    .vitaxtv-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    /* News Popup Responsive */
    .news-popup-container {
        width: 98%;
        max-height: 95vh;
        border-radius: 20px;
    }

    .news-popup-header {
        padding: 25px 20px 15px;
    }

    .news-popup-header h2 {
        font-size: 24px;
    }

    .news-logo-wrapper {
        width: 60px;
        height: 60px;
    }

    .news-logo-wrapper i {
        font-size: 24px;
    }

    .news-popup-list {
        padding: 15px;
        gap: 12px;
    }

    .news-popup-item {
        padding: 10px;
        flex-direction: column;
    }

    .news-item-image {
        width: 100%;
        height: 140px;
    }

    .news-item-content h4 {
        font-size: 15px;
    }

    .news-popup-footer {
        padding: 12px 20px;
    }

    /* News Detail Responsive */
    .news-detail-container {
        width: 98%;
        max-height: 95vh;
        border-radius: 20px;
    }

    .news-detail-media {
        height: 200px;
    }

    .news-detail-body {
        padding: 20px;
    }

    .news-detail-body h2 {
        font-size: 20px;
    }

    .news-detail-text {
        font-size: 14px;
    }

    .news-detail-back {
        top: 12px;
        left: 12px;
        height: 36px;
        padding: 0 14px;
        font-size: 12px;
    }

    .news-detail-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    /* Team Popup Responsive */
    .team-popup-container {
        width: 98%;
        max-height: 95vh;
    }

    .team-popup-content {
        padding: 20px;
    }

    .team-popup-header h2 {
        font-size: 24px;
    }

    .team-logo-wrapper {
        width: 60px;
        height: 60px;
    }

    .team-logo-wrapper i {
        font-size: 24px;
    }

    .team-featured-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .team-featured-image {
        width: 120px;
        min-width: 120px;
        height: 120px;
    }

    .team-featured-info h3 {
        font-size: 20px;
    }

    .team-featured-stats {
        justify-content: center;
    }

    .team-featured-social {
        justify-content: center;
    }

    .team-members-grid {
        grid-template-columns: 1fr;
    }

    .team-member-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-member-skills {
        justify-content: center;
    }
}

/* Heading colors handled by sections */

/* ===== Video News Cover Styles ===== */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-play-overlay i {
    font-size: 50px;
    color: #fff;
    opacity: 0.9;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.news-popup-item:hover .video-play-overlay {
    background: rgba(102, 126, 234, 0.5);
}

.news-popup-item:hover .video-play-overlay i {
    transform: scale(1.2);
    opacity: 1;
}

/* Video Detail Cover Styles */
.video-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.video-cover-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-cover-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    transition: all 0.3s ease;
    z-index: 1;
}

.video-cover-wrapper:hover::before {
    background: rgba(0, 0, 0, 0.4);
}

.video-cover-img {
    transition: transform 0.5s ease;
}

.video-cover-wrapper:hover .video-cover-img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 2;
    transition: all 0.3s ease;
}

.video-play-btn i {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 5px 30px rgba(102, 126, 234, 0.5);
    transition: all 0.3s ease;
}

.video-cover-wrapper:hover .video-play-btn i {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.7);
}

.video-play-btn span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 20px;
    border-radius: 25px;
}

#newsDetailVideo {
    width: 100%;
    border-radius: 15px;
}

/* ===== ENHANCED MOBILE STYLES ===== */
@media (max-width: 768px) {

    /* Remove test heading color */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        color: inherit !important;
    }

    /* Smooth overall transitions */
    * {
        -webkit-tap-highlight-color: transparent;
    }

    body {
        font-size: 15px;
    }

    .container {
        padding: 0 15px;
    }

    /* ===== TOP BAR MOBILE ===== */
    .top-bar {
        padding: 10px 0;
        background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    }

    .top-bar-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icons a {
        font-size: 16px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

    .top-links {
        gap: 10px;
    }

    /* ===== HEADER MOBILE ===== */
    .main-header {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .header-content {
        padding: 12px 0;
    }

    .logo-section img {
        height: 45px;
    }

    .logo-text .brand-name {
        font-size: 20px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .logo-text .brand-tagline {
        font-size: 9px;
    }

    .mobile-menu-btn {
        width: 44px;
        height: 44px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 12px;
        color: #fff;
        font-size: 20px;
    }

    /* ===== HERO SLIDER MOBILE ===== */
    .hero-slider {
        height: 280px;
        border-radius: 0 0 25px 25px;
        overflow: hidden;
    }

    .slide-overlay {
        padding: 20px 15px 15px;
        background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    }

    .slide-title {
        font-size: 16px;
        line-height: 1.4;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .slider-controls {
        padding: 0 10px;
    }

    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(15px);
    }

    .slider-counter {
        top: 12px;
        right: 12px;
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 15px;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
    }

    .slider-pause {
        display: none;
    }

    /* ===== QUICK ACCESS MOBILE ===== */
    .quick-access {
        padding: 25px 0;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        margin-top: -25px;
        border-radius: 25px 25px 0 0;
        position: relative;
        z-index: 10;
    }

    .quick-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
    }

    .quick-btn {
        padding: 20px 12px;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
        border: 1px solid rgba(255, 255, 255, 0.12);
        flex-direction: column;
        gap: 10px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .quick-btn:active {
        transform: scale(0.95);
        background: rgba(255, 255, 255, 0.15);
    }

    .quick-btn img {
        width: 42px !important;
        height: 42px !important;
        border-radius: 10px;
    }

    .quick-btn span {
        font-size: 12px;
        font-weight: 600;
        text-align: center;
        line-height: 1.3;
    }

    /* ===== ABOUT SECTION MOBILE ===== */
    .news-section {
        padding: 35px 0;
    }

    .news-section#about {
        background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    }

    .about-grid {
        gap: 25px !important;
    }

    .about-grid .news-column:first-child img {
        max-width: 160px !important;
        filter: drop-shadow(0 10px 30px rgba(102, 126, 234, 0.3));
    }

    .about-grid .news-column {
        padding: 0 !important;
    }

    .about-grid h2 {
        font-size: 24px !important;
        text-align: center;
        margin-bottom: 20px !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .about-grid p {
        font-size: 14px !important;
        line-height: 1.8 !important;
        text-align: center;
    }

    /* Partners in About */
    .about-partners {
        padding: 25px 15px !important;
        margin-top: 30px !important;
        border-radius: 20px !important;
        background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%) !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
    }

    .about-partners h3 {
        font-size: 18px !important;
        margin-bottom: 20px !important;
    }

    .about-partners .partners-logos {
        gap: 20px !important;
    }

    .about-partners .partners-logos img {
        height: 35px !important;
    }

    /* ===== FAQ SECTION MOBILE ===== */
    .faq-section {
        padding: 50px 0;
    }

    .faq-title {
        font-size: 26px !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .faq-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .faq-item {
        border-radius: 16px;
        margin-bottom: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 14px;
        border-radius: 16px;
    }

    .faq-answer-content {
        padding: 20px;
        font-size: 14px;
    }

    /* ===== CONTACT SECTION MOBILE ===== */
    .news-section#contact {
        padding: 40px 0;
        background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .contact-grid {
        gap: 20px !important;
    }

    .contact-grid .phone-card {
        padding: 25px 20px !important;
        border-radius: 20px;
        background: #fff;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }

    .contact-grid h4 {
        font-size: 22px !important;
        text-align: center;
    }

    .contact-grid input,
    .contact-grid textarea {
        border-radius: 12px !important;
        padding: 14px 16px !important;
        font-size: 15px !important;
        border: 2px solid #e9ecef !important;
        transition: all 0.3s ease;
    }

    .contact-grid input:focus,
    .contact-grid textarea:focus {
        border-color: #667eea !important;
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
        outline: none;
    }

    .contact-grid button[type="submit"] {
        padding: 16px !important;
        border-radius: 14px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
    }

    /* ===== FOOTER MOBILE ===== */
    .main-footer {
        padding-top: 40px;
        border-radius: 30px 30px 0 0;
        margin-top: -30px;
        position: relative;
        z-index: 5;
    }

    .footer-grid {
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer-col {
        padding: 0 10px;
    }

    .footer-logo img {
        height: 50px;
        margin-bottom: 15px;
    }

    .footer-brand-name {
        font-size: 20px;
    }

    .footer-title {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .footer-links {
        gap: 14px;
    }

    .footer-links a {
        font-size: 13px;
        padding: 8px 0;
    }

    .footer-social {
        gap: 10px;
        margin-top: 15px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
    }

    /* Footer Partners */
    .footer-partners {
        padding: 25px 0;
    }

    .partners-title {
        font-size: 14px !important;
        margin-bottom: 15px;
    }

    .partners-logos {
        gap: 25px !important;
    }

    .partners-logos img {
        height: 35px !important;
        max-width: 100px !important;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-copyright {
        font-size: 11px;
    }

    /* ===== MOBILE NAVIGATION ===== */
    .mobile-nav {
        width: 85%;
        max-width: 320px;
        border-radius: 0 25px 25px 0;
        box-shadow: 10px 0 50px rgba(0, 0, 0, 0.2);
    }

    .mobile-nav-header {
        padding: 25px 20px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .mobile-nav-header img {
        filter: brightness(0) invert(1);
    }

    .mobile-nav-close {
        color: #fff;
        font-size: 26px;
    }

    .mobile-nav-menu {
        padding: 25px 20px;
    }

    .mobile-nav-link {
        padding: 16px 0;
        font-size: 16px;
        font-weight: 600;
    }

    .mobile-overlay {
        backdrop-filter: blur(5px);
    }

    /* ===== FLOATING BUTTONS MOBILE ===== */
    .scroll-top {
        bottom: 90px;
        right: 20px;
        width: 42px;
        height: 42px;
    }

    .chat-widget {
        bottom: 20px;
        right: 20px;
    }

    .chat-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .chat-tooltip {
        display: none;
    }

    /* ===== VITAXTV POPUP MOBILE ===== */
    .vitaxtv-popup-overlay {
        padding: 10px;
    }

    .vitaxtv-popup-container {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 20px !important;
        padding: 15px !important;
    }

    .vitaxtv-popup-close {
        top: 10px !important;
        right: 10px !important;
        width: 36px !important;
        height: 36px !important;
    }

    #vitaxtvPlayer {
        border-radius: 12px !important;
    }

    /* ===== ANIMATIONS ===== */
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    section {
        animation: slideUp 0.6s ease forwards;
    }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width: 375px) {
    .logo-text .brand-name {
        font-size: 18px;
    }

    .logo-section img {
        height: 38px;
    }

    .quick-btn {
        padding: 16px 10px;
    }

    .quick-btn img {
        width: 36px !important;
        height: 36px !important;
    }

    .quick-btn span {
        font-size: 11px;
    }

    .hero-slider {
        height: 240px;
    }

    .slide-title {
        font-size: 14px;
    }

    .faq-question {
        font-size: 13px;
        padding: 15px;
    }

    .footer-grid {
        gap: 25px;
    }
}