/* ============================================================
   SERVICES GLOBAL LAYOUT STYLES
   ============================================================ */

/* ============================================================
   1. [global-services1-header]
   ============================================================ */

.services-header {
    background: #e8e7e2;
    padding: 40px;
    border-radius: 20px;
}

.services-header-wrapper {
    display: flex;
    gap: 0;
    align-items: stretch;
    min-height: 400px;
}

/* Left: Featured Image */
.services-header-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    border-radius: 16px 0 0 16px;
}

.services-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right: Content */
.services-header-content {
    flex: 1;
    background: #4f6073;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0 16px 16px 0;
}

.services-header-title,
.services-header-title h1 {
    font-size: clamp(1.75rem, 1.2rem + 1.8vw, 2.5rem);
    font-weight: 700;
    color: #ffffff !important;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    hyphens: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.services-header-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.services-header-desc p {
    margin: 0 0 1em 0;
}

.services-header-desc p:last-child {
    margin-bottom: 0;
}

/* Buttons */
.services-header-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
    padding-top: 1rem;
}

.services-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.services-header-btn-primary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.services-header-btn-primary:hover {
    background: #ffffff;
    color: #4f6073;
}

.services-header-btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.services-header-btn-secondary:hover {
    background: #ffffff;
    color: #4f6073;
}

/* ============================================================
   1. HEADER - RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
    .services-header {
        padding: 30px;
    }
    
    .services-header-content {
        padding: 40px 45px;
    }
}

@media (max-width: 980px) {
    .services-header-wrapper {
        flex-direction: column;
        min-height: auto;
    }
    
    .services-header-image {
        flex: none;
        height: 300px;
        border-radius: 16px 16px 0 0;
    }
    
    .services-header-content {
        border-radius: 0 0 16px 16px;
        padding: 40px;
        text-align: center;
    }
    
    .services-header-buttons {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .services-header {
        padding: 20px;
        border-radius: 16px;
    }
    
    .services-header-image {
        height: 250px;
        border-radius: 12px 12px 0 0;
    }
    
    .services-header-content {
        padding: 30px 24px;
        border-radius: 0 0 12px 12px;
    }
    
    .services-header-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .services-header-desc {
        font-size: 15px;
        margin-bottom: 1.5rem;
    }
    
    .services-header-buttons {
        flex-direction: column;
    }
    
    .services-header-btn {
        width: 100%;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .services-header {
        padding: 16px;
    }
    
    .services-header-image {
        height: 200px;
    }
    
    .services-header-content {
        padding: 24px 20px;
    }
    
    .services-header-title {
        font-size: 1.35rem;
    }
    
    .services-header-desc {
        font-size: 14px;
    }
}

/* ============================================================
   2. [global-services2-intro]
   ============================================================ */

.services-intro {
    padding: 60px 0;
}

/* Header */
.services-intro-header {
    text-align: left;
    margin-bottom: 50px;
}

.services-intro-title {
    font-size: clamp(1.5rem, 1.1rem + 1.3vw, 2rem);
    font-weight: 700;
    color: #1b3d58;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin: 0 0 1.5rem 0;
}

.services-intro-desc {
    font-size: 16px;
    color: #4f6073;
    line-height: 1.8;
}

.services-intro-desc p {
    margin: 0 0 1em 0;
}

.services-intro-desc p:last-child {
    margin-bottom: 0;
}

.services-intro-desc a {
    color: #1b3d58;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.services-intro-desc a:hover {
    opacity: 0.7;
}

/* Repeater Items */
.services-intro-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.services-intro-item {
    padding-bottom: 40px;
}

.services-intro-item:last-child {
    padding-bottom: 0;
}

.services-intro-item-title {
    font-size: clamp(1.5rem, 1.1rem + 1.3vw, 2rem);
    font-weight: 700;
    color: #1b3d58;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin: 0 0 1.5rem 0;
}

.services-intro-item-desc {
    font-size: 16px;
    color: #4f6073;
    line-height: 1.8;
}

.services-intro-item-desc p {
    margin: 0 0 1em 0;
}

.services-intro-item-desc p:last-child {
    margin-bottom: 0;
}

.services-intro-item-desc a {
    color: #1b3d58;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* 2. INTRO - RESPONSIVE */


@media (max-width: 767px) {
    .services-intro {
        padding: 40px 0;
    }
    
    .services-intro-header {
        margin-bottom: 30px;
    }
    
    .services-intro-title {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }
    
    .services-intro-desc {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .services-intro-items {
        gap: 30px;
    }
    
    .services-intro-item {
        padding-bottom: 30px;
    }
    
    .services-intro-item-title {
        font-size: 1.35rem;
    }
    
    .services-intro-item-desc {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .services-intro {
        padding: 30px 0;
    }
    
    .services-intro-title {
        font-size: 1.25rem;
    }
    
    .services-intro-desc {
        font-size: 14px;
    }
    
    .services-intro-items {
        gap: 25px;
    }
    
    .services-intro-item {
        padding-bottom: 25px;
    }
    
    .services-intro-item-title {
        font-size: 1.25rem;
    }
    
    .services-intro-item-desc {
        font-size: 14px;
    }
}

/* ============================================================
   3. [global-services3-keyfacts]
   ============================================================ */

/* Main Section Container - Two Column Layout */
.keyfacts-section {
    display: flex;
    gap: 60px;
    align-items: stretch;
    background: #e8e7e2;
    padding: 60px;
    border-radius: 20px;
}

/* Left Column: Intro Text */
.keyfacts-intro {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.keyfacts-intro h2.keyfacts-main-heading {
    font-size: clamp(1.75rem, 1.3rem + 1.5vw, 2.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
    color: #1b3d58;
    margin: 0 0 1.5rem 0;
    hyphens: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.keyfacts-intro .keyfacts-desc {
    font-size: 16px;
    color: #4f6073;
    line-height: 1.7;
    font-weight: 400;
}

.keyfacts-intro .keyfacts-desc p {
    margin: 0 0 1em 0;
}

.keyfacts-intro .keyfacts-desc p:last-child {
    margin-bottom: 0;
}

/* Right Column: Keyfacts Grid Container */
.keyfacts-main-container {
    flex: 1;
    background: #b5ab9f;
    padding: 50px 40px;
    border-radius: 20px;
}

.keyfacts-main-container .keyfacts-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
}

.keyfacts-main-container .keyfacts-grid-wrapper .keyfacts-grid-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.keyfacts-main-container .keyfacts-grid-wrapper .kf-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.keyfacts-main-container .keyfacts-grid-wrapper .kf-icon img {
    height: 36px;
    width: 36px;
    display: block;
    object-fit: contain;
}

.keyfacts-main-container .keyfacts-grid-wrapper .kf-title {
    font-size: clamp(0.8rem, 0.7rem + 0.4vw, 0.95rem);
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.3;
    padding-bottom: 6px;
    margin: 0;
}

.keyfacts-main-container .keyfacts-grid-wrapper .kf-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    font-weight: 400;
    margin: 0;
}

.keyfacts-main-container .keyfacts-grid-wrapper .kf-desc p {
    margin: 0;
}

/* Link styling inside keyfacts */
.keyfacts-main-container #kostenlink,
.keyfacts-main-container a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.keyfacts-main-container a:hover {
    opacity: 0.8;
}

/* ============================================================
   RESPONSIVE: Tablet (max-width: 1100px)
   ============================================================ */

@media (max-width: 1100px) {
    .keyfacts-section {
        gap: 40px;
        padding: 50px;
    }
    
    .keyfacts-intro {
        flex: 0 0 240px;
    }
    
    .keyfacts-main-container {
        padding: 40px 30px;
    }
    
    .keyfacts-main-container .keyfacts-grid-wrapper {
        gap: 30px 20px;
    }
    
    .keyfacts-main-container .keyfacts-grid-wrapper .kf-icon {
        width: 60px;
        height: 60px;
    }
    
    .keyfacts-main-container .keyfacts-grid-wrapper .kf-icon img {
        height: 30px;
        width: 30px;
    }
}

/* ============================================================
   RESPONSIVE: Tablet Portrait (max-width: 980px)
   ============================================================ */

@media (max-width: 980px) {
    .keyfacts-section {
        flex-direction: column;
        gap: 30px;
        padding: 40px;
    }
    
    .keyfacts-intro {
        flex: none;
        text-align: center;
    }
    
    .keyfacts-intro h2.keyfacts-main-heading {
        margin-bottom: 1rem;
    }
    
    .keyfacts-main-container {
        padding: 40px 30px;
    }
    
    .keyfacts-main-container .keyfacts-grid-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px 15px;
    }

    .keyfacts-main-container .keyfacts-grid-wrapper .kf-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }

    .keyfacts-main-container .keyfacts-grid-wrapper .kf-icon img {
        height: 28px;
        width: 28px;
    }
    
    .keyfacts-main-container .keyfacts-grid-wrapper .kf-title {
        font-size: 0.75rem;
    }
    
    .keyfacts-main-container .keyfacts-grid-wrapper .kf-desc {
        font-size: 13px;
    }
}

/* ============================================================
   RESPONSIVE: Mobile (max-width: 767px)
   ============================================================ */

@media (max-width: 767px) {
    .keyfacts-section {
        padding: 30px;
        border-radius: 16px;
    }
    
    .keyfacts-main-container {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .keyfacts-main-container .keyfacts-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }

    .keyfacts-main-container .keyfacts-grid-wrapper .kf-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .keyfacts-main-container .keyfacts-grid-wrapper .kf-icon img {
        height: 24px;
        width: 24px;
    }
    
    .keyfacts-main-container .keyfacts-grid-wrapper .kf-title {
        font-size: 0.7rem;
        padding-bottom: 4px;
    }
    
    .keyfacts-main-container .keyfacts-grid-wrapper .kf-desc {
        font-size: 12px;
    }
}

/* ============================================================
   RESPONSIVE: Small Mobile (max-width: 480px)
   ============================================================ */

@media (max-width: 480px) {
    .keyfacts-section {
        padding: 24px;
        gap: 20px;
    }
    
    .keyfacts-intro h2.keyfacts-main-heading {
        font-size: 1.5rem;
    }
    
    .keyfacts-intro .keyfacts-desc {
        font-size: 14px;
    }
    
    .keyfacts-main-container {
        padding: 24px 16px;
    }
    
    .keyfacts-main-container .keyfacts-grid-wrapper {
        gap: 20px 12px;
    }
    
    .keyfacts-main-container .keyfacts-grid-wrapper .kf-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
    }

    .keyfacts-main-container .keyfacts-grid-wrapper .kf-icon img {
        height: 22px;
        width: 22px;
    }
    
    .keyfacts-main-container .keyfacts-grid-wrapper .kf-title {
        font-size: 0.65rem;
    }
    
    .keyfacts-main-container .keyfacts-grid-wrapper .kf-desc {
        font-size: 11px;
    }
}

/* ============================================================
   RESPONSIVE: Extra Small (max-width: 350px)
   ============================================================ */

@media (max-width: 350px) {
    .keyfacts-section {
        padding: 20px;
    }
    
    .keyfacts-intro h2.keyfacts-main-heading {
        font-size: 1.35rem;
        letter-spacing: 0.02em;
        line-height: 1.2;
    }
    
    .keyfacts-main-container .keyfacts-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ============================================================
   4. [global-services4-maincontent]
   ============================================================ */

.services-main {
    padding: 60px 0;
}

.services-main-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.services-main-header {
    position: sticky;
    top: 120px;
}

.services-main-title {
    font-size: clamp(1.5rem, 1.1rem + 1.3vw, 2rem);
    font-weight: 700;
    color: #1b3d58;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin: 0;
}

.services-main-content {
    font-size: 16px;
    color: #4f6073;
    line-height: 1.8;
}

.services-main-content p {
    margin: 0 0 1.5em 0;
}

.services-main-content p:last-child {
    margin-bottom: 0;
}

.services-main-content h2,
.services-main-content h3,
.services-main-content h4 {
    color: #1b3d58;
    font-weight: 700;
    margin: 2em 0 1em 0;
}

.services-main-content h2:first-child,
.services-main-content h3:first-child,
.services-main-content h4:first-child {
    margin-top: 0;
}

.services-main-content ul,
.services-main-content ol {
    margin: 1em 0;
    padding-left: 1.5em;
}

.services-main-content li {
    margin-bottom: 0.5em;
}

.services-main-content a {
    color: #1b3d58;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.services-main-content a:hover {
    opacity: 0.7;
}

/* 4. MAINCONTENT - RESPONSIVE */

@media (max-width: 980px) {
    .services-main-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-main-header {
        position: static;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .services-main {
        padding: 40px 0;
    }
    
    .services-main-title {
        font-size: 1.35rem;
    }
    
    .services-main-content {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .services-main {
        padding: 30px 0;
    }
    
    .services-main-title {
        font-size: 1.25rem;
    }
    
    .services-main-content {
        font-size: 14px;
    }
}

/* ============================================================
   5. [global-services5-treatmentcombis]
   ============================================================ */

.services-kombis {
    background: #1b3d58;
    padding: 80px 40px;
    border-radius: 20px;
}

/* Header */
.services-kombis-header {
    margin-bottom: 50px;
}

.services-kombis-title,
.services-kombis-title h2 {
    font-size: clamp(1.75rem, 1.3rem + 1.5vw, 2.5rem);
    font-weight: 700;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
}

.services-kombis-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.services-kombis-desc p {
    margin: 0 0 1em 0;
}

.services-kombis-desc p:last-child {
    margin-bottom: 0;
}

/* Cards Container */
.services-kombis-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Individual Card - 2 Column Layout */
.services-kombis-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.services-kombis-card-title,
.services-kombis-card-title h3 {
    font-size: clamp(1rem, 0.85rem + 0.5vw, 1.2rem);
    font-weight: 700;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
    margin: 0;
}

.services-kombis-card-content {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.services-kombis-card-content p {
    margin: 0 0 1em 0;
}

.services-kombis-card-content p:last-child {
    margin-bottom: 0;
}

.services-kombis-card-content a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.services-kombis-card-content a:hover {
    opacity: 0.8;
}

/* 5. TREATMENTCOMBIS - RESPONSIVE */

@media (max-width: 1100px) {
    .services-kombis {
        padding: 60px 30px;
    }
    
    .services-kombis-card {
        padding: 40px;
        gap: 30px;
    }
}

@media (max-width: 980px) {
    .services-kombis-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 35px;
    }
}

@media (max-width: 767px) {
    .services-kombis {
        padding: 50px 24px;
        border-radius: 16px;
    }
    
    .services-kombis-header {
        margin-bottom: 30px;
    }
    
    .services-kombis-title {
        font-size: 1.5rem;
    }
    
    .services-kombis-items {
        gap: 20px;
    }
    
    .services-kombis-card {
        padding: 30px;
        border-radius: 12px;
    }
    
    .services-kombis-card-title h3 {
        font-size: 1rem;
    }
    
    .services-kombis-card-content {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .services-kombis {
        padding: 40px 20px;
    }
    
    .services-kombis-card {
        padding: 24px;
    }
    
    .services-kombis-card-title h3 {
        font-size: 0.9rem;
    }
    
    .services-kombis-card-content {
        font-size: 14px;
    }
}

/* ============================================================
   6. [global-services6-bagallery]
   ============================================================ */

.services-bagallery {
    padding: 60px 0;
}

.services-bagallery-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left: Gallery */
.services-bagallery-images {
    background: #b5ab9f;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services-bagallery-item {
    border-radius: 8px;
    overflow: hidden;
}

.services-bagallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.services-bagallery-disclaimer {
    grid-column: 1 / -1;
    font-size: 11px;
    color: #4f6073;
    line-height: 1.5;
    margin: 5px 0 0 0;
}

/* Right: Content */
.services-bagallery-content {
    position: sticky;
    top: 120px;
    padding: 20px 0;
}

.services-bagallery-title {
    font-size: clamp(1.5rem, 1.1rem + 1.3vw, 2rem);
    font-weight: 700;
    color: #1b3d58;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin: 0 0 1.5rem 0;
}

.services-bagallery-desc {
    font-size: 16px;
    color: #4f6073;
    line-height: 1.8;
}

.services-bagallery-desc p {
    margin: 0 0 1em 0;
}

.services-bagallery-desc p:last-child {
    margin-bottom: 0;
}

/* Lightbox Trigger */
.services-lightbox-trigger {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.services-lightbox-trigger:hover {
    opacity: 0.85;
}

/* Lightbox Overlay */
.services-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

.services-lightbox.is-open {
    display: flex;
}

.services-lightbox-content {
    max-width: 90%;
    max-height: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

/* Lightbox Controls */
.services-lightbox-close,
.services-lightbox-prev,
.services-lightbox-next {
    position: absolute;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.services-lightbox-close:hover,
.services-lightbox-prev:hover,
.services-lightbox-next:hover {
    opacity: 0.7;
}

.services-lightbox-close {
    top: 20px;
    right: 30px;
    font-size: 50px;
    font-weight: 300;
    line-height: 1;
}

.services-lightbox-prev,
.services-lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    padding: 20px;
}

.services-lightbox-prev {
    left: 20px;
}

.services-lightbox-next {
    right: 20px;
}

.services-lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.1em;
}

/* 6. BAGALLERY - RESPONSIVE */

@media (max-width: 1100px) {
    .services-bagallery-wrapper {
        gap: 40px;
    }
}

@media (max-width: 980px) {
    .services-bagallery-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-bagallery-content {
        position: static;
        order: -1;
        text-align: center;
    }
    
}

@media (max-width: 767px) {
    .services-bagallery {
        padding: 40px 0;
    }
    
    .services-bagallery-images {
        padding: 20px;
        border-radius: 16px;
        gap: 20px;
    }
    
    .services-bagallery-title {
        font-size: 1.35rem;
    }
    
    .services-bagallery-desc {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .services-bagallery {
        padding: 30px 0;
    }
    
    .services-bagallery-images {
        padding: 15px;
        gap: 15px;
    }
    
    .services-bagallery-disclaimer {
        font-size: 10px;
    }
    
    .services-bagallery-title {
        font-size: 1.25rem;
    }
    
    .services-bagallery-desc {
        font-size: 14px;
    }
}

/* ============================================================
   7. [global-services7-outro]
   ============================================================ */

.services-outro {
    padding: 60px 0;
}

.services-outro-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.services-outro-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 50px;
    border-bottom: 1px solid #e5e5e5;
}

.services-outro-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.services-outro-item-title {
    font-size: clamp(1.1rem, 0.9rem + 0.6vw, 1.35rem);
    font-weight: 700;
    color: #1b3d58;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin: 0;
}

.services-outro-item-desc {
    font-size: 16px;
    color: #4f6073;
    line-height: 1.8;
}

.services-outro-item-desc p {
    margin: 0 0 1em 0;
}

.services-outro-item-desc p:last-child {
    margin-bottom: 0;
}

.services-outro-item-desc a {
    color: #1b3d58;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.services-outro-item-desc a:hover {
    opacity: 0.7;
}

/* 7. OUTRO - RESPONSIVE */

@media (max-width: 980px) {
    .services-outro-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .services-outro {
        padding: 40px 0;
    }
    
    .services-outro-wrapper {
        gap: 35px;
    }
    
    .services-outro-item {
        padding-bottom: 35px;
    }
    
    .services-outro-item-title {
        font-size: 1.1rem;
    }
    
    .services-outro-item-desc {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .services-outro {
        padding: 30px 0;
    }
    
    .services-outro-wrapper {
        gap: 30px;
    }
    
    .services-outro-item {
        padding-bottom: 30px;
    }
    
    .services-outro-item-title {
        font-size: 1rem;
    }
    
    .services-outro-item-desc {
        font-size: 14px;
    }
}

/* ============================================================
   8. [global-services8-conclusion]
   ============================================================ */

.services-conclusion {
    background: #1b3d58;
    padding: 80px 40px;
    border-radius: 20px;
    text-align: center;
}

.services-conclusion-title,
.services-conclusion-title h2 {
    font-size: clamp(1.75rem, 1.3rem + 1.5vw, 2.5rem);
    font-weight: 700;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
}

.services-conclusion-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.services-conclusion-desc p {
    margin: 0 0 1em 0;
}

.services-conclusion-desc p:last-child {
    margin-bottom: 0;
}

.services-conclusion-desc a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.services-conclusion-cta {
    margin-top: 2rem;
}

.services-conclusion-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 4px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.services-conclusion-btn:hover {
    background: #ffffff;
    color: #1b3d58;
}

/* 8. CONCLUSION - RESPONSIVE */

@media (max-width: 980px) {
    .services-conclusion {
        padding: 60px 30px;
    }
}

@media (max-width: 767px) {
    .services-conclusion {
        padding: 50px 24px;
        border-radius: 16px;
    }
    
    .services-conclusion-title {
        font-size: 1.5rem;
    }
    
    .services-conclusion-desc {
        font-size: 15px;
    }
    
    .services-conclusion-btn {
        padding: 14px 32px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-conclusion {
        padding: 40px 20px;
    }
    
    .services-conclusion-title {
        font-size: 1.35rem;
    }
    
    .services-conclusion-desc {
        font-size: 14px;
    }
}

/* ============================================================
   9. [global-services9-faq]
   ============================================================ */

.services-faq {
    padding: 60px 0;
}

/* Header */
.services-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-faq-title {
    font-size: clamp(1.5rem, 1.1rem + 1.3vw, 2rem);
    font-weight: 700;
    color: #1b3d58;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin: 0 0 1.5rem 0;
}

.services-faq-desc {
    font-size: 16px;
    color: #4f6073;
    line-height: 1.8;
}

.services-faq-desc p {
    margin: 0 0 1em 0;
}

.services-faq-desc p:last-child {
    margin-bottom: 0;
}

/* Accordion */
.services-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.services-faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.services-faq-item:first-child {
    border-top: 1px solid #e5e5e5;
}

.services-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.services-faq-question:hover {
    color: #1b3d58;
}

.services-faq-question-text {
    font-size: clamp(1rem, 0.9rem + 0.4vw, 1.15rem);
    font-weight: 600;
    color: #1b3d58;
    line-height: 1.4;
}

.services-faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #1b3d58;
    transition: transform 0.3s ease;
}

.services-faq-icon svg {
    display: block;
}

/* Open state */
.services-faq-item.is-open .services-faq-icon {
    transform: rotate(45deg);
}

/* Answer */
.services-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.services-faq-item.is-open .services-faq-answer {
    max-height: 1000px;
}

.services-faq-answer-content {
    padding: 0 0 24px 0;
    font-size: 16px;
    color: #4f6073;
    line-height: 1.8;
}

.services-faq-answer-content p {
    margin: 0 0 1em 0;
}

.services-faq-answer-content p:last-child {
    margin-bottom: 0;
}

.services-faq-answer-content a {
    color: #1b3d58;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* 9. FAQ - RESPONSIVE */

@media (max-width: 767px) {
    .services-faq {
        padding: 40px 0;
    }
    
    .services-faq-header {
        margin-bottom: 30px;
    }
    
    .services-faq-question {
        padding: 20px 0;
    }
    
    .services-faq-question-text {
        font-size: 1rem;
    }
    
    .services-faq-answer-content {
        font-size: 15px;
        padding-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .services-faq {
        padding: 30px 0;
    }
    
    .services-faq-question {
        padding: 16px 0;
        gap: 15px;
    }
    
    .services-faq-question-text {
        font-size: 0.95rem;
    }
    
    .services-faq-icon {
        width: 20px;
        height: 20px;
    }
    
    .services-faq-answer-content {
        font-size: 14px;
        padding-bottom: 16px;
    }
}
