/* Custom CSS for Ankara Koltuk Yıkama Website */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Premium Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    overflow: hidden;
    min-height: 90vh;
}

.hero-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    z-index: 1;
    filter: blur(1px);
}

/* Premium glass-morphism styling with better contrast */
.hero-section .bg-white {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Professional button styling */
.hero-section a {
    transition: all 0.2s ease;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.hero-section a:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Trust indicators styling */
.hero-section .grid .text-2xl {
    font-weight: 700;
    letter-spacing: -0.025em;
}

/* Feature card styling */
.hero-section .shadow-xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Icon containers */
.hero-section .w-12.h-12 {
    transition: all 0.2s ease;
}

.hero-section .flex:hover .w-12.h-12 {
    transform: scale(1.05);
}

/* Mobile optimization */
@media (max-width: 1024px) {
    .hero-section .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-section .lg\\:pl-8 {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
    }
    
    .hero-section h1 {
        font-size: 3rem;
        line-height: 0.95;
        letter-spacing: -0.02em;
    }
    
    .hero-section .text-xl {
        font-size: 1.125rem;
        line-height: 1.6;
    }
    
    .hero-section .grid.grid-cols-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-section .py-24 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* Premium typography */
.hero-section h1 {
    font-weight: 900;
    letter-spacing: -0.04em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    line-height: 0.9;
}

.hero-section .text-blue-600 {
    color: #2563eb;
}

/* Professional color scheme */
.bg-blue-600 {
    background-color: #2563eb;
}

.bg-blue-600:hover {
    background-color: #1d4ed8;
}

.bg-green-600 {
    background-color: #16a34a;
}

.bg-green-600:hover {
    background-color: #15803d;
}

/* Remove unnecessary animations for professional look */
@media (prefers-reduced-motion: reduce) {
    .hero-section * {
        animation: none !important;
        transition: none !important;
    }
}

/* CTA Button Animations */
.cta-button {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-button:hover::before {
    left: 100%;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    left: 100%;
}

/* Area Cards */
.area-card {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.area-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #14b8a6, #0f766e);
    transition: width 0.3s ease;
    z-index: 0;
}

.area-card:hover {
    transform: translateY(-5px);
    color: white;
}

.area-card:hover::after {
    width: 100%;
}

.area-card > * {
    position: relative;
    z-index: 1;
}

/* Price Cards */
.price-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.price-card:hover::before {
    left: 100%;
}

/* Gallery Items */
.gallery-item {
    transition: all 0.3s ease;
    overflow: hidden;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Testimonial Cards */
.testimonial-card {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.testimonial-card:hover {
    border-left-color: #14b8a6;
    transform: translateX(5px);
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* FAQ Section */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: #f8fafc;
}

.faq-answer {
    transition: all 0.3s ease;
}

/* Blog Cards */
.blog-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

/* Social Links */
.social-link {
    transition: all 0.3s ease;
    text-align: center;
}

.social-link:hover {
    transform: translateY(-3px);
}

/* Professional Navigation */
nav {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.98);
    transition: all 0.2s ease;
}

nav.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

nav h1 {
    font-weight: 700;
    letter-spacing: -0.025em;
}

nav a {
    font-weight: 500;
    letter-spacing: 0.025em;
    transition: color 0.2s ease;
}

nav .bg-blue-600 {
    font-weight: 600;
    letter-spacing: 0.025em;
}

/* Mobile Menu Toggle */
.mobile-menu-button {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }
    
    .desktop-menu {
        display: none;
    }
}

/* Professional Floating Buttons */
.fixed.bottom-6 a {
    transition: all 0.2s ease;
}

.fixed.bottom-6 a:hover {
    transform: translateY(-2px);
}

/* Tooltip styles for floating buttons */
.fixed.bottom-6 .group span {
    pointer-events: none;
    white-space: nowrap;
    font-weight: 500;
}

/* Mobile optimization for floating buttons */
@media (max-width: 768px) {
    .fixed.bottom-6 {
        bottom: 1rem;
        right: 1rem;
    }
    
    .fixed.bottom-6 a {
        padding: 0.75rem;
    }
    
    .fixed.bottom-6 i {
        font-size: 1rem;
    }
    
    /* Hide tooltips on mobile */
    .fixed.bottom-6 .group span {
        display: none;
    }
}

/* Form Styling */
input:focus, textarea:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

/* Responsive Typography */
@media (max-width: 640px) {
    .hero-section h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #14b8a6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 6rem;
    left: 1.5rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.2s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top.show {
    opacity: 1;
}

.scroll-to-top:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Mobile positioning for scroll-to-top */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1rem;
        left: 1rem;
        width: 44px;
        height: 44px;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #14b8a6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0f766e;
}

/* Print styles */
@media print {
    .fixed, nav, .floating-buttons {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .page-break {
        page-break-before: always;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-card, .area-card, .price-card {
        border: 2px solid #000;
    }
    
    .text-gray-600 {
        color: #000 !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Dark mode support (future enhancement) */
@media (prefers-color-scheme: dark) {
    /* Dark mode styles can be added here */
}

/* Focus styles for accessibility */
a:focus, button:focus, input:focus, textarea:focus {
    outline: 2px solid #14b8a6;
    outline-offset: 2px;
}

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #14b8a6;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
}

.skip-to-content:focus {
    top: 6px;
}

/* Utility classes */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bg-pattern {
    background-image: radial-gradient(circle at 2px 2px, rgba(20, 184, 166, 0.15) 1px, transparent 0);
    background-size: 20px 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile optimizations */
@media (max-width: 480px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .grid {
        gap: 1rem;
    }
    
    .text-4xl {
        font-size: 2rem;
    }
    
    .text-6xl {
        font-size: 3rem;
    }
}

/* Performance optimizations */
.service-card, .area-card, .price-card, .gallery-item {
    will-change: transform;
}

/* Intersection Observer animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}



/* Professional Gallery Slider */
.gallery-slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.gallery-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%; /* Dinamik olarak JavaScript ile ayarlanacak */
}

.gallery-slide {
    flex-shrink: 0;
    padding: 2rem;
    /* Width dinamik olarak JavaScript ile ayarlanacak */
}

.gallery-slide.active {
    display: block;
}

/* Gallery Item Styling */
.gallery-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item .relative {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-item:hover .relative {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item .image-container {
    width: 100%;
    aspect-ratio: 1080 / 1350; /* 1080x1350 oranı */
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Navigation Buttons */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.gallery-prev,
.gallery-next {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-prev:hover,
.gallery-next:hover {
    background: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-prev i,
.gallery-next i {
    font-size: 16px;
}

/* Dots Indicator */
.gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0;
    gap: 0.5rem;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot:hover {
    background: #9ca3af;
    transform: scale(1.1);
}

.gallery-dot.active {
    background: #2563eb;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-slide {
        padding: 1.5rem;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
    }
    
    .gallery-prev i,
    .gallery-next i {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .gallery-slider-container {
        margin: 0 1rem;
        border-radius: 12px;
    }
    
    .gallery-slide {
        padding: 1rem;
    }
    
    .gallery-slide .grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-nav {
        padding: 0 0.5rem;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 36px;
        height: 36px;
    }
    
    .gallery-prev i,
    .gallery-next i {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .gallery-slider-container {
        margin: 0 0.5rem;
        border-radius: 8px;
    }
    
    .gallery-slide {
        padding: 0.75rem;
    }
    
    .gallery-slide .grid {
        gap: 0.75rem;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 32px;
        height: 32px;
    }
    
    .gallery-prev i,
    .gallery-next i {
        font-size: 10px;
    }
    
    .gallery-dots {
        padding: 1rem 0;
    }
    
    .gallery-dot {
        width: 8px;
        height: 8px;
    }
}

/* YouTube Shorts Slider */
.youtube-slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.youtube-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.youtube-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.youtube-slide {
    flex-shrink: 0;
    padding: 2.5rem 2rem;
}

/* YouTube Video Item */
.youtube-video-item {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.youtube-video-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 25px rgba(255, 0, 0, 0.1);
}

.youtube-thumbnail-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16; /* YouTube Shorts oranı */
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(145deg, #000000, #1a1a1a);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.youtube-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.youtube-video-item:hover .youtube-thumbnail {
    transform: scale(1.05);
}

.youtube-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.95), rgba(255, 40, 40, 0.95));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.youtube-video-item:hover .youtube-play-button {
    transform: translate(-50%, -50%) scale(1.15);
    background: linear-gradient(135deg, rgba(255, 0, 0, 1), rgba(255, 60, 60, 1));
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.4), 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.youtube-play-button i {
    color: white;
    font-size: 28px;
    margin-left: 4px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.youtube-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 20, 20, 0.9));
    color: white;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.youtube-video-info {
    padding: 1.25rem 0 0.5rem 0;
}

.youtube-video-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.youtube-video-stats {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

.youtube-views, .youtube-date {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 4px 8px;
    background: rgba(107, 114, 128, 0.1);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.youtube-views:hover, .youtube-date:hover {
    background: rgba(107, 114, 128, 0.15);
    color: #374151;
}

.youtube-views i, .youtube-date i {
    opacity: 0.8;
    font-size: 0.8rem;
}

/* YouTube Navigation */
.youtube-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    pointer-events: none;
}

.youtube-prev,
.youtube-next {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
    backdrop-filter: blur(15px);
    color: #1f2937;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.youtube-prev:hover,
.youtube-next:hover {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18), 0 6px 18px rgba(255, 0, 0, 0.1);
    color: #dc2626;
}

.youtube-prev i,
.youtube-next i {
    font-size: 18px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* YouTube Dots */
.youtube-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    gap: 0.75rem;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.02));
}

.youtube-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #d1d5db, #e5e7eb);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.youtube-dot:hover {
    background: linear-gradient(135deg, #9ca3af, #d1d5db);
    transform: scale(1.2);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.youtube-dot.active {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3), 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.youtube-dot.active:hover {
    transform: scale(1.4);
    box-shadow: 0 6px 18px rgba(220, 38, 38, 0.4), 0 0 0 4px rgba(220, 38, 38, 0.15);
}

.youtube-dot.active {
    background: #dc2626;
    transform: scale(1.2);
}

/* Loading Animation */
.loading-container {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Responsive Design for YouTube Shorts */
@media (max-width: 1024px) {
    .youtube-slide {
        padding: 1.5rem;
    }
    
    .youtube-prev,
    .youtube-next {
        width: 40px;
        height: 40px;
    }
    
    .youtube-prev i,
    .youtube-next i {
        font-size: 14px;
    }
    
    .youtube-play-button {
        width: 50px;
        height: 50px;
    }
    
    .youtube-play-button i {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .youtube-slider-container {
        margin: 0 1rem;
        border-radius: 12px;
    }
    
    .youtube-slide {
        padding: 1rem;
    }
    
    .youtube-slide .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .youtube-nav {
        padding: 0 0.5rem;
    }
    
    .youtube-prev,
    .youtube-next {
        width: 36px;
        height: 36px;
    }
    
    .youtube-prev i,
    .youtube-next i {
        font-size: 12px;
    }
    
    .youtube-play-button {
        width: 40px;
        height: 40px;
    }
    
    .youtube-play-button i {
        font-size: 16px;
    }
    
    .youtube-video-title {
        font-size: 0.875rem;
    }
    
    .youtube-video-stats {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .youtube-slider-container {
        margin: 0 0.5rem;
        border-radius: 8px;
    }
    
    .youtube-slide {
        padding: 0.75rem;
    }
    
    .youtube-slide .grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .youtube-prev,
    .youtube-next {
        width: 32px;
        height: 32px;
    }
    
    .youtube-prev i,
    .youtube-next i {
        font-size: 10px;
    }
    
    .youtube-dots {
        padding: 1rem 0;
    }
    
    .youtube-dot {
        width: 8px;
        height: 8px;
    }
    
    .youtube-play-button {
        width: 36px;
        height: 36px;
    }
    
    .youtube-play-button i {
        font-size: 14px;
    }
}