/* SERVICES PAGE SPECIFIC STYLES */
/* CLOSE MENU BUTTON */
.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    z-index: 1001;
}

.close-menu:hover {
    color: var(--sand-primary);
    transform: rotate(90deg);
}

/* SERVICES HERO */
.services-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 40%, rgba(181, 149, 106, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.services-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--sand-light);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(181, 149, 106, 0.1);
    padding: 1rem 1.5rem;
    border: 1px solid rgba(181, 149, 106, 0.2);
}

.feature-icon {
    font-size: 1.5rem;
}

/* SERVICES OVERVIEW */
.services-overview {
    padding: 100px 0;
    background: var(--dark-secondary);
    background-image: 
        linear-gradient(rgba(26, 26, 26, 0.95), rgba(42, 42, 42, 0.95)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect width="1200" height="800" fill="%231a1a1a"/><rect x="100" y="150" width="70" height="50" fill="%23ffffff" opacity="0.02"/><rect x="800" y="500" width="50" height="90" fill="%23ffffff" opacity="0.015"/></svg>');
    background-size: cover;
    background-attachment: fixed;
}

.services-overview h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--text-light);
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-preview {
    background: rgba(181, 149, 106, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(181, 149, 106, 0.2);
    transition: all 0.3s ease;
}

.service-preview:hover {
    transform: translateY(-8px);
    background: rgba(181, 149, 106, 0.08);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-preview h3 {
    color: var(--sand-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-preview p {
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.price-tag {
    background: var(--sand-primary);
    color: var(--dark-primary);
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 1rem;
}

/* SERVICE SECTIONS */
.landing-page-service,
.multilingual-service,
.comprehensive-service {
    padding: 120px 0;
    position: relative;
}

.landing-page-service {
    background: var(--dark-primary);
    background-image: 
        linear-gradient(rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.9)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect width="1200" height="800" fill="%230a0a0a"/><rect x="200" y="200" width="60" height="80" fill="%23ffffff" opacity="0.015"/><rect x="700" y="400" width="80" height="40" fill="%23ffffff" opacity="0.02"/></svg>');
    background-size: cover;
    background-attachment: fixed;
}

.multilingual-service {
    background: var(--dark-tertiary);
    background-image: 
        linear-gradient(rgba(42, 42, 42, 0.95), rgba(26, 26, 26, 0.95)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect width="1200" height="800" fill="%232a2a2a"/><rect x="150" y="100" width="50" height="120" fill="%23ffffff" opacity="0.02"/><rect x="900" y="600" width="90" height="50" fill="%23ffffff" opacity="0.015"/></svg>');
    background-size: cover;
    background-attachment: fixed;
}

.comprehensive-service {
    background: var(--dark-secondary);
    background-image: 
        linear-gradient(rgba(26, 26, 26, 0.95), rgba(42, 42, 42, 0.95)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect width="1200" height="800" fill="%231a1a1a"/><rect x="300" y="300" width="70" height="60" fill="%23ffffff" opacity="0.02"/><rect x="600" y="150" width="40" height="100" fill="%23ffffff" opacity="0.015"/></svg>');
    background-size: cover;
    background-attachment: fixed;
}

/* SERVICE HEADER */
.service-header {
    text-align: center;
    margin-bottom: 4rem;
}

.service-badge {
    background: var(--sand-primary);
    color: var(--dark-primary);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.aktru-badge {
    background: linear-gradient(135deg, var(--sand-primary) 0%, var(--sand-light) 100%);
}

.premium-badge {
    background: linear-gradient(135deg, var(--sand-darker) 0%, var(--sand-primary) 100%);
    color: var(--text-light);
}

.service-header h2 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-intro {
    font-size: 1.2rem;
    color: var(--sand-light);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* SERVICE CONTENT */
.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.service-details h3 {
    color: var(--sand-primary);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(181, 149, 106, 0.03);
    border: 1px solid rgba(181, 149, 106, 0.1);
}

.check-icon {
    color: var(--sand-primary);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.features-list strong {
    color: var(--sand-primary);
    display: block;
    margin-bottom: 0.3rem;
}

.features-list p {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* PRICING CARDS */
.pricing-card {
    margin-top: 77px;
    background: rgba(181, 149, 106, 0.08);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border: 1px solid rgba(181, 149, 106, 0.2);
    text-align: center;
}

.price {
    margin-bottom: 1rem;
}

.currency {
    font-size: 3rem;
    font-weight: 800;
    color: var(--sand-primary);
}

.period {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-left: 0.5rem;
}

.price-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.timeline,
.pricing-breakdown {
    margin-bottom: 2rem;
}

.timeline-item,
.breakdown-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(181, 149, 106, 0.1);
}

.day,
.item-name {
    color: var(--text-light);
    font-size: 0.9rem;
}

.task,
.item-price {
    color: var(--sand-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-cta {
    background: linear-gradient(135deg, var(--sand-primary) 0%, var(--accent-hover) 100%);
    color: var(--dark-primary);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.service-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* AKTRU PARTNERSHIP */
.aktru-partnership {
    background: rgba(181, 149, 106, 0.05);
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(181, 149, 106, 0.2);
    border-left: 4px solid var(--sand-primary);
}

.partnership-info {
    text-align: center;
}

.aktru-logo {
    margin-bottom: 1rem;
}

.aktru-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--sand-primary);
    margin-right: 1rem;
}

.partnership-text {
    font-size: 1.5rem;
    color: var(--text-light);
    opacity: 0.7;
}

.partnership-info p {
    color: var(--text-light);
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* LANGUAGES SHOWCASE */
.languages-showcase {
    margin-bottom: 4rem;
}

.languages-showcase h3 {
    color: var(--sand-primary);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.languages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.language-group {
    background: rgba(181, 149, 106, 0.03);
    padding: 1.5rem;
    border: 1px solid rgba(181, 149, 106, 0.1);
}

.language-group h4 {
    color: var(--sand-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.languages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.lang-item {
    background: rgba(181, 149, 106, 0.1);
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    color: var(--text-light);
    border: 1px solid rgba(181, 149, 106, 0.2);
}

.languages-note {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
}

/* PROCESS STEPS */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--sand-primary);
    color: var(--dark-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--sand-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* SERVICE EXAMPLES */
.service-examples {
    margin-top: 4rem;
}

.service-examples h3 {
    color: var(--sand-primary);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.example-card {
    background: rgba(181, 149, 106, 0.05);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(181, 149, 106, 0.2);
    transition: all 0.3s ease;
}

.example-card:hover {
    transform: translateY(-5px);
    background: rgba(181, 149, 106, 0.08);
}

.example-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.example-card h4 {
    color: var(--sand-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.example-card p {
    color: var(--text-light);
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* COMPREHENSIVE FEATURES */
.comprehensive-features {
    margin-bottom: 4rem;
}

.feature-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-category {
    background: rgba(181, 149, 106, 0.04);
    padding: 2rem;
    border: 1px solid rgba(181, 149, 106, 0.2);
}

.feature-category h3 {
    color: var(--sand-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.feature-category ul {
    list-style: none;
}

.feature-category li {
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.feature-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--sand-primary);
    font-weight: bold;
}

/* SOLUTIONS GRID */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: rgba(181, 149, 106, 0.05);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(181, 149, 106, 0.2);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    background: rgba(181, 149, 106, 0.08);
}

.solution-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.solution-card h4 {
    color: var(--sand-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.solution-card p {
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.solution-price {
    background: var(--sand-primary);
    color: var(--dark-primary);
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.9rem;
}

/* MULTILINGUAL PRICING */
.multilingual-pricing .pricing-breakdown {
    border-top: 1px solid rgba(181, 149, 106, 0.2);
    padding-top: 1.5rem;
}

/* COMPREHENSIVE PRICING */
.comprehensive-timeline {
    margin-bottom: 2rem;
}

.comprehensive-timeline h4 {
    color: var(--sand-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.timeline-phases {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.phase {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(181, 149, 106, 0.1);
}

.phase-name {
    color: var(--text-light);
    font-weight: 600;
}

.phase-desc {
    color: var(--sand-primary);
    font-size: 0.9rem;
}

.support-info {
    background: rgba(181, 149, 106, 0.1);
    padding: 1rem;
    margin-bottom: 2rem;
    border-left: 3px solid var(--sand-primary);
}

.support-info h4 {
    color: var(--sand-primary);
    margin-bottom: 0.5rem;
}

.support-info p {
    color: var(--text-light);
    opacity: 0.9;
    font-size: 0.9rem;
}

/* COMPARISON TABLE */
.services-comparison {
    padding: 120px 0;
    background: var(--dark-primary);
    background-image: 
        linear-gradient(rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.9)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect width="1200" height="800" fill="%230a0a0a"/><rect x="100" y="300" width="80" height="40" fill="%23ffffff" opacity="0.02"/><rect x="800" y="150" width="50" height="100" fill="%23ffffff" opacity="0.015"/></svg>');
    background-size: cover;
    background-attachment: fixed;
}

.services-comparison h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--text-light);
    font-weight: 700;
}

.comparison-table {
    background: rgba(181, 149, 106, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(181, 149, 106, 0.2);
    overflow-x: auto;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(181, 149, 106, 0.2);
}

.comparison-header {
    background: rgba(181, 149, 106, 0.1);
}

.service-col,
.feature-name,
.feature-value {
    padding: 1rem;
    text-align: center;
    border-right: 1px solid rgba(181, 149, 106, 0.1);
}

.service-col,
.feature-name {
    text-align: left;
    font-weight: 600;
    color: var(--sand-primary);
}

.feature-value {
    color: var(--text-light);
    opacity: 0.9;
}

.price-row {
    background: rgba(181, 149, 106, 0.08);
}

.price-row .feature-value.price {
    color: var(--sand-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* SERVICES CTA */
.services-cta {
    padding: 100px 0;
    background: var(--dark-tertiary);
    text-align: center;
    background-image: 
        linear-gradient(rgba(42, 42, 42, 0.95), rgba(26, 26, 26, 0.95)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect width="1200" height="800" fill="%232a2a2a"/><rect x="300" y="200" width="60" height="80" fill="%23ffffff" opacity="0.02"/><rect x="700" y="500" width="80" height="50" fill="%23ffffff" opacity="0.015"/></svg>');
    background-size: cover;
    background-attachment: fixed;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--sand-light);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.cta-button {
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--sand-primary) 0%, var(--accent-hover) 100%);
    color: var(--dark-primary);
}

.cta-button.secondary {
    background: transparent;
    color: var(--sand-primary);
    border: 2px solid var(--sand-primary);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px var(--shadow-heavy);
}

.cta-button.secondary:hover {
    background: var(--sand-primary);
    color: var(--dark-primary);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid,
    .examples-grid,
    .solutions-grid,
    .feature-categories,
    .languages-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .service-col,
    .feature-name,
    .feature-value {
        border-right: none;
        border-bottom: 1px solid rgba(181, 149, 106, 0.1);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .service-header h2 {
        font-size: 2.2rem;
    }
    
    .services-overview h2,
    .services-comparison h2,
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .feature {
        padding: 0.8rem 1rem;
    }
    
    .pricing-card,
    .service-preview,
    .example-card,
    .solution-card {
        padding: 2rem;
    }
}