/* services.css - Dark theme services page styles */

/* Services Overview */
.services-overview {
    padding: 4rem 0;
    background: var(--primary-dark);
    border-bottom: 1px solid var(--border-dark);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns of equal width */
    gap: 1.5rem; /* Space between grid items */
    padding: 1rem;
  }

.overview-card {
    background: var(--secondary-dark);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.overview-card:hover::before {
    opacity: 0.1;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.overview-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.overview-card h3 {
    color: var(--text-primary);
    font-size: 1.125rem;
    position: relative;
    z-index: 1;
}

/* Service Sections */
.service-section {
    padding: 4rem 0;
    scroll-margin-top: 100px;
    border-bottom: 1px solid var(--border-dark);
}

.service-section:nth-child(even) {
    background: var(--secondary-dark);
}

.service-section:nth-child(odd) {
    background: var(--primary-dark);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.service-text h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-subtitle {
    color: var(--secondary-blue);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.service-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.service-text h3 {
    color: var(--text-primary);
}

.service-features {
    background: var(--card-dark);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-dark);
}

.service-features h3 {
    color: var(--text-primary);
}

.feature-item {
    display: flex;
    align-items: start;
    margin-bottom: 1rem;
}

.feature-item strong {
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
}

.feature-icon {
    color: var(--accent-green);
    margin-right: 1rem;
    font-size: 1.25rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.5));
}

/* Process Steps */
.process-steps {
    margin: 2rem 0;
}

.process-title {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1.5rem;
    background: var(--secondary-dark);
    border-radius: 0.5rem;
    position: relative;
    border: 1px solid var(--border-dark);
    transition: all 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.step h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-secondary);
}

/* Pricing */
.pricing-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    padding: 2rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.pricing-info h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 2rem;
    color: var(--accent-green);
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.price-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
    margin-top: 3rem;
}

.faq-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.faq-item {
    background: var(--secondary-dark);
    border: 1px solid var(--border-dark);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-blue);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(59, 130, 246, 0.1);
}

.faq-arrow {
    transition: transform 0.3s;
    color: var(--primary-blue);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 4rem 0;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.secondary-button {
    background: transparent;
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--text-primary);
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.secondary-button:hover {
    background: var(--text-primary);
    color: var(--primary-blue);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .overview-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }
  }
  
  @media (max-width: 480px) {
    .overview-grid {
      grid-template-columns: 1fr; /* 1 column for mobile */
    }
  }
  
/* Services Page Responsive */
@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
    }
}