/* ===== SERVICE PAGE SPECIFIC STYLES ===== */

/* Service Hero */
.service-hero {
    padding-top: 120px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.05) 0%, rgba(255, 105, 180, 0.05) 100%);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb i {
    font-size: 12px;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-badge-large {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-hero-text h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-hero-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-highlights {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.highlight-item span {
    font-weight: 600;
    color: var(--text-dark);
}

.service-hero-buttons {
    display: flex;
    gap: 20px;
}

.service-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Service Details */
.service-details {
    background: var(--white);
}

.details-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.details-main h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.details-main h3 {
    font-size: 28px;
    font-weight: 600;
    margin: 40px 0 25px;
    color: var(--text-dark);
}

.details-main p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.benefit-card {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 15px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Process Steps */
.process-steps {
    margin-top: 30px;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray);
}

.step-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-content p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

/* Package Info */
.package-info {
    margin-top: 30px;
}

.package-highlight {
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.1) 0%, rgba(255, 105, 180, 0.1) 100%);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
}

.package-highlight i {
    font-size: 40px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.package-highlight h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.package-highlight p {
    margin-bottom: 15px;
}

.package-highlight ul {
    list-style: none;
    padding: 0;
}

.package-highlight ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-light);
}

.package-highlight ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Sidebar */
.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.sidebar-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-dark);
}

/* Pricing Card */
.pricing-card {
    background: var(--light-bg);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    background: var(--white);
    border-radius: 10px;
    position: relative;
}

.price-item.featured {
    background: var(--gradient-primary);
    color: var(--white);
}

.price-item.featured .price,
.price-item.featured .save {
    color: var(--white);
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.save {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.full-width {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

/* Info List */
.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list i {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-list strong {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.info-list span {
    font-size: 14px;
    color: var(--text-light);
}

/* Checklist */
.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.checklist i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
}

/* Service Results */
.service-results {
    background: var(--light-bg);
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--gray);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    font-size: 20px;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.05) 0%, rgba(255, 105, 180, 0.05) 100%);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking-text h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.booking-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.booking-benefits {
    list-style: none;
    padding: 0;
}

.booking-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-dark);
}

.booking-benefits i {
    font-size: 24px;
    color: var(--primary-color);
}

.booking-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.booking-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-dark);
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .service-hero-content,
    .details-grid,
    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-hero-text h1 {
        font-size: 36px;
    }

    .service-hero-image img {
        height: 400px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .details-sidebar {
        order: -1;
    }
}

@media screen and (max-width: 640px) {
    .service-hero {
        padding-top: 100px;
    }

    .service-hero-text h1 {
        font-size: 28px;
    }

    .service-hero-description {
        font-size: 16px;
    }

    .service-highlights {
        flex-direction: column;
        gap: 15px;
    }

    .service-hero-buttons {
        flex-direction: column;
    }

    .service-hero-image img {
        height: 300px;
    }

    .details-main h2 {
        font-size: 28px;
    }

    .details-main h3 {
        font-size: 22px;
    }

    .booking-text h2 {
        font-size: 32px;
    }

    .booking-form-container {
        padding: 30px 20px;
    }
}
</service-page.css>