
/* ==========================================================================
   SERVICE PAGES MOCKUP DESIGN (Premium 1:1 Match)
   ========================================================================== */

/* 1. HERO SECTION */

/* Bottom Curve matching Gallery */
.srv-hero-wrap::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; width: 100%; height: 50px;
    background: #ffffff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 5;
}
.srv-hero-wrap {
    position: relative;
    background: linear-gradient(to right, #F8FDFF 0%, #E6F7FA 100%);
    padding: 80px 0 100px;
    overflow: hidden;
}
/* Subtle leaf background graphics */
.srv-hero-wrap::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -50px;
    width: 600px;
    height: 600px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><path fill="%23D6F3F7" d="M41.7,-72.6C56.1,-67.2,71.5,-59.5,82.4,-47.2C93.4,-34.8,99.9,-17.4,98.9,-0.6C97.9,16.2,89.5,32.3,77.9,45.5C66.3,58.7,51.5,69,35.2,74.7C19,80.4,1.3,81.5,-15.5,78C-32.3,74.5,-48.1,66.4,-61,54.1C-73.8,41.9,-83.7,25.4,-86.6,8.2C-89.5,-9,-85.4,-26.8,-75,-40.5C-64.6,-54.2,-48,-63.9,-32.4,-69.1C-16.8,-74.3,-2.3,-75,13.6,-77.9C29.6,-80.7,45.6,-85.6,41.7,-72.6Z" transform="translate(100 100)" /></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.6;
    z-index: 0;
}
.srv-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 40px;
}
.srv-hero-content {
    flex: 1;
    max-width: 650px;
}
.srv-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 6px 16px;
    border-radius: 50px;
    color: #00A3C4;
    font-size: 18px !important;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 163, 196, 0.1);
    margin-bottom: 20px;
}
.srv-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    color: #0F172A;
    margin-bottom: 20px;
}
.srv-hero-title span {
    color: #00A3C4;
}
.srv-hero-sub {
    font-size: 18px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 550px;
}






.srv-hero-image-wrap {
    flex: 1;
    position: relative;
    max-width: 500px;
}
.srv-hero-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.srv-handwriting-accent {
    position: absolute;
    right: -40px;
    top: 40%;
    font-family: 'Caveat', cursive; /* We need to enqueue a handwriting font */
    font-size: 36px;
    color: #00A3C4;
    transform: rotate(-10deg);
    z-index: 3;
}

/* 2. EXPLORE SPECIALITIES / SERVICES GRID */

.srv-sec-header {
    margin-bottom: 40px;
}
.srv-sec-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: #00A3C4;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}
.srv-sec-title {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 15px;
}
.srv-sec-desc {
    color: #64748B;
    font-size: 16px;
}
.srv-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.srv-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.srv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 163, 196, 0.1);
}
.srv-card-img-wrap {
    position: relative;
    height: 200px;
}
.srv-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}
.srv-card-icon-overlay {
    position: absolute;
    bottom: -24px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
}
.srv-card-icon-overlay .inner-circle {
    width: 36px;
    height: 36px;
    background: #00A3C4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.srv-card-content {
    padding: 40px 24px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.srv-card-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 10px;
}
.srv-card-content p {
    color: #64748B;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.srv-card-link {
    color: #00A3C4;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 3. MIDDLE GRADIENT CTA */
.srv-middle-cta-wrap {
    padding: 0 20px 80px;
}
.srv-middle-cta {
    background: linear-gradient(135deg, #0F3D55 0%, #166580 50%, #1C8E9A 100%);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.srv-middle-cta::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(255,255,255,0.1)" d="M50 0 L100 50 L50 100 L0 50 Z"/></svg>') no-repeat right bottom;
    z-index: 1;
}
.srv-mcta-left {
    position: relative;
    z-index: 2;
    max-width: 450px;
}
.srv-mcta-subtitle {
    color: rgba(255,255,255,0.7) !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}
.srv-mcta-title {
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}
.srv-mcta-desc {
    color: rgba(255,255,255,0.9) !important;
    font-size: 15px;
    margin-bottom: 25px;
}
.srv-mcta-buttons {
    display: flex;
    gap: 15px;
}
.btn-mcta-solid {
    background: #00D2D3;
    color: #0F3D55;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}
.btn-mcta-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}
.srv-mcta-right {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 40px;
    align-items: center;
}
.srv-mcta-feature {
    text-align: center;
    color: #ffffff;
}
.srv-mcta-feature svg {
    margin-bottom: 10px;
    opacity: 0.9;
}
.srv-mcta-feature h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #ffffff !important;
}
.srv-mcta-feature p {
    font-size: 11px;
    color: rgba(255,255,255,0.8) !important;
    margin: 0;
}
.srv-mcta-handwriting {
    font-family: 'Caveat', cursive;
    font-size: 32px;
    color: #00D2D3;
    transform: rotate(-10deg);
    margin-left: 30px;
}

/* 4. TRENDING TREATMENTS (Small Cards) */
.srv-trending-sec {
    padding: 0 0 80px;
}
.srv-trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.srv-trend-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid #E2E8F0;
}
.srv-trend-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}
.srv-trend-card-bottom {
    background: #ffffff;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.srv-trend-card-bottom span {
    font-size: 18px !important;
    font-weight: 600;
    color: #00A3C4;
}

/* 5. 3-COLUMN FAQ SECTION */
.srv-faq-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding-bottom: 100px;
}



.btn-faq-solid {
    background: #00A3C4;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}
.srv-faq-middle {
    flex: 1;
}
/* Re-use adv-faq-item-clean from front-page but slight tweaks if needed */




@media (max-width: 991px) {
    .srv-hero-inner { flex-direction: column; text-align: center; }
    
    .srv-middle-cta { flex-direction: column; text-align: center; padding: 40px 20px; }
    .srv-mcta-right { margin-top: 40px; flex-wrap: wrap; justify-content: center; }
    .srv-mcta-handwriting { display: none; }
    .srv-faq-layout { flex-direction: column; }
    .srv-faq-left, 
}


@media (max-width: 991px) {
    .srv-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .srv-cards-grid {
        grid-template-columns: 1fr;
    }
}



/* INDIVIDUAL SMALL BOXES FOR HERO FEATURES */
.srv-hero-features {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    align-items: stretch;
    flex-wrap: nowrap; /* Force 1 single line */
    justify-content: flex-start;
}
.srv-hero-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 163, 196, 0.15);
    flex: 1;
}
.srv-hero-feat-item:not(:last-child) {
    border-right: 1px solid rgba(0, 163, 196, 0.15); /* Override previous divider logic */
}
.srv-hero-feat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F0FBFC;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #00A3C4;
    flex-shrink: 0;
}
.srv-hero-feat-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.srv-hero-feat-text h4 {
    white-space: nowrap;
    font-size: 18px !important;
    font-weight: 700 !important;
    font-family: 'Outfit', sans-serif;
    color: #0F172A;
    margin: 0 0 2px 0;
    line-height: 1.1;
}
.srv-hero-feat-text p {
    white-space: nowrap;
    font-size: 11px;
    color: #64748B;
    margin: 0;
    line-height: 1.1;
}
@media (max-width: 767px) {
    .srv-hero-features {
        flex-direction: column;
    }
    .srv-hero-feat-item {
        width: 100%;
        justify-content: flex-start;
    }
    .srv-hero-feat-item:not(:last-child) {
        border-bottom: 1px solid rgba(0, 163, 196, 0.15);
        margin-bottom: 0px;
    }
}

/* IMPROVED FAQ DESIGN */
.srv-faq-left {
    flex: 0 0 300px;
    background: linear-gradient(145deg, #ffffff, #F0FBFC);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 163, 196, 0.08);
    border: 1px solid rgba(0, 163, 196, 0.1);
}
.srv-faq-left h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #0F172A;
    margin: 20px 0 15px;
    line-height: 1.2;
}
.srv-faq-left p {
    color: #64748B;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.5;
}
.srv-faq-middle h4 {
    font-size: 26px !important;
    font-weight: 800;
    margin-bottom: 25px !important;
}
.srv-faq-middle .adv-faq-item-clean {
    border: 1px solid #E2E8F0;
    margin-bottom: 15px;
    background: #ffffff;
    padding: 5px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.srv-faq-middle .adv-faq-item-clean:hover {
    box-shadow: 0 8px 25px rgba(0, 163, 196, 0.08);
    border-color: rgba(0, 163, 196, 0.3);
}
.adv-faq-btn-clean {
    padding: 15px 0 !important;
    font-weight: 600 !important;
    color: #1E293B !important;
}
.adv-faq-btn-clean svg {
    color: #00A3C4 !important;
    stroke-width: 2.5px;
}
.srv-faq-right {
    flex: 0 0 250px;
    background: linear-gradient(135deg, #00A3C4, #0F3D55);
    border-radius: 24px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 15px 35px rgba(0, 163, 196, 0.2);
    position: relative;
    overflow: hidden;
}
.srv-faq-right::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -30px;
    right: -30px;
}
.srv-faq-handwriting {
    font-family: 'Caveat', cursive;
    font-size: 42px;
    color: #ffffff;
    transform: rotate(-10deg);
    text-align: center;
    line-height: 1.1;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    z-index: 2;
}

.srv-grid-section {
    padding: 80px 0 60px 0;
}
