.w-full {
    width: 100%;
}
.banner {
    position: relative;
    padding: 180px 0 150px;
    background: linear-gradient(135deg, #2c5364, #203a43, #0f2027);
    color: var(--white);
    overflow: hidden;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1650&q=80")
        center/cover;
    opacity: 0.15;
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.banner p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.banner .btn {
    padding: 16px 32px;
    margin-right: 16px;
    margin-bottom: 16px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.banner .btn-light {
    background-color: var(--white);
    color: var(--primary);
}

.banner .btn-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.banner .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), #5271ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* FILTER STYLES */
.filter-section {
    position: relative;
    margin-top: -80px;
    z-index: 10;
    padding-bottom: 40px;
}

.filter-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.filter-card h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.search-box {
    position: relative;
    margin-bottom: 24px;
}

.search-box .form-control {
    height: 56px;
    padding: 10px 20px 10px 56px;
    border-radius: 30px;
    border: 1px solid var(--gray-light);
    background-color: var(--gray-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(71, 185, 250, 0.1);
}

.search-box .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.filter-select .form-select {
    height: 56px;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid var(--gray-light);
    background-color: var(--gray-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.filter-select .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(71, 185, 250, 0.1);
}

.category-filter {
    margin-top: 32px;
}

.filter-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark);
}

.category-nav .nav-link {
    color: var(--text-secondary);
    background-color: var(--gray-light);
    border-radius: 30px;
    padding: 12px 24px;
    margin-right: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-nav .nav-link:hover {
    background-color: var(--primary-light);
    color: var(--primary);
}

.category-nav .nav-link.active {
    background-color: var(--primary);
    color: var(--white);
}

/* SERVICES STYLES */
.services-section {
    padding: 40px 0 100px;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
    border: 1px solid var(--gray-light);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.service-card:hover .service-img {
    transform: scale(1.08);
}

.service-content {
    padding: 30px;
}

.badge-container {
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-badge {
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    min-height: 70px; /* 1.5 line-height * 2 lines */
}

.service-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
    min-height: 104px;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(71, 185, 250, 0.25);
    color: var(--primary);
}

/* FEATURES STYLES */
.features-section {
    padding: 100px 0;
    background-color: var(--white);
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}

.feature-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid var(--gray-light);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary);
    color: var(--white);
}

.feature-icon {
    font-size: 30px;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* TESTIMONIALS STYLES */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
    border: 1px solid var(--gray-light);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.testimonial-content {
    position: relative;
    padding-top: 30px;
    margin-bottom: 30px;
}

.testimonial-content::before {
    content: "\201C";
    font-family: Georgia, serif;
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 120px;
    color: var(--primary-light);
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.7;
}

.client-info {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--gray-light);
    padding-top: 24px;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 16px;
    border: 3px solid var(--primary-light);
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.client-details h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.client-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.client-rating {
    margin-left: auto;
}

.client-rating i {
    color: #ffd700;
    font-size: 14px;
    margin-left: 2px;
}

/* CALL TO ACTION STYLES */
.cta-section {
    background: linear-gradient(135deg, var(--primary), #5271ff);
    padding: 100px 0;
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background-color: var(--white);
    color: var(--primary);
    font-weight: 700;
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* SERVICE DETAIL */
.service-detail-section {
    padding: 80px 0;
}

.service-detail-img {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    position: relative;
}

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

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

.badge-container {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-badge {
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s ease;
}

.category-badge:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(71, 185, 250, 0.2);
}

.service-detail-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 15px;
}

.service-detail-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.service-description {
    margin-bottom: 30px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* PROGRAM DETAILS CARDS */
.program-details-section {
    margin-bottom: 40px;
}

.program-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.program-detail-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.program-detail-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    z-index: -1;
    transition: height 0.3s ease;
}

.program-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.program-detail-card:hover::before {
    height: 100%;
    opacity: 0.1;
}

.program-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.program-detail-card:hover .program-icon {
    transform: scale(1.1);
}

.program-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.program-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.program-detail-card:hover .program-value {
    color: var(--primary);
}

.program-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* DELIVERY OPTIONS */
.delivery-options {
    margin-bottom: 40px;
}

.delivery-options h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.delivery-options h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.delivery-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.delivery-card {
    border: 1px solid var(--gray-light);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.delivery-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        var(--primary-light),
        rgba(71, 185, 250, 0.03)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.delivery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.delivery-card:hover::before {
    opacity: 1;
}

.delivery-card.active {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.delivery-icon {
    background-color: var(--primary-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.delivery-card:hover .delivery-icon {
    transform: scale(1.1);
}

.delivery-card.active .delivery-icon {
    background-color: var(--primary);
    color: var(--white);
}

.delivery-icon i {
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.delivery-card.active .delivery-icon i {
    color: var(--white);
}

.delivery-content {
    position: relative;
    z-index: 1;
}

.delivery-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.delivery-card:hover .delivery-content h4 {
    color: var(--primary);
}

.delivery-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.delivery-check {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    z-index: 1;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.delivery-card.active .delivery-check {
    opacity: 1;
    transform: scale(1);
}

/* SERVICE HIGHLIGHTS */
.service-highlights {
    margin-bottom: 40px;
}

.service-highlights h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.service-highlights h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.highlights-list {
    list-style: none;
    padding-left: 0;
}

.highlights-list li {
    padding: 15px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.highlights-list li:hover {
    transform: translateX(5px);
    border-color: var(--primary-light);
}

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

.highlights-list li i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.highlights-list li:hover i {
    transform: scale(1.2);
}

/* COACH PROFILE CARD */
.coach-profile-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
    position: relative;
}

.coach-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Coach status flags */
.coach-status-flags {
    position: absolute;
    top: 20px;
    right: 60px;
    z-index: 2;
    display: flex;
    gap: 10px;
}
.coach-status-flags img {
    width: 100px;
    height: auto;
}

.status-flag {
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.status-flag i {
    margin-right: 5px;
    font-size: 0.8rem;
}

.status-flag.verified {
    background-color: var(--verified);
    color: white;
}

.status-flag.recommended {
    background-color: var(--recommended);
    color: white;
}

.status-flag:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.coach-profile-header {
    background-color: #47b9fa1a;
    padding: 30px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.coach-profile-header::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(71, 185, 250, 0.2);
    z-index: 0;
}

.coach-profile-header::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(71, 185, 250, 0.15);
    z-index: 0;
}

.coach-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--white);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.coach-profile-card:hover .coach-img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(71, 185, 250, 0.3);
}

.coach-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-header-info {
    position: relative;
    z-index: 1;
}

.coach-header-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.coach-title {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

/* ICF Credentials */
.icf-credentials {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.credential-badge {
    background-color: var(--white);
    border-radius: 5px;
    padding: 4px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.credential-badge img {
    height: 16px;
    margin-right: 5px;
}

.credential-badge.pcc {
    border-left: 3px solid #3182ce; /* Blue for PCC */
}

.credential-badge.mcc {
    border-left: 3px solid #805ad5; /* Purple for MCC */
}

.credential-badge.acc {
    border-left: 3px solid #38a169; /* Green for ACC */
}

.credential-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.coach-profile-body {
    padding: 30px;
}

.coach-profile-body p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
}

.coach-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    text-align: center;
}

.coach-stat-item {
    padding: 20px 15px;
    background-color: #edf8ff;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.coach-stat-item::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(71, 185, 250, 0.2);
    z-index: 0;
}

.coach-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.coach-stat-icon {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.coach-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    display: block;
    position: relative;
    z-index: 1;
}

.coach-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* BOOKING CARD */
.booking-card {
    background-color: var(--white);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 120px;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}
.booking-card::-webkit-scrollbar {
    width: 4px;
}
.booking-card::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.booking-card::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.booking-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.booking-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 10px;
}

.booking-card h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}

.price-container {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-right: 10px;
}

.price-period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.booking-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.booking-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    border-bottom: 1px dashed var(--gray-light);
    transition: all 0.3s ease;
}

.booking-features li:hover {
    transform: translateX(5px);
    color: var(--text-primary);
    border-color: var(--primary-light);
}

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

.booking-features li i {
    color: var(--primary);
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.booking-features li:hover i {
    transform: scale(1.2);
}

.btn-booking {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
    width: 100%;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-booking::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-booking:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(71, 185, 250, 0.25);
    color: var(--white);
}

.btn-booking:hover::before {
    width: 100%;
}

.btn-outline-booking {
    background-color: transparent;
    border: 1px solid var(--primary);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-booking::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-light);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-outline-booking:hover {
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(71, 185, 250, 0.1);
}

.btn-outline-booking:hover::before {
    width: 100%;
}

.booking-guarantee {
    text-align: center;
    margin-top: 25px;
    padding: 15px;
    background-color: var(--primary-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.booking-guarantee:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.booking-guarantee i {
    color: var(--primary);
    margin-right: 8px;
}

/* FAQ SECTION */
.faq-section {
    padding: 0 0 40px;
}

.faq-section h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.faq-section h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.accordion-item {
    border: 1px solid var(--gray-light);
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-light);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    background-color: var(--white);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: var(--primary-light);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(71, 185, 250, 0.25);
}

.accordion-body {
    padding: 0 25px 25px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* RELATED SERVICES */
.related-services {
    padding: 80px 0;
    background-color: #edf8ff;
    position: relative;
    overflow: hidden;
}

.related-services::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(71, 185, 250, 0.1);
    z-index: 0;
}

.related-services::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(71, 185, 250, 0.1);
    z-index: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
    border: 1px solid var(--gray-light);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-card:hover .service-img {
    transform: scale(1.08);
}

.service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 230px; /* Fixed height for content area */
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(71, 185, 250, 0.25);
    color: var(--white);
}

.btn-primary:hover::before {
    width: 100%;
}

/* CALL TO ACTION */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 80px 0;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3")
        center/cover;
    opacity: 0.05;
    z-index: 0;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background-color: var(--white);
    color: var(--primary);
    font-weight: 700;
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-section .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    transition: width 0.4s ease;
    z-index: -1;
}

.cta-section .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-section .btn:hover::before {
    width: 100%;
}
.certification-popover {
    max-width: 500px;
    padding: 10px;
}

.certification-popover-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.certification-popover h5 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--primary);
}

.certification-popover p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Custom Popover Styling */
.popover {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.popover-body {
    padding: 12px;
}
