/* Service Card Design - Refined */
.service-card {
    background: #fff;
    width: 100%;
    text-align: center;
    transition: var(--transition);
    position: relative;
    padding-bottom: 20px;
    border-radius: 20px;
    /* added overall radius */
    overflow: hidden;
    /* contain content */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    /* subtle shadow base */
}

.service-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.service-card__img-box {
    position: relative;
    margin-bottom: 20px;
    /* reduced */
    overflow: hidden;
    /* Tighter organic shape */
    border-radius: 0 0 50% 50% / 0 0 20px 20px;
    /* Curve at bottom */
    height: 200px;
    /* Reduced height */
}

.service-card__img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.service-card__content {
    padding: 0 25px 15px;
    /* More padding */
}

.service-card__title {
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    /* Reduced from 22 */
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.service-card__meta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    color: #888;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
    /* lighter border */
    padding-bottom: 12px;
}

.service-card__meta-item i {
    margin-right: 6px;
    color: var(--primary-color);
    font-size: 16px;
}

.service-card__price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.service-card__desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card__btn .btn {
    border-radius: 30px;
    /* Pill shape */
    padding: 0 25px;
    height: 45px;
    line-height: 44px;
    font-size: 13px;
    letter-spacing: 1px;
}

/* =================================
   SERVICE DETAIL PAGE - MODERN REDESIGN
   ================================= */

/* Breadcrumb Section */
.service-breadcrumb {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.service-breadcrumb__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-breadcrumb__back:hover {
    color: var(--primary-color);
    gap: 12px;
}

.service-breadcrumb__back i {
    font-size: 16px;
}

/* Service Hero Section */
.service-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 124px 0px 11px 0;
    border-bottom: 1px solid #e9ecef;
}

.service-hero__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-hero__badge {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.service-hero__title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.service-hero__subtitle {
    font-size: 18px;
    color: #666;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.service-hero__meta {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.service-hero__meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-hero__meta-item i {
    font-size: 32px;
    color: var(--primary-color);
}

.service-hero__meta-item .label {
    display: block;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.service-hero__meta-item .value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Service Detail Content Section */
.service-detail-section {
    padding: 80px 0 100px;
    background: #fff;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
}

/* Main Content Column */
.service-detail-main {
    min-width: 0;
}

.service-detail-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-detail-image__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.service-detail-block {
    margin-bottom: 50px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #f0f0f0;
}

.section-title__icon {
    font-size: 28px;
    color: var(--primary-color);
}

.service-detail-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-detail-description p:last-child {
    margin-bottom: 0;
}

/* Lists in description */
.service-detail-description ul,
.service-detail-description ol {
    margin: 20px 0;
    padding-left: 25px;
    list-style: initial !important;
}

.service-detail-description ul {
    list-style-type: disc !important;
}

.service-detail-description ol {
    list-style-type: decimal !important;
}

.service-detail-description ul li,
.service-detail-description ol li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
    padding-left: 8px;
    display: list-item !important;
    list-style: inherit !important;
}

.service-detail-description ul li::marker,
.service-detail-description ol li::marker {
    color: #333;
    font-weight: 600;
}

.service-detail-description ul ul,
.service-detail-description ol ol,
.service-detail-description ul ol,
.service-detail-description ol ul {
    margin: 10px 0;
}

.service-detail-description strong,
.service-detail-description b {
    color: #333;
    font-weight: 600;
}

/* Features List */
.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-features-list li:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.feature-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #094536 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(13, 92, 71, 0.3);
    transition: all 0.3s ease;
}

.service-features-list li:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(13, 92, 71, 0.4);
}

.feature-icon i {
    font-size: 22px;
}

.feature-content {
    flex: 1;
    padding-top: 2px;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.feature-content p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* Benefits Section */
.service-benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.benefit-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card__icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-card__icon i {
    font-size: 48px;
}

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

.benefit-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Sidebar Column */
.service-detail-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* Booking Card */
.service-booking-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

.service-booking-card__header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #000 100%);
    padding: 30px;
    text-align: center;
    border-radius: 18px;
}

.booking-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
}

.service-booking-card__features {
    padding: 30px;
    border-bottom: 1px solid #e9ecef;
}

.quick-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: #444;
}

.quick-feature i {
    color: #28a745;
    font-size: 18px;
}

.service-booking-card__action {
    padding: 30px;
}

.btn--large {
    width: 100%;
    height: 56px;
    line-height: 56px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn--primary {
    background: #25D366;
    color: #fff;
    border: none;
}

.btn--primary:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.service-booking-card__note {
    padding: 0 30px 30px;
    display: flex;
    gap: 10px;
    align-items: start;
}

.service-booking-card__note i {
    color: #999;
    font-size: 16px;
    margin-top: 2px;
}

.service-booking-card__note p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Info Card */
.service-info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.service-info-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 15px 0;
}

.service-info-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.link-arrow:after {
    content: "→";
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    gap: 12px;
}

.link-arrow:hover:after {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-sidebar {
        position: static;
    }

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

@media (max-width: 768px) {
    .service-hero__title {
        font-size: 36px;
    }

    .service-hero__subtitle {
        font-size: 16px;
    }

    .service-hero__meta {
        gap: 30px;
    }

    .service-hero__meta-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .service-detail-section {
        padding: 50px 0 60px;
    }

    .service-detail-image {
        height: 300px;
    }

    .section-title {
        font-size: 24px;
    }

    .benefits-grid {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 40px 0;
    }

    .service-hero__title {
        font-size: 28px;
    }

    .price-tag__amount {
        font-size: 40px;
    }

    .service-features-list li {
        flex-direction: column;
        gap: 15px;
    }
}
