/* Dodatkowe customowe style dla Baza Chilloutowo */
html, body {
    overflow-x: hidden;
    width: 100%;
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text-main);
    margin: 0;
    line-height: 1.6;
}

/* Screen reader text (ukrywa link Przejdź do treści) */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: var(--color-dark);
    display: block;
    font-size: 14px;
    font-weight: 600;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.1;
    margin-top: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.text-center { text-align: center; }

.section-padding {
    padding: 120px 0;
}

.text-muted {
    color: var(--color-text-muted);
}
.text-light {
    color: var(--color-light);
}

.dark-section {
    background-color: var(--color-dark);
    color: var(--color-light);
}
.dark-section .text-muted {
    color: var(--color-blue-grey);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn--outline {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    background: transparent;
}
.btn--outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.btn--solid {
    background: #fff;
    color: var(--color-dark);
}
.btn--solid:hover {
    background: var(--color-light);
    transform: translateY(-2px);
}

.btn-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--color-dark);
    padding-bottom: 4px;
    display: inline-block;
    transition: opacity 0.3s ease;
}
.btn-text:hover {
    opacity: 0.7;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: padding 0.3s ease, background-color 0.3s ease;
    background: transparent;
}

.site-header.is-scrolled {
    padding: 15px 0;
    background: transparent;
}

.site-header.is-scrolled .header-inner {
    transform: translateY(-10px);
}

.site-header.is-scrolled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140%;
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.8) 0%, rgba(15, 15, 15, 0) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.site-logo {
    max-height: 60px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: max-height 0.3s ease;
}

.main-navigation {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.pill-nav {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 35px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.site-header.is-scrolled .pill-nav {
    background: rgba(18, 22, 26, 0.85);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 35px;
}

.nav-menu > li {
    position: relative;
    padding: 5px 0;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}
.nav-menu a:hover {
    color: var(--color-accent);
    opacity: 1;
}
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a,
.nav-menu .current-menu-ancestor > a,
.nav-menu a.active-link {
    color: var(--color-accent) !important;
    opacity: 1 !important;
}

/* Dropdown */
.has-dropdown > a::after {
    content: " \25BE";
    font-size: 12px;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px 0;
    list-style: none;
    margin: 0;
    min-width: 280px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu li { padding: 0; }
.dropdown-menu a {
    color: var(--color-dark);
    padding: 10px 25px;
    display: block;
    font-size: 13px;
    transition: background-color 0.2s ease;
    text-transform: none;
}
.dropdown-menu a:hover {
    background-color: rgba(0,0,0,0.05);
}

.header-cta {
    position: relative;
    z-index: 2;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 15, 10, 0.7) 0%, rgba(10, 15, 10, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    padding-bottom: 220px;
}

.hero-floating-card {
    position: absolute;
    top: 40%;
    left: 40px;
    width: 200px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    color: #fff;
}

.hero-text-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.hero-title {
    font-size: 90px;
    color: #fff;
    margin: 0;
    letter-spacing: -2px;
}

.hero-title .highlight {
    font-size: 80px;
    text-transform: lowercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0;
    display: block;
    line-height: 0.8;
}

.hero-description-box {
    max-width: 400px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-title {
    font-size: 54px;
    color: var(--color-dark);
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.feature-desc {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.8;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-image-back {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 90%;
    border-radius: 20px;
    overflow: hidden;
}

.about-image-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-front {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 60%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 8px solid #fff;
}

.about-image-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

/* --- Suites Section --- */
.section-header {
    margin-bottom: 60px;
}

.eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.suites-section .section-title {
    font-size: 48px;
    margin-bottom: 15px;
}

.suites-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.suite-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--color-dark-alt);
}

.suite-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

.suite-card:hover .suite-image {
    transform: scale(1.05);
}

.suite-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 22, 26, 0.95) 0%, rgba(18, 22, 26, 0) 60%);
}

.suite-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 2;
    box-sizing: border-box;
}

.suite-card--large {
    height: 650px;
}

.suite-card--small {
    height: 400px;
    flex: 1;
}

.suites-subgrid {
    display: flex;
    gap: 30px;
}

.suite-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.suite-tag {
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    font-size: 10px;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    color: #fff;
}

.suite-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.suite-header-text {
    flex: 1;
    min-width: 0;
}

.suite-actions {
    flex-shrink: 0;
    display: flex;
}

.suite-card .suite-title {
    font-size: 54px;
    margin-bottom: 10px;
    color: #fff;
}

.suite-card--small .suite-title {
    font-size: 32px;
    margin: 0;
    padding-bottom: 10px;
}

.suite-desc {
    max-width: 450px;
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.btn-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-circle:hover {
    background: rgba(255,255,255,0.1);
}

.btn-circle--solid {
    background: #fff;
    color: var(--color-dark);
    margin-left: 10px;
}

.btn-circle--solid:hover {
    background: var(--color-light);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}
.faq-header {
    position: sticky;
    top: 100px;
    align-self: start;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.faq-question {
    padding: 30px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: var(--color-text-muted);
    cursor: pointer;
    position: relative;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-text-muted);
    transition: all 0.3s ease;
}
.faq-icon::before { width: 10px; height: 1px; }
.faq-icon::after { width: 1px; height: 10px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item[open] .faq-question { color: var(--color-dark); font-weight: 600; }
.faq-answer {
    padding-bottom: 30px;
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* --- Footer --- */
.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr;
    gap: 60px;
    padding: 80px 40px 60px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-links {
    justify-self: end;
}

/* =============================================
   GLOBAL BREADCRUMBS (wszystkie podstrony)
   ============================================= */
.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.breadcrumbs a,
.breadcrumbs span {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.25s ease;
}

.breadcrumbs a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumbs .breadcrumb-current {
    color: rgba(255, 255, 255, 0.88);
}

.breadcrumbs .breadcrumb-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
}

/* Wariant na jasnym tle (np. wewnątrz sekcji light) */
.breadcrumbs--dark a,
.breadcrumbs--dark span {
    color: rgba(0, 0, 0, 0.45);
}

.breadcrumbs--dark a:hover {
    color: var(--color-dark);
}

.breadcrumbs--dark .breadcrumb-current {
    color: var(--color-dark);
}

.breadcrumbs--dark .breadcrumb-sep {
    color: rgba(0, 0, 0, 0.25);
}

/* =============================================
   MOBILE MENU & HAMBURGER NAVIGATION
   ============================================= */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 9999;
    position: relative;
    outline: none;
}

.hamburger-box {
    width: 24px;
    height: 18px;
    display: inline-block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before {
    content: "";
    top: -8px;
}

.hamburger-inner::after {
    content: "";
    top: 8px;
}

.menu-toggle.is-open .hamburger-inner {
    background-color: transparent !important;
}

.menu-toggle.is-open .hamburger-inner::before {
    transform: rotate(45deg);
    top: 0;
    background-color: #0A0A0A;
}

.menu-toggle.is-open .hamburger-inner::after {
    transform: rotate(-45deg);
    top: 0;
    background-color: #0A0A0A;
}

body.menu-open {
    overflow: hidden;
}

.mobile-menu-cta {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        margin-right: 15px;
    }
    
    .header-cta {
        display: none !important;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        transform: none;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        background: #fff !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        z-index: 9998;
        padding: 100px 30px 60px !important;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        box-sizing: border-box;
        border-radius: 0 !important;
        border: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .main-navigation.is-open {
        right: 0;
    }
    
    .nav-menu {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 100%;
        margin-bottom: 40px;
    }
    
    .nav-menu > li {
        width: 100%;
        text-align: center;
        padding: 5px 0;
    }
    
    .nav-menu a {
        color: #0A0A0A;
        font-family: 'Oswald', sans-serif;
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 500;
        letter-spacing: 1px;
        display: block;
        opacity: 1;
        width: 100%;
    }
    
    .nav-menu a:hover {
        opacity: 1;
        color: var(--color-accent);
    }
    
    .nav-menu .current-menu-item > a,
    .nav-menu .current_page_item > a,
    .nav-menu .current-menu-ancestor > a,
    .nav-menu a.active-link {
        color: var(--color-accent) !important;
        opacity: 1 !important;
    }
    
    .main-navigation .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        padding: 10px 0 0 !important;
        min-width: auto !important;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100% !important;
        left: auto !important;
    }
    
    .main-navigation .has-dropdown.dropdown-active .dropdown-menu {
        display: flex !important;
    }
    
    .main-navigation .has-dropdown.dropdown-active > a::after {
        content: " \25B4";
    }
    
    .main-navigation .dropdown-menu li {
        width: 100% !important;
        text-align: center !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .main-navigation .dropdown-menu a {
        color: rgba(10, 10, 10, 0.6) !important;
        font-size: 15px !important;
        padding: 8px 15px !important;
        font-family: 'Montserrat', sans-serif !important;
        text-transform: none !important;
        width: 100% !important;
        display: block !important;
        box-sizing: border-box !important;
        text-align: center !important;
        background: transparent !important;
        border: none !important;
        opacity: 1 !important;
    }
    
    .main-navigation .dropdown-menu a:hover,
    .main-navigation .dropdown-menu .current-menu-item > a,
    .main-navigation .dropdown-menu a.active-link {
        color: var(--color-accent) !important;
        background: transparent !important;
    }
    
    /* Drawer CTA Button */
    .mobile-menu-cta {
        display: block;
        width: 100%;
        margin-top: auto;
        padding-top: 20px;
    }
    
    .mobile-menu-cta .btn {
        display: flex;
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: 2px solid var(--color-dark);
        color: var(--color-dark);
        background: transparent;
        border-radius: 50px;
        box-sizing: border-box;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-cta .btn:hover {
        background: var(--color-dark);
        color: #fff;
    }

    .footer-links {
        justify-self: start;
    }
}

.footer-logo {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-desc {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-bottom: 30px;
    max-width: 300px;
    line-height: 1.8;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.newsletter-form {
    display: flex;
    margin-top: 10px;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 15px;
    color: #fff;
    border-radius: 4px 0 0 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
}

.newsletter-form button {
    border-radius: 0 4px 4px 0;
    border: none;
    cursor: pointer;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
}

.footer-legal a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    margin-left: 20px;
}

/* --- Timeline Section --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0,0,0,0.1);
    transform: translateX(-50%);
    z-index: 1;
}
.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-accent);
    height: 0;
    transition: height 0.1s ease;
}
.timeline-item {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 60px;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-content {
    width: 45%;
    position: relative;
    z-index: 2;
}
.timeline-empty {
    width: 45%;
}
.timeline-node {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    transition: background-color 0.4s ease, color 0.4s ease;
}
.timeline-node.active {
    background: var(--color-accent);
    color: #fff;
}
.timeline-item.left .timeline-content {
    text-align: right;
    padding-right: 50px;
}
.timeline-item.right .timeline-content {
    text-align: left;
    padding-left: 50px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title { font-size: 70px; }
    .hero-title .highlight { font-size: 60px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section-padding { padding: 60px 0; }
    .site-header { padding: 15px 0; }
    .site-logo { max-height: 40px; }
    .hero-section { min-height: 100vh; height: auto; padding-top: 100px; }
    .hero-text-wrapper { flex-direction: column; align-items: flex-start; gap: 30px; }
    .hero-title { font-size: 42px; line-height: 1.1; }
    .hero-title .highlight { font-size: 36px; line-height: 1.1; margin-top: 5px; }
    .hero-floating-card { display: none; }
    .hero-buttons { flex-direction: column; width: 100%; gap: 10px; }
    .hero-buttons .btn { width: 100%; justify-content: center; box-sizing: border-box; }
    .about-content .section-title { font-size: 36px; }
    .about-images { height: 400px; margin-top: 40px; }
    .suite-card--large { height: 450px; }
    .suite-card--small { height: 350px; }
    .suites-subgrid { flex-direction: column; gap: 20px; }
    .suite-card-content { padding: 20px; }
    .suite-card .suite-title { font-size: 32px; }
    .suite-desc { font-size: 13px; line-height: 1.4; }
    .suite-header-flex { flex-direction: column; align-items: flex-start; gap: 15px; }
    .suite-actions { width: 100%; justify-content: flex-end; }
    .suite-like { top: 20px; right: 20px; width: 35px; height: 35px; }
    .suites-section .section-title { font-size: 36px; }
    .faq-grid { grid-template-columns: 1fr; gap: 30px; }
    .faq-accordion { min-height: auto; }
    .faq-header { position: static; text-align: left; }
    .faq-header .section-title { font-size: 36px !important; margin-bottom: 20px !important; }
    .faq-question { padding: 20px 0; font-size: 15px; gap: 15px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px 40px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .timeline-line { left: 30px; }
    .timeline-node { left: 30px; }
    .timeline-item.left .timeline-empty, .timeline-item.right .timeline-empty { display: none; }
    .timeline-item.left .timeline-content, .timeline-item.right .timeline-content { width: 100%; padding-left: 80px !important; padding-right: 0 !important; text-align: left !important; }
}


