/* Services Page Styles */

/* Services Hero Section */
.services-hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 120px 0 80px 0;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.services-hero-section .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.services-hero-section .floating-shapes div {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.services-hero-section .shape-1 {
    width: 120px;
    height: 120px;
    top: -60px;
    right: 15%;
    animation-delay: 0s;
}

.services-hero-section .shape-2 {
    width: 80px;
    height: 80px;
    bottom: 20px;
    left: 10%;
    animation-delay: -3s;
}

.services-hero-section .shape-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 5%;
    animation-delay: -6s;
}

.services-hero-content {
    color: white;
    position: relative;
    z-index: 1;
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-hero-description {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Services Grid Section */
.services-grid-section {
    background-color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0;
}

.service-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(40, 16, 64, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-content {
    padding: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.service-btn {
    background: var(--primary-color);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Services Features Section */
.services-features-section {
    background-color: #f8f9fa;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(40, 16, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* Services CTA Section */
.services-cta-section {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-cta-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.services-cta-floating-shapes div {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: servicesCtaFloat 16s ease-in-out infinite;
}

.services-cta-shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.services-cta-shape-2 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    left: 15%;
    animation-delay: -6s;
}

.services-cta-shape-3 {
    width: 50px;
    height: 50px;
    top: 60%;
    right: 20%;
    animation-delay: -12s;
}

.services-cta-shape-4 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 8%;
    animation-delay: -4s;
}

.services-cta-section .container {
    position: relative;
    z-index: 1;
}

.services-cta-section .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.services-cta-section .cta-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.services-cta-section .cta-button {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.services-cta-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: var(--light-color);
}

/* Individual Service Page Styles */
.service-hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 120px 0 80px 0;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.service-breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.service-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.service-breadcrumb a:hover {
    color: white;
}

.service-breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0.5rem;
}

.service-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.service-hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
    color: white;
}

.service-hero-image {
    position: relative;
    z-index: 1;
}

.service-hero-placeholder {
    width: 100%;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-content-section {
    background-color: white;
}

.service-main-content {
    padding-right: 2rem;
}

.service-content-card,
.service-video-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.content-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.content-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.video-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Service Sidebar */
.service-sidebar {
    padding-left: 2rem;
}

.service-info-card,
.service-contact-card,
.other-services-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.info-title,
.contact-title,
.other-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(40, 16, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--primary-color);
}

.info-content h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-content p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.contact-text {
    color: #666;
    margin-bottom: 1.5rem;
}

.other-service-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.other-service-item:hover {
    background: rgba(40, 16, 64, 0.05);
    color: inherit;
    text-decoration: none;
}

.other-service-icon {
    width: 40px;
    height: 40px;
    background: rgba(40, 16, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    flex-shrink: 0;
}

.other-service-icon i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.other-service-content {
    flex: 1;
}

.other-service-content h6 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.other-service-content small {
    color: #666;
    line-height: 1.4;
}

.other-service-arrow {
    color: #ccc;
}

/* Service CTA Section */
.service-cta-section {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-cta-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.service-cta-floating-shapes div {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: serviceCtaFloat 18s ease-in-out infinite;
}

.service-cta-shape-1 {
    width: 90px;
    height: 90px;
    top: 15%;
    right: 12%;
    animation-delay: 0s;
}

.service-cta-shape-2 {
    width: 65px;
    height: 65px;
    bottom: 25%;
    left: 18%;
    animation-delay: -7s;
}

.service-cta-shape-3 {
    width: 45px;
    height: 45px;
    top: 65%;
    right: 25%;
    animation-delay: -14s;
}

.service-cta-shape-4 {
    width: 75px;
    height: 75px;
    top: 25%;
    left: 10%;
    animation-delay: -5s;
}

.service-cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-hero-title,
    .service-hero-title {
        font-size: 2.5rem;
    }

    .services-hero-description,
    .service-hero-description {
        font-size: 1.1rem;
    }

    .service-card {
        margin-bottom: 2rem;
    }

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

    .service-main-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .service-sidebar {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .services-hero-section,
    .service-hero-section {
        padding: 80px 0 60px 0;
        min-height: 300px;
    }

    .services-hero-title,
    .service-hero-title {
        font-size: 2rem;
    }

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

    .service-content {
        padding: 1.5rem;
    }

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

    .services-cta-section .cta-title,
    .service-cta-section .cta-title {
        font-size: 2rem;
    }

    .services-cta-section .cta-description,
    .service-cta-section .cta-description {
        font-size: 1rem;
    }

    .floating-shapes div {
        opacity: 0.5;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes servicesCtaFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-25px) rotate(90deg);
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
    }
    75% {
        transform: translateY(-25px) rotate(270deg);
    }
}

@keyframes serviceCtaFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
    }
    50% {
        transform: translateY(-45px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
    }
}
