/* Ses & Işık Kiralama Sayfası */

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.ses-isik-hero {
    position: relative;
    height: 650px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ses-isik-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(238, 41, 60, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(41, 128, 238, 0.3) 0%, transparent 50%);
    animation: colorShift 5s ease-in-out infinite alternate;
}

@keyframes colorShift {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(238, 41, 60, 0.5);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #EE293C 0%, #C11632 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(238, 41, 60, 0.4);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(238, 41, 60, 0.6);
    color: #fff;
    text-decoration: none;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EE293C 0%, #C11632 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: #fff;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    color: #666;
    font-size: 15px;
}

/* Sound Systems Section */
.sound-systems-section {
    padding: 100px 0;
    background: #fff;
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.system-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.system-card.featured {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid #EE293C;
    transform: scale(1.05);
}

.system-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.system-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #1a1a1a;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.system-badge.popular {
    background: #EE293C;
}

.system-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.system-capacity {
    font-size: 18px;
    color: #EE293C;
    font-weight: 600;
    margin-bottom: 25px;
}

.system-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.system-features li {
    padding: 10px 0;
    color: #444;
    font-size: 15px;
    border-bottom: 1px solid #e9ecef;
}

.system-features li i {
    color: #EE293C;
    margin-right: 10px;
}

.system-ideal {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    color: #666;
}

.system-ideal strong {
    color: #1a1a1a;
}

/* Light Systems Section */
.light-systems-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: #fff;
}

.light-systems-section .section-header h2,
.light-systems-section .section-header p {
    color: #fff;
}

.light-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.light-cat {
    background: rgba(255,255,255,0.05);
    padding: 35px 25px;
    border-radius: 15px;
    transition: all 0.3s;
}

.light-cat:hover {
    background: rgba(238, 41, 60, 0.1);
    transform: translateY(-5px);
}

.light-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #EE293C 0%, #C11632 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.light-cat h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.light-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.light-item {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid #EE293C;
}

.light-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.light-item p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

/* Brands Section */
.brands-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.brand-category h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.brand-tag {
    background: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.brand-tag:hover {
    background: #EE293C;
    color: #fff;
    transform: translateY(-2px);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s;
}

.step-item:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EE293C 0%, #C11632 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.step-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 14px;
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #EE293C 0%, #C11632 100%);
    color: #fff;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-btn.primary {
    background: #fff;
    color: #EE293C;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
    color: #EE293C;
    text-decoration: none;
}

.cta-btn.whatsapp {
    background: #25D366;
    color: #fff;
}

.cta-btn.whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    color: #fff;
    text-decoration: none;
}

.cta-btn.phone {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 2px solid #fff;
}

.cta-btn.phone:hover {
    background: #fff;
    color: #EE293C;
    transform: translateY(-3px);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .systems-grid {
        grid-template-columns: 1fr;
    }
    
    .system-card.featured {
        transform: scale(1);
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
