/* Service Pages Styling */

/* Banner Service */
.banner-service {
    min-height: 450px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
}

.banner-service .banner-inner {
    position: relative;
    z-index: 2;
}

.banner-service h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .banner-service h1 {
        font-size: 32px;
    }
}

/* Card Offer Enhancements */
.card-offer {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card-offer .card-image {
    margin-bottom: 20px;
}

.card-offer .card-image img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

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

/* Route Cards */
.card-route {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-route:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.card-route-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.route-from,
.route-to {
    flex: 1;
}

.route-from h5,
.route-to h5 {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 700;
}

.route-arrow {
    margin: 0 15px;
    color: var(--color-brand-2);
}

.card-route-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: auto;
}

.route-detail {
    display: flex;
    align-items: center;
    gap: 8px;
}

.route-detail .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.route-detail .icon img {
    width: 20px;
    height: 20px;
    display: block;
}

.route-price {
    text-align: right;
}

/* Route Card with Background Images */
.card-route-with-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 250px;
    overflow: hidden;
    height: 100%;
}

.card-route-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.card-route-with-bg .card-route-header,
.card-route-with-bg .card-route-info {
    position: relative;
    z-index: 2;
}

.card-route-with-bg .route-from h5,
.card-route-with-bg .route-to h5,
.card-route-with-bg .route-from span,
.card-route-with-bg .route-to span,
.card-route-with-bg .route-detail,
.card-route-with-bg .route-detail span,
.card-route-with-bg .route-price span {
    color: #fff !important;
}

.card-route-with-bg .route-arrow {
    color: #fff;
}

.card-route-with-bg .card-route-header {
    border-bottom-color: rgba(255,255,255,0.3);
}

.card-route-with-bg .route-detail .icon img {
    filter: brightness(0) invert(1);
}

/* Pricing Cards */
.card-pricing {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.card-pricing:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.card-pricing.featured {
    border: 3px solid var(--color-brand-2);
    transform: scale(1.05);
}

.card-pricing.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-brand-2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.card-pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.package-duration {
    display: inline-block;
    background: var(--color-grey-100);
    color: var(--color-brand-2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.package-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-brand-2);
    margin-bottom: 10px;
}

.price-period {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-grey-500);
}

.package-desc {
    color: var(--color-grey-500);
    font-size: 15px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li svg {
    flex-shrink: 0;
    color: var(--color-brand-2);
    margin-top: 2px;
}

/* Fleet Cards */
.card-fleet {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.fleet-image {
    height: 200px;
    overflow: hidden;
}

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

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

.fleet-info {
    padding: 20px;
}

.fleet-info h5 {
    margin-bottom: 10px;
}

/* Step Boxes */
.box-step {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.box-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.number-step {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: var(--color-brand-2);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.box-step h5 {
    margin-bottom: 15px;
}

/* List Ticks */
.list-ticks {
    padding: 0;
}

.list-tick-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.list-tick-item:last-child {
    border-bottom: none;
}

.list-tick-item svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: var(--color-brand-2);
    margin-top: 2px;
}

.list-tick-item span {
    flex: 1;
}

.list-tick-item strong {
    color: var(--color-brand-1);
}

/* Feature Tags */
.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    display: inline-block;
    background: var(--color-grey-100);
    color: var(--color-brand-2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Testimonial Box */
.box-testimonial-wedding {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    color: var(--color-brand-2);
}

.testimonial-author h5 {
    margin-bottom: 5px;
}

.rating {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.rating img {
    width: 20px;
    height: 20px;
}

/* CTA Buttons */
.btn-white-lg {
    background: #fff;
    color: var(--color-brand-2);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-white-lg:hover {
    background: var(--color-grey-100);
    color: var(--color-brand-2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .card-route-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .route-arrow {
        transform: rotate(90deg);
    }
    
    .card-route-info {
        flex-direction: column;
        text-align: center;
    }
    
    .route-price {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .box-testimonial-wedding {
        padding: 30px 20px;
    }
    
    .package-price {
        font-size: 36px;
    }
    
    .banner-service {
        min-height: 350px;
        padding: 100px 0 60px;
    }
}
