/* Services Page Specific Styles */


/* Active navigation state */
.nav-menu a.active {
    color: #1e3a8a;
    background-color: white;
    padding: 8px 12px;
    border-radius: 4px;
}

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(59, 130, 246, 0.8) 100%), url('../img/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 60px 0;
    text-align: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Flat Fee Services Section */
.flat-fee-services {
    padding: 80px 0;
    background-color: white;
}

.flat-fee-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1e3a8a;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 50px;
}

.flat-fee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.flat-fee-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.flat-fee-card:hover {
    border-color: #f34b0a;
    transform: translateY(-8px);
    background: #ffffff;
}

.flat-fee-card .service-icon {
    color: #f34b0a;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: #fed7aa;
    border-radius: 50%;
    padding: 15px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.flat-fee-card:hover .service-icon {
    color: #1e3a8a;
    transform: scale(1.1) rotate(10deg);
    background: #dbeafe;
}

.flat-fee-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e3a8a;
}

.price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #f34b0a;
    margin-bottom: 25px;
    position: relative;
}

.price::before {
    content: 'Starting at';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 400;
}

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

.service-features li {
    padding: 8px 0;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:before {
    content: "✓";
    color: #f34b0a;
    font-weight: bold;
    margin-right: 10px;
    background: #fed7aa;
    padding: 4px 8px;
    border-radius: 50%;
    font-size: 0.8rem;
    display: inline-block;
    transform: scale(1);
    transition: transform 0.2s ease;
}

.btn-service {
    background: #1e3a8a;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

.btn-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-service:hover::before {
    left: 100%;
}

.btn-service:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

/* Comprehensive Services Section */
.comprehensive-services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.service-navigation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.nav-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-card:hover {
    border-color: #f34b0a;
    transform: translateY(-5px);
}

.nav-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #f34b0a;
}

.nav-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1e3a8a;
}

.nav-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.comprehensive-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1e3a8a;
}

.service-category {
    margin-bottom: 60px;
    margin-top: 60px;
}

.category-title {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid #f34b0a;
    display: inline-block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(243, 75, 10, 0.03) 0%, rgba(30, 58, 138, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-3px);
    border-color: #f34b0a;
    background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%);
}

.service-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1e3a8a;
    font-weight: 600;
    position: relative;
}

.service-item h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #f34b0a;
    transition: width 0.3s ease;
}

.service-item:hover h4::after {
    width: 60px;
}

.service-item p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-item-icon {
    color: #f34b0a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #fed7aa;
    border-radius: 50%;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.service-item:hover .service-item-icon {
    background: #f34b0a;
    color: white;
    transform: scale(1.1);
}

/* About Page Styles */
.about-intro {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.about-intro h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 30px;
}

.about-intro p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.founder-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.founder-section h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 40px;
}

.founder-info {
    max-width: 800px;
    margin: 0 auto;
}

.founder-text h3 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.founder-text p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

.showcase-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.showcase-section h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
    display: none;
    width: 100%;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 58, 138, 0.8);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(30, 58, 138, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-indicators {
    text-align: center;
    margin-top: 20px;
}

.indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #e2e8f0;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #1e3a8a;
}

.indicator:hover {
    background: #f34b0a;
}

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: #f34b0a;
}

.value-item h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.value-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Service Benefits Section */
.service-benefits {
    padding: 80px 0;
    background-color: white;
}

.service-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e3a8a;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    color: #f34b0a;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1e3a8a;
}

.benefit-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Services CTA Section */
.services-cta {
    padding: 80px 0;
    background-color: #1e3a8a;
    color: white;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .services-hero p {
        font-size: 1.1rem;
    }
    
    .flat-fee-grid {
        grid-template-columns: 1fr;
    }
    
    .flat-fee-card {
        padding: 30px 20px;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        padding: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .flat-fee-services,
    .comprehensive-services,
    .service-benefits,
    .services-cta {
        padding: 60px 0;
    }
    
    .flat-fee-services h2,
    .comprehensive-services h2,
    .service-benefits h2,
    .services-cta h2 {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
}