




img {
    max-width: 100%;
    display: block;
}

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

.section-tag {
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 800;
    margin: 12px 0 16px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}


.service-hero {
    position: relative;
    background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
    padding: 140px 0 100px;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.3;
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,199,44,0.1), transparent 50%);
}

.breadcrumb {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.breadcrumb a:hover {
    opacity: 1;
    color: var(--primary-yellow);
}

.breadcrumb span {
    color: var(--text-light);
    opacity: 0.5;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: var(--text-dark);
    box-shadow: 0 10px 40px rgba(255,199,44,0.3);
}

.service-hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 46px);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-hero-subtitle {
    font-size: clamp(16px, 1.5vw, 18px);
    color: #ddd;
    margin-bottom: 40px;
    line-height: 1.8;
}

.service-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border-color: var(--text-light);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* ==========================================
   SERVICE OVERVIEW
========================================== */
.service-overview {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.overview-content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 800;
    margin: 12px 0 24px;
    line-height: 1.3;
}

.overview-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.overview-features {
    margin-top: 36px;
    display: grid;
    gap: 16px;
}

.overview-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--gray-bg);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.overview-feature:hover {
    background: var(--primary-yellow);
    transform: translateX(8px);
}

.overview-feature i {
    font-size: 20px;
    color: var(--primary-yellow);
    min-width: 20px;
}

.overview-feature:hover i {
    color: var(--text-dark);
}

.overview-feature span {
    font-size: 15px;
    font-weight: 500;
}

.overview-image {
    position: relative;
}

.overview-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.overview-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-yellow);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.badge-content h3 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.badge-content span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ==========================================
   SERVICES OFFERED
========================================== */
.services-offered {
    padding: var(--section-padding) 0;
    background: var(--gray-bg);
}

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

.service-item {
    background: var(--light-bg);
    padding: 36px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.service-item:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-item-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow), #ffdb6d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.service-item:hover .service-item-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-item p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* ==========================================
   WHY CHOOSE US
========================================== */
.why-choose {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.why-choose-content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 800;
    margin: 12px 0 40px;
    line-height: 1.3;
}

.choose-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.choose-item {
    display: flex;
    gap: 24px;
}

.choose-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
}

.choose-text h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.choose-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
}

.why-choose-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: var(--gray-bg);
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    background: var(--primary-yellow);
    transform: translateY(-8px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: var(--text-dark);
}

.stat-card:hover .stat-icon {
    background: var(--light-bg);
}

.stat-card h3 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.stat-card h3::after {
    content: '+';
    color: var(--primary-yellow);
    margin-left: 4px;
}

.stat-card:hover h3::after {
    color: var(--text-dark);
}

.stat-card span {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

/* ==========================================
   PROCESS SECTION
========================================== */
.process-section {
    padding: var(--section-padding) 0;
    background: var(--dark-bg);
    color: var(--text-light);
}

.process-section .section-tag {
    color: var(--primary-yellow);
}

.process-section .section-header h2 {
    color: var(--text-light);
}

.process-section .section-header p {
    color: #ccc;
}

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

.process-step {
    position: relative;
    text-align: center;
    padding: 40px 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.process-step:hover {
    background: rgba(255,199,44,0.1);
    transform: translateY(-8px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,199,44,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary-yellow);
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
}

/* ==========================================
   PRICING SECTION
========================================== */
.pricing-section {
    padding: var(--section-padding) 0;
    background: var(--gray-bg);
}

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

.pricing-card {
    background: var(--light-bg);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.pricing-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    background: var(--primary-yellow);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(0,0,0,0.1);
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
}

.currency {
    font-size: 24px;
    font-weight: 700;
    margin-top: 8px;
}

.amount {
    font-size: 56px;
    font-weight: 800;
    margin: 0 4px;
}

.period {
    font-size: 16px;
    color: var(--text-gray);
    margin-top: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.pricing-features i {
    font-size: 16px;
    color: var(--primary-yellow);
}

.pricing-card.featured .pricing-features i {
    color: var(--text-dark);
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-features li.disabled i {
    color: var(--text-gray);
}

.btn-pricing {
    width: 100%;
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 14px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    display: block;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-pricing:hover {
    background: transparent;
    border-color: var(--dark-bg);
    color: var(--dark-bg);
}

.pricing-card.featured .btn-pricing {
    background: var(--text-light);
    color: var(--text-dark);
}

.pricing-note {
    text-align: center;
    padding: 20px;
    background: rgba(255,199,44,0.1);
    border-radius: 12px;
}

.pricing-note p {
    font-size: 14px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-note i {
    color: var(--primary-yellow);
    font-size: 18px;
}

/* ==========================================
   TESTIMONIALS
========================================== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

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

.testimonial-card {
    background: var(--gray-bg);
    padding: 36px;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--primary-yellow);
    font-size: 18px;
    margin-right: 4px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-gray);
}

/* ==========================================
   FAQ SECTION
========================================== */
.service-faq {
    padding: var(--section-padding) 0;
    background: var(--gray-bg);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-bg);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-item.active {
    background: var(--gray-bg);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--primary-yellow);
}

.faq-question .icon {
    font-size: 24px;
    font-weight: 300;
    transition: var(--transition-smooth);
    min-width: 30px;
    text-align: center;
}

.faq-answer {
    padding: 0 28px 24px;
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-gray);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease-out;
}

.faq-item.active .faq-question {
    color: var(--text-dark);
}

.faq-item.active .icon {
    transform: rotate(45deg);
    color: var(--primary-yellow);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   SERVICE CTA
========================================== */
.service-cta {
    position: relative;
    background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
    padding: 100px 0;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,199,44,0.1), transparent 70%);
}

.service-cta-overlay {
    position: absolute;
    inset: 0;

}

.service-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 40px);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-cta-content > p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.btn-cta-primary {
    background: var(--primary-yellow);
    color: var(--text-dark);
}

.btn-cta-primary:hover {
    background: transparent;
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background: transparent;
    border-color: var(--text-light);
    color: var(--text-light);
}

.btn-cta-secondary:hover {
    background: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
}

.cta-feature i {
    font-size: 24px;
    color: var(--primary-yellow);
}

.cta-feature span {
    font-size: 14px;
    font-weight: 500;
}

/* ==========================================
   OTHER SERVICES
========================================== */
.other-services {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

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

.other-service-card {
    background: var(--gray-bg);
    padding: 36px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.other-service-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.other-service-card.view-all {
    background: var(--primary-yellow);
}

.other-service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.other-service-card.view-all .other-service-icon {
    background: var(--light-bg);
}

.other-service-card:hover .other-service-icon {
    transform: scale(1.1) rotate(5deg);
}

.other-service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.other-service-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-yellow);
    transition: var(--transition-smooth);
}

.other-service-card:hover .service-link {
    transform: translateX(4px);
    display: inline-block;
}

.other-service-card.view-all .service-link {
    color: var(--text-dark);
}

/* ==========================================
   FOOTER
========================================== */
.footer {
    background: var(--dark-bg);
    padding: 40px 0;
    text-align: center;
    color: var(--text-light);
}

.footer-content p {
    font-size: 14px;
    color: #999;
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */

@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark-bg);
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: var(--transition-smooth);
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .overview-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .other-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 80px;
    }
    
    .services-grid,
    .process-grid,
    .pricing-grid,
    .other-services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .service-hero-actions,
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .overview-badge {
        position: static;
        margin-top: 20px;
    }
}

/* Selection */
::selection {
    background: var(--primary-yellow);
    color: var(--text-dark);
}

/* Focus Visible */
*:focus-visible {
    outline: 3px solid var(--primary-yellow);
    outline-offset: 2px;
}