/* =============================================
   TOTAL CHILD PACKAGE - SERVICE PAGE STYLES
   FULLY RESPONSIVE
   ============================================= */

.service-page-header {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #021936 0%, #0a2a4a 100%);
    overflow: hidden;
    text-align: center;
}

.service-page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

.service-page-header__title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-page-header__subtitle {
    font-size: 18px;
    color: #cbd5e0;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.service-breadcrumb li {
    color: #0EBD66;
    font-size: 14px;
}

.service-breadcrumb li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-breadcrumb li a:hover {
    color: #0EBD66;
}

.service-overview {
    padding: 80px 0;
    background: #ffffff;
}

.service-overview__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-tag {
    color: #0EBD66;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title {
    color: #1a202c;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-text {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.7;
}

/* Package Highlight */
.package-highlight {
    background: linear-gradient(135deg, #0EBD66 0%, #0a9e55 100%);
    padding: 60px 0;
    color: #ffffff;
}

.package-highlight__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.package-highlight__price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.package-highlight__text {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Three Panels Grid */
.panels-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
}

.panel-card {
    flex: 1;
    min-width: calc(33.33% - 20px);
    background: #f8fafc;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.panel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #0EBD66;
}

.panel-card__icon {
    width: 80px;
    height: 80px;
    background: #0EBD66;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.panel-card__icon i {
    font-size: 38px;
    color: #ffffff;
}

.panel-card__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a202c;
}

.panel-card__text {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
}

/* What's Included Section */
.included-section {
    padding: 80px 0;
    background: #f8fafc;
}

.included-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 50px;
}

.included-item {
    flex: 1;
    min-width: calc(33.33% - 17px);
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.included-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.included-item__icon i {
    font-size: 30px;
    color: #0EBD66;
}

.included-item__content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a202c;
}

.included-item__content p {
    font-size: 13px;
    color: #4a5568;
    margin: 0;
}

/* Benefits Comparison */
.comparison-section {
    padding: 80px 0;
    background: #ffffff;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.comparison-card {
    flex: 1;
    min-width: calc(33.33% - 20px);
    background: #f8fafc;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.comparison-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
    padding-bottom: 15px;
    border-bottom: 2px solid #0EBD66;
}

.comparison-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.comparison-card__list li {
    padding: 10px 0;
    color: #4a5568;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-card__list li i {
    color: #0EBD66;
    font-size: 14px;
}

.comparison-card--featured {
    background: linear-gradient(135deg, #0EBD66 0%, #0a9e55 100%);
    color: #ffffff;
    transform: scale(1.02);
}

.comparison-card--featured .comparison-card__title {
    color: #ffffff;
    border-bottom-color: rgba(255,255,255,0.3);
}

.comparison-card--featured .comparison-card__list li {
    color: rgba(255,255,255,0.9);
}

.comparison-card--featured .comparison-card__list li i {
    color: #ffffff;
}

/* Savings Banner */
.savings-banner {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
}

.savings-banner__title {
    font-size: 28px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 10px;
}

.savings-banner__text {
    font-size: 16px;
    color: #b45309;
}

.cta-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #0EBD66 0%, #0a9e55 100%);
    text-align: center;
}

.cta-section__title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-section__text {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background: #ffffff;
    color: #0EBD66;
    padding: 14px 35px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 50px;
}

.faq-item {
    flex: 1;
    min-width: calc(50% - 12.5px);
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-question i {
    color: #0EBD66;
    font-size: 20px;
}

.faq-answer {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 1199px) {
    .service-page-header__title { font-size: 44px; }
    .section-title { font-size: 32px; }
    .package-highlight__title { font-size: 40px; }
    .cta-section__title { font-size: 32px; }
}

@media (max-width: 991px) {
    .service-page-header { padding: 80px 0; }
    .service-page-header__title { font-size: 38px; }
    .service-overview { padding: 60px 0; }
    .section-title { font-size: 28px; }
    .panel-card { min-width: calc(50% - 15px); }
    .included-item { min-width: calc(50% - 13px); }
    .comparison-card { min-width: calc(50% - 15px); }
    .faq-item { min-width: 100%; }
    .cta-section { padding: 50px 0; }
    .cta-section__title { font-size: 28px; }
    .savings-banner__title { font-size: 24px; }
}

@media (max-width: 767px) {
    .service-page-header { padding: 60px 0; }
    .service-page-header__title { font-size: 32px; }
    .service-page-header__subtitle { font-size: 16px; }
    .section-title { font-size: 24px; }
    .package-highlight__title { font-size: 32px; }
    .package-highlight__price { font-size: 28px; }
    .panel-card { min-width: 100%; }
    .included-item { min-width: 100%; }
    .comparison-card { min-width: 100%; }
    .comparison-card--featured { transform: none; }
    .faq-question { font-size: 16px; }
}

@media (max-width: 575px) {
    .service-page-header__title { font-size: 28px; }
    .service-breadcrumb { font-size: 12px; }
    .savings-banner { padding: 25px; }
    .savings-banner__title { font-size: 20px; }
    .cta-btn { padding: 12px 25px; font-size: 14px; }
}