/* ============================================
   CELL FORLİFE - SUBPAGE SPECIFIC STYLES
   Pages: About, Vision, Mission, Services,
          Treatments, Team, Contact
   ============================================ */

/* ---------- PAGE BANNER / HERO (SUBPAGES) ---------- */
.page-banner {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;

    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #0b1630;

    overflow: hidden;
    padding-top: 80px;
}
.page-banner::before{
    background:rgba(0,0,0,0.25) !important;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(74, 124, 210, 0.08);
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.page-banner-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--primary-blue);
}

.breadcrumb .separator {
    font-size: 12px;
}

.breadcrumb .current {
    color: var(--primary-blue);
    font-weight: 500;
}

/* ---------- GENERIC CONTENT SECTION ---------- */
.content-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.content-section.bg-white {
    background: var(--bg-white);
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block p {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 20px;
}

.content-block ul {
    margin: 15px 0 20px 0;
}

.content-block ul li {
    position: relative;
    padding-left: 28px;
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 10px;
}

.content-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-blue);
    opacity: 0.6;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ---------- ABOUT PAGE ---------- */
.about-detail-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.about-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-detail-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    position: relative;
}

.about-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-detail-content h2 {
    font-size: clamp(26px, 3vw, 38px);
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-detail-content p {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 18px;
}

/* ---------- SERVICES PAGE ---------- */
.services-list-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-detail-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-detail-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.05);
}

.service-detail-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-detail-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-detail-body p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 20px;
    flex: 1;
}

.service-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    transition: var(--transition-fast);
}

.service-read-more:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.service-read-more i {
    font-size: 12px;
    transition: var(--transition-fast);
}

/* ---------- TREATMENTS PAGE ---------- */
.treatments-list-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.treatments-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.treatment-detail-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 400px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.treatment-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.treatment-detail-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.treatment-detail-card:hover img {
    transform: scale(1.08);
}

.treatment-detail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.treatment-detail-overlay h3 {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.treatment-detail-overlay .treatment-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    width: fit-content;
    transition: var(--transition);
}

.treatment-detail-card:hover .treatment-tag {
    background: var(--primary-blue);
    color: var(--text-white);
}

/* ---------- TEAM PAGE ---------- */
.team-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-card-image {
    height: 300px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #e8eef8, #d4ddf0);
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark-1) 100%);
}

.team-avatar .initials {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 800;
    color: var(--primary-blue);
    opacity: 0.5;
}

.team-card-body {
    padding: 25px 20px;
}

.team-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.team-card-body .team-role {
    font-size: 13.5px;
    color: var(--primary-blue);
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.team-card-body p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.team-social a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-blue);
    color: var(--text-white);
}

/* ---------- CONTACT PAGE ---------- */
.contact-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-blue);
    fill: none;
    stroke-width: 2;
}

.contact-info-icon.fill-icon svg {
    fill: var(--primary-blue);
    stroke: none;
}

.contact-info-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-info-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-form-wrapper .form-subtitle {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid var(--border-light);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-blue);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(74, 124, 210, 0.1);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--primary-dark);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.btn-submit:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 124, 210, 0.3);
}

/* Map */
.map-section {
    padding: 0;
    height: 400px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.3);
}

/* ---------- SUBPAGE RESPONSIVE ---------- */
@media (max-width: 992px) {
    .page-banner {
        min-height: 280px;
    }

    .about-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-detail-image img {
        height: 350px;
    }

    .content-with-image {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .treatments-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-banner {
        min-height: 240px;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .treatments-list {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .treatment-detail-card {
        height: 300px;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .team-card-image {
        height: 220px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-section {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .treatments-list {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card-image {
        height: 280px;
    }
}


/* ---------- TREATMENT DETAIL CONTENT ---------- */
.content-block img.article-img-real {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-card);
}

.content-block h1 {
    font-size: clamp(24px, 3vw, 32px);
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.content-block h2 {
    font-size: clamp(20px, 2.5vw, 26px);
    color: var(--text-dark);
    margin: 40px 0 20px 0;
    font-weight: 600;
}

.article-cta {
    margin-top: 50px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 20px;
    text-align: center;
}

.article-cta h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.article-cta p {
    margin-bottom: 25px;
}


/* Mission Vision Values Tabs */
.mvv-section {
    margin: 60px 0;
}

.mvv-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.mvv-tab {
    padding: 8px 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    font-family: var(--font-urbanist);
    font-weight: 600;
    font-size: 0.95rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.mvv-tab.active {
    background: #03a9f4;
    color: white;
    border-color: #03a9f4;
    box-shadow: 0 4px 12px rgba(3, 169, 244, 0.2);
}

.mvv-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.mvv-content.active {
    display: block;
}

/* Why Choose Us Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.why-card:hover {
    transform: translateY(-10px);
}

.why-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-card h5 {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.4;
}

@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    .mvv-tabs {
        flex-direction: column;
    }
}




.mvv-content li {
    font-size: 1rem;
    color: var(--text-muted);
}
