/* ==========================================================================
   VACTIP - Services Page Styles
   ========================================================================== */

/* Services Hero Section */
.services-hero {
    position: relative;
    height: 550px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--dark-bg);
}

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 11, 13, 0.85) 0%,
        rgba(10, 11, 13, 0.6) 50%,
        rgba(10, 11, 13, 0.9) 100%
    );
    z-index: 2;
}

.services-hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 40px 40px 40px;
    position: relative;
    z-index: 3;
    text-align: center;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.services-hero-title span.white {
    color: var(--text-white);
}

.services-hero-title span.green {
    background: var(--gradient-green);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: block;
}

.services-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 500;
    color: var(--text-light);
    margin-top: 15px;
    letter-spacing: 0.02em;
}

/* Service Page Common Layouts */
.section-light {
    background-color: #ffffff;
    color: #1a1c20;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.section-accent-light {
    background-color: #f7faf6;
    color: #1a1c20;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.section-dark {
    background-color: var(--dark-card);
    color: var(--text-white);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.section-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-grid .text-column {
        order: 2;
    }
    
    .section-grid .image-column {
        order: 1;
    }
}

/* Overview Intro Section */
.services-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #0c0e12;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.intro-heading span.green {
    color: var(--primary-green);
}

.intro-text {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4d55;
}

/* Detailed Service Item Styling */
.service-text-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-tag-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-tag {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--primary-green);
    font-family: var(--font-body);
}

.section-tag-line {
    width: 60px;
    height: 2px;
    background-color: var(--primary-green);
}

.service-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.05;
    color: #0c0e12;
    text-transform: uppercase;
}

.section-dark .service-heading {
    color: #ffffff;
}

.service-heading span.green {
    color: var(--primary-green);
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4d55;
}

.section-dark .service-description {
    color: var(--text-muted);
}

.service-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.service-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #2b2e35;
}

.section-dark .service-bullet-item {
    color: var(--text-light);
}

.service-bullet-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(110, 189, 38, 0.12);
    border: 1.5px solid var(--primary-green);
    color: var(--primary-green);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.btn-service-action {
    background-color: var(--primary-green);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 13px 26px;
    border-radius: var(--border-radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(110, 189, 38, 0.2);
    margin-top: 15px;
    transition: var(--transition-smooth);
}

.btn-service-action:hover {
    background-color: #7ccd2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.service-image-column {
    position: relative;
}

.service-img-wrapper {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition-smooth);
}

.section-dark .service-img-wrapper {
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.05);
}

.service-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-img-wrapper:hover img {
    transform: scale(1.05);
}

/* FAQ Accordion Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.faq-header .section-tag-wrapper {
    justify-content: center;
}

.faq-header .section-tag-line-left {
    width: 60px;
    height: 2px;
    background-color: var(--primary-green);
}

.faq-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
}

.faq-title span.green {
    color: var(--primary-green);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background-color: #121418;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: rgba(110, 189, 38, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 30px;
    text-align: left;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-body);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-question i {
    font-size: 14px;
    color: var(--primary-green);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .section-light,
    .section-dark,
    .section-accent-light {
        padding: 60px 20px;
    }
    
    .services-hero {
        height: 380px;
    }
    
    .services-hero-container {
        padding: 100px 20px 20px 20px;
    }
    
    .section-grid {
        gap: 30px;
    }
}

@media (max-width: 580px) {
    .services-hero {
        height: 300px;
    }
    
    .services-hero-container {
        padding: 90px 15px 15px 15px;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding-bottom: 18px;
    }
}

/* Service Detail Action Buttons */
.service-actions-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.service-actions-row .btn-service-action {
    margin-top: 0;
}

.btn-service-secondary {
    background-color: transparent !important;
    border: 2px solid var(--primary-green) !important;
    color: #1a1c20 !important;
    box-shadow: none !important;
}

.btn-service-secondary:hover {
    background-color: var(--primary-green) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px var(--primary-glow) !important;
}

