/* Services Page Specific Styles */

.services-hero {
    background-color: var(--primary-color);
    color: #fff;
    padding: 150px 0 80px;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.services-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: #fff;
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
}

.overview-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.overview-content p {
    margin-bottom: 25px;
    line-height: 1.7;
    color: var(--gray-color);
}

.process-list {
    margin: 40px 0;
    counter-reset: process-counter;
    list-style: none;
    padding: 0;
}

.process-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    position: relative;
}

.process-list li:last-child {
    margin-bottom: 0;
}

.process-list li::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 25px;
    width: 2px;
    height: calc(100% - 20px);
    background-color: var(--light-gray-color);
    z-index: 1;
}

.process-list li:last-child::after {
    display: none;
}

.number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 25px;
    flex-shrink: 0;
    z-index: 2;
}

.process-content {
    flex: 1;
    padding-top: 10px;
}

.process-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.process-content p {
    margin-bottom: 0;
    color: var(--gray-color);
}

/* Service Sections */
.service-section {
    padding: 80px 0;
    background-color: #fff;
}

.service-section.alt-bg {
    background-color: var(--light-color);
}

.service-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-content.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
}

.image-placeholder i {
    font-size: 6rem;
    color: var(--primary-color);
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.service-details p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--gray-color);
}

.service-features {
    margin: 30px 0;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
    line-height: 1.6;
}

.service-features li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 15px;
    margin-left: -15px;
    position: absolute;
    left: 15px;
}

.service-features li strong {
    color: var(--dark-color);
}

/* Agency Mini Gallery */
.agency-mini-gallery {
    margin-top: 60px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.mini-gallery-heading {
    margin-bottom: 30px;
}

.mini-gallery-heading h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.mini-gallery-heading p {
    color: var(--gray-color);
    font-size: 1.1rem;
}

.mini-gallery-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.mini-gallery-caption {
    color: var(--gray-color);
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 10px;
}

.mini-gallery-item {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse 2s infinite alternate;
}

.mini-gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    animation-play-state: paused;
}

.mini-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    100% {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
}

/* Additional Services */
.additional-services {
    padding: 80px 0;
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(0, 102, 204, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Animation for ScrollIntoView */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .service-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .service-content.reverse {
        flex-direction: column;
    }
    
    .service-image,
    .service-details {
        width: 100%;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .image-placeholder i {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 120px 0 60px;
    }
    
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .overview-content h2,
    .service-details h2 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-list li {
        flex-direction: column;
        margin-bottom: 40px;
    }
    
    .process-list li::after {
        left: 25px;
        top: 50px;
        height: calc(100% + 20px);
    }
    
    .number {
        margin-bottom: 15px;
    }
    
    .process-content {
        padding-left: 50px;
    }
}

@media (max-width: 576px) {
    .service-section {
        padding: 60px 0;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .image-placeholder i {
        font-size: 5rem;
    }
    
    .service-details h2 {
        font-size: 1.6rem;
    }
    
    .service-features {
        padding-left: 10px;
    }
    
    /* Mini Gallery Responsive */
    .mini-gallery-item {
        width: 100px;
        height: 100px;
    }
} 