/* Spa Hero Swiper Styles */
#spa-blog .main-image,
#spa-blog .blog-img {
    width: 100%;
    height: 850px;
    overflow: hidden;
    position: relative;
}

.hero-swiper-container {
    width: 100%;
    height: 850px;
    position: relative;
    overflow: hidden;
}

    .hero-swiper-container .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 850px;
    }

        .hero-swiper-container .swiper-slide img {
            width: 100%;
            height: 850px;
            object-fit: cover;
            object-position: center;
        }

.hero-swiper-pagination {
    position: absolute !important;
    bottom: 30px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    z-index: 100 !important;
    display: flex !important;
    gap: 8px;
    justify-content: center !important;
    align-items: center !important;
    width: auto !important;
    text-align: center !important;
    visibility: visible !important;
    pointer-events: auto !important;
    opacity: 1 !important;
}

    .hero-swiper-pagination .swiper-pagination-bullet {
        width: 40px !important;
        height: 3px !important;
        background: rgba(255, 255, 255, 0.9) !important;
        opacity: 1 !important;
        border-radius: 2px !important;
        transition: all 0.3s ease;
        cursor: pointer;
        margin: 0 4px !important;
    }

    .hero-swiper-pagination .swiper-pagination-bullet-active {
        background: #676f56 !important;
        width: 50px !important;
        height: 4px !important;
    }

.hero-swiper-button-prev,
.hero-swiper-button-next {
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

    .hero-swiper-button-prev:hover,
    .hero-swiper-button-next:hover {
        background: transparent;
    }

    .hero-swiper-button-prev::after,
    .hero-swiper-button-next::after {
        font-size: 25px !important;
        color: white !important;
    }

/* Hero Responsive Styles */
@media (max-width: 1400px) {
    #spa-blog .main-image,
    #spa-blog .blog-img,
    .hero-swiper-container,
    .hero-swiper-container .swiper-slide,
    .hero-swiper-container .swiper-slide img {
        height: 700px;
    }
}

@media (max-width: 992px) {
    #spa-blog .main-image,
    #spa-blog .blog-img,
    .hero-swiper-container,
    .hero-swiper-container .swiper-slide,
    .hero-swiper-container .swiper-slide img {
        height: 600px;
    }
}

@media (max-width: 768px) {
    #spa-blog .main-image,
    #spa-blog .blog-img,
    .hero-swiper-container,
    .hero-swiper-container .swiper-slide,
    .hero-swiper-container .swiper-slide img {
        height: 500px;
    }
    
    .hero-swiper-pagination {
        bottom: 20px !important;
    }
    
    .hero-swiper-pagination .swiper-pagination-bullet {
        width: 30px !important;
        height: 2.5px !important;
    }
    
    .hero-swiper-pagination .swiper-pagination-bullet-active {
        width: 40px !important;
        height: 3.5px !important;
    }
}

@media (max-width: 576px) {
    #spa-blog .main-image,
    #spa-blog .blog-img,
    .hero-swiper-container,
    .hero-swiper-container .swiper-slide,
    .hero-swiper-container .swiper-slide img {
        height: 400px;
    }
}

/* Category Cards - Soft Rounded Luxury Design */
.category-grid-wrapper {
    padding: 20px 0 40px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.category-card {
    background: transparent;
    overflow: visible;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    display: flex;
    flex-direction: column;
}

    .category-card:hover {
        transform: translateY(-3px);
    }

.category-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.category-card-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

    .category-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.4s ease;
        display: block;
        border-radius: 20px;
    }

.category-card:hover .category-card-image img {
    transform: scale(1.08);
}

.category-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6b7a60 0%, #959E7B 100%);
    color: white;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
    font-family: "Alexandria", sans-serif;
}

.category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%); */
    padding: 15px 15px;
    transition: all 0.3s ease;
}

.category-card:hover .category-card-overlay {
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%); */
}

.category-card-title {
    color: #fff;
    font-size: var(--font-size-h5);
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    letter-spacing: 1.2px;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: "Alexandria", sans-serif;
}

.category-card-content {
    padding: 12px 0 0 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.category-description {
    color: white;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    display: block !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    text-overflow: unset !important;
}

.category-description p {
    margin: 0;
}

.category-learn-more {
    margin-top: 15px;
}

/* Legacy styles - hide old elements */
.category-expand-icon,
.category-title-wrapper,
.category-title-accent,
.category-card-inner,
.description-ornament,
.service-list,
.category-details-btn {
    display: none;
}

.service-list-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(44, 62, 80, 0.15);
}

    .service-list-header h3 {
        color: #2c3e50;
        font-size: 24px;
        font-weight: 700;
        margin: 0;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .service-list-header .header-line {
        flex: 1;
        height: 2px;
        background: linear-gradient(to right, rgba(44, 62, 80, 0.2), transparent);
    }

.service-list-item {
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid rgba(44, 62, 80, 0.08);
    transition: all 0.3s ease;
}

    .service-list-item:hover {
        background: rgba(255, 255, 255, 0.8);
        border-color: rgba(44, 62, 80, 0.15);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        transform: translateY(-2px);
    }

    .service-list-item:last-child {
        margin-bottom: 0;
    }

.service-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-name-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-bullet {
    width: 8px;
    height: 8px;
    background: #2c3e50;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(44, 62, 80, 0.4);
}

.service-name {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-info {
    font-size: 16px !important;
    color: #2c3e50 !important;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.7;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    vertical-align: middle;
}

    .service-info:hover {
        opacity: 1;
        transform: scale(1.15);
    }

    .service-info:focus {
        outline: none;
        opacity: 1;
    }

.service-details {
    display: flex;
    align-items: center;
    padding-left: 18px;
    gap: 20px;
}

.service-time {
    color: #6c757d;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .service-time i {
        color: #2c3e50;
        font-size: 14px;
    }

.service-price {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: rgba(44, 62, 80, 0.08);
    padding: 8px 16px;
    border-radius: 8px;
    margin-left: auto;
}

.service-separator {
    margin: 50px auto;
    width: 70%;
    padding: 20px 0;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.separator-icon {
    color: #2c3e50;
    font-size: 12px;
    opacity: 0.5;
}

.separator-text {
    color: #fff;
    font-style: italic;
    font-size: 18px;
    text-align: center;
}

/* Collapsible functionality - only on mobile/tablet (1 column layout) */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 30px;
    }

    .category-card-image-wrapper {
        height: 180px;
    }

    .category-card-title {
        font-size: 16px;
        letter-spacing: 1px;
        padding: 12px;
    }

    .category-card-overlay {
        padding: 12px;
    }

    .category-card-content {
        padding: 10px 0 0 0;
    }

    .category-description {
        font-size: 12px;
        margin-bottom: 8px;
    }
}

/* Facilities Section */
.facilities-card {
    background: transparent;
    padding: 50px 0;
    border: none;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

    .facilities-card .row {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
    }

.facilities-card .col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.facilities-title {
    font-family: "Alexandria", sans-serif;
    font-size: var(--font-size-h2);
    font-weight: 400;
    color: white;
    margin-bottom: 25px;
    margin-top: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.facility-item {
    font-size: 16px;
    color: white;
    padding: 15px 0;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    place-content:center;
    gap: 12px;
}

    .facility-item:hover {
        color: rgba(255, 255, 255, 0.9);
        padding-left: 5px;
    }

.facility-item i,
.facility-item svg,
.facility-item img,
.facility-icon {
    flex-shrink: 0;
    color: white;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: brightness(0) invert(1);
    margin-right: 0;
}


.facility-item span {
    line-height: 1.5;
    font-weight: 200;
    letter-spacing: 0.2px;
}

/* Facilities Responsive Design */
@media (max-width: 768px) {
    .facilities-card {
        padding: 0 15px;
    }

        .facilities-card .col-md-4 {
            flex: 0 0 49.5%;
            max-width: 49.5%;
        }
    
    .facilities-title {
        font-size: var(--font-size-h5);
        margin-bottom: 20px;
    }

    .facility-item {
        font-size: var(--font-size-body-small);
        padding: 12px 0;
        gap: 10px;
        justify-content: flex-start;
    }
    
    .facility-item i,
    .facility-item svg,
    .facility-item img,
    .facility-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 576px) {    
    .facilities-title {
        font-size: var(--font-size-h6);
        margin-bottom: 15px;
        letter-spacing: 1px;
    }

    .facility-item {
        font-size: var(--font-size-body-xs);
        padding: 10px 0;
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .category-grid {
        gap: 40px;
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }

    .category-card-title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }

    .category-card-image-wrapper {
        height: 350px;
    }

    .category-card-overlay {
        padding: 15px;
    }

    .category-card-title {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .category-card-content {
        padding: 12px 0 0 0;
    }

    .category-description {
        font-size: 13px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .category-grid {
        gap: 20px;
        padding: 0 15px;
    }

    .category-card {
        border-radius: 10px;
    }

    .category-card-image-wrapper {
        height: 180px;
        border-radius: 16px;
    }

    .category-card-image {
        border-radius: 16px;
    }

    .category-card-image img {
        border-radius: 16px;
    }

    .category-card-overlay {
        padding: 12px;
    }

    .category-card-title {
        font-size: 16px;
        letter-spacing: 0.8px;
    }

    .category-card-content {
        padding: 10px 0 0 0;
    }

    .category-description {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .service-list-item {
        padding: 18px 12px;
        border-radius: 8px;
        margin-bottom: 12px;
    }

    .service-content-wrapper {
        gap: 12px;
    }

    .service-name {
        font-size: 15px;
    }

    .service-bullet {
        width: 6px;
        height: 6px;
    }

    .service-time {
        font-size: 13px;
    }

        .service-time i {
            font-size: 13px;
        }

    .service-price {
        font-size: 18px;
        padding: 5px 12px;
    }

    .service-list-header {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

        .service-list-header h3 {
            font-size: 19px;
        }

    .category-expand-icon {
        width: 40px;
        height: 40px;
    }

        .category-expand-icon svg {
            width: 18px;
            height: 18px;
        }

    .service-separator {
        margin: 20px 0;
        padding: 15px 0;
    }

    .separator-text {
        font-size: 13px;
    }

    .separator-icon {
        font-size: 10px;
    }
}

/* Detail Page Hero - Modern Diagonal Design */
.detail-hero {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    margin-bottom: 100px;
    margin-top: -80px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

    .detail-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(52, 73, 94, 0.6) 50%, transparent 100%);
        z-index: 1;
        opacity: 0.9;
    }

    .detail-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        filter: brightness(0.85);
    }

    .detail-hero:hover img {
        transform: scale(1.08);
    }

.detail-hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    text-align: left;
    z-index: 2;
    padding: 0 80px;
    max-width: 1400px;
    margin: 0 auto;
    animation: heroContentFade 1.2s ease-out;
}

    .detail-hero-overlay::before {
        content: '';
        position: absolute;
        top: -30px;
        left: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.3));
        border-radius: 10px;
        animation: lineExpand 1.5s ease-out;
    }

.breadcrumb-nav {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    margin-bottom: 25px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    animation: fadeSlideDown 0.8s ease-out 0.2s both;
}

    .breadcrumb-nav a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
    }

        .breadcrumb-nav a:hover {
            color: #fff;
            letter-spacing: 3px;
        }

.detail-hero-title {
    color: #fff;
    font-size: var(--font-size-hero);
    font-weight: 800;
    margin: 0;
    text-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.5),
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 16px 48px rgba(0, 0, 0, 0.2);
    letter-spacing: 6px;
    text-transform: uppercase;
    font-family: "Aleo", serif;
    line-height: 1.2;
    animation: fadeSlideUp 0.8s ease-out 0.4s both;
    position: relative;
}

.detail-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px 120px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin: 0 !important;
    font-weight: 400;
}

    .back-button::before {
        content: '←';
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .back-button:hover {
        opacity: 0.7;
    }

    .back-button:hover::before {
        transform: translateX(-5px);
    }

.detail-intro {
    margin-bottom: 90px;
    text-align: center;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 70px;
    /* background: rgba(255, 255, 255, 0.7); */
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(44, 62, 80, 0.08);
    color: #fff;
}

    .detail-intro h2 {
        font-size: 38px;
        font-weight: 400;
        color: #fff;
        margin-bottom: 35px;
        margin-top: 0;
        line-height: 1.6;
        font-family: "Aleo", serif;
        font-style: italic;
        letter-spacing: 1px;
    }

    .detail-intro p {
        font-size: 17px;
        line-height: 2.1;
        color: #fff;;
        margin-bottom: 0;
        font-weight: 300;
    }

.services-section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
.services-section-header .services-section-header-title {
    color: #ffffff;
    font-family: "Alexandria", sans-serif;
}

    .services-section-header h3 {
        font-size: var(--font-size-h2);
        color: #2c3e50;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin: 0;
        position: relative;
        display: inline-block;
        font-weight: 400;
    }
.services-section-header h3::before {
    left: -40px;
}

.services-section-header h3::after {
    right: -40px;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-detail-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

 .service-detail-card:hover {
     background: rgba(255, 255, 255, 0.1);
     border-top-color: white;
     transform: translateY(-2px);
 }

.service-detail-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-detail-description {
    font-size: var(--font-size-card-subtitle);
    font-weight: 200;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: auto;
    flex-grow: 1;
}

    .service-detail-description p {
        margin: 0;
    }

.service-detail-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-detail-time {
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 400;
    white-space: nowrap;
}

    .service-detail-time i {
        color: white;
        font-size: 13px;
    }

.service-detail-price {
    font-size: 16px;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

/* Keyframe Animations */
@keyframes heroContentFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Detail Page Responsive Design */
@media (max-width: 1200px) {
    .detail-content-wrapper {
        padding: 0 60px 100px;
    }

    .services-detail-grid {
        gap: 40px;
    }

    .detail-hero-title {
        font-size: var(--font-size-hero);
        letter-spacing: 6px;
    }
}

@media (max-width: 992px) {
    .services-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .detail-hero {
        height: 480px;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }

    .detail-hero-title {
        font-size: 50px;
        letter-spacing: 5px;
    }
}

@media (max-width: 768px) {
    .detail-hero {
        height: 420px;
        margin-bottom: 60px;
        margin-top: -60px;
        clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
    }

    .detail-hero-overlay {
        bottom: 50px;
        padding: 0 30px;
    }

    .detail-hero-title {
        font-size: 38px;
        letter-spacing: 4px;
    }

    .breadcrumb-nav {
        font-size: 10px;
        margin-bottom: 20px;
        letter-spacing: 2px;
    }

    .detail-content-wrapper {
        padding: 0 30px 70px;
    }

    .detail-intro {
        margin-bottom: 60px;
        padding: 40px 35px;
    }

        .detail-intro h2 {
            font-size: 28px;
        }

        .detail-intro p {
            font-size: 15px;
            line-height: 1.9;
        }

    .service-detail-card {
        padding: 35px;
    }

    .services-section-header h3 {
        font-size: 26px;
        letter-spacing: 2px;
    }

        .services-section-header h3::before,
        .services-section-header h3::after {
            display: none;
        }

    .back-button {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .detail-hero {
        height: 350px;
        margin-bottom: 50px;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    }

    .detail-hero-overlay {
        bottom: 35px;
        padding: 0 20px;
    }

    .detail-hero-title {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .breadcrumb-nav {
        font-size: 9px;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }

    .detail-intro {
        padding: 30px 25px;
    }
        .detail-intro h2 {
            font-size: 22px;
        }

        .detail-intro p {
            font-size: 14px;
        }

    .service-detail-card {
        padding: 25px;
    }

    .service-detail-title {
        letter-spacing: 1px;
    }

    .services-section-header h3 {
        font-size: 22px;
    }

    .detail-hero-overlay::before {
        width: 50px;
    }
}

