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

/* Responsive image classes */
.responsive-img {
    max-width: 100%;
    height: auto;
}

.web-only {
    display: block !important;
}

.mobile-only {
    display: none !important;
}

/* Mobile responsive images */
@media (max-width: 768px) {
    .web-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    background-color: #111;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Sticky Social Icons */
.sticky-social-left {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.sticky-social-right {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.sticky-social-left a,
.sticky-social-right a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Glow animation */
@keyframes glow {
    0% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
}

@keyframes telegram-glow {
    0% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 136, 204, 0.8), 0 0 40px rgba(0, 136, 204, 0.6);
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
}

@keyframes whatsapp-glow {
    0% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(37, 211, 102, 0.8), 0 0 40px rgba(37, 211, 102, 0.6);
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
}

@keyframes instagram-glow {
    0% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(225, 48, 108, 0.8), 0 0 40px rgba(240, 148, 51, 0.6);
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
}

@keyframes linkedin-glow {
    0% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 119, 181, 0.8), 0 0 40px rgba(0, 119, 181, 0.6);
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
}

.telegram.glow-animation {
    animation: telegram-glow 1s ease-in-out;
}

.whatsapp.glow-animation {
    animation: whatsapp-glow 1s ease-in-out;
}

.instagram.glow-animation {
    animation: instagram-glow 1s ease-in-out;
}

.linkedin.glow-animation {
    animation: linkedin-glow 1s ease-in-out;
}

.sticky-social-left a:hover,
.sticky-social-right a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.telegram {
    background: #0088cc;
}

.whatsapp {
    background: #25D366;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.linkedin {
    background: #0077b5;
}

/* Hide the social icons in footer when sticky ones are visible */
.footer .social-icons {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sticky-social-left a,
    .sticky-social-right a {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .sticky-social-left {
        left: 10px;
        bottom: 10px;
        gap: 10px;
    }
    
    .sticky-social-right {
        right: 10px;
        bottom: 10px;
        gap: 10px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Welcome Banner */
.welcome-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.welcome-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.welcome-content {
    position: relative;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease-in-out;
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
}

.welcome-banner.active {
    display: flex;
    opacity: 1;
}

.welcome-banner.active .welcome-content {
    transform: translateY(0);
}

.welcome-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.2s ease;
}

.welcome-close:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: rotate(90deg);
}

.welcome-text {
    padding: 2rem;
    text-align: center;
    color: #fff;
}

.welcome-text h3 {
    color: #facc15;
    margin: 0 0 1rem 0;
    font-size: 1.75rem;
    font-weight: 700;
}

.welcome-text p {
    color: #eee;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

.welcome-image {
    text-align: center;
    padding: 1.5rem 1.5rem 0;
}

.welcome-image img {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.welcome-text h3 {
    color: #facc15;
    margin: 0 0 0.75rem 0;
    font-size: 1.75rem;
    font-weight: 700;
}

.welcome-text p {
    color: #eee;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

.welcome-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.2s ease;
}

.welcome-close:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: rotate(90deg);
}

/* Header Styles */
.header {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #facc15;
    font-size: 2rem;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(250, 204, 21, 0.3));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(250, 204, 21, 0.5));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #facc15;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(250, 204, 21, 0.1);
    color: #facc15;
}

.cta-button {
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #000 !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250, 204, 21, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #facc15;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide-content {
    text-align: center;
    z-index: 2;
    max-width: 600px;
    padding: 0 20px;
}

.slide-content h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 400;
    line-height: 1.4;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #000;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(250, 204, 21, 0.4);
}

.hero-cta:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(250, 204, 21, 0.6);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(250, 204, 21, 0.8);
    color: #000;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #facc15;
    transform: scale(1.2);
}

/* Marquee Poster Section */
.marquee-section {
    padding: 2rem 0;
    background-color: #0a0a0a;
    overflow: hidden;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-poster {
    flex-shrink: 0;
    width: 300px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.marquee-poster:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(250, 204, 21, 0.3);
}

.marquee-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Pause animation on hover */
.marquee-section:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


.filter-btn {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #facc15;
    color: #000;
    border-color: #facc15;
}

.posters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.poster-item {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.poster-item:hover {
    transform: translateY(-5px);
    border-color: #facc15;
    box-shadow: 0 10px 25px rgba(250, 204, 21, 0.1);
}

.poster-thumbnail {
    height: 150px;
    overflow: hidden;
}

.poster-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.poster-preview h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.poster-preview p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.poster-info {
    padding: 1rem;
}

.poster-info h5 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.poster-date {
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: block;
}

.poster-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    background: rgba(250, 204, 21, 0.1);
    color: #facc15;
    border: 1px solid #facc15;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: #facc15;
    color: #000;
}

.action-btn.delete:hover {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
}

/* Main Products Section */
.main-products {
    padding: 5rem 0;
    background-color: #1a1a1a;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #facc15;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 0.1;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: #facc15;
    box-shadow: 0 15px 30px rgba(250, 204, 21, 0.2);
}

.product-logo {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.product-logo h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #facc15;
}

.visit-btn, a.visit-btn {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #000 !important;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    line-height: 1.2;
}

.visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250, 204, 21, 0.4);
}

/* Other Products Section */
.other-products {
    padding: 5rem 0;
    background-color: #111;
}

.other-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.other-product-item {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #facc15;
    transition: all 0.3s ease;
}

.other-product-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(250, 204, 21, 0.1);
}

.other-product-item a {
    text-decoration: none;
    color: inherit;
}

.other-product-item a:hover {
    text-decoration: none;
}

.product-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #facc15;
    margin-bottom: 0.5rem;
}

.sharing-info {
    font-size: 0.9rem;
    color: #ccc;
}

.sharing-value {
    color: #facc15;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Sharing Rate Box */
.sharing-rate-box {
    margin-top: 1rem;
    padding: 0.75rem;
    background-color: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.sharing-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #ccc;
    margin-right: 0.5rem;
}

.sharing-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #facc15;
}

/* Product Image Styling */
.product-image {
    margin-bottom: 1.5rem;
    text-align: center;
}

.product-logo-img {
    width: 250px;
    height: 140px;
    border-radius: 8px;
    border: 2px solid rgba(250, 204, 21, 0.3);
    background-color: rgba(250, 204, 21, 0.1);
    transition: all 0.3s ease;
    object-fit: contain;
    padding: 8px;
    display: block;
    margin: 0 auto;
}

.product-logo-img:hover {
    border-color: rgba(250, 204, 21, 0.6);
    background-color: rgba(250, 204, 21, 0.2);
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .product-logo-img {
        width: 200px;
        height: 112px;
        padding: 6px;
    }
}

/* Slider Background Responsive Classes */
.slide-bg-desktop,
.slide-bg-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide-bg-desktop {
    display: block;
}

.slide-bg-mobile {
    display: none;
}

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

/* Product Buttons Container */
.product-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.book-btn, a.book-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white !important;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    line-height: 1.2;
}

.book-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

@media (max-width: 768px) {
    .product-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .visit-btn,
    .book-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}

/* Footer Section */
.footer {
    background-color: #0a0a0a;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #facc15;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #facc15;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #facc15;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.5rem;
}

.social-icon.telegram {
    background: #0088cc;
}

.social-icon.whatsapp {
    background: #25d366;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(250, 204, 21, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        margin-top: 70px;
        height: 50vh;
        min-height: 300px;
    }
    
    .slide-content h2 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .management-widget {
        padding: 0 1rem;
    }
    
    .control-buttons {
        flex-direction: column;
    }
    
    .poster-stats {
        grid-template-columns: 1fr;
    }
    
    .gallery-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .marquee-poster {
        width: 250px;
        height: 125px;
    }
    
    .gallery-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .posters-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .other-products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .slider-controls {
        padding: 0 1rem;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .widget {
        padding: 1.5rem;
    }
    
    .upload-area {
        padding: 1.5rem;
    }
    
    .upload-content i {
        font-size: 2rem;
    }
    
    .poster-actions {
        justify-content: center;
    }
    
    .marquee-poster {
        width: 200px;
        height: 100px;
    }
    
    .marquee-track {
        gap: 1rem;
    }
    
    .other-products-grid {
        grid-template-columns: 1fr;
    }
    
    .other-product-item {
        padding: 1rem;
    }
}
