/* ===== SERVICES PAGE SPECIFIC STYLES ===== */

/* Hero Section */
.services-hero {
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.9)), url('../images/hero/hero-bg.webp');
    background-size: cover;
    background-position: center;
    padding: 180px 0 100px;
    position: relative;
    text-align: center;
    margin-top: 70px;
}

.services-hero .hero-content {
    position: relative;
    z-index: 2;
}

.services-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-hero .hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #cccccc;
}

.hero-breadcrumb {
    font-size: 1rem;
    color: #aaaaaa;
}

.hero-breadcrumb a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.hero-breadcrumb span {
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.2), transparent 70%);
    z-index: 1;
}

/* Services Detail Sections */
.services-detail {
    padding: 100px 0;
    background: #0a0a0a;
}

.services-detail.alt-bg {
    background: #111111;
}

.service-detail-card {
    background: rgba(25, 25, 25, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.service-detail-header {
    padding: 40px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.05));
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    gap: 30px;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #D4AF37, #B8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #000;
    flex-shrink: 0;
}

.service-title-wrapper {
    flex: 1;
}

.service-detail-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #000;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Content Layout */
.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    padding: 40px;
}

.service-description {
    color: #cccccc;
    line-height: 1.7;
}

.service-description > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #dddddd;
}

/* Features Grid */
.service-features {
    margin: 50px 0;
}

.service-features h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
}

.service-features h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #D4AF37;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background: rgba(40, 40, 40, 0.6);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.feature-item p {
    font-size: 0.95rem;
    color: #aaaaaa;
    line-height: 1.6;
}

/* Process Steps */
.service-process {
    margin: 60px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: rgba(212, 175, 55, 0.3);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37, #B8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #000;
    margin: 0 auto 20px;
    border: 5px solid #0a0a0a;
}

.step-content {
    background: rgba(40, 40, 40, 0.6);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.step-content p {
    font-size: 0.95rem;
    color: #aaaaaa;
    line-height: 1.6;
}

/* Pricing Card Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.pricing-card {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #ffffff;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.pricing-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #D4AF37;
}

.price-tag {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

.starting {
    display: block;
    font-size: 0.9rem;
    color: #aaaaaa;
    margin-bottom: 5px;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #D4AF37;
    display: block;
}

.package-list {
    margin-bottom: 30px;
}

.package-item {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.package-item:last-child {
    border-bottom: none;
}

.package-item.active {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.package-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.package-item p {
    font-size: 0.9rem;
    color: #aaaaaa;
    margin-bottom: 10px;
    line-height: 1.5;
}

.package-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #D4AF37;
}

.full-width {
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 25px;
}

.emergency-contact {
    text-align: center;
    padding: 20px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.emergency-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ff6b6b;
}

.emergency-contact h4 i {
    margin-right: 10px;
}

.emergency-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.emergency-number:hover {
    color: #ff6b6b;
}

.emergency-contact p {
    font-size: 0.9rem;
    color: #cccccc;
}

/* Education Programs */
.education-programs {
    margin: 50px 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.program-card {
    background: rgba(40, 40, 40, 0.6);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.program-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.program-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #D4AF37;
    margin-bottom: 20px;
}

.program-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.program-card p {
    font-size: 0.95rem;
    color: #aaaaaa;
    margin-bottom: 15px;
    line-height: 1.6;
}

.program-card ul {
    list-style: none;
    padding-left: 0;
}

.program-card ul li {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.program-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

/* Training Benefits */
.training-benefits {
    margin: 40px 0;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(40, 40, 40, 0.6);
    border-radius: 8px;
    border-left: 3px solid #D4AF37;
}

.benefit-item i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: #dddddd;
    font-size: 1rem;
}

/* Consultation Areas */
.consultation-areas {
    margin: 50px 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.area-card {
    background: rgba(40, 40, 40, 0.6);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.area-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.area-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.area-card p {
    font-size: 0.95rem;
    color: #aaaaaa;
    margin-bottom: 15px;
    line-height: 1.6;
}

.area-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #888888;
}

.area-meta i {
    margin-right: 5px;
}

/* Consultation CTA */
.consultation-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.05));
    border-radius: 15px;
    padding: 40px;
    margin: 50px 0;
    display: flex;
    align-items: center;
    gap: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-content {
    flex: 1;
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content h3 i {
    margin-right: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-image {
    width: 150px;
    height: 150px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #D4AF37;
    flex-shrink: 0;
}

/* Consultation Hours */
.consultation-hours {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.consultation-hours h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #ffffff;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.consultation-hours h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #D4AF37;
}

.hours-list {
    margin-bottom: 30px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item .day {
    color: #dddddd;
    font-weight: 500;
}

.hour-item .time {
    color: #D4AF37;
    font-weight: 600;
}

.consultation-note {
    background: rgba(40, 40, 40, 0.6);
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid #D4AF37;
}

.consultation-note h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.consultation-note h4 i {
    margin-right: 10px;
    color: #D4AF37;
}

.consultation-note ul {
    list-style: none;
    padding-left: 0;
}

.consultation-note ul li {
    color: #aaaaaa;
    font-size: 0.9rem;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.consultation-note ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

/* Brochure Download */
.brochure-download {
    margin-top: 25px;
    padding: 20px;
    background: rgba(40, 40, 40, 0.6);
    border-radius: 10px;
    text-align: center;
}

.brochure-download h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.brochure-download h4 i {
    margin-right: 10px;
    color: #ff6b6b;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.download-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: rgba(25, 25, 25, 0.8);
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #D4AF37;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1rem;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.faq-cta p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta .btn-outline,
.faq-cta .btn-gold {
    margin: 0 10px;
    padding: 15px 35px;
}

/* Services CTA */
.services-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), url('../images/logo/logo.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2), transparent 70%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.services-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.services-cta p {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-gold-large {
    background: linear-gradient(135deg, #D4AF37, #B8860b);
    color: #000;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    border: 2px solid transparent;
}

.btn-gold-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
    color: #000;
}

.btn-outline-large {
    background: transparent;
    color: #D4AF37;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: 2px solid #D4AF37;
    transition: all 0.3s ease;
}

.btn-outline-large:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-8px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-sidebar {
        position: static;
    }
}

@media (max-width: 992px) {
    .services-hero .hero-title {
        font-size: 2.8rem;
    }
    
    .service-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .service-detail-header h2 {
        font-size: 2rem;
    }
    
    .consultation-cta {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .cta-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 150px 0 80px;
    }
    
    .services-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .services-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-detail {
        padding: 70px 0;
    }
    
    .service-detail-header,
    .service-detail-content {
        padding: 30px 20px;
    }
    
    .features-grid,
    .programs-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .faq-cta .btn-outline,
    .faq-cta .btn-gold {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-gold-large,
    .btn-outline-large {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .service-detail-header h2 {
        font-size: 1.6rem;
    }
    
    .price-tag .amount {
        font-size: 2rem;
    }
    
    .services-cta h2 {
        font-size: 2.2rem;
    }
    
    .services-cta p {
        font-size: 1.1rem;
    }
}