/* ============================================
   SERVICES - INTERNAL PAGES
   Specific styles for service pages
   ============================================ */

/* Breadcrumb */
.breadcrumb {
    margin: 0;
    padding: 0;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb__link {
    color: var(--grafite-dream);
    opacity: 0.7;
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb__link:hover {
    color: var(--dourado-glow);
    opacity: 1;
}

.breadcrumb__current {
    color: var(--dourado-glow);
    font-weight: 500;
}

/* Service Hero */
.service-hero {
    position: relative;
    min-height: 60vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    background: var(--grafite-dream);
    overflow: hidden;
}

.service-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 4rem 0;
}

.service-hero__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(188, 152, 94, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(188, 152, 94, 0.2);
}

.service-hero__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-hero__title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.service-hero__title span {
    color: var(--dourado-glow);
}

.service-hero__excerpt {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Service Content */
.service-content {
    padding: 4rem 0 5rem;
    background: var(--white);
}

.service-content__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.service-content__main {
    order: 1;
}

.service-content__sidebar {
    order: 2;
}

.service-content__text h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.75rem;
    color: var(--grafite-dream);
    margin-bottom: 1rem;
}

.service-content__text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-content__text ul,
.service-content__text ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-content__text li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

/* Service Meta */
.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bege-touch);
    border-radius: var(--radius-lg);
}

.service-meta__item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-meta__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
}

.service-meta__value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--grafite-dream);
}

/* Benefits Section */
.service-benefits {
    padding: 5rem 0;
    background: var(--bege-touch);
    margin-bottom: 2rem;
}

.service-benefits h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.75rem;
    color: var(--grafite-dream);
    margin-bottom: 2rem;
}

.service-benefits__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-benefits__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    transition: var(--transition-base);
}

.service-benefits__item:hover {
    transform: translateX(4px);
}

.service-benefits__item svg {
    width: 20px;
    height: 20px;
    color: var(--dourado-glow);
    flex-shrink: 0;
}

/* FAQ Section */
.service-faq {
    padding: 5rem 0;
}

.service-faq h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.75rem;
    color: var(--grafite-dream);
    margin-bottom: 2rem;
}

.service-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.service-faq__item {
    border-bottom: 1px solid var(--gray-200);
}

.service-faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-base);
}

.service-faq__question h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--grafite-dream);
    margin: 0;
    padding-right: 1rem;
}

.service-faq__question svg {
    width: 24px;
    height: 24px;
    stroke: var(--dourado-glow);
    transition: var(--transition-base);
    flex-shrink: 0;
}

.service-faq__item[open] .service-faq__question svg {
    transform: rotate(180deg);
}

.service-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.service-faq__item[open] .service-faq__answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.service-faq__answer p {
    color: #555;
    line-height: 1.7;
}

/* Service Share */
.service-share {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.social-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-share__label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
}

.social-share__link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bege-touch);
    border-radius: var(--radius-full);
    color: var(--grafite-dream);
    transition: var(--transition-base);
}

.social-share__link:hover {
    background: var(--dourado-glow);
    color: var(--white);
    transform: translateY(-2px);
}

.social-share__link svg {
    width: 20px;
    height: 20px;
}

/* Service Sidebar */
.service-cta {
    background: var(--grafite-dream);
    text-align: center;
}

.service-cta h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.service-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-related {
    background: var(--bege-touch);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.service-related h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--grafite-dream);
    margin-bottom: 1.5rem;
}

.service-related__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-related__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    color: var(--grafite-dream);
    text-decoration: none;
    transition: var(--transition-base);
}

.service-related__item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.service-related__item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.service-related__item h4 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* Page Header for Archive */
.page-header {
    padding: 3rem 0 2rem;
    text-align: center;
    background: var(--bege-touch);
    border-bottom: 1px solid var(--gray-200);
}

.page-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--grafite-dream);
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* Services Archive */
.services--archive {
    padding: 4rem 0;
}

.services--archive .services__grid {
    margin-top: 2rem;
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .service-hero {
        min-height: 70vh;
    }

    .service-hero__content {
        padding: 6rem 0;
    }

    .service-content__grid {
        grid-template-columns: 1fr 350px;
    }

    .service-content__main {
        order: 1;
    }

    .service-content__sidebar {
        order: 2;
    }
}

/* Mobile Styles */
@media (max-width: 1023px) {
    .service-hero {
        min-height: 50vh;
        padding-top: 70px;
    }

    .service-hero__content {
        padding: 3rem 0;
    }

    .service-hero__icon {
        width: 60px;
        height: 60px;
    }

    .service-meta {
        flex-direction: column;
    }

    .service-benefits__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Breadcrumb - Full width band */
.breadcrumb-band {
    background: var(--bege-touch);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(188, 152, 94, 0.2);
}

.breadcrumb {
    margin: 0;
    padding: 0;
}

.breadcrumb__wrapper {
    display: flex;
    align-items: center;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb__link {
    color: var(--grafite-dream);
    opacity: 0.7;
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb__link:hover {
    color: var(--dourado-glow);
    opacity: 1;
}

.breadcrumb__separator {
    color: var(--grafite-dream);
    opacity: 0.4;
}

.breadcrumb__current {
    color: var(--dourado-glow);
    font-weight: 500;
}

/* Service Hero */
.service-hero {
    position: relative;
    min-height: 60vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    background: var(--grafite-dream);
    overflow: hidden;
}

.service-hero__background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.service-hero__background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.service-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(32, 36, 40, 0.95) 0%, rgba(32, 36, 40, 0.7) 100%);
}

.service-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 4rem 0;
}

.service-hero__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(188, 152, 94, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(188, 152, 94, 0.2);
}

.service-hero__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-hero__title {
    font-family: Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.service-hero__title span {
    color: var(--dourado-glow);
}

.service-hero__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Service Content */
.service-content {
    padding: 4rem 0 5rem;
    background: var(--white);
}

.service-content__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.service-content__main {
    order: 1;
}

.service-content__sidebar {
    order: 2;
}

.service-content__text h2 {
    font-family: Georgia, serif;
    font-size: 1.75rem;
    color: var(--grafite-dream);
    margin-bottom: 1rem;
}

.service-content__text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-content__text ul,
.service-content__text ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-content__text li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

/* Benefits Section */
.service-benefits {
    padding: 5rem 0;
    background: var(--bege-touch);
}

.service-benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dourado-glow) 0%, #d4af6e 100%);
    border-radius: var(--radius-md);
    margin-bottom:1.5rem;
}

.benefit-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

.benefit-card__icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.benefit-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

.benefit-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--grafite-dream);
    margin-bottom: 0.75rem;
}

.benefit-card__text {
    color: #666;
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Process Section */
.service-process {
    padding: 5rem 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
    counter-reset: step;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
}

.process-step__number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grafite-dream);
    color: var(--dourado-glow);
    font-family: Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.process-step__content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--grafite-dream);
    margin-bottom: 0.5rem;
}

.process-step__content p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.service-faq {
    padding: 5rem 0;
    background: var(--grafite-dream);
}

.service-faq .section-title,
.service-faq .section-label {
    color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-item__question h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    margin: 0;
    padding-right: 1rem;
}

.faq-item__icon {
    width: 24px;
    height: 24px;
    stroke: var(--dourado-glow);
    transition: var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-item__answer {
    max-height: 500px;
}

.faq-item__answer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    padding-bottom: 1.5rem;
}

/* CTA Section */
.service-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dourado-glow) 0%, #d4af6e 100%);
    text-align: center;
}

.service-cta__content {
    max-width: 600px;
    margin: 0 auto;
}

.service-cta__title {
    font-family: Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.service-cta__text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.service-cta .btn-dark {
    background: var(--grafite-dream);
    color: var(--white);
}

.service-cta .btn-dark:hover {
    background: #2a2f35;
}

/* Related Services */
.related-services {
    padding: 5rem 0;
    background: var(--bege-touch);
}

.related-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Sidebar */
.sidebar-card {
    background: var(--bege-touch);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}

.sidebar-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--grafite-dream);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--dourado-glow);
}

.sidebar-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-card__list li {
    margin-bottom: 0.75rem;
}

.sidebar-card__list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    text-decoration: none;
    transition: var(--transition-fast);
}

.sidebar-card__list a:hover {
    color: var(--dourado-glow);
}

.sidebar-card__list svg {
    width: 16px;
    height: 16px;
    stroke: var(--dourado-glow);
}

/* Doctor Card */
.doctor-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.doctor-card__image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.doctor-card__content {
    padding: 1.5rem;
}

.doctor-card__name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--grafite-dream);
    margin-bottom: 0.25rem;
}

.doctor-card__specialty {
    color: var(--dourado-glow);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.doctor-card__cro {
    font-size: 0.8125rem;
    color: #888;
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .service-hero {
        min-height: 70vh;
    }

    .service-hero__content {
        padding: 6rem 0;
    }

    .service-content__grid {
        grid-template-columns: 1fr 350px;
    }

    .service-content__main {
        order: 1;
    }

    .service-content__sidebar {
        order: 2;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles */
@media (max-width: 1023px) {
    .service-hero {
        min-height: 50vh;
        padding-top: 70px;
    }

    .service-hero__content {
        padding: 3rem 0;
    }

    .service-hero__icon {
        width: 60px;
        height: 60px;
    }

    .breadcrumb-band {
        padding: 0.75rem 0;
    }

    .breadcrumb__list {
        font-size: 0.75rem;
        gap: 0.375rem;
    }

    .service-benefits__grid {
        grid-template-columns: 1fr;
    }
}
