/* Service Pages - Apple Keynote Style Design */

/* Service Page Layout */
.service-page {
    min-height: 100vh;
    background: #000000;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 1. Hero Section */
.service-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
}

.service-hero-content {
    text-align: center;
    max-width: 800px;
}

.service-breadcrumb {
    margin-bottom: 60px;
    font-size: 16px;
    color: #d4af37;
    text-align: left;
}

.service-breadcrumb a {
    color: #d4af37;
    text-decoration: none;
}

.breadcrumb-separator {
    margin: 0 15px;
    color: #d4af37;
}

.current-page {
    color: #ffffff;
}

.service-title {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    margin-bottom: 40px;
    color: #d4af37;
    line-height: 1.1;
    text-align: left;
}

.service-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 50px;
    line-height: 1.3;
    text-align: left;
}

.service-description {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #ffffff;
    margin-bottom: 80px;
    line-height: 1.6;
    text-align: left;
}

.service-cta {
    margin-top: 60px;
    text-align: left;
}

.cta-button {
    display: inline-block;
    background: #d4af37;
    color: #000000;
    padding: 15px 30px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #f4d03f;
    color: #000000;
}

.cta-button.secondary {
    display: none;
}

/* 2. Service Overview */
.service-overview {
    padding: 150px 0;
    background: #000000;
}

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 60px;
    color: #d4af37;
    text-align: left;
}

.overview-content {
    max-width: 100%;
}

.overview-text {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: #ffffff;
    margin-bottom: 80px;
    line-height: 1.7;
    text-align: left;
}

.overview-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 80px;
}

.feature-item {
    text-align: left;
    padding: 0;
}

.feature-item h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 20px;
}

.feature-item p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #ffffff;
    line-height: 1.6;
}

/* 3. Service Offerings */
.service-offerings {
    padding: 150px 0;
    background: #000000;
}

.offerings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    margin-top: 80px;
}

.offering-card {
    padding: 0;
    border: none;
    background: none;
}

.offering-icon {
    display: none;
}

.offering-card h3 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 30px;
    text-align: left;
}

.offering-card p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: left;
}

.offering-card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.offering-card li {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
}

.offering-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: bold;
}

/* 4. Industry Expertise */
.industry-expertise {
    padding: 150px 0;
    background: #000000;
}

.industry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    margin-top: 80px;
}

.industry-card {
    padding: 0;
    border: none;
    background: none;
}

.industry-card h3 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 30px;
    text-align: left;
}

.industry-card p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: left;
}

.industry-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.highlight {
    color: #d4af37;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 500;
}

/* 6. Process & Methodology */
.process-methodology {
    padding: 150px 0;
    background: #000000;
}

.process-timeline {
    max-width: 100%;
    margin: 80px 0 0;
    position: relative;
}

.process-timeline::before {
    display: none;
}

.process-step {
    display: block;
    margin-bottom: 80px;
    position: relative;
}

.step-number {
    display: none;
}

.step-content {
    padding: 0;
}

.step-content h3 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 30px;
    text-align: left;
}

.step-content p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.step-duration {
    color: #d4af37;
    font-weight: 500;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
}

/* 9. FAQ Section */
.faq-section {
    padding: 150px 0;
    background: #000000;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 80px;
}

.faq-item {
    padding: 0;
    border: none;
    background: none;
}

.faq-item h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 25px;
    text-align: left;
}

.faq-item p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #ffffff;
    line-height: 1.6;
    text-align: left;
}

/* 10. Next Steps */
.next-steps {
    padding: 150px 0;
    background: #000000;
}

.next-steps-content {
    text-align: left;
    max-width: 100%;
}

.next-steps-description {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: #ffffff;
    margin-bottom: 80px;
    line-height: 1.7;
    text-align: left;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.next-step-item {
    text-align: left;
    padding: 0;
}

.step-icon {
    display: none;
}

.next-step-item h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 20px;
    text-align: left;
}

.next-step-item p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #ffffff;
    line-height: 1.6;
    text-align: left;
}

.next-steps-cta {
    margin-top: 60px;
}



/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .service-hero {
        padding: 120px 0 80px;
    }
    
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .service-hero {
        padding: 100px 0 60px;
    }
}
