/* Services Page Styles */
:root {
    --indigo-600: #4f46e5;
    --purple-600: #7c3aed;
    --pink-600: #ec4899;
    --sky-400: #38bdf8;
    --emerald-500: #10b981;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f9fafb 0%, #e0e7ff 100%);
    color: #0f172a;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
    color: white;
    padding: 8rem 1rem;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-blur-elements {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    overflow: hidden;
}

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.blur-circle-1 {
    top: 2.5rem;
    left: 5%;
    width: 18rem;
    height: 18rem;
    background: white;
}

.blur-circle-2 {
    bottom: 2.5rem;
    right: 5%;
    width: 24rem;
    height: 24rem;
    background: #38bdf8;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 72rem;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    font-size: 1rem;
    color: #bae6fd;
}

.badge-text {
    color: #bae6fd;
    font-weight: 600;
    font-size: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #c7d2fe;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

/* Services Grid Section */
.services-grid-section {
    padding: 5rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.7;
}

.services-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-card.selected {
    border: 4px solid #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.2);
}

.service-header {
    position: relative;
    padding: 2rem;
    color: white;
    overflow: hidden;
}

.service-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 8rem;
    height: 8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.service-header::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -25%;
    width: 6rem;
    height: 6rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.service-header-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.service-header-content {
    position: relative;
    z-index: 2;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-divider {
    width: 4rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1px;
}

.service-body {
    padding: 2rem;
}

.service-description {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.service-full-description {
    color: #475569;
    line-height: 1.7;
    margin: 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1rem 0;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.feature-check {
    color: #10b981;
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-text {
    color: #475569;
    font-size: 0.875rem;
    line-height: 1.4;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4f46e5;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-top: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    color: #4338ca;
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
    transform: translateX(4px);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 0 1rem 5rem;
}

.why-choose-card {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #c7d2fe;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-choose-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.why-choose-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 36rem;
    margin: 0 auto;
    line-height: 1.7;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.why-choose-item {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    transform: translateY(-8px);
}

.why-choose-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.why-choose-item:hover .why-choose-icon {
    transform: scale(1.1);
}

.why-choose-icon i {
    font-size: 2rem;
}

.why-choose-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.why-choose-item-description {
    color: #64748b;
    line-height: 1.5;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    padding: 5rem 1rem;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-item {
    text-align: center;
}

.process-number {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    transition: transform 0.3s ease;
}

.process-item:hover .process-number {
    transform: scale(1.1);
}

.process-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-item-description {
    color: #cbd5e1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, #4f46e5, #7c3aed, #ec4899);
    padding: 5rem 1rem;
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 72rem;
    margin: 0 auto;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-description {
    font-size: 1.25rem;
    color: #c7d2fe;
    max-width: 36rem;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 9999px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-cta-primary {
    background: white;
    color: #4f46e5;
}

.btn-cta-primary:hover {
    background: #f8fafc;
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Contact Info Section */
.contact-info-section {
    background: white;
    padding: 2rem 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .contact-info-grid {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }
}

.contact-info-item {
    text-align: center;
}

.contact-info-label {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.email-label {
    color: #4f46e5;
}

.phone-label {
    color: #7c3aed;
}

.location-label {
    color: #ec4899;
}

.contact-info-value {
    color: #64748b;
    font-size: 1rem;
}

.contact-info-divider {
    display: none;
}

@media (min-width: 768px) {
    .contact-info-divider {
        display: block;
        width: 1px;
        height: 3rem;
        background: #cbd5e1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
    
    .why-choose-title {
        font-size: 1.875rem;
    }
    
    .why-choose-subtitle {
        font-size: 1.125rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.125rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
}

/* Body padding for fixed navbar */
body {
    padding-top: 64px;
}

@media (max-width: 768px) {
    body {
        padding-top: 64px;
    }
}

/* Animation delays for staggered animation */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.why-choose-item:nth-child(1) { transition-delay: 0.1s; }
.why-choose-item:nth-child(2) { transition-delay: 0.2s; }
.why-choose-item:nth-child(3) { transition-delay: 0.3s; }
.why-choose-item:nth-child(4) { transition-delay: 0.4s; }

.process-item:nth-child(1) { transition-delay: 0.1s; }
.process-item:nth-child(2) { transition-delay: 0.2s; }
.process-item:nth-child(3) { transition-delay: 0.3s; }
.process-item:nth-child(4) { transition-delay: 0.4s; }