/* ============================================================
   0. MASTER SECTION - ATMOSPHERE BACKGROUNDS (DESKTOP ONLY)
   ============================================================ */

   @media (min-width: 768px) {
    .master-section {
        position: relative;
        z-index: 0; 
        overflow: visible !important;
        background-color: transparent !important;
    }

    .master-section::before {
        content: '';
        position: fixed;
        top: 0;
        right: 0;
        width: 60vw;
        height: 100vh;
        background-image: url(/wp-content/uploads/2023/09/background-references-right.jpg);
        background-size: contain;
        background-position: right top;
        background-repeat: no-repeat;
        z-index: -1; 
        pointer-events: none;
        opacity: 0.3;
        -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
        mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
        
        animation: parallax-ultra-subtle-right linear;
        animation-timeline: scroll(root);
        will-change: transform;
    }

    .master-section::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 40vw;
        height: 100vh;
        background-image: url(/wp-content/uploads/2023/09/background-references-bubbles.jpg);
        background-size: contain;
        background-position: left center;
        background-repeat: no-repeat;
        z-index: -1; 
        pointer-events: none;
        opacity: 0.25;
        -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%),
                            linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
        mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%),
                    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
        -webkit-mask-composite: source-in;
        mask-composite: intersect;
        animation: parallax-ultra-subtle-left linear;
        animation-timeline: scroll(root);
        will-change: transform;
    }
}

/* PARALLAX KEYFRAMES (Ultra Subtle Movement) */

@keyframes parallax-ultra-subtle-right {
    from { transform: translateY(2%) scale(1.02); }
    to   { transform: translateY(-5%) scale(1); }
}

@keyframes parallax-ultra-subtle-left {
    from { transform: translateY(-3%) rotate(0deg); }
    to   { transform: translateY(4%) rotate(2deg); }
}

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

.cottage-header-hero {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: 0px 0;
}

.cottage-header-hero .cottage-header-overlay {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: center;
}

.cottage-header-hero .cottage-header-container {
    width: 90%;
    margin: 0 auto;
    padding: 10rem 0;
}

.cottage-header-hero .cottage-header-content {
    display: grid;
    grid-template-columns: 1fr;
    color: #ffffff;
    gap: 2rem;
}

.cottage-header-hero h1.cottage-header-title {
    font-size: clamp(1.7rem, 1.3rem + 2vw, 2.7rem);
    hyphens: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff !important;
    letter-spacing: 0.05em;
    padding-bottom: 0;
}

.cottage-header-hero .cottage-header-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.06rem, 1rem + 0.3vw, 1.2rem);
    line-height: 1.5;
    font-weight: 400;
    max-width: 850px;
}

.cottage-header-hero .cottage-header-btn {
    display: inline-block;
    padding: .9em 2.1em;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff !important;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
    cursor: pointer;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cottage-header-hero .cottage-header-btn:hover {
    background: #ffffff !important;
    color: #495E77 !important;
}

.cottage-header-hero .cottage-header-btn:focus {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

@media (max-width: 980px) {
    .cottage-header-hero {
        border-radius: 25px;
    }

    .cottage-header-hero .cottage-header-overlay {
        background: rgba(0, 0, 0, 0.4);
    }

    .cottage-header-hero .cottage-header-container {
        width: 100%;
        padding: 7rem 2.5rem !important;
    }

    .cottage-header-hero .cottage-header-btn {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .cottage-header-hero {
        border-radius: 20px;
    }

    .cottage-header-hero .cottage-header-container {
        text-align: center;
        padding: 5rem 1.5rem !important;
    }

    .cottage-header-hero .cottage-header-content {
        margin: 0 auto;
        justify-items: center;
    }

    .cottage-header-hero .cottage-header-desc {
        max-width: 100%;
    }

    .cottage-header-hero .cottage-header-btn {
        font-size: 14px;
    }
}

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

.cottage-intro-wrapper {
    max-width: 1000px;
    width: 80%;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

.cottage-intro-wrapper .cottage-intro-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    position: relative;
}

.cottage-intro-wrapper h2.cottage-intro-title {
    font-size: clamp(1.50rem, 1.1rem + 1.3vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    hyphens: auto;
    overflow-wrap: break-word;
    padding-bottom: 2rem;
}

.cottage-intro-wrapper .cottage-intro-description p {
    line-height: 1.5em;
}

.cottage-intro-wrapper .cottage-intro-description ul,
.cottage-intro-wrapper .cottage-intro-description ol {
    padding-bottom: 1em;
}

.cottage-intro-wrapper .cottage-intro-description ul:last-child,
.cottage-intro-wrapper .cottage-intro-description ol:last-child {
    padding-bottom: 0;
}

.cottage-intro-wrapper .cottage-intro-description ul li,
.cottage-intro-wrapper .cottage-intro-description ol li {
    padding-bottom: 1em;
}

.cottage-intro-wrapper .cottage-intro-description ul li:last-child,
.cottage-intro-wrapper .cottage-intro-description ol li:last-child {
    padding-bottom: 0;
}

.cottage-intro-wrapper .cottage-intro-description ul ul,
.cottage-intro-wrapper .cottage-intro-description ol ul {
    list-style: none;
    padding-bottom: 1em;
}

.cottage-intro-wrapper .cottage-intro-description ul ul:last-child,
.cottage-intro-wrapper .cottage-intro-description ol ul:last-child {
    padding-bottom: 0;
}

.cottage-intro-wrapper .cottage-intro-description ul li li::before {
    content: "-";
    padding-right: 8px;
}

.cottage-intro-wrapper .cottage-intro-description ul li li {
    list-style: none;
    padding-left: 0;
    margin-left: 15px;
    text-indent: -15px;
}

.cottage-intro-wrapper .cottage-intro-description ul li li:first-child {
    padding-top: 1em;
}

.cottage-intro-wrapper.cottage-intro-image-wrap {
    width: 100%;
    z-index: 1;
    position: relative;
}

.cottage-intro-wrapper .cottage-intro-img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: -15px 15px 45px rgba(73, 94, 119, 0.12);
    filter: saturate(0.8) contrast(0.95);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform;
    aspect-ratio: 16 / 10;
}

.cottage-intro-wrapper:hover .cottage-intro-img {
    filter: saturate(1) contrast(1);
    box-shadow: -20px 20px 50px rgba(73, 94, 119, 0.18);
}

@media (min-width: 768px) {
    .cottage-intro-wrapper .cottage-intro-text-card {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        padding: 40px;
        z-index: 2;
        position: relative;
        box-shadow: 15px 15px 40px rgba(73, 94, 119, 0.08);
        width: 80%;
        border-radius: 30px;
        animation: cottage-parallax-up linear;
        animation-timeline: view();
        animation-range: entry 0% exit 100%;
    }

    .cottage-intro-wrapper .cottage-intro-image-wrap {
        width: 80%;
        margin: -6rem 0 0 auto;
    }

    .cottage-intro-wrapper .cottage-intro-img {
        animation: cottage-parallax-down linear;
        animation-timeline: view();
        animation-range: entry 0% exit 100%;
    }
}

@media (max-width: 980px) {

    .cottage-intro-wrapper .cottage-intro-img,
    .cottage-intro-wrapper .cottage-intro-text-card {
        border-radius: 25px;
    }
}

@media (max-width: 767px) {
    .cottage-intro-wrapper {
        width: 100%;
    }

    .cottage-intro-wrapper .cottage-intro-text-card {
        width: 100%;
        margin-bottom: 3rem;
        border-radius: 20px;
    }

    .cottage-intro-wrapper .cottage-intro-img {
        border-radius: 20px;
    }
}

@media (max-width: 350px) {
    .cottage-intro-wrapper h2.cottage-intro-title {
        font-size: 1.35rem !important;
        letter-spacing: 0.02em !important;
        line-height: 1.2 !important;
    }
}

@keyframes cottage-parallax-up {
    from {
        transform: translateY(40px);
    }

    to {
        transform: translateY(-40px);
    }
}

@keyframes cottage-parallax-down {
    from {
        transform: translateY(-20px);
    }

    to {
        transform: translateY(20px);
    }
}

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

.keyfacts-main-container h2.keyfacts-main-heading {
    font-size: clamp(1.50rem, 1.1rem + 1.3vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    hyphens: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
    padding-bottom: 3rem;
}

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

.keyfacts-main-container .keyfacts-grid-wrapper .keyfacts-grid-item {
    background: #ffffff;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 15px 45px rgba(73, 94, 119, 0.05);
    height: 100%;
    box-sizing: border-box;
}

.keyfacts-main-container .keyfacts-grid-wrapper .kf-icon {
    margin-bottom: 20px;
}

.keyfacts-main-container .keyfacts-grid-wrapper .kf-icon img {
    height: 75px;
    width: 75px;
    display: block;
}

.keyfacts-main-container .keyfacts-grid-wrapper .kf-title {
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
    color: #495E77;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
    padding-bottom: 10px;
}

.keyfacts-main-container .keyfacts-grid-wrapper .kf-desc {
    font-size: 16px !important;
    color: #495E77 !important;
    line-height: 1.5em;
    font-weight: 500;
}

@media (max-width: 980px) {
    .keyfacts-main-container .keyfacts-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .keyfacts-main-container .keyfacts-grid-wrapper .keyfacts-grid-item {
        padding: 2.5rem !important;
        border-radius: 25px !important;
    }

    .keyfacts-main-container .keyfacts-grid-wrapper .kf-icon img {
        height: 60px;
        width: 60px;
    }
}

@media (max-width: 767px) {
    .keyfacts-main-container .keyfacts-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .keyfacts-main-container .keyfacts-grid-wrapper .keyfacts-grid-item {
        padding: 1.5rem !important;
        border-radius: 20px !important;
    }

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

@media (max-width: 350px) {
    .keyfacts-main-container h2.keyfacts-main-heading {
        font-size: 1.35rem !important; 
        letter-spacing: 0.02em !important; 
        line-height: 1.2 !important;
    }
}

.keyfacts-main-container #kostenlink {
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset:4px;
}

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

.cottage-main-wrapper {
    width: 100%;
}

.cottage-main-wrapper .cottage-main-container {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    align-items: start;
}

.cottage-main-wrapper .cottage-main-container .cottage-main-header-col h2.cottage-main-heading {
    font-size: clamp(1.50rem, 1.1rem + 1.3vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    hyphens: auto;
    overflow-wrap: break-word;
    padding-bottom: 0;
}

.cottage-main-wrapper .cottage-main-container .cottage-main-content-col .cottage-main-text {
    line-height: 1.5;
}

.cottage-main-wrapper .cottage-main-container .cottage-main-content-col .cottage-main-text .service-custom-main-content-list-headline {
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 1em 0;
    display: block;
}

.cottage-main-wrapper .cottage-main-container .cottage-main-content-col .cottage-main-text ul {
    padding-bottom: 1em;
    list-style-position: outside;
}

.cottage-main-wrapper .cottage-main-container .cottage-main-content-col .cottage-main-text ul:last-child {
    padding-bottom: 0;
}

.cottage-main-wrapper .cottage-main-container .cottage-main-content-col .cottage-main-text ul li {
    padding-bottom: 1em;
}

.cottage-main-wrapper .cottage-main-container .cottage-main-content-col .cottage-main-text ul li:last-child {
    padding-bottom: 0;
}

.cottage-main-wrapper .cottage-main-container .cottage-main-content-col .cottage-main-text ul ul {
    list-style: none;
    padding-bottom: 1em;
}

.cottage-main-wrapper .cottage-main-container .cottage-main-content-col .cottage-main-text ul ul:last-child {
    padding-bottom: 0;
}

.cottage-main-wrapper .cottage-main-container .cottage-main-content-col .cottage-main-text ul li li::before {
    content: "-";
    padding-right: 8px;
}

.cottage-main-wrapper .cottage-main-container .cottage-main-content-col .cottage-main-text ul li li {
    list-style: none;
    padding-left: 0;
    margin-left: 15px;
    text-indent: -15px;
}

.cottage-main-wrapper .cottage-main-container .cottage-main-content-col .cottage-main-text ul li li:first-child {
    padding-top: 1em;
}

@media (max-width: 980px) {
    .cottage-main-wrapper .cottage-main-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 350px) {
    .cottage-main-wrapper .cottage-main-container .cottage-main-header-col h2.cottage-main-heading {
        font-size: 1.35rem !important;
        letter-spacing: 0.02em !important;
        line-height: 1.2 !important;
    }
}

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

#video-area {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.cottage-video-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
}

.cottage-video-item {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.cottage-video-item iframe {
    width: 100% !important;
    aspect-ratio: 16 / 9;
    display: block;
    border: 0;
}

.cottage-video-item a[href="#"] {
    scroll-margin-top: 100vh;
}

@media (max-width: 767px) {
    .cottage-video-item {
        border-radius: 20px;
    }
}

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

.cottage-pricing-wrapper {
    width: 100%;
}

.cottage-pricing-wrapper .cottage-pricing-container h2.cottage-pricing-main-title {
    font-size: clamp(1.50rem, 1.1rem + 1.3vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    hyphens: auto;
    overflow-wrap: break-word;
    padding-bottom: 2rem;
    text-align: center;
}

.cottage-pricing-wrapper .cottage-pricing-container .cottage-pricing-description {
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.5;
}

.cottage-pricing-wrapper .cottage-pricing-container .cottage-pricing-description a {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cottage-pricing-wrapper .cottage-pricing-container .cottage-pricing-grid {
    display: grid;
    gap: 3rem;
}

.cottage-pricing-item {
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cottage-pricing-grid .cottage-pricing-item .cottage-pricing-table-heading {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 15px;
    padding: 25px 30px;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.2rem);
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.cottage-pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    display: block;
}

.cottage-pricing-table tbody {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cottage-pricing-table tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.cottage-pricing-table tr:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.6);
}

.cottage-pos-col {
    font-size: 1rem;
    font-weight: 500;
}

.cottage-price-col {
    background: #ffffff;
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    min-width: 80px;
    text-align: center;
}

.cottage-price-col::after {
    content: " €";
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 980px) {
    .cottage-pricing-wrapper .cottage-pricing-container .cottage-pricing-grid {
        gap: 2.5rem;
    }
    .cottage-pricing-table tr {
        border-radius: 12px;
    }   
}

@media (max-width: 600px) {
    .cottage-pricing-wrapper .cottage-pricing-container h2.cottage-pricing-main-title {
        font-size: 1.6rem;
        padding-bottom: 1.5rem;
    }

    .cottage-pricing-wrapper .cottage-pricing-container .cottage-pricing-description {
        margin-bottom: 2rem;
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .cottage-pricing-wrapper .cottage-pricing-container .cottage-pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cottage-pricing-grid .cottage-pricing-item .cottage-pricing-table-heading {
        padding: 18px 20px;
        font-size: 1rem !important;
    }

    .cottage-pricing-table tr {
        padding: 12px 15px;
        border-radius: 10px;
    }

    .cottage-pos-col {
        font-size: 0.9rem;
        line-height: 1.3;
        padding-right: 10px;
    }

    .cottage-price-col {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-width: 70px;
    }

    .cottage-price-col::after {
        font-size: 0.75rem;
    }

    .cottage-pricing-table tr:hover {
        transform: none;
        background: rgba(255, 255, 255, 0.25);
    }
}

@media (max-width: 380px) {
    .cottage-pricing-table tr {
        padding: 10px 12px;
    }

    .cottage-pos-col {
        font-size: 0.85rem;
    }

    .cottage-price-col {
        min-width: 65px;
        padding: 0.3rem 0.6rem;
    }
}

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

.cottage-cta-wrapper {
    max-width: 1000px;
    width: 80%;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

.cottage-cta-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    position: relative;
}

@media (min-width: 768px) {
    .cottage-cta-content {
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        padding: 60px;
        z-index: 2;
        position: relative;
        box-shadow: -15px 15px 40px rgba(73, 94, 119, 0.08);
        width: 80%;
        border-radius: 30px;
        animation: cottage-parallax-up linear;
        animation-timeline: view();
        animation-range: entry 0% exit 100%;
    }

    .cottage-cta-image {
        width: 80% !important;
        margin: -8rem auto 0 0;
        z-index: 1;
        position: relative;
    }

    .cottage-cta-image img {
        display: block;
        aspect-ratio: 16 / 10;
        object-fit: cover;
        border-radius: 30px;
        box-shadow: 15px 15px 45px rgba(73, 94, 119, 0.12);
        filter: saturate(0.8) contrast(0.95);
        transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        animation: cottage-parallax-down linear;
        animation-timeline: view();
        animation-range: entry 0% exit 100%;
    }

    .cottage-cta-wrapper:hover .cottage-cta-image img {
        filter: saturate(1) contrast(1);
        box-shadow: 20px 20px 50px rgba(73, 94, 119, 0.18);
    }
}

.cottage-cta-title {
    font-size: clamp(1.50rem, 1.1rem + 1.3vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    hyphens: auto;
    overflow-wrap: break-word;
    padding-bottom: 2rem;
}

.cottage-cta-desc {
    line-height: 1.5em;
    margin-bottom: 2rem;
}

.cottage-cta-btn {
    display: inline-block;
    padding: .9em 2.1em;
    background: #495E77;
    color: #ffffff !important;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(73, 94, 119, 0.2);
}

.cottage-cta-btn:hover {
    transform: scale(1.02);
}

@media (max-width: 980px) {

    .cottage-cta-content,
    .cottage-cta-image img {
        border-radius: 25px;
    }
}

@media (max-width: 767px) {
    .cottage-cta-wrapper {
        max-width: none;
        width: 100%;
    }

    .cottage-cta-content {
        margin-bottom: 3rem;
        text-align: center;
    }

    .cottage-cta-content {
        border-radius: 0;
    }

    .cottage-cta-image img {
        border-radius: 20px;
    }
}

@keyframes cottage-parallax-up {
    from {
        transform: translateY(40px);
    }

    to {
        transform: translateY(-40px);
    }
}

@keyframes cottage-parallax-down {
    from {
        transform: translateY(-20px);
    }

    to {
        transform: translateY(20px);
    }
}

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

.cottage-faq-wrapper {
    width: 100%;
}

.cottage-faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cottage-faq-main-title {
    font-size: clamp(1.50rem, 1.1rem + 1.3vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.3;
    padding-bottom: 2rem;
}

.cottage-faq-main-desc {
    line-height: 1.5;
}

.cottage-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cottage-faq-item {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cottage-faq-item:hover {
    background: rgba(255, 255, 255, 0.5);
}

.cottage-faq-item.active {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

.cottage-faq-question {
    width: 100%;
    padding: 20px 30px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #495F76;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
}

.cottage-faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 20px;
}

.cottage-faq-icon::before,
.cottage-faq-icon::after {
    content: '';
    position: absolute;
    background-color: #495F76;
}

.cottage-faq-icon::before {
    top: 9px;
    left: 0;
    width: 100%;
    height: 2px;
}

.cottage-faq-icon::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 100%;
}

.cottage-faq-item.active .cottage-faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.cottage-faq-item.active .cottage-faq-icon::before {
    transform: rotate(180deg);
}

.cottage-faq-answer {
    display: none; 
    overflow: hidden;
}

.cottage-faq-item.active .cottage-faq-answer {
    display: block;
    max-height: 1000px !important;
    height: auto;
    overflow: visible;
}

.cottage-faq-answer-content {
    padding: 0 30px 20px 30px;
    color: #495F76;
    line-height: 1.6;
    font-size: 16px;
}

@media (max-width: 980px) {
    .cottage-faq-answer-content {
        padding: 0 25px 18px 25px;
        font-size: 15px;
    }

    .cottage-faq-question {
        padding: 18px 25px;
        font-size: 0.98rem;
    }

    .cottage-faq-item {
        border-radius: 12px;
    }

    .cottage-faq-icon {
        width: 17px;
        height: 17px;
        margin-left: 17px;
    }

    .cottage-faq-icon::before {
        top: 8px;
    }

    .cottage-faq-icon::after {
        left: 8px;
    }
}

@media (max-width: 767px) {
    .cottage-faq-answer-content {
        padding: 0 20px 15px 20px;
        font-size: 14px;
    }

    .cottage-faq-question {
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    .cottage-faq-item {
        border-radius: 10px;
    }

    .cottage-faq-icon {
        width: 15px;
        height: 15px;
        margin-left: 15px;
    }

    .cottage-faq-icon::before {
        top: 7px;
    }

    .cottage-faq-icon::after {
        left: 7px;
    }
}

@media (max-width: 380px) {
    .cottage-faq-question {
        font-size: 0.85rem;
    }
}



/* ============================================================
DIVI LAYOUT FIX
============================================================ */

@media (max-width:980px) {
    html body #main-content .et-l.et-l--body .master-section .post-content-row,
    html body #main-content .et-l.et-l--body .master-section .global-services1-header,
    html body #main-content .et-l.et-l--body .master-section .global-services2-intro,
    html body #main-content .et-l.et-l--body .master-section .global-services3-keyfacts,
    html body #main-content .et-l.et-l--body .master-section .global-services4-maincontent,
    html body #main-content .et-l.et-l--body .master-section .global-services5-videogallery,
    html body #main-content .et-l.et-l--body .master-section .global-services6-pricetable-acf,
    html body #main-content .et-l.et-l--body .master-section .global-services7-cta,
    html body #main-content .et-l.et-l--body .master-section .global-services8-faq {
        width: 100% !important;
   }
   html body #main-content .et-l.et-l--body .master-section .et_pb_row_0 {
    width:100%!important;
    }
}