:root {
    --primary: #0066cc;
    --primary-dark: #003d99;
    --secondary: #00d4ff;
    --accent: #13ba4d;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --muted: #64748b;
    --light-bg: #f8fafc;
    --border-color: #e2e8f0;
    --white: #fff;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, .1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, .1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, .15);
    --transition: all .3s cubic-bezier(.4, 0, .2, 1)
}

* {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif
}

body {
    background: var(--white);
    color: var(--text-dark)
}

.space-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, rgba(0, 102, 204, .1) 0%, rgba(0, 212, 255, .1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    position: relative;
    overflow: hidden;
    object-fit: cover;
}

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

.space-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.5;
    margin: 12px 0;
    min-height: 45px;
}

.hero-coworking {
    background: transparent;
    color: var(--white);
    padding: 140px 20px 120px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center
}

.hero-coworking::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, .15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1
}

.hero-coworking::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(19, 186, 77, .08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .3;
    z-index: 0
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 30, 80, .55) 0%, rgba(0, 40, 100, .5) 100%);
    z-index: 0;
    pointer-events: none
}

.hero-content {
    position: relative;
    z-index: 2
}

.hero-title {
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 950;
    line-height: 1.15;
    margin: 0 0 24px 0;
    letter-spacing: -.03em
}

.hero-subtitle {
    font-size: clamp(16px, 2.2vw, 22px);
    font-weight: 500;
    line-height: 1.6;
    margin: 0 0 56px 0;
    opacity: .95;
    max-width: 600px
}

.search-box {
    display: none;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--secondary) 0%, #00b8d4 100%);
    color: #fff;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.35);
    text-decoration: none;
}

.hero-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 212, 255, 0.5);
}

.hero-cta-btn i {
    font-size: 1.3rem;
}

.filters-container {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 20px
}

.filter-title {
    font-size: 1.3rem;
    font-weight: 850;
    margin-bottom: 28px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px
}

.form-label {
    font-weight: 750;
    font-size: .95rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.form-select,
.form-control {
    border: 2px solid var(--border-color) !important;
    border-radius: 10px !important;
    padding: 12px 14px !important;
    font-weight: 600;
    transition: var(--transition);
    color: var(--text-dark)
}

.form-select:focus,
.form-control:focus {
    border-color: var(--secondary) !important;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, .1) !important
}

.form-select:hover,
.form-control:hover {
    border-color: var(--primary) !important
}

.form-check-input {
    border: 2px solid var(--border-color);
    border-radius: 6px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: var(--transition)
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary)
}

.form-check-label {
    font-weight: 600;
    cursor: pointer;
    margin-left: 8px
}

.btn-outline-primary {
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
    font-weight: 750 !important;
    border-radius: 10px !important;
    transition: var(--transition);
    margin-top: 20px
}

.btn-outline-primary:hover {
    background: var(--primary) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, .25)
}

.section-header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
    gap: 24px;
    flex-wrap: wrap
}

.view-toggle {
    display: flex;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    flex-shrink: 0;
}

.view-toggle button {
    padding: 11px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .95rem;
    white-space: nowrap;
}

.view-toggle button:first-child {
    border-right: 2px solid var(--border-color)
}

.view-toggle button.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff
}

.view-toggle button:hover:not(.active) {
    color: var(--primary)
}

.section-header-main h3 {
    font-size: 1.8rem;
    font-weight: 950;
    margin: 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px
}

.spaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    transition: var(--transition)
}

.spaces-grid.view-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    grid-template-columns: none;
}

.spaces-grid.view-list .space-card {
    flex-direction: row;
    height: auto;
    align-items: stretch;
    display: grid;
    grid-template-columns: 380px 1fr 220px;
    gap: 0;
}

.spaces-grid.view-list .space-image {
    width: 380px;
    height: 320px;
    flex-shrink: 0;
    cursor: pointer;
}

.space-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.space-card:hover {
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.12);
    transform: translateY(-8px);
    border-color: #e8f0ff;
}

.space-card:hover .space-image img {
    transform: scale(1.06);
}

.space-image {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, rgba(0, 102, 204, .1) 0%, rgba(0, 212, 255, .1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.space-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.12) 100%);
    pointer-events: none;
    z-index: 2;
}

.space-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.space-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 102, 204, 0.95);
    color: #fff;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    z-index: 5;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.3);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 6px;
}

.space-badge::before {
    content: '👥';
    font-size: 0.9rem;
}

.fav-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
}

.fav-btn:hover {
    background: #fff;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

.fav-btn i {
    font-size: 1.1rem;
}

.space-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spaces-grid.view-list .space-content {
    padding: 28px 24px;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spaces-grid.view-list .space-name {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.spaces-grid.view-list .space-description {
    display: none;
}

.spaces-grid.view-list .space-features {
    margin: 8px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.spaces-grid.view-list .space-features .feature-badge {
    padding: 5px 10px;
    font-size: 0.75rem;
}

.spaces-grid.view-list .space-content .price-section {
    display: none;
}

.spaces-list-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 24px !important;
    gap: 12px;
    background: #fafbff;
    border-left: 1px solid #f0f0f0;
}

.spaces-grid:not(.view-list) .spaces-list-right {
    background: transparent;
    border-left: none;
    padding: 0;
    justify-content: flex-start;
    gap: 12px;
}

.spaces-grid:not(.view-list) .spaces-list-right .price-section {
    margin-top: auto;
    padding-top: 16px;
}

.spaces-list-price {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spaces-list-price-value {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 2px;
}

.spaces-list-price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 16px;
}

.spaces-list-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.space-name {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 6px 0;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.space-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
    font-weight: 600;
}

.space-info i {
    color: var(--secondary);
    font-size: 1rem;
}

.space-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.space-rating span:first-child {
    letter-spacing: 1px;
}

.space-rating span:nth-child(2) {
    font-weight: 700;
    color: var(--text-dark);
}

.space-rating span:nth-child(3) {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.space-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 4px 0 0 0;
}

.feature-badge {
    background: #f0f7ff;
    border: 1px solid #d4e6ff;
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}

.feature-badge:hover {
    background: #e8f3ff;
    border-color: var(--secondary);
}

.space-price {
    font-size: 2.2rem;
    font-weight: 950;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -1px;
}

.space-price-label {
    font-size: .95rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 2px;
}

.price-period-selector {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
    background: #f8f9fa;
    padding: 4px;
    border-radius: 8px;
    width: fit-content;
    margin-top: 8px;
}

.period-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.period-btn:hover {
    background: rgba(0, 102, 204, 0.08);
    color: var(--primary);
}

.period-btn.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, #1ab86d 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-top: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .8
    }
}

.space-price {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary);
    margin: 4px 0 0 0;
    letter-spacing: -1px;
}

.space-price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 2px;
    margin-bottom: 0;
}

.price-section {
    margin-top: 12px;
    padding: 16px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.space-footer {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
}

.btn-reserve {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-reserve:hover {
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.35);
    transform: translateY(-2px);
}

.btn-details {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-details:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.spaces-grid.view-list .space-footer {
    display: none;
}

.spaces-grid.view-list .spaces-list-right .space-footer {
    display: flex !important;
}

.spaces-grid.view-list .btn-reserve,
.spaces-grid.view-list .btn-details {
    padding: 12px 16px;
    font-size: 0.9rem;
    flex: 1;
    margin: 0 !important;
}

.btn-view {
    display: none !important;
}

@media(max-width:768px) {
    .section-header-main {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .view-toggle {
        width: 100%;
    }
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 204, .08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.section-header {
    text-align: center;
    margin-bottom: 80px
}

.section-eyebrow {
    color: var(--primary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: .95rem;
    margin-bottom: 16px;
    display: block
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 950;
    letter-spacing: -.02em;
    margin-bottom: 16px;
    color: var(--text-dark)
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500
}

.why-choose-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    margin-top: 60px;
    justify-content: center;
}

.why-item {
    background: var(--white);
    padding: 48px 32px;
    border-radius: 18px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    flex: 0 1 calc(33.333% - 24px);
    min-width: 280px;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition)
}

.why-item:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px)
}

.why-item:hover::before {
    transform: scaleX(1)
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block
}

.why-title {
    font-size: 1.3rem;
    font-weight: 850;
    margin: 0 0 16px 0;
    color: var(--text-dark)
}

.why-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
    font-weight: 500
}

.testimonials-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, .1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px
}

.testimonial-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 36px;
    border-radius: 16px;
    transition: var(--transition)
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(0, 212, 255, .5);
    transform: translateY(-6px)
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 4px
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 24px 0;
    font-style: italic;
    font-weight: 500;
    opacity: .98
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, #00b8d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 850;
    margin: 0
}

.testimonial-position {
    font-size: .9rem;
    opacity: .85;
    font-weight: 600;
    margin: 0
}

.faq-section {
    background: linear-gradient(180deg, var(--light-bg) 0%, #fff 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.faq-content {
    margin-top: 60px
}

.cta-footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary) 80%);
    color: #fff;
    padding: 80px 0;
}

.cta-footer h2 {
    font-size: 2.2rem;
    font-weight: 950;
    margin-bottom: 12px;
    letter-spacing: -.02em
}

.cta-footer p {
    font-size: 1.1rem;
    opacity: .9;
    margin-bottom: 0;
    font-weight: 500
}

.btn-success-lg {
    background: linear-gradient(135deg, var(--accent) 0%, #10b981 100%) !important;
    border: none !important;
    padding: 16px 36px !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(19, 186, 77, .3)
}

.btn-success-lg:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(19, 186, 77, .4)
}

.tip-card {
    background: linear-gradient(135deg, rgba(0, 102, 204, .08) 0%, rgba(0, 212, 255, .08) 100%);
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
    border-left: 4px solid var(--primary)
}

.tip-card h6 {
    font-weight: 850;
    color: var(--primary);
    margin-bottom: 8px
}

.tip-card small {
    color: var(--text-muted);
    line-height: 1.6
}

@media(max-width:1200px) {
    .spaces-grid.view-list .space-card {
        grid-template-columns: 320px 1fr 160px;
    }

    .spaces-grid.view-list .space-image {
        width: 320px;
        height: 280px;
    }

    .why-item {
        flex: 0 1 calc(50% - 18px);
    }
}

@media(max-width:992px) {
    .spaces-grid.view-list .space-card {
        grid-template-columns: 1fr;
    }

    .spaces-grid.view-list .space-image {
        width: 100%;
        height: 260px;
    }

    .spaces-list-right {
        padding: 20px 24px;
        border-left: none;
        border-top: 1px solid #f0f0f0;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }

    .spaces-list-price {
        text-align: left;
    }

    .spaces-list-buttons {
        flex-direction: row;
    }

    .why-item {
        flex: 0 1 100%;
    }
}

@media(max-width:768px) {
    .spaces-grid.view-list .space-card {
        grid-template-columns: 1fr;
    }

    .spaces-grid.view-list .space-image {
        width: 100%;
        height: 240px;
    }

    .spaces-list-right {
        padding: 20px 24px;
        flex-direction: column;
        border: none;
    }

    .spaces-list-buttons {
        flex-direction: column;
    }

    .spaces-list-buttons .btn-reserve,
    .spaces-list-buttons .btn-details {
        width: 100%;
    }

    .hero-coworking {
        padding: 80px 20px 60px
    }

    .hero-title {
        font-size: 36px
    }

    .hero-subtitle {
        font-size: 16px
    }

    .hero-cta-btn {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .search-box {
        flex-direction: column
    }

    .section-header-main {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .view-toggle button {
        flex: 1
    }

    .spaces-grid {
        gap: 16px
    }

    .space-card {
        flex-direction: column
    }

    .space-image {
        width: 100%;
        height: 240px;
        cursor: pointer;
    }

    .space-name {
        font-size: 1.2rem;
    }

    .space-price {
        font-size: 2rem;
    }

    .space-footer {
        flex-direction: row;
        gap: 10px;
    }

    .btn-reserve,
    .btn-details {
        padding: 11px 16px;
        font-size: 0.9rem;
        flex: 1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .cta-footer {
        padding: 60px 20px
    }

    .cta-footer h2 {
        font-size: 1.8rem
    }
}
