/* =======================================================
   VAN65TV - Modern TV Channel Website Styles
   ======================================================= */

:root {
    --brand-red: #D90429;
    --brand-red-dark: #A90420;
    --bg-main: #121212;
    --bg-surface: #1E1E1E;
    --bg-navbar: #2A2A2A;
    --border-color: #2E2E2E;
    --text-primary: #F5F5F5;
    --text-secondary: #AAAAAA;
    --text-muted: #888888;
    --overlay-dark: rgba(0, 0, 0, 0.5);
    --overlay-darker: rgba(0, 0, 0, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =======================================================
   NAVIGATION BAR - MODERN & LIVELY DESIGN
   ======================================================= */

.navbar {
    background: rgba(18, 18, 18, 0.98) !important;
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border-bottom: 1px solid rgba(217, 4, 41, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}

.navbar.navbar-hidden {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.navbar.navbar-visible {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 0 1.5rem;
}

.navbar.scrolled {
    background: rgba(18, 18, 18, 0.98) !important;
    backdrop-filter: blur(30px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

/* Logo Image */
.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(217, 4, 41, 0.5));
}

/* Desktop Layout */
@media (min-width: 993px) {
    .navbar .container-fluid {
        justify-content: flex-start;
        gap: 3rem;
    }
    
    .navbar-brand {
        margin-right: 0;
        flex-shrink: 0;
    }
    
    .navbar-collapse {
        flex: 1;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }
    
    .navbar-nav.me-auto {
        flex: 1;
        justify-content: center;
        gap: 0.5rem;
    }
    
    /* Hide mobile elements on desktop */
    .mobile-header-icons,
    .mobile-hamburger {
        display: none !important;
    }
    
    /* Hide mobile menu completely on desktop */
    .mobile-menu,
    .mobile-menu-overlay,
    .mobile-menu-content,
    .mobile-menu-logo,
    .mobile-menu-live,
    .mobile-menu-nav,
    .mobile-menu-footer {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.navbar-nav .nav-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.navbar-nav .nav-link {
    color: var(--text-primary) !important;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1rem !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    border-radius: 6px;
    margin: 0 !important;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* Desktop Navigation Links */
@media (min-width: 993px) {
    .navbar-nav.me-auto .nav-link {
        padding: 0.5rem 1rem !important;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .desktop-header-icons {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-red) 0%, #FF1744 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover {
    color: var(--brand-red) !important;
    background-color: rgba(217, 4, 41, 0.1);
    transform: translateY(-2px);
}

.navbar-nav .nav-link:hover::before {
    width: 80%;
}

.navbar-nav .nav-link i {
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

/* Dropdown Menu */
.dropdown-menu {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.dropdown-item {
    color: var(--text-primary);
    padding: 0.5rem 1.5rem;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--bg-navbar);
    color: var(--brand-red);
}

/* Live Badge - Modern Design */
.live-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(217, 4, 41, 0.15) 0%, rgba(217, 4, 41, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(217, 4, 41, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.live-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.live-badge:hover {
    background: linear-gradient(135deg, rgba(217, 4, 41, 0.25) 0%, rgba(217, 4, 41, 0.15) 100%);
    border-color: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(217, 4, 41, 0.3);
}

.live-badge:hover::before {
    left: 100%;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--brand-red) 0%, #FF1744 100%);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-live 2s infinite;
    box-shadow: 0 0 10px rgba(217, 4, 41, 0.8), 0 0 20px rgba(217, 4, 41, 0.4);
    position: relative;
}

.live-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--brand-red);
    animation: ripple 2s infinite;
}

@keyframes pulse-live {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.nav-item.divider {
    width: 1px;
    height: 28px;
    background: linear-gradient(180deg, transparent 0%, var(--border-color) 50%, transparent 100%);
    margin: 0 0.5rem;
    opacity: 0.5;
    flex-shrink: 0;
}

.navbar-nav .nav-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover i {
    transform: scale(1.1);
}

/* Header Icon Links - Desktop */
.desktop-header-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-icon-link {
    position: relative;
    padding: 0.6rem !important;
    min-width: 40px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: var(--text-primary) !important;
}

.header-icon-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--brand-red) !important;
    transform: translateY(-2px);
}

.header-icon-link i {
    font-size: 1.2rem;
}

.notification-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: var(--brand-red);
    border-radius: 50%;
    border: 2px solid var(--bg-navbar);
    animation: pulse-live 2s infinite;
}

/* Live Badge - Prevent overlap */
.live-badge {
    flex-shrink: 0;
    white-space: nowrap;
}

/* =======================================================
   HERO SLIDER SECTION
   ======================================================= */

.hero-slider-section {
    position: relative;
    width: 100%;
    margin-top: 60px; /* Navbar yüksekliği kadar */
    min-height: calc(100vh - 60px);
    overflow: hidden;
}

.carousel {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    position: relative;
    height: calc(100vh - 60px);
    min-height: 600px;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    z-index: 1;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

.slider-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 4rem 0;
    z-index: 3;
}

.slider-title {
    font-size: 4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.slider-description {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    max-width: 600px;
}

.slider-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-play,
.btn-more {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-play {
    background-color: #FFFFFF;
    color: #000000;
}

.btn-play:hover {
    background-color: #F0F0F0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    color: #000000;
}

.btn-play i {
    font-size: 1.2rem;
}

.btn-more {
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    backdrop-filter: blur(10px);
}

.btn-more:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #FFFFFF;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 2rem;
    margin-bottom: 0;
    z-index: 4;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #FFFFFF;
    width: 16px;
    height: 16px;
    border-color: #FFFFFF;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 4;
}

.carousel-control-prev {
    left: 2rem;
}

.carousel-control-next {
    right: 2rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.3);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* =======================================================
   RESPONSIVE DESIGN
   ======================================================= */

@media (max-width: 992px) {
    .hero-slider-section {
        min-height: 60vh;
    }
    
    .carousel-item {
        height: 60vh;
        min-height: 500px;
    }
    
    .slider-image {
        background-size: cover;
        background-position: center center;
    }
    
    .slider-title {
        font-size: 2.5rem;
    }
    
    .slider-description {
        font-size: 1.2rem;
    }
    
    /* Mobile Header Layout */
    .navbar {
        padding: 0.75rem 1rem;
    }
    
    .navbar .container-fluid {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }
    
    /* Show mobile header icons and hamburger on mobile */
    .mobile-header-icons,
    .mobile-hamburger {
        display: flex;
    }
    
    /* Mobile Hamburger Button (Left) */
    .mobile-hamburger {
        order: 1;
        flex-shrink: 0;
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0.4rem 0.6rem;
        border-radius: 4px;
    }
    
    /* Logo (Center on Mobile) */
    .navbar-brand {
        order: 2;
        flex: 1;
        text-align: center;
        margin: 0;
        justify-content: center;
    }
    
    .navbar-brand .logo-img {
        height: 35px;
    }
    
    /* Mobile Header Icons (Right) */
    .mobile-header-icons {
        order: 3;
        align-items: center;
        gap: 0.5rem;
        flex-shrink: 0;
    }
    
    .mobile-live-badge {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.4rem 0.8rem !important;
        font-size: 0.75rem;
        white-space: nowrap;
        border-radius: 20px;
        background: rgba(217, 4, 41, 0.15);
        border: 1px solid rgba(217, 4, 41, 0.3);
    }
    
    .mobile-live-badge .live-dot {
        width: 8px;
        height: 8px;
        flex-shrink: 0;
    }
    
    .mobile-icon-link {
        position: relative;
        width: 36px;
        height: 36px;
        min-width: 36px;
        padding: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: var(--text-primary) !important;
        transition: all 0.3s ease;
    }
    
    .mobile-icon-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--brand-red) !important;
    }
    
    .mobile-icon-link i {
        font-size: 1.1rem;
    }
    
    .notification-dot {
        position: absolute;
        top: 6px;
        right: 6px;
        width: 8px;
        height: 8px;
        background: var(--brand-red);
        border-radius: 50%;
        border: 2px solid var(--bg-navbar);
    }
    
    /* Hide desktop navigation items on mobile */
    .navbar-nav.me-auto,
    .desktop-header-icons {
        display: none;
    }
    
    /* Mobile Menu - Simple Sidebar (Only on Mobile) */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        z-index: 1050;
        transition: left 0.3s ease;
        display: block;
    }
    
    .mobile-menu.active {
        left: 0;
    }
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 1049;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
        display: block;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .mobile-menu-content {
        position: relative;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-navbar);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        z-index: 1051;
    }
    
    /* Mobile Menu Logo */
    .mobile-menu-logo {
        padding: 0.75rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
        display: flex;
        align-items: center;
        text-decoration: none;
    }
    
    .mobile-menu-logo .logo-img {
        height: 40px;
    }
    
    /* Mobile Menu CANLI YAYIN */
    .mobile-menu-live {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
        color: var(--text-primary) !important;
        font-weight: 600;
        text-transform: uppercase;
        text-decoration: none;
    }
    
    .mobile-menu-live .live-dot {
        width: 10px;
        height: 10px;
    }
    
    /* Mobile Menu Navigation */
    .mobile-menu-nav {
        list-style: none;
        margin: 0;
        padding: 0;
        flex: 1;
    }
    
    .mobile-menu-item {
        width: 100%;
    }
    
    .mobile-menu-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.75rem 1.5rem;
        color: var(--text-primary) !important;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }
    
    .mobile-menu-link:hover {
        background: rgba(217, 4, 41, 0.1);
        color: var(--brand-red) !important;
    }
    
    .mobile-menu-link i {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    
    /* Mobile Dropdown */
    .mobile-dropdown-menu {
        list-style: none;
        margin: 0;
        padding: 0;
        background: rgba(0, 0, 0, 0.3);
        display: none;
    }
    
    .mobile-menu-item.active .mobile-dropdown-menu {
        display: block;
    }
    
    .mobile-menu-item.active .mobile-dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .mobile-dropdown-item {
        display: block;
        padding: 0.6rem 1.5rem 0.6rem 2.5rem;
        color: var(--text-primary);
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }
    
    .mobile-dropdown-item:hover {
        background: rgba(217, 4, 41, 0.2);
        color: var(--brand-red);
    }
    
    /* Mobile Menu Footer */
    .mobile-menu-footer {
        margin-top: auto;
        padding: 0.75rem 1.5rem;
        border-top: 1px solid var(--border-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(0, 0, 0, 0.2);
    }
    
    .mobile-menu-footer .footer-text {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--brand-red);
    }
    
    .mobile-menu-close {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--text-primary);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-close:hover {
        border-color: var(--brand-red);
        background: rgba(217, 4, 41, 0.1);
        color: var(--brand-red);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .program-card.schedule-card-style {
        width: 300px; /* Tablet için schedule card genişliği */
    }
    
    .program-card {
        width: 340px; /* Tablet için artırıldı */
    }
    
    .program-card-image {
        height: 450px; /* Tablet için artırıldı */
    }
    
    .schedule-card {
        width: 300px;
    }
    
    .episode-card {
        width: 240px;
    }
    
    .episode-card-image {
        height: 360px;
    }
    
    .recent-program-card {
        width: 240px;
    }
    
    .recent-program-card-image {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .hero-slider-section {
        min-height: 50vh;
        margin-top: 0 !important; /* Mobilde header'a yapışık */
    }
    
    .carousel-item {
        height: 50vh;
        min-height: 400px;
    }
    
    .slider-image {
        background-size: contain;
        background-position: center center;
        background-attachment: scroll;
        background-color: #000;
    }
    
    .slider-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .slider-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .slider-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-play,
    .btn-more {
        width: 100%;
        justify-content: center;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .btn-play i,
    .btn-more i {
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .carousel-control-prev {
        left: 0.5rem;
    }
    
    .carousel-control-next {
        right: 0.5rem;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }
    
    .carousel-indicators {
        bottom: 0.5rem;
    }
    
    .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 0.2rem;
    }
    
    .carousel-indicators button.active {
        width: 10px;
        height: 10px;
    }
    
    /* Section Titles - Mobile */
    .section-title {
        font-size: 1.3rem;
    }
    
    /* Program Cards - Mobile */
    .program-card.schedule-card-style {
        width: 75vw; /* Mobile için ekran genişliğine göre dinamik - daha küçük */
        max-width: 280px;
        min-width: 200px;
    }
    
    .program-card.schedule-card-style .schedule-card-image {
        height: 120px; /* Mobilde daha küçük görsel */
    }
    
    .program-card.schedule-card-style .schedule-card-content {
        padding: 0.75rem; /* Mobilde daha az padding */
    }
    
    .program-card.schedule-card-style .schedule-time {
        font-size: 1.1rem; /* Mobilde daha küçük font */
        margin-bottom: 0.25rem;
    }
    
    .program-card.schedule-card-style .schedule-title {
        font-size: 0.75rem; /* Mobilde daha küçük font */
        line-height: 1.2;
        margin-bottom: 0.25rem;
        min-height: auto;
    }
    
    .program-card.schedule-card-style .schedule-badge {
        font-size: 0.65rem; /* Mobilde daha küçük badge */
        padding: 0.2rem 0.4rem;
    }
    
    .program-card {
        width: 260px; /* Mobile için artırıldı */
    }
    
    .program-card-image {
        height: 350px; /* Mobile için artırıldı */
    }
    
    .program-card-title {
        font-size: 0.9rem;
    }
    
    .program-card-info {
        font-size: 0.75rem;
    }
    
    .play-button {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    /* Episode Cards - Mobile */
    .episode-card {
        width: 180px;
    }
    
    .episode-card-image {
        height: 250px;
    }
    
    .episode-number {
        font-size: 0.85rem;
    }
    
    .episode-program-title {
        font-size: 0.8rem;
    }
    
    .episode-play-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* Schedule Cards - Mobile */
    .schedule-card {
        width: 75vw; /* Mobile için ekran genişliğine göre dinamik - daha küçük */
        max-width: 280px;
        min-width: 200px;
    }
    
    .schedule-card-image {
        height: 120px; /* Mobilde daha küçük görsel */
    }
    
    .schedule-card-content {
        padding: 0.75rem; /* Mobilde daha az padding */
    }
    
    .schedule-time {
        font-size: 1.1rem; /* Mobilde daha küçük font */
        margin-bottom: 0.25rem;
    }
    
    .schedule-title {
        font-size: 0.75rem; /* Mobilde daha küçük font */
        line-height: 1.2;
        margin-bottom: 0.25rem;
        min-height: auto;
    }
    
    .schedule-badge {
        font-size: 0.65rem; /* Mobilde daha küçük badge */
        padding: 0.2rem 0.4rem;
    }
    
    /* Recent Program Cards - Mobile */
    .recent-program-card {
        width: 180px;
    }
    
    .recent-program-card-image {
        height: 250px;
    }
    
    .recent-program-title {
        font-size: 0.9rem;
    }
    
    .recent-program-play-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* Slider Navigation Buttons - Mobile */
    .slider-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .programs-slider-wrapper,
    .schedule-slider-wrapper,
    .episodes-slider-wrapper,
    .recent-programs-slider-wrapper {
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem !important;
    }
    
    .hero-slider-section {
        min-height: 45vh;
        margin-top: 0 !important; /* Mobilde header'a yapışık */
    }
    
    .carousel-item {
        height: 45vh;
        min-height: 350px;
    }
    
    .slider-image {
        background-size: contain;
        background-position: center center;
        background-color: #000;
    }
    
    .slider-content {
        padding: 1.5rem 0;
    }
    
    .slider-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .slider-description {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .btn-play,
    .btn-more {
        padding: 0.45rem 0.9rem;
        font-size: 0.75rem;
    }
    
    .btn-play i,
    .btn-more i {
        font-size: 0.9rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 30px;
        height: 30px;
    }
    
    .carousel-control-prev {
        left: 0.25rem;
    }
    
    .carousel-control-next {
        right: 0.25rem;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 14px;
        height: 14px;
    }
    
    .carousel-indicators {
        bottom: 0.5rem;
    }
    
    .carousel-indicators button {
        width: 6px;
        height: 6px;
        margin: 0 0.15rem;
    }
    
    .carousel-indicators button.active {
        width: 8px;
        height: 8px;
    }
    
    .featured-programs-section,
    .broadcast-schedule-section,
    .new-episodes-section,
    .recent-programs-section {
        padding: 1.5rem 0;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .section-header {
        padding: 0 1rem;
    }
    
    .programs-slider-wrapper,
    .schedule-slider-wrapper,
    .episodes-slider-wrapper,
    .recent-programs-slider-wrapper {
        padding: 0 0.75rem;
    }
    
    .program-card {
        width: 160px;
    }
    
    .program-card-image {
        height: 220px;
    }
    
    .program-card-title {
        font-size: 0.85rem;
        min-height: 2.2rem;
    }
    
    .program-card-info {
        font-size: 0.7rem;
    }
    
    .play-button {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .slider-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .schedule-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0 1rem;
    }
    
    .schedule-card {
        width: 70vw; /* Çok küçük ekranlar için daha küçük */
        max-width: 260px;
        min-width: 180px;
    }
    
    .program-card.schedule-card-style {
        width: 70vw; /* Çok küçük ekranlar için daha küçük */
        max-width: 260px;
        min-width: 180px;
    }
    
    .schedule-card-image {
        height: 100px; /* Çok küçük ekranlarda daha küçük görsel */
    }
    
    .program-card.schedule-card-style .schedule-card-image {
        height: 100px; /* Çok küçük ekranlarda daha küçük görsel */
    }
    
    .schedule-card-content {
        padding: 0.6rem; /* Çok küçük ekranlarda daha az padding */
    }
    
    .program-card.schedule-card-style .schedule-card-content {
        padding: 0.6rem; /* Çok küçük ekranlarda daha az padding */
    }
    
    .schedule-time {
        font-size: 1rem; /* Çok küçük ekranlarda daha küçük font */
        margin-bottom: 0.2rem;
    }
    
    .program-card.schedule-card-style .schedule-time {
        font-size: 1rem; /* Çok küçük ekranlarda daha küçük font */
        margin-bottom: 0.2rem;
    }
    
    .schedule-title {
        font-size: 0.7rem; /* Çok küçük ekranlarda daha küçük font */
        line-height: 1.1;
        margin-bottom: 0.2rem;
        min-height: auto;
    }
    
    .program-card.schedule-card-style .schedule-title {
        font-size: 0.7rem; /* Çok küçük ekranlarda daha küçük font */
        line-height: 1.1;
        margin-bottom: 0.2rem;
        min-height: auto;
    }
    
    .schedule-badge {
        font-size: 0.6rem; /* Çok küçük ekranlarda daha küçük badge */
        padding: 0.15rem 0.35rem;
    }
    
    .program-card.schedule-card-style .schedule-badge {
        font-size: 0.6rem; /* Çok küçük ekranlarda daha küçük badge */
        padding: 0.15rem 0.35rem;
    }
    
    .episode-card {
        width: 160px;
    }
    
    .episode-card-image {
        height: 220px;
    }
    
    .episode-play-btn {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .episode-number {
        font-size: 0.8rem;
    }
    
    .episode-program-title {
        font-size: 0.75rem;
        min-height: 2rem;
    }
    
    .episode-card-content {
        padding: 0.75rem 0.25rem;
    }
    
    .recent-program-card {
        width: 160px;
    }
    
    .recent-program-card-image {
        height: 220px;
    }
    
    .recent-program-play-btn {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .recent-program-title {
        font-size: 0.85rem;
        min-height: 2.2rem;
    }
    
    .recent-program-card-content {
        padding: 0.75rem 0.25rem;
    }
    
    /* Company Info Section - Mobile */
    .company-info-section {
        padding: 2rem 0 !important;
    }
    
    .company-info-section h2 {
        font-size: 1.3rem !important;
    }
    
    .company-info-section h3 {
        font-size: 1.1rem !important;
    }
    
    .company-info-section h4 {
        font-size: 0.9rem !important;
    }
    
    .company-info-section p,
    .company-info-section span {
        font-size: 0.85rem !important;
    }
    
    .company-info-section .row {
        margin: 0 !important;
    }
    
    .company-info-section [class*="col-"] {
        padding: 0.5rem !important;
    }
    
    .company-info-section > .container > .row > .col-12 > div {
        margin-bottom: 1.5rem !important;
    }
    
    .company-info-section > .container > .row.g-4 {
        margin-bottom: 1.5rem !important;
    }
    
    .company-info-section > .container > .row.g-4 > [class*="col-"] > div {
        padding: 1.5rem !important;
    }
    
    .company-info-section .search-result-item {
        padding: 0.75rem !important;
    }
    
    .company-info-section .search-result-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 1rem !important;
    }
}

/* =======================================================
   UTILITY CLASSES
   ======================================================= */

.text-brand-red {
    color: var(--brand-red);
}

.bg-brand-red {
    background-color: var(--brand-red);
}

/* =======================================================
   FEATURED PROGRAMS SECTION
   ======================================================= */

.featured-programs-section {
    padding: 4rem 0;
    background-color: var(--bg-main);
    position: relative;
}

.section-header {
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Programs Slider Wrapper */
.programs-slider-wrapper {
    position: relative;
    padding: 0 3rem;
}

.programs-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.programs-slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Program Card - Schedule Card Stilinde */
.program-card.schedule-card-style {
    flex: 0 0 auto;
    width: 320px;
    background-color: var(--bg-main);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.program-card.schedule-card-style:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments for schedule-card-style */
@media (max-width: 768px) {
    .program-card.schedule-card-style {
        width: 70vw;
        max-width: 320px;
        min-width: 280px;
    }
}

@media (max-width: 576px) {
    .program-card.schedule-card-style {
        width: 85vw;
        max-width: 320px;
        min-width: 200px;
    }
}

/* Eski Program Card Stili (Kullanılmıyor ama silmeyelim) */
.program-card {
    flex: 0 0 auto;
    width: 380px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-8px);
}

.program-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.program-card-image {
    width: 100%;
    height: 500px; /* Daha yüksek görsel alanı */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.program-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-card:hover .program-card-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--bg-main);
    font-size: 1.5rem;
}

.play-button:hover {
    background-color: var(--brand-red);
    color: #FFFFFF;
    transform: scale(1.1);
}

.play-button i {
    margin-left: 3px;
}

.program-card-content {
    padding: 1rem 0.5rem;
}

.program-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.6rem;
}

.program-card-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Slider Navigation Buttons */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    font-size: 1.5rem;
}

.slider-nav-btn:hover {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav-prev {
    left: 0;
}

.slider-nav-next {
    right: 0;
}

.slider-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-nav-btn:disabled:hover {
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* =======================================================
   BROADCAST SCHEDULE SECTION
   ======================================================= */

.broadcast-schedule-section {
    padding: 4rem 0;
    background-color: var(--bg-surface);
    position: relative;
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.more-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s ease;
}

.more-link:hover {
    color: var(--brand-red);
}

.more-link i {
    font-size: 0.8rem;
}

/* Schedule Slider Wrapper */
.schedule-slider-wrapper {
    position: relative;
    padding: 0 3rem;
}

.schedule-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.schedule-slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Schedule Card */
.schedule-card {
    flex: 0 0 auto;
    width: 320px;
    background-color: var(--bg-main);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.schedule-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments for schedule-card */
@media (max-width: 768px) {
    .schedule-card {
        width: 70vw;
        max-width: 320px;
        min-width: 280px;
    }
}

@media (max-width: 576px) {
    .schedule-card {
        width: 85vw;
        max-width: 320px;
        min-width: 200px;
    }
}

.schedule-card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.schedule-card-content {
    padding: 1.25rem;
    background-color: var(--bg-main);
}

.schedule-time {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.schedule-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.8rem;
}

.schedule-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    white-space: nowrap;
}

.badge-live {
    background-color: transparent;
    color: var(--brand-red);
    border: 2px solid var(--brand-red);
}

.badge-new {
    background-color: var(--brand-red);
    color: #FFFFFF;
    border: none;
}

.badge-subtitle {
    background-color: var(--brand-red);
    color: #FFFFFF;
    border: none;
}

/* =======================================================
   NEW EPISODES SECTION
   ======================================================= */

.new-episodes-section {
    padding: 4rem 0;
    background-color: var(--bg-main);
    position: relative;
}

/* Episodes Slider Wrapper */
.episodes-slider-wrapper {
    position: relative;
    padding: 0 3rem;
}

.episodes-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.episodes-slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Episode Card */
.episode-card {
    flex: 0 0 auto;
    width: 280px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.episode-card:hover {
    transform: translateY(-4px);
}

.episode-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.episode-card-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.episode-play-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.episode-play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #FFFFFF;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
}

.episode-play-btn:hover {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
    transform: scale(1.1);
}

.episode-play-btn i {
    margin-left: 3px;
}

.episode-card-content {
    padding: 1rem 0.5rem;
    background-color: transparent;
}

.episode-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.episode-program-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.6rem;
}

/* =======================================================
   RECENT PROGRAMS SECTION
   ======================================================= */

.recent-programs-section {
    padding: 4rem 0;
    background-color: var(--bg-surface);
    position: relative;
}

/* Recent Programs Slider Wrapper */
.recent-programs-slider-wrapper {
    position: relative;
    padding: 0 3rem;
}

.recent-programs-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.recent-programs-slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Recent Program Card */
.recent-program-card {
    flex: 0 0 auto;
    width: 280px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.recent-program-card:hover {
    transform: translateY(-8px);
}

.recent-program-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.recent-program-card-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.recent-program-play-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.recent-program-card:hover .recent-program-play-overlay {
    opacity: 1;
}

.recent-program-play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #FFFFFF;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
}

.recent-program-play-btn:hover {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
    transform: scale(1.15);
}

.recent-program-play-btn i {
    margin-left: 3px;
}

.recent-program-card-content {
    padding: 1rem 0.5rem;
    background-color: transparent;
}

.recent-program-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.6rem;
}

/* =======================================================
   FOOTER SECTION
   ======================================================= */

.site-footer {
    background-color: var(--bg-navbar);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 2px solid rgba(217, 4, 41, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-section {
    color: var(--text-primary);
}

.footer-title,
.footer-brand-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand-tagline {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-brand-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-heading i {
    color: var(--brand-red);
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a i {
    font-size: 0.85rem;
    color: var(--brand-red);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--brand-red);
    padding-left: 0.5rem;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.social-media-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bg-surface);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    font-size: 1.2rem;
}

/* Footer Social Links Hover */
.footer-section .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(217, 4, 41, 0.3);
}

.footer-section .social-link:has(.bi-facebook):hover {
    background-color: #1877F2;
    border-color: #1877F2;
    color: #FFFFFF;
}

.footer-section .social-link:has(.bi-twitter-x):hover {
    background-color: #000000;
    border-color: #000000;
    color: #FFFFFF;
}

.footer-section .social-link:has(.bi-instagram):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: #FFFFFF;
}

.footer-section .social-link:has(.bi-youtube):hover {
    background-color: #FF0000;
    border-color: #FF0000;
    color: #FFFFFF;
}

.footer-social-media {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.footer-social-media .social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bg-surface);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    font-size: 1.2rem;
}

.footer-social-media .social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(217, 4, 41, 0.4);
}

.footer-social-media .social-link.facebook:hover {
    background-color: #1877F2;
    border-color: #1877F2;
    color: #FFFFFF;
}

.footer-social-media .social-link.twitter:hover {
    background-color: #000000;
    border-color: #000000;
    color: #FFFFFF;
}

.footer-social-media .social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: #FFFFFF;
}

.footer-social-media .social-link.youtube:hover {
    background-color: #FF0000;
    border-color: #FF0000;
    color: #FFFFFF;
}

.footer-social-media .social-link.linkedin:hover {
    background-color: #0077B5;
    border-color: #0077B5;
    color: #FFFFFF;
}

.footer-contact-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-contact-item i {
    color: var(--brand-red);
    font-size: 1rem;
    width: 20px;
}

.footer-contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--brand-red);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-copyright p {
    margin: 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--brand-red);
}

.footer-divider {
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-item.active .slider-content {
    animation: fadeIn 0.8s ease-out;
}

