/* Services Page Styles */
.services-page {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-header h1 {
    font-size: 3rem;
    color: #1F2937;
    margin-bottom: 24px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.25rem;
    color: #6B7280;
    line-height: 1.6;
}

/* Service Categories */
.service-categories {
    margin-bottom: 60px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.category-tab {
    padding: 16px 32px;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1.1rem;
    color: #4B5563;
}

.category-tab:hover {
    border-color: #3B82F6;
    color: #3B82F6;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.category-tab.active {
    background: #3B82F6;
    color: white;
    border-color: #3B82F6;
}

/* Service List */
.service-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 80px;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:nth-child(even) {
    direction: rtl;
}

.service-card:nth-child(even) .service-content {
    direction: ltr;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-title {
    font-size: 1.5rem;
    color: #1F2937;
    margin-bottom: 16px;
    font-weight: 600;
}

.service-description {
    color: #6B7280;
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.service-price {
    color: #3B82F6;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-price::before {
    content: "•";
    color: #3B82F6;
    font-size: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    color: #4B5563;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.service-features li::before {
    content: "✓";
    color: #3B82F6;
    margin-right: 12px;
    font-weight: bold;
}

.service-action {
    display: inline-block;
    padding: 14px 28px;
    background: #3B82F6;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.service-action:hover {
    background: #2563EB;
    transform: translateY(-2px);
}
/* service plans */
.plans-grid{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.plan-card{
    width: 30%;
    height: 30%;
    background-color: #f8f9fa;
    border-radius: 16px;
}
/* Service Process */
.service-process {
    margin-bottom: 80px;
    text-align: center;
    background: white;
    padding: 60px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-process h2 {
    font-size: 2.5rem;
    color: #1F2937;
    margin-bottom: 48px;
    font-weight: 700;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.step {
    flex: 1;
    position: relative;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: #3B82F6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step h3 {
    font-size: 1.5rem;
    color: #1F2937;
    margin-bottom: 16px;
    font-weight: 600;
}

.step p {
    color: #6B7280;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Service Features */
.service-features {
    margin-bottom: 80px;
    text-align: center;
}

.service-features h2 {
    font-size: 2.5rem;
    color: #1F2937;
    margin-bottom: 48px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.15);
}

.feature-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #1F2937;
    margin-bottom: 16px;
    font-weight: 600;
}

.feature-card p {
    color: #6B7280;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Call to Action */
.cta-section {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    border-radius: 16px;
    color: white;
    margin: 0 20px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 18px 36px;
    background: white;
    color: #3B82F6;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.2);
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.5s ease-in-out;
}

.slide.active .slide-image {
    transform: scale(1);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 20px;
    color: #fff;
    text-align: center;
}

.slide-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out 0.2s;
}

.slide-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out 0.4s;
}

.slide-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out 0.6s;
}

.slide.active .slide-title,
.slide.active .slide-description,
.slide.active .slide-button {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: #fff;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
    fill: #333;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Slider Error State */
.slider-error {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 2rem;
    text-align: center;
}

.slider-error p {
    color: #dc3545;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.slider-error .retry-btn {
    padding: 0.75rem 1.5rem;
    background-color: #3B82F6;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.slider-error .retry-btn:hover {
    background-color: #2563EB;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .services-page {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .category-tabs {
        flex-direction: column;
        padding: 0 20px;
    }

    .category-tab {
        width: 100%;
        text-align: center;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .service-card:nth-child(even) {
        direction: ltr;
    }

    .service-image {
        min-height: 300px;
    }

    .service-content {
        padding: 32px;
    }

    .process-steps {
        flex-direction: column;
    }

    .step {
        width: 100%;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .hero-slider {
        height: 400px;
    }

    .slide-content {
        padding: 80px 20px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .service-image {
        min-height: 250px;
    }

    .service-content {
        padding: 24px;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .service-description {
        font-size: 1rem;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-button {
        padding: 14px 28px;
    }

    .hero-slider {
        height: 300px;
    }

    .slide-content {
        padding: 60px 20px;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    .slide-description {
        font-size: 0.875rem;
    }

    .slider-arrow {
        width: 30px;
        height: 30px;
    }
} 