/* Service Detail Page Styles */

/* Gallery Section */
.service-detail-gallery {
    padding: 140px 0 80px;
    background: var(--light-gray);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.swiper-gallery {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.swiper-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.swiper-slide .video-wrapper {
    width: 100%;
    height: 600px;
    position: relative;
}

.swiper-slide iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-white);
    background: rgba(156, 54, 130, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--accent-purple);
    transform: scale(1.1);
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-white);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--accent-purple);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* Hero Title Section */
.service-hero-title {
    padding: 80px 0;
    background: var(--primary-white);
    position: relative;
}

.service-hero-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--medium-gray), transparent);
}

.hero-title-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-black);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-title-content p {
    font-size: 1.3rem;
    color: var(--accent-gray);
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}

/* Service Description Section */
.service-description-section {
    padding: 80px 0;
    background: var(--primary-white);
}

.description-content {
    max-width: 900px;
    margin: 0 auto;
}

.description-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 30px;
    line-height: 1.3;
}

.description-content p {
    font-size: 1.1rem;
    color: var(--accent-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.description-content p:last-child {
    margin-bottom: 0;
}

/* Key Features Section */
.key-features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--primary-white);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(156, 54, 130, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-purple);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(156, 54, 130, 0.1), rgba(156, 54, 130, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--accent-purple), #b8469a);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--accent-purple);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon i {
    color: var(--primary-white);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1rem;
    color: var(--accent-gray);
    line-height: 1.6;
    margin: 0;
}

/* Technical Specs Section */
.tech-specs-section {
    padding: 80px 0;
    background: var(--primary-white);
}

.specs-container {
    max-width: 900px;
    margin: 0 auto;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.spec-item {
    display: flex;
    padding: 25px 30px;
    margin-bottom: 15px;
    background: var(--light-gray);
    border-radius: 15px;
    border-left: 4px solid var(--accent-purple);
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(156, 54, 130, 0.05);
    transform: translateX(10px);
}

.spec-label {
    font-weight: 700;
    color: var(--primary-black);
    min-width: 180px;
    font-size: 1.05rem;
}

.spec-value {
    color: var(--accent-gray);
    font-size: 1.05rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-purple), #b8469a);
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.why-choose-content {
    position: relative;
    z-index: 2;
}

.why-choose-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.advantage-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.advantage-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 15px;
    line-height: 1;
}

.advantage-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.advantage-item p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.service-cta-section {
    padding: 100px 0;
    background: var(--light-gray);
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--primary-white);
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--accent-gray);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--accent-purple), #b8469a);
    color: var(--primary-white);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(156, 54, 130, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(156, 54, 130, 0.5);
    color: var(--primary-white);
    text-decoration: none;
}

.btn-cta-secondary {
    background: var(--primary-white);
    color: var(--accent-purple);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-purple);
}

.btn-cta-secondary:hover {
    background: var(--accent-purple);
    color: var(--primary-white);
    transform: translateY(-3px);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .swiper-slide img,
    .swiper-slide .video-wrapper {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .service-detail-gallery {
        padding: 120px 0 60px;
    }
    
    .swiper-slide img,
    .swiper-slide .video-wrapper {
        height: 450px;
    }
    
    .hero-title-content h1 {
        font-size: 3rem;
    }
    
    .hero-title-content p {
        font-size: 1.2rem;
    }
    
    .description-content h2 {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .why-choose-section h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .service-detail-gallery {
        padding: 110px 0 50px;
    }
    
    .swiper-slide img,
    .swiper-slide .video-wrapper {
        height: 350px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px;
    }
    
    .service-hero-title {
        padding: 60px 0;
    }
    
    .hero-title-content h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-title-content p {
        font-size: 1.15rem;
        padding: 0 15px;
    }
    
    .service-description-section,
    .key-features-section,
    .tech-specs-section,
    .why-choose-section,
    .service-cta-section {
        padding: 60px 0;
    }
    
    .description-content h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .description-content p {
        font-size: 1.05rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .spec-item {
        flex-direction: column;
        gap: 8px;
        padding: 20px 25px;
    }
    
    .spec-label {
        min-width: auto;
    }
    
    .why-choose-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cta-box {
        padding: 40px 30px;
    }
    
    .cta-box h2 {
        font-size: 2rem;
    }
    
    .cta-box p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .service-detail-gallery {
        padding: 100px 0 40px;
    }
    
    .gallery-container {
        padding: 0 10px;
    }
    
    .swiper-gallery {
        border-radius: 15px;
    }
    
    .swiper-slide img,
    .swiper-slide .video-wrapper {
        height: 280px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px;
    }
    
    .service-hero-title {
        padding: 50px 0;
    }
    
    .hero-title-content h1 {
        font-size: 2rem;
        margin-bottom: 18px;
    }
    
    .hero-title-content p {
        font-size: 1.05rem;
        padding: 0 10px;
    }
    
    .description-content h2 {
        font-size: 1.8rem;
    }
    
    .description-content p {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .spec-item {
        padding: 18px 20px;
    }
    
    .spec-label,
    .spec-value {
        font-size: 0.95rem;
    }
    
    .why-choose-section h2 {
        font-size: 1.8rem;
    }
    
    .advantage-number {
        font-size: 2.5rem;
    }
    
    .advantage-item h4 {
        font-size: 1.2rem;
    }
    
    .advantage-item p {
        font-size: 0.95rem;
    }
    
    .cta-box {
        padding: 35px 25px;
    }
    
    .cta-box h2 {
        font-size: 1.8rem;
    }
    
    .cta-box p {
        font-size: 1rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 15px 35px;
        font-size: 1rem;
    }
}