/* Just Electric Services - Main Stylesheet */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Muli', 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #034170;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ff6600;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.topbar {
    background: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links span {
    margin-right: 10px;
    color: #666;
}

.social-links a {
    color: #034170;
    margin: 0 5px;
    font-size: 18px;
}

.social-links a:hover {
    color: #ff6600;
}

.header-contact {
    display: flex;
    align-items: center;
}

.header-contact a {
    color: #034170;
    font-weight: bold;
    margin-left: 5px;
}

header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    position: relative;
    margin-left: 30px;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    display: block;
}

nav ul li a:hover,
nav ul li.active a {
    color: #ff6600;
}

/* Dropdown Menu */
nav ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 250px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
}

nav ul li:hover ul {
    display: flex;
}

nav ul li ul li {
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
}

nav ul li ul li a {
    padding: 12px 20px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: #034170;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(3, 65, 112, 0.7), rgba(3, 65, 112, 0.7)), 
                url('https://justelectricservices.com/wp-content/uploads/2019/04/SGV.jpg') center/cover;
    color: #fff;
    padding: 120px 0;
    text-align: left;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text h4 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Hero Video Player */
.hero-video {
    position: relative;
}

.hero-video-player {
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

#hero-testimonial-video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.hero-video-controls {
    background: rgba(3, 65, 112, 0.95);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.hero-video-info {
    flex: 1;
    text-align: center;
}

.hero-video-info span {
    display: block;
    color: white;
}

#hero-video-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 3px;
}

#hero-video-customer {
    font-size: 14px;
    opacity: 0.9;
}

.hero-video-btn {
    background: #ff6600;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hero-video-btn:hover {
    background: #ff8533;
    transform: scale(1.1);
}

/* Legacy hero styles for backwards compatibility */
.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero h4 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn {
    display: inline-block;
    background: #ff6600;
    color: #fff;
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #034170;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: #034170;
}

.btn-secondary:hover {
    background: #ff6600;
}

/* Contact Form Section */
.contact-form-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.contact-form-section h3 {
    color: #034170;
    margin-bottom: 30px;
    font-size: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #034170;
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-content {
    padding: 25px;
}

.service-card h3 {
    color: #034170;
    margin-bottom: 15px;
}

/* Features Section */
.features-section {
    background: #034170;
    color: #fff;
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
}

.feature-card i {
    font-size: 48px;
    color: #ff6600;
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonial-rating {
    color: #ff6600;
    margin-bottom: 15px;
}

.testimonial-card p {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    color: #034170;
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
    text-align: center;
}

.review-stats {
    display: inline-block;
    margin-bottom: 30px;
}

.review-stats h3 {
    color: #034170;
    font-size: 28px;
}

.rating-display {
    font-size: 48px;
    color: #ff6600;
    font-weight: bold;
}

/* Callout Section */
.callout-section {
    background: #ff6600;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.callout-section h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-widget h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget a {
    color: #ccc;
}

.footer-widget a:hover {
    color: #ff6600;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    nav ul li a {
        padding: 15px 20px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero h4 {
        font-size: 18px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-video-controls {
        padding: 12px 15px;
    }
    
    .hero-video-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    #hero-video-title {
        font-size: 14px;
    }
    
    #hero-video-customer {
        font-size: 12px;
    }
    
    .form-row,
    .services-grid,
    .features-grid,
    .testimonials-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Review Slider Mobile */
    .review-slider {
        padding: 0 50px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .review-card-slider {
        padding: 25px 20px;
    }
    
    .review-text {
        font-size: 16px;
        min-height: 100px;
    }
    
    .review-stars {
        font-size: 20px;
    }
}

/* Review Slider */
.review-slider-container {
    max-width: 900px;
    margin: 0 auto;
}

.review-slider {
    position: relative;
    padding: 0 60px;
}

.review-slides {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.review-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.review-card-slider {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.review-stars {
    color: #ff6600;
    font-size: 24px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 25px;
    min-height: 80px;
}

.review-author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.review-author-info strong {
    color: #034170;
    font-size: 16px;
}

.review-time {
    color: #666;
    font-size: 14px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #034170;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: #ff6600;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff6600;
    width: 30px;
    border-radius: 6px;
}

.dot:hover {
    background: #034170;
}

/* ==========================================
   VIDEO TESTIMONIAL PLAYER
   ========================================== */
.video-testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.video-player-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

.video-player-main {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: relative;
}

.video-info-header {
    background: linear-gradient(135deg, #034170 0%, #045a9d 100%);
    padding: 20px 30px;
    color: white;
}

.video-info-header h3 {
    margin: 0 0 5px 0;
    font-size: 24px;
    font-weight: 600;
}

.video-info-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 16px;
}

#testimonial-video-player {
    width: 100%;
    height: auto;
    min-height: 500px;
    display: block;
    background: #000;
    cursor: pointer;
}

.video-controls {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-nav-buttons {
    display: flex;
    gap: 10px;
}

.video-nav-btn {
    background: rgba(255,102,0,0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-nav-btn:hover {
    background: #ff6600;
    transform: scale(1.1);
}

.video-playlist-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.playlist-header {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    padding: 20px;
    color: white;
    text-align: center;
}

.playlist-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

#video-playlist {
    max-height: 600px;
    overflow-y: auto;
    padding: 10px;
}

#video-playlist::-webkit-scrollbar {
    width: 8px;
}

#video-playlist::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#video-playlist::-webkit-scrollbar-thumb {
    background: #ff6600;
    border-radius: 10px;
}

.playlist-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px;
    padding: 15px;
    margin-bottom: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.playlist-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.playlist-item.active {
    background: linear-gradient(135deg, #034170 0%, #045a9d 100%);
    color: white;
}

.playlist-item.active .playlist-info h4,
.playlist-item.active .playlist-info p {
    color: white;
}

.playlist-thumbnail {
    width: 100px;
    height: 70px;
    background: linear-gradient(135deg, #034170 0%, #045a9d 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.playlist-thumbnail i {
    font-size: 32px;
    color: rgba(255,255,255,0.8);
}

.playlist-play-icon {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(255,102,0,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.playlist-item:hover .playlist-play-icon {
    opacity: 1;
}

.playlist-play-icon i {
    color: white;
    font-size: 18px;
    margin-left: 2px;
}

.playlist-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.playlist-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #034170;
}

.playlist-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.video-error {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    padding: 30px;
    background: rgba(0,0,0,0.8);
    border-radius: 10px;
}

.video-error i {
    font-size: 48px;
    color: #ff6600;
    margin-bottom: 15px;
}

/* Video Player Responsive Design */
@media (max-width: 1024px) {
    .video-player-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-playlist-container {
        order: 2;
    }
    
    #video-playlist {
        max-height: 400px;
    }
    
    .playlist-item {
        grid-template-columns: 80px 1fr;
    }
    
    .playlist-thumbnail {
        width: 80px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .video-testimonials-section {
        padding: 40px 0;
    }
    
    #testimonial-video-player {
        min-height: 300px;
    }
    
    .video-info-header {
        padding: 15px 20px;
    }
    
    .video-info-header h3 {
        font-size: 20px;
    }
    
    .video-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* ===============================================
   VIDEO TESTIMONIALS SECTION
   =============================================== */

.video-testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.video-player-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

/* Video Player Container */
.video-player-container {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
}

#testimonial-video-player {
    width: 100%;
    display: block;
    max-height: 500px;
    object-fit: contain;
    background: #000;
}

.video-info {
    background: linear-gradient(135deg, #034170 0%, #045a9d 100%);
    color: #fff;
    padding: 20px;
}

.video-info h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    color: #fff;
}

.video-info p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* Custom Video Controls */
.video-controls-custom {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background: #1a1a1a;
}

.video-nav-btn {
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.video-nav-btn:hover {
    background: #034170;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
}

.video-nav-btn:active {
    transform: translateY(0);
}

/* Video Playlist Container */
.video-playlist-container {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-height: 600px;
    display: flex;
    flex-direction: column;
}

.video-playlist-container h4 {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: #034170;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff6600;
}

.video-playlist {
    overflow-y: auto;
    flex: 1;
}

/* Playlist Items */
.playlist-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    gap: 12px;
}

.playlist-item:hover {
    background: #fff;
    border-color: #ff6600;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2);
}

.playlist-item.active {
    background: linear-gradient(135deg, #034170 0%, #045a9d 100%);
    color: #fff;
    border-color: #034170;
}

.playlist-item.active .playlist-info h4,
.playlist-item.active .playlist-info p,
.playlist-item.active .playlist-service {
    color: #fff;
}

.playlist-number {
    background: #ff6600;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.playlist-item.active .playlist-number {
    background: #fff;
    color: #034170;
}

.playlist-info {
    flex: 1;
}

.playlist-info h4 {
    margin: 0 0 4px 0;
    font-size: 15px;
    color: #034170;
    font-weight: 600;
}

.playlist-info p {
    margin: 0 0 4px 0;
    font-size: 13px;
    color: #666;
}

.playlist-service {
    display: inline-block;
    background: #ff6600;
    color: #fff;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.playlist-item.active .playlist-service {
    background: rgba(255, 255, 255, 0.2);
}

.playlist-play-icon {
    color: #ff6600;
    font-size: 24px;
    flex-shrink: 0;
}

.playlist-item.active .playlist-play-icon {
    color: #fff;
}

/* Error Overlay */
.video-error-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.video-error-content {
    text-align: center;
    color: #fff;
    padding: 40px;
}

.video-error-content h3 {
    color: #ff6600;
    margin-bottom: 15px;
}

.video-error-content p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.video-error-content button {
    margin-top: 20px;
}

/* Scrollbar for Playlist */
.video-playlist::-webkit-scrollbar {
    width: 8px;
}

.video-playlist::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.video-playlist::-webkit-scrollbar-thumb {
    background: #ff6600;
    border-radius: 4px;
}

.video-playlist::-webkit-scrollbar-thumb:hover {
    background: #034170;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .video-player-wrapper {
        grid-template-columns: 1fr;
    }
    
    .video-playlist-container {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .video-testimonials-section {
        padding: 60px 0;
    }
    
    .video-info h3 {
        font-size: 18px;
    }
    
    .video-info p {
        font-size: 13px;
    }
    
    .video-controls-custom {
        flex-direction: column;
        gap: 10px;
    }
    
    .video-nav-btn {
        width: 100%;
    }
    
    .playlist-item {
        flex-direction: column;
        text-align: center;
    }
    
    .playlist-number {
        margin-bottom: 8px;
    }
}

@media (max-width: 576px) {
    .video-playlist-container {
        padding: 15px;
    }
    
    .playlist-item {
        padding: 12px;
    }
    
    .playlist-info h4 {
        font-size: 14px;
    }
    
    .playlist-info p {
        font-size: 12px;
    }
}
