html {
    scroll-behavior: smooth;
}

/* Large Screen Optimization (1920x1080) */
@media (min-width: 1920px) {
    body {
        max-width: 1920px;
        margin: 0 auto;
        position: relative;
    }
    
    .header {
        max-width: 1920px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    
    .hero-section {
        max-width: 1920px;
    }
    
    .section {
        max-width: 1920px;
        margin: 0 auto;
    }
    
    .main-footer {
        max-width: 1920px;
        margin: 0 auto;
    }
    
    .featured-panels-container {
        max-width: 1920px;
    }
    
    .about-container {
        max-width: 1200px;
    }
    
    .blog-section {
        max-width: 1920px;
        margin: 0 auto;
    }
    
    .stay-section {
        max-width: 1920px;
        margin: 0 auto;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button {
    font-weight: inherit;
}

body {
    font-family: 'Inter', sans-serif;
    background: #faf8f5;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: auto;
    overflow-y: visible;
    line-height: 1.6;
    font-size: 16px;
    letter-spacing: -0.04em;
}

body::before {
    display: none;
}

/* Header Styles */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: none;
    z-index: 1000;
    padding-top: 20px;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-find-stay {
    color: #3d271a;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    background: rgba(250, 248, 245, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.nav-find-stay:hover {
    color: #3d271a;
    background: rgba(250, 248, 245, 0.5);
}

.nav-logo {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
}

.logo-image {
    height: 36px;
    width: auto;
    display: block;
    filter: brightness(0) saturate(100%) invert(15%) sepia(30%) saturate(1500%) hue-rotate(340deg) brightness(0.2) contrast(1.1);
}

/* White logo on about page */
body:has(.about-page-hero) .logo-image {
    filter: brightness(0) invert(1);
}

/* White navbar buttons on about page */
body:has(.about-page-hero) .nav-find-stay {
    color: #ffffff;
}

body:has(.about-page-hero) .nav-find-stay:hover {
    color: #ffffff;
}

body:has(.about-page-hero) .nav-toggle .nav-icon {
    color: #ffffff;
}

body:has(.about-page-hero) .nav-toggle:hover .nav-icon {
    color: #ffffff;
}


.nav-toggle {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: rgba(250, 248, 245, 0.3);
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50px;
    z-index: 1001;
    backdrop-filter: blur(10px);
    transition: background 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(250, 248, 245, 0.5);
}

.nav-toggle .nav-icon {
    width: 20px;
    height: 20px;
    color: #3d271a;
    transition: color 0.2s ease;
}

.nav-toggle:hover .nav-icon {
    color: #3d271a;
}

.nav-menu {
    position: absolute;
    top: 100%;
    right: 20px;
    background: #faf8f5;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    overflow: hidden;
    z-index: 1000;
    max-width: 600px;
}

.nav-menu.active {
    display: block;
}

.nav-menu-top-header {
    padding: 16px 24px;
    border-bottom: 1px solid #e5e5e5;
    background: rgba(61, 39, 26, 0.05);
}

.nav-menu-top-header:last-of-type {
    border-bottom: 1px solid #e5e5e5;
}

.nav-menu-top-header .nav-sign-in-btn {
    width: 100%;
    margin: 0;
}

.nav-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-width: 600px;
}

.nav-menu-grid.logged-out {
    grid-template-columns: 1fr;
    min-width: 280px;
    max-width: 320px;
}

@media (max-width: 768px) {
    .nav-menu-grid {
        grid-template-columns: 1fr;
        min-width: auto;
        width: 100%;
    }
    
    .nav-menu-grid.logged-out {
        min-width: auto;
        max-width: none;
        width: 100%;
    }
    
    .nav-menu-column {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        min-height: auto;
    }
    
    .nav-menu-column:last-child {
        border-bottom: none;
    }
}


.nav-menu-column {
    border-right: 1px solid #e5e5e5;
    min-height: 200px;
}

.nav-menu-column:last-child {
    border-right: none;
}

.nav-menu-grid.logged-out .nav-menu-column {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
    min-height: auto;
}

.nav-menu-grid.logged-out .nav-menu-column:last-child {
    border-bottom: none;
}

.nav-menu-grid.logged-out .nav-menu-column-account {
    display: none !important;
}

.nav-menu-section {
    padding: 16px 20px;
}


.nav-sign-in-btn {
    display: block;
    width: 100%;
    padding: 10px 16px;
    background: #3d271a;
    color: #faf8f5;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-align: center;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.nav-sign-in-btn:hover {
    background-color: #8a4a14;
}

.nav-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #3d271a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 0 8px 0;
    margin-bottom: 8px;
}

.nav-menu-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-menu-item {
    display: flex;
    align-items: center;
    padding: 6px 0;
    color: #3d271a;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    transition: background-color 0.2s ease, color 0.2s ease;
    gap: 10px;
}

.nav-menu-item:hover {
    background-color: rgba(61, 39, 26, 0.08);
    color: #8a4a14;
}

.nav-menu-item-icon {
    font-size: 1rem;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-menu-item-text {
    flex: 1;
}

.nav-menu-item-logout {
    color: #3d271a;
}

.nav-menu-item-logout:hover {
    background-color: rgba(61, 39, 26, 0.1);
}

/* User Info Styles */
.nav-user-info {
    display: flex;
    align-items: center;
}

.nav-user-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #3d271a;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 140px 40px 0;
    position: relative;
    z-index: 10;
    background-image: url('images/clay-banks-urH155LONWs-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: visible;
    max-width: 1920px;
    margin: 0 auto;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(0);
    padding: 0 20px;
    margin-top: 0;
}

@keyframes floatInText {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatInSearch {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #3d271a;
    margin-bottom: 6px;
    line-height: 1.2;
    margin-top: 0;
    letter-spacing: -0.04em;
    animation: floatInText 1s ease-out;
    position: relative;
    z-index: 2;
    display: block;
}

.hero-title-highlight {
    color: #8a6f5a;
    position: relative;
    display: inline-block;
    white-space: nowrap;
    min-width: 120px;
    text-align: left;
    vertical-align: bottom;
}

.mobile-hero-title .hero-title-highlight {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    min-width: 100px;
    text-align: left;
}

.typing-placeholder {
    display: inline-block !important;
    visibility: hidden;
    position: relative;
    white-space: nowrap;
    height: auto;
    line-height: inherit;
}

.typing-visible {
    display: inline-block !important;
    white-space: nowrap;
    position: absolute;
    left: 0;
    top: 0;
    text-align: left;
}

.hero-title .typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: #8a6f5a;
    margin-left: 2px;
    animation: blink 1s infinite;
    vertical-align: baseline;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #3d271a;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.search-form {
    margin-bottom: 0;
    width: 100%;
    max-width: 1000px;
    margin: 120px auto 0;
    position: relative;
    z-index: 100;
    flex-shrink: 0;
    align-self: center;
    padding-bottom: 0;
    margin-bottom: 0;
    animation: floatInSearch 1s ease-out 0.3s both;
}

.mobile-search-options {
    display: none;
}


.search-bar {
    display: flex;
    background: #faf8f5;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
    gap: 8px;
    align-items: center;
    position: relative;
    z-index: 100;
}

.search-input {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    color: #1a1a1a;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    outline: none;
    min-width: 0;
}

button.search-input {
    font-weight: 400 !important;
    color: #999 !important;
    font-family: 'Inter', sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

button.search-input.has-value {
    color: #1a1a1a !important;
}

.destination-input-wrapper {
    position: relative;
    flex: 1;
}

#destination {
    border-right: 1px solid #e5e5e5;
}

.destination-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: #faf8f5;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 8px;
    display: none;
    z-index: 10000;
    max-height: 300px;
    overflow-y: auto;
}

.destination-dropdown.active {
    display: block;
}

.destination-suggestion {
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 0.9375rem;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.destination-suggestion i {
    color: #3d271a;
    font-size: 0.875rem;
    width: 16px;
    text-align: center;
}

.destination-suggestion span {
    flex: 1;
    text-align: left;
}

.destination-suggestion:hover {
    background-color: rgba(61, 39, 26, 0.08);
    color: #3d271a;
}

.destination-suggestion:hover i {
    color: #3d271a;
}

.dates-btn,
.guests-btn {
    border-right: none;
    font-weight: 400 !important;
    color: #999 !important;
    font-family: 'Inter', sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.dates-btn.has-value,
.guests-btn.has-value {
    color: #1a1a1a !important;
}

.search-input::placeholder {
    color: #999;
}

.dates-input-wrapper {
    position: relative;
    flex: 1;
    border-right: 1px solid #e5e5e5;
}

.dates-btn {
    text-align: left;
    cursor: pointer;
    width: 100%;
    font-weight: 400 !important;
    color: #999 !important;
    font-family: 'Inter', sans-serif !important;
}

.dates-btn.has-value {
    color: #1a1a1a !important;
}

.calendar-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: #faf8f5;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 24px;
    display: none;
    z-index: 10000;
    min-width: 600px;
}

.calendar-dropdown.active {
    display: block;
}

.calendar-container {
    width: 100%;
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 0 40px;
    position: relative;
    min-height: 40px;
}

.calendar-months {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex: 1;
}

.calendar-month {
    flex: 1;
}

.calendar-month-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 1rem;
    gap: 8px;
    text-align: center;
    color: #3d271a;
}

.calendar-month-header .month-name,
.calendar-month-header .year-name {
    display: inline;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.weekday {
    text-align: center;
    font-size: 0.75rem;
    color: #999;
    font-weight: 500;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.calendar-day:hover {
    background: #f5f5f5;
}

.calendar-day.selected {
    background: transparent;
    color: #3d271a;
    font-weight: 600;
}

.calendar-day.in-range {
    background: #f0f0f0;
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-nav-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #1a1a1a;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    position: absolute;
    z-index: 1;
}

.calendar-nav-btn.prev-month {
    left: 0;
}

.calendar-nav-btn.next-month {
    right: 0;
}

.calendar-nav-btn:hover {
    color: #4a4a4a;
}

.guests-input-wrapper {
    position: relative;
    flex: 1;
    border-right: 1px solid #e5e5e5;
}

.guests-btn {
    text-align: left;
    cursor: pointer;
    width: 100%;
    font-weight: 400 !important;
    color: #999 !important;
    font-family: 'Inter', sans-serif !important;
}

.guests-btn.has-value {
    color: #1a1a1a !important;
}

.guests-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: #faf8f5;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 12px;
    display: none;
    z-index: 10000;
    width: 280px;
    text-align: left;
}

.guests-dropdown.active {
    display: block;
}

.guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.guest-info {
    flex: 1;
    text-align: left;
}

.guest-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
    text-align: left;
}

.guest-description {
    font-size: 0.75rem;
    color: #999;
    font-weight: 400;
    text-align: left;
}

.guest-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.guest-count {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
    min-width: 20px;
    text-align: center;
}

.guest-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    background: #faf8f5;
    color: #1a1a1a;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}

.guest-btn.minus-btn {
    background: #f5f5f5;
    border-color: #e5e5e5;
    color: #999;
}

.guest-btn.minus-btn:not(:disabled):hover {
    border-color: #1a1a1a;
    background: #faf8f5;
    color: #1a1a1a;
}

.guest-btn.minus-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.guest-btn.plus-btn {
    border-color: #3d271a;
    background: #faf8f5;
    color: #1a1a1a;
}

.guest-btn.plus-btn:hover {
    background: #3d271a;
    color: #faf8f5;
}

.guest-divider {
    height: 1px;
    background: #e5e5e5;
    margin: 0;
}

.search-btn {
    padding: 14px 32px;
    background: #3d271a;
    border: none;
    border-radius: 50px;
    color: #faf8f5;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.search-btn:hover {
    background: #8a4a14;
}

.submit-btn {
    padding: 12px 32px;
    background: #1a1a1a;
    border: 1px solid #1a1a1a;
    border-radius: 50px;
    color: #faf8f5;
    font-size: 0.875rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    text-transform: uppercase;
    white-space: nowrap;
}

.submit-btn:hover {
    background: #faf8f5;
    color: #1a1a1a;
}

.submit-btn:active {
    background: #1a1a1a;
    color: #faf8f5;
}

.form-message {
    margin-top: 15px;
    font-size: 0.875rem;
    min-height: 20px;
    color: #faf8f5;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.form-message.show {
    opacity: 1;
}

.footer {
    margin-top: 100px;
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-text {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 12px;
    font-weight: 300;
}

.contact-email {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
    font-weight: 400;
    border-bottom: 1px solid #1a1a1a;
}

.contact-email:hover {
    color: #4a4a4a;
    border-bottom-color: #4a4a4a;
}

.copyright {
    font-size: 0.9rem;
    color: #999;
    font-weight: 300;
}

/* Section Styles */
.section {
    padding: 100px 40px;
    position: relative;
    z-index: 1;
}

/* Reduce spacing on support and responsibility pages */
body:has(.support-page-hero) .section.about-page-section,
body:has(.responsibility-page-hero) .section.about-page-section {
    padding: 50px 40px;
}

/* Also reduce spacing between sections */
body:has(.support-page-hero) .section.about-page-section + .section.about-page-section,
body:has(.responsibility-page-hero) .section.about-page-section + .section.about-page-section {
    padding-top: 20px;
}

/* Further reduce spacing for responsibility page sections */
body:has(.responsibility-page-hero) .section.about-page-section {
    padding-top: 20px;
    padding-bottom: 20px;
}

body:has(.responsibility-page-hero) .section.about-page-section:first-of-type {
    padding-top: 40px;
}

body:has(.responsibility-page-hero) .section.about-page-section + .section.about-page-section {
    padding-top: 15px;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    overflow-x: visible;
    overflow-y: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-content .blog-grid {
    width: 100%;
    justify-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-accordion-section .section-content {
    max-width: none;
    overflow-x: visible;
    overflow-y: visible;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.about-section .section-title {
    color: #3d271a;
    font-size: 2rem;
}

.section-line {
    width: 60px;
    height: 1px;
    background: #1a1a1a;
    margin: 0 auto 40px;
}

.about-section .section-line {
    display: none;
}

.section-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto 48px;
    font-weight: 300;
}

.about-section .section-description {
    color: #1a1a1a;
    opacity: 0.9;
    margin-bottom: 4px;
}

/* About Section */
.about-section {
    background: #d4c4b8;
    padding: 80px 40px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 120px;
}

.about-content {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.about-image-wrapper {
    flex: 0 0 auto;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    display: block;
    border-top-right-radius: 120px;
    border-bottom-left-radius: 120px;
}

.learn-more-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #faf8f5;
    border: 1px solid #faf8f5;
    border-radius: 50px;
    color: #3d271a;
    font-size: 0.875rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.learn-more-btn:hover {
    background: transparent;
    color: #faf8f5;
}

.about-section .learn-more-btn {
    background: #3d271a;
    border: 1px solid #3d271a;
    color: #faf8f5;
}

.about-section .learn-more-btn:hover {
    background: transparent;
    color: #3d271a;
    border-color: #3d271a;
}

/* Features Section */
.features-section {
    background: #faf8f5;
    padding: 100px 40px;
}

.features-card-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #3d271a;
    border-radius: 20px;
    padding: 35px 45px;
    display: flex;
    align-items: center;
    gap: 45px;
    overflow: hidden;
}

.features-phone-wrapper {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    display: block;
}

.features-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    max-width: 280px;
    min-width: 0;
}

.feature-item {
    text-align: left;
    display: flex;
    flex-direction: column;
    background: #6c4a3a;
    border: none;
    padding: 8px 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    aspect-ratio: 1.35;
    width: 100%;
    min-height: 0;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 1.375rem;
    color: #ffffff;
    margin-bottom: 7px;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.71875rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.feature-text {
    font-size: 0.65625rem;
    line-height: 1.35;
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 0;
    text-align: left;
    flex-grow: 1;
    opacity: 0.95;
}

.read-more-link {
    color: #faf8f5;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    border-bottom: 1px solid #faf8f5;
    transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    display: inline-block;
}

.read-more-link:hover {
    opacity: 0.8;
    border-bottom-color: rgba(250, 248, 245, 0.8);
}

/* Stay Section */
.stay-section {
    background: #3d271a;
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.stay-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/StayAWhile.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 0;
}

.stay-section-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stay-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: #faf8f5;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
}

.stay-section-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #faf8f5;
    font-weight: 300;
    margin: 0 0 40px 0;
    opacity: 0.95;
}

/* Page with Sidebar Layout */
/* Header for pages with sidebar */
body.sidebar-page .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #faf8f5;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
}

.page-with-sidebar {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    margin-top: 0;
    padding-top: 100px;
    background: #faf8f5;
    width: 100%;
    padding-left: 240px;
}

.travelling-sidebar {
    width: 240px;
    flex-shrink: 0;
    background: #ffffff;
    border-right: 1px solid #e5e5e5;
    padding: 0;
    display: block !important;
    visibility: visible !important;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 999;
}

.sidebar-section {
    padding: 100px 24px 40px 24px;
}

.sidebar-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #3d271a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-nav-item {
    display: block;
    padding: 12px 16px;
    margin: 0 -16px;
    text-decoration: none;
    color: #3d271a;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    transition: background-color 0.2s ease;
    border-radius: 0;
}

.sidebar-nav-item:hover {
    background-color: rgba(61, 39, 26, 0.05);
}

.sidebar-nav-item.active {
    background-color: #e8e0d8;
    color: #3d271a;
}

.sidebar-nav-item span {
    display: block;
}

.page-content {
    flex: 1;
    padding: 40px 60px;
    max-width: 1200px;
    width: 100%;
}

.page-content-wrapper {
    max-width: 100%;
}

.page-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #3d271a;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.page-description {
    font-size: 1rem;
    color: #4a4a4a;
    font-weight: 300;
    margin-bottom: 40px;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #6a6a6a;
}

.empty-state p {
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background: #3d271a;
    border: 1px solid #3d271a;
    border-radius: 50px;
    color: #faf8f5;
    font-size: 0.875rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-primary:hover {
    background: transparent;
    color: #3d271a;
}

/* Tablet and Medium Screens */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
        margin-top: 0;
    }
    
    .featured-panels-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 50px 30px;
    }
    
    .about-container {
        gap: 60px;
    }
    
    .testimonials-layout {
        gap: 40px;
    }
    
    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .page-with-sidebar {
        flex-direction: column;
        padding-top: 80px;
    }
    
    .travelling-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        padding: 24px 0;
    }
    
    .sidebar-nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 0;
    }
    
    .sidebar-nav-item {
        white-space: nowrap;
        margin: 0;
        padding: 12px 20px;
    }
    
    .page-content {
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-top: 0;
    }
    
    .search-form {
        margin-top: 80px;
    }
    
    .about-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-image-wrapper {
        max-width: 100%;
        order: -1;
    }
    
    .about-image {
        width: 100%;
        max-width: 100%;
    }
    
    .about-intro-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-intro-image {
        order: -1;
        min-height: 300px;
    }
    
    .about-outro-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-outro-image {
        min-height: 300px;
    }
    
    .stay-section {
        padding: 100px 30px;
    }
    
    .stay-section-title {
        font-size: 2.5rem;
    }
    
    .features-card-wrapper {
        flex-direction: column;
        padding: 40px 30px;
    }
    
    .features-phone-wrapper {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-description {
        font-size: 0.9375rem;
    }
}

.stay-section-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #faf8f5;
    border: 1px solid #faf8f5;
    border-radius: 50px;
    color: #3d271a;
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.stay-section-btn:hover {
    background: transparent;
    color: #faf8f5;
    border-color: #faf8f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

/* Featured Panels Section */
.featured-panels-section {
    background: #faf8f5;
    padding: 0;
    overflow: hidden;
}

.featured-panels-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 60px 40px;
}

.featured-panel {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.featured-panel-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.featured-panel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.featured-panel:hover .featured-panel-image {
    transform: scale(1.05);
}

.featured-panel-content {
    padding: 40px;
    background: #faf8f5;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.featured-panel-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.featured-panel-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: #1a1a1a;
    text-decoration: underline;
    transition: color 0.2s ease;
    display: inline-block;
}

.featured-panel-link:hover {
    color: #3d271a;
}

@media (max-width: 768px) {
    .featured-panels-container {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 30px 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .featured-panels-container::-webkit-scrollbar {
        display: none;
    }
    
    .featured-panel {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: start;
    }
    
    .featured-panel-image-wrapper {
        height: 300px;
    }
    
    .featured-panel-content {
        padding: 24px 20px;
    }
    
    .featured-panel-title {
        font-size: 1.25rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        margin-top: 0;
    }
    
    .about-section {
        padding: 60px 30px;
    }
    
    .about-container {
        gap: 30px;
    }
    
    .about-content .homepage-features-grid {
        grid-template-columns: 1fr;
    }
    
    .stay-section-title {
        font-size: 2.25rem;
    }
    
    .stay-section-description {
        font-size: 1rem;
    }
    
    .main-footer {
        padding: 50px 30px 25px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-newsletter {
        max-width: 100%;
    }
    
    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .about-content-section {
        padding: 60px 20px !important;
        box-sizing: border-box;
        width: 100% !important;
        overflow-x: hidden;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
        overflow-x: visible;
        max-width: 100% !important;
        padding: 0 !important;
        width: 100% !important;
        box-sizing: border-box;
        margin: 0 auto !important;
        position: relative;
    }
    
    .about-content-title {
        font-size: 2rem;
    }
    
    .about-content-image {
        height: 300px;
    }
    
    .about-page-hero {
        min-height: 50vh;
        padding: 120px 24px 80px;
    }
    
    .about-page-title {
        font-size: 2.5rem;
    }
    
    .about-section-container {
        margin-bottom: 32px;
        overflow-x: visible;
        padding: 0;
    }
    
    .about-section-container:last-child {
        margin-bottom: 0;
    }
    
    .about-section-container:has(.haven-standard-grid) {
        padding-left: 0;
        margin-left: 0;
    }
    
    .about-intro-section {
        grid-template-columns: 1fr;
        gap: 24px;
        justify-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .about-intro-image {
        display: none;
    }
    
    .about-outro-section {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .about-outro-image {
        display: none;
    }
    
    .about-content-text {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        text-align: center !important;
        box-sizing: border-box;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .about-content-description,
    p.about-content-description,
    .about-content-text p,
    .about-content-text .about-content-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 20px;
        color: #4a4a4a;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
    }
    
    .about-content-description:last-child {
        margin-bottom: 0;
    }
    
    .about-section-container {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        margin: 0 auto !important;
    }
    
    .about-intro-section,
    .about-outro-section {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        margin: 0 auto !important;
    }
    
    .haven-standard-section-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    
    .haven-standard-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-bottom: 32px;
        width: calc(100vw - 40px);
        margin-left: calc(-50vw + 50% + 20px);
        padding-left: 60px;
        padding-right: 40px;
        padding-bottom: 4px;
    }
    
    .haven-standard-grid::-webkit-scrollbar {
        display: none;
    }
    
    .haven-standard-card-wrapper {
        flex: 0 0 calc(75vw - 20px);
        min-width: calc(75vw - 20px);
        max-width: calc(75vw - 20px);
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    
    .haven-standard-card {
        height: 240px;
    }
    
    .haven-standard-card-content {
        padding: 20px;
    }
    
    .haven-standard-card-title {
        font-size: 0.875rem;
    }
    
    .haven-standard-card-text {
        font-size: 0.8125rem;
    }
}

/* Coming Soon Accordion Section */
.coming-soon-accordion-section {
    background: #faf8f5;
    padding: 100px 0;
    overflow-x: visible;
    overflow-y: visible;
    position: relative;
}

.coming-soon-accordion-section .section-content {
    overflow-x: visible;
    overflow-y: visible;
    position: relative;
}

.accordion-wrapper {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    position: relative;
    overflow-x: visible;
    overflow-y: visible;
    justify-content: center;
    padding: 0;
}

.accordion-container {
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
}

.accordion-item {
    border: none;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    flex: 0 0 auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 80px;
    z-index: 1;
}

.accordion-item:hover {
    z-index: 10;
    position: relative;
}

.accordion-header {
    padding: 0;
    background: #3d271a;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    cursor: pointer;
    text-align: center;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
    width: 80px;
    min-height: 400px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.accordion-header:hover {
    background: #4d403a;
}

.accordion-image-wrapper {
    display: none;
}

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

.accordion-city {
    font-size: 1.5rem;
    font-weight: 700;
    color: #faf8f5;
    letter-spacing: 0.1em;
    transform: rotate(180deg);
}

.accordion-icon {
    display: none;
}

.accordion-item:hover .accordion-icon {
    transform: rotate(0deg);
}

.accordion-content {
    width: 0;
    overflow: hidden;
    transition: width 0.4s ease, opacity 0.4s ease 0.1s;
    opacity: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    background: #faf8f5;
    border: none;
    min-width: 0;
}

.accordion-item:hover .accordion-content {
    width: 400px;
    min-width: 400px;
    opacity: 1;
}

.accordion-content-inner {
    padding: 40px 60px 40px 40px;
    white-space: normal;
    min-width: 400px;
    width: 100%;
}

.accordion-content-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3d271a;
    margin: 0 0 16px 0;
    font-family: 'Inter', sans-serif;
}

.accordion-content-inner p {
    font-size: 1rem;
    line-height: 1.6;
    color: #1a1a1a;
    margin: 0;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

/* Coming Soon Section */
.coming-soon-section {
    background: #faf8f5;
    padding: 80px 40px;
}

.coming-soon-section .section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.coming-soon-banner {
    display: block;
    background: #3d271a;
    color: #faf8f5;
    padding: 8px 24px;
    border-radius: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0 auto 32px;
    text-align: center;
    width: fit-content;
}

.coming-soon-title {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: #3d271a;
    margin: 0 0 16px 0;
    text-align: left;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.coming-soon-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a4a4a;
    font-weight: 300;
    margin: 0 0 60px 0;
    text-align: left;
    max-width: 600px;
}

.coming-soon-cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 0 auto 60px;
    align-items: start;
    max-width: 533px;
}

.coming-soon-left-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 0;
}

.coming-soon-right-column {
    display: flex;
    align-items: flex-start;
}

.coming-soon-city-card {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.coming-soon-city-card-large {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.coming-soon-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 70px 0 0 0;
    height: 200px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.coming-soon-city-card-montreal .coming-soon-image-wrapper {
    border-radius: 0 0 0 0;
}

.coming-soon-city-card-large .coming-soon-image-wrapper {
    height: 480px;
    box-sizing: border-box;
    border-radius: 0 70px 0 0;
}

.coming-soon-city-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.coming-soon-city-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #3d271a;
    text-align: center;
    margin-top: 16px;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.coming-soon-learn-more-btn {
    display: inline-block;
    background: #3d271a;
    color: #faf8f5;
    padding: 14px 32px;
    border-radius: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    margin: 0 auto;
    transition: background-color 0.3s ease;
}

.coming-soon-learn-more-btn:hover {
    background: #8a4a14;
}

/* Homepage Features Section */
.homepage-features-section {
    background: #ffffff;
    padding: 100px 40px;
}

.homepage-features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.homepage-features-header {
    margin-bottom: 60px;
    text-align: center;
}

.homepage-features-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #3d271a;
    margin: 0;
    letter-spacing: -0.02em;
}

.homepage-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.about-content .homepage-features-grid {
    margin-top: 12px;
    margin-bottom: 0;
    column-gap: 16px;
    row-gap: 8px;
}

.about-content .learn-more-btn {
    margin-top: 32px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.homepage-feature-card {
    background: #faf8f5;
    padding: 40px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-content .homepage-feature-card {
    background: #d4c4b8;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.homepage-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(61, 39, 26, 0.1);
}

.about-content .homepage-feature-card:hover {
    transform: none;
    box-shadow: none;
}

.homepage-feature-card-icon {
    font-size: 2rem;
    color: #3d271a;
    margin-bottom: 24px;
}

.about-content .homepage-feature-card-icon {
    font-size: 2.25rem;
    margin-bottom: 0;
    flex-shrink: 0;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    align-self: stretch;
    min-width: 40px;
}

.about-content .homepage-feature-card-title {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 8px 0;
    line-height: 1.4;
    color: #3d271a;
}

.about-content .homepage-feature-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.homepage-feature-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #3d271a;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.homepage-feature-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    font-weight: 300;
    margin: 0;
}

.about-content .homepage-feature-card-text {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0;
}

/* Testimonials Section */
.blog-section {
    background: #ffffff;
    padding: 120px 40px;
    text-align: center;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

.blog-header {
    text-align: center;
    margin-bottom: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #3d271a;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-card {
    background: #faf8f5;
    padding: 48px 40px;
    border: 1px solid #e5e5e5;
    border-left: 3px solid #3d271a;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #3d271a;
    box-shadow: 0 8px 32px rgba(61, 39, 26, 0.08);
    transform: translateY(-2px);
}

.testimonial-quote {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #1a1a1a;
    font-weight: 400;
    margin: 0 0 32px 0;
    letter-spacing: -0.01em;
}

.testimonial-author {
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #3d271a;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.testimonial-author-location {
    font-size: 0.875rem;
    color: #6a6a6a;
    font-weight: 400;
    letter-spacing: 0.01em;
}

@media (max-width: 968px) {
    .blog-section {
        padding: 100px 32px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 80px 24px;
    }
    
    .blog-header {
        margin-bottom: 48px;
    }
    
    .blog-section-title {
        font-size: 2rem;
    }
    
    .blog-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .blog-grid::-webkit-scrollbar {
        display: none;
    }
    
    .blog-card {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .homepage-features-section {
        padding: 80px 20px;
    }
    
    .homepage-features-header {
        margin-bottom: 40px;
    }
    
    .homepage-features-title {
        font-size: 2rem;
    }
    
    .homepage-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-content .homepage-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }
    
    .homepage-feature-card {
        padding: 32px;
    }
    
    .about-content .homepage-feature-card {
        padding: 24px;
    }
    
    .testimonials-section {
        padding: 80px 20px;
    }
    
    .testimonials-header {
        margin-bottom: 50px;
    }
    
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonials-intro {
        font-size: 1rem;
    }
    
    .testimonials-carousel-wrapper {
        max-width: 100%;
    }
    
    .testimonial-item {
        padding: 36px 28px;
    }
    
    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .testimonial-quote-mark {
        font-size: 3rem;
        top: 24px;
        left: 28px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

/* Contact Section */
.contact-section {
    background: #faf8f5;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-top: 0;
}

.contact-card {
    padding: 0;
    background: transparent;
    border: none;
    text-align: left;
}

.contact-icon {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.contact-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.contact-card-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
    font-weight: 300;
    border-bottom: 1px solid transparent;
}

.contact-card-link:hover {
    color: #4a4a4a;
    border-bottom-color: #4a4a4a;
}

.contact-card-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4a4a4a;
    font-weight: 300;
}

/* About Us Page Styles */
.about-page-hero {
    background-image: url('images/dushawn-jovic-Eekno74ewM0-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    padding: 200px 40px 150px;
    text-align: center;
    margin-top: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.about-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 0;
    pointer-events: none;
}

.about-page-hero.support-page-hero {
    background-image: url('images/Support.jpg') !important;
    position: relative;
}

.about-page-hero.support-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 0;
    pointer-events: none;
}

.about-page-hero.blog-page-hero {
    background-image: url('images/Blog.jpg') !important;
    position: relative;
}

.about-page-hero.blog-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 0;
    pointer-events: none;
}

.about-page-hero.responsibility-page-hero {
    background-image: url('images/Responsibility.jpg') !important;
    background-position: center 20%;
    position: relative;
}

.about-page-hero.responsibility-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 0;
    pointer-events: none;
}

.about-page-hero.support-page-hero {
    background-image: url('images/Support.jpg') !important;
    position: relative;
}

.about-page-hero.support-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 0;
    pointer-events: none;
}

.about-page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-page-title {
    font-family: 'Inter', sans-serif;
    font-size: 4.5rem;
    font-weight: 400;
    color: #faf8f5;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Content Sections with Alternating Layout */
.about-content-section {
    background: #faf8f5;
    padding: 100px 40px;
    overflow-x: visible;
}

.about-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: block;
    overflow: visible;
}

@media (max-width: 768px) {
    .about-content-wrapper {
        max-width: 100% !important;
        margin: 0 !important;
        width: 100% !important;
        padding: 0 !important;
    }
}

.about-section-container {
    margin-bottom: 60px;
}

.about-section-container:last-child {
    margin-bottom: 0;
}

.about-intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

@media (max-width: 768px) {
    .about-intro-section {
        justify-items: center !important;
    }
}

@media (max-width: 480px) {
    .about-intro-section {
        justify-items: center !important;
    }
}

.about-content-section-alt .about-content-wrapper {
    grid-template-columns: 1fr 1fr;
}

.about-content-section-alt .about-content-image {
    order: -1;
}

.about-content-text {
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .about-content-text {
        text-align: center !important;
        align-items: center !important;
    }
    
    .about-content-description {
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .about-content-text {
        text-align: center !important;
        align-items: center !important;
    }
    
    .about-content-description {
        text-align: center !important;
    }
}

.about-intro-image {
    width: 100%;
    height: auto;
    max-height: 350px;
    overflow: hidden;
    border-radius: 8px;
    align-self: start;
    display: flex;
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    max-height: 350px;
    object-fit: cover;
    display: block;
}

.about-outro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 768px) {
    .about-outro-section {
        justify-items: center !important;
    }
}

@media (max-width: 480px) {
    .about-outro-section {
        justify-items: center !important;
    }
}

.about-outro-image {
    width: 100%;
    height: auto;
    min-height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.about-outro-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
}

.about-content-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 32px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.about-content-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a4a4a;
    font-weight: 300;
    margin-bottom: 24px;
    text-align: left;
}

@media (max-width: 768px) {
    .about-content-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
    }
    
    .about-content-text .about-content-description,
    .about-intro-section .about-content-description,
    .about-outro-section .about-content-description,
    p.about-content-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 480px) {
    .about-content-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
    }
    
    .about-content-text .about-content-description,
    .about-intro-section .about-content-description,
    .about-outro-section .about-content-description,
    p.about-content-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

.about-content-description:last-child {
    margin-bottom: 0;
}

.haven-standard-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: #3d271a;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.haven-standard-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 0 0 40px 0;
    overflow-x: auto;
    width: 100%;
}

.haven-standard-card-wrapper {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.haven-standard-card {
    position: relative;
    width: 100%;
    height: 280px;
    perspective: 1000px;
    margin-bottom: 16px;
}

.haven-standard-card-front,
.haven-standard-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.6s;
    border: 1px solid #e5e5e5;
}

.haven-standard-card-front {
    background: #ffffff;
    z-index: 2;
    transform: rotateY(0deg);
}

.haven-standard-card-back {
    background: #ffffff;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.haven-standard-card:hover .haven-standard-card-front {
    transform: rotateY(-180deg);
}

.haven-standard-card:hover .haven-standard-card-back {
    transform: rotateY(0deg);
}

.haven-standard-card-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.haven-standard-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.haven-standard-card-content {
    padding: 24px;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.haven-standard-card-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
    font-weight: 300;
}

.haven-standard-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #3d271a;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.4;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.about-content-image {
    width: 100%;
    height: 500px;
}

.about-content-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e5e5e5 0%, #d5d5d5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 4rem;
}

/* Stats Section */
.about-stats-section {
    background: #faf8f5;
    padding: 100px 40px;
}

.about-stats-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-stats-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 60px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.about-stat-item {
    text-align: center;
}

.about-stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #3d271a;
    margin-bottom: 12px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.about-stat-label {
    font-size: 1.125rem;
    color: #4a4a4a;
    font-weight: 300;
}

/* Features List */
.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 8px;
}

.about-feature-list-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-feature-icon {
    font-size: 1.5rem;
    color: #3d271a;
    margin-top: 4px;
    flex-shrink: 0;
}

.about-feature-content {
    flex: 1;
}

.about-feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.about-feature-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    font-weight: 300;
    margin: 0;
}

/* Support Page Styles */
.support-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.support-category {
    text-align: left;
    padding: 24px;
    background: #faf8f5;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    transition: all 0.2s ease;
}

.support-category:hover {
    border-color: #3d271a;
    box-shadow: 0 4px 12px rgba(61, 39, 26, 0.1);
}

.support-category-icon {
    font-size: 2rem;
    color: #3d271a;
    margin-bottom: 16px;
}

.support-category-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.support-category-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4a4a4a;
    font-weight: 300;
    margin: 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-method {
    text-align: center;
    padding: 32px;
    background: #faf8f5;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.contact-method-icon {
    font-size: 2.5rem;
    color: #3d271a;
    margin-bottom: 16px;
}

.contact-method-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.contact-method-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4a4a4a;
    font-weight: 300;
    margin-bottom: 16px;
}

.contact-method-link {
    color: #3d271a;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-method-link:hover {
    color: #8a4a14;
}

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

.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid #e5e5e5;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4a4a4a;
    font-weight: 300;
    margin: 0;
}

/* Blog Page Styles */
.blog-section .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 0;
    width: 100%;
    justify-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
    width: 100%;
    justify-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.blog-card {
    background: #faf8f5;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    transition: all 0.2s ease;
}

.blog-card:hover {
    border-color: #3d271a;
    box-shadow: 0 4px 12px rgba(61, 39, 26, 0.1);
    transform: translateY(-2px);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #faf8f5 0%, #e5e5e5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 3rem;
}

.blog-card-content {
    padding: 24px;
}

.blog-card-date {
    font-size: 0.8125rem;
    color: #999;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 12px 0;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4a4a4a;
    font-weight: 300;
    margin-bottom: 16px;
}

.blog-card-link {
    color: #3d271a;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.blog-card-link:hover {
    color: #8a4a14;
}

/* Main Footer */
.main-footer {
    background: #3d271a;
    color: #faf8f5;
    padding: 80px 40px 40px;
    border-top: none;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Footer */
@media (max-width: 968px) {
    .main-footer {
        padding: 60px 30px 30px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 50px;
        margin-bottom: 50px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-newsletter {
        max-width: 100%;
    }
    
    .footer-divider {
        margin-bottom: 40px;
    }
    
    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 40px;
    }
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 60px;
}

.footer-brand {
    flex: 1;
    max-width: 400px;
}

.footer-logo-image {
    height: 36px;
    width: auto;
    display: block;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(250, 248, 245, 0.9);
    font-weight: 400;
    margin: 0 0 12px 0;
    letter-spacing: 0.02em;
}

.footer-description {
    font-size: 0.875rem;
    color: rgba(250, 248, 245, 0.7);
    font-weight: 300;
    margin: 0;
    line-height: 1.6;
}

.footer-newsletter {
    flex: 1;
    max-width: 420px;
}

.footer-newsletter-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #faf8f5;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-newsletter-text {
    font-size: 0.875rem;
    color: rgba(250, 248, 245, 0.75);
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-divider {
    height: 1px;
    background: rgba(250, 248, 245, 0.15);
    margin: 0 0 50px 0;
    border: none;
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-links-column {
    text-align: left;
}

.footer-links-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #faf8f5;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-link {
    color: rgba(250, 248, 245, 0.75);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 300;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
    line-height: 1.5;
}

.footer-link:hover {
    color: #faf8f5;
    transform: translateX(2px);
}

.footer-email-form {
    display: flex;
    gap: 10px;
    max-width: 100%;
    flex-wrap: wrap;
}

.footer-email-input {
    flex: 1;
    min-width: 200px;
    max-width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(250, 248, 245, 0.25);
    border-radius: 6px;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    background: rgba(250, 248, 245, 0.08);
    color: #faf8f5;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.footer-email-input::placeholder {
    color: rgba(250, 248, 245, 0.5);
}

.footer-email-input:focus {
    border-color: rgba(250, 248, 245, 0.5);
    background: rgba(250, 248, 245, 0.12);
    box-shadow: 0 0 0 3px rgba(250, 248, 245, 0.1);
}

.footer-submit-btn {
    padding: 12px 24px;
    background: #faf8f5;
    border: 1px solid #faf8f5;
    border-radius: 6px;
    color: #3d271a;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-submit-btn:hover {
    background: rgba(250, 248, 245, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    color: rgba(250, 248, 245, 0.6);
    font-size: 0.8125rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.01em;
}

/* Sign In Modal */
.signin-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.signin-modal.active {
    display: flex;
}

.signin-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.signin-modal-content {
    position: relative;
    background: #faf8f5;
    border-radius: 12px;
    padding: 32px;
    max-width: 440px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.signin-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4a4a;
    transition: color 0.2s ease;
}

.signin-close-btn:hover {
    color: #1a1a1a;
}

.signin-close-btn svg {
    width: 24px;
    height: 24px;
}

.signin-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 32px 0;
}

.signin-social-btn {
    width: 100%;
    padding: 14px 20px;
    background: #faf8f5;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: #1a1a1a;
}

.signin-social-btn:hover {
    border-color: #d0d0d0;
    background-color: #fafafa;
}

.signin-social-btn span {
    flex: 1;
    text-align: left;
}

.social-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.facebook-icon-wrapper {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1877F2;
    border-radius: 50%;
    flex-shrink: 0;
}

.facebook-icon-wrapper .social-icon {
    width: 12px;
    height: 12px;
    color: #faf8f5;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    color: #1a1a1a;
    flex-shrink: 0;
}

.signin-divider {
    text-align: center;
    color: #1a1a1a;
    font-size: 0.9375rem;
    font-weight: 400;
    margin: 24px 0;
    font-family: 'Inter', sans-serif;
}

.signin-email-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.signin-email-form[style*="display: none"] {
    display: none !important;
}

.signin-email-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.2s ease;
}

.signin-email-input:focus {
    border-color: #3d271a;
}

.signin-email-input::placeholder {
    color: #999;
}

.signin-next-btn {
    width: 100%;
    padding: 14px 20px;
    background: #3d271a;
    border: none;
    border-radius: 8px;
    color: #faf8f5;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.signin-next-btn:hover {
    background-color: #8a4a14;
}

.signin-next-btn:active {
    transform: scale(0.98);
}

/* Sign In Password Form */
.signin-password-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.signin-email-display {
    padding: 14px 16px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #1a1a1a;
}

.signin-password-wrapper {
    margin: 0;
}

.signin-password-wrapper .signin-email-input {
    padding-right: 48px;
}

.signin-password-toggle {
    position: absolute;
    right: 12px;
}

.forgot-password-link {
    color: #3d271a;
    text-decoration: underline;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    transition: color 0.2s ease;
    align-self: flex-start;
}

.forgot-password-link:hover {
    color: #8a4a14;
}

.signin-submit-btn {
    margin-top: 8px;
}

/* Forgot Password Modal */
.forgot-password-instruction {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.forgot-password-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.forgot-password-submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: #FFA500;
    border: none;
    border-radius: 8px;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin-top: 8px;
}

.forgot-password-submit-btn:hover {
    background-color: #FF8C00;
    color: #1a1a1a;
}

.forgot-password-submit-btn:active {
    transform: scale(0.98);
}

/* Create Account Modal */
.create-account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.create-account-back-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4a4a;
    transition: color 0.2s ease;
}

.create-account-back-btn:hover {
    color: #1a1a1a;
}

.create-account-back-btn svg {
    width: 24px;
    height: 24px;
}

.create-account-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 32px 0;
    line-height: 1.4;
}

.create-account-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.name-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    border-color: #3d271a;
}

.form-input::placeholder {
    color: #999;
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper .form-input {
    padding-right: 48px;
}

.password-toggle-btn {
    position: absolute;
    right: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4a4a;
    transition: color 0.2s ease;
}

.password-toggle-btn:hover {
    color: #1a1a1a;
}

.eye-icon {
    width: 20px;
    height: 20px;
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #3d271a;
}

.checkbox-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.5;
}

.checkbox-link {
    color: #3d271a;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.checkbox-link:hover {
    color: #8a4a14;
}

.create-account-btn {
    width: 100%;
    padding: 14px 20px;
    background: #3d271a;
    border: none;
    border-radius: 8px;
    color: #faf8f5;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 8px;
}

.create-account-btn:hover {
    background-color: #8a4a14;
}

.create-account-btn:active {
    transform: scale(0.98);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 4px 20px;
    }
    
    .nav-find-stay {
        display: none;
    }
    
    .logo-image {
        filter: brightness(0) invert(1);
    }
    
    .nav-toggle .nav-icon {
        color: #ffffff;
    }
    
    .nav-toggle:hover .nav-icon {
        color: #ffffff;
    }
    
    /* Search page - override with secondary color */
    body.search-page .logo-image {
        filter: brightness(0) saturate(100%) invert(15%) sepia(30%) saturate(1500%) hue-rotate(340deg) brightness(0.35) contrast(1.1) !important;
    }
    
    body.search-page .nav-toggle .nav-icon {
        color: #8a6f5a !important;
        stroke: #8a6f5a !important;
    }
    
    body.search-page .nav-toggle:hover .nav-icon {
        color: #8a6f5a !important;
        stroke: #8a6f5a !important;
    }
    
    .nav-menu {
        min-width: auto;
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
        max-width: none;
    }
    
    .nav-menu-grid {
        width: 100%;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .hero-section {
        min-height: 47vh;
        padding: 55px 30px 18px;
        position: relative;
    }
    
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.1);
        z-index: 1;
        pointer-events: none;
    }
    
    .hero-section .hero-content {
        position: relative;
        z-index: 2;
    }
    
    .hero-title {
        display: none;
    }
    
    .search-form {
        display: none;
    }
    
    .search-bar {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        background: #faf8f5;
        border-radius: 16px;
        padding: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        gap: 8px;
        width: 100%;
    }
    
    .destination-input-wrapper {
        display: flex;
        width: 100%;
        position: relative;
        border: 1px solid #e5e5e5;
        border-radius: 12px;
        background: #fff;
        min-height: 48px;
        flex: 1;
        min-width: 0;
    }
    
    #destination {
        width: 100%;
        flex: 1;
        border: none;
        background: transparent;
        padding: 12px 16px;
        font-size: 16px;
        font-family: 'Inter', sans-serif;
        color: #1a1a1a;
        outline: none;
        min-width: 0;
    }
    
    #destination::placeholder {
        color: #999;
    }
    
    .destination-dropdown {
        left: 0;
        right: 0;
        width: 100%;
        top: calc(100% + 8px);
        border-radius: 5px;
    }
    
    .dates-input-wrapper,
    .guests-input-wrapper {
        border-right: none;
    }
    
    .dates-btn,
    .guests-btn {
        width: 100%;
        padding: 12px 16px;
        border: none;
        background: transparent;
        text-align: left;
        font-size: 16px;
        font-family: 'Inter', sans-serif;
        color: #999;
        cursor: pointer;
        outline: none;
    }
    
    .dates-btn.has-value,
    .guests-btn.has-value {
        color: #1a1a1a;
    }
    
    .calendar-dropdown {
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        min-width: 280px;
        max-width: 90vw;
        top: calc(100% + 8px);
        border-radius: 5px;
    }
    
    .guests-dropdown {
        left: 0;
        right: 0;
        width: 100%;
        top: calc(100% + 8px);
        border-radius: 5px;
    }
    
    .search-btn {
        width: 100%;
        height: 48px;
        min-width: auto;
        max-width: none;
        border-radius: 12px;
        background: #3d271a;
        border: none;
        padding: 0;
        margin: 0;
        margin-top: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        flex-shrink: 0;
        position: relative;
        font-size: 0;
        line-height: 0;
        color: transparent;
    }
    
    .search-btn::after {
        content: '\f002';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: #faf8f5;
        font-size: 1.125rem;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        line-height: 1;
    }
    
    .calendar-months {
        display: flex;
        justify-content: center;
        gap: 0;
    }
    
    .calendar-month:nth-child(2) {
        display: none;
    }
    
    .calendar-month {
        width: 100%;
        max-width: 280px;
    }
    
    .calendar-container {
        display: flex;
        justify-content: center;
    }
    
    .mobile-search-options {
        display: block;
        padding: 30px 30px 20px;
        background: #faf8f5;
        border-top: 1px solid #e5e5e5;
        border-radius: 20px 20px 0 0;
        margin-top: -20px;
        position: relative;
        z-index: 20;
    }
    
    .mobile-search-options-content {
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .mobile-hero-title {
        font-family: 'Inter', sans-serif;
        font-size: 2rem;
        font-weight: 400;
        color: #3d271a;
        margin: 0 0 8px 0;
        text-align: center;
        line-height: 1.3;
    }
    
    .mobile-hero-title .hero-title-highlight {
        color: #8a6f5a;
        position: relative;
        display: inline-block;
        min-width: 80px;
    }
    
    .mobile-hero-title .typing-placeholder {
        display: inline-block !important;
        visibility: hidden;
        position: relative;
        white-space: nowrap;
        height: auto;
        line-height: inherit;
    }
    
    .mobile-hero-title .typing-visible {
        display: inline-block !important;
        white-space: nowrap;
        position: absolute;
        left: 0;
        top: 0;
        text-align: left;
    }
    
    .mobile-hero-title .hero-title-highlight {
        position: relative;
    }
    
    .mobile-search-options .destination-input-wrapper,
    .mobile-search-options .dates-input-wrapper,
    .mobile-search-options .guests-input-wrapper {
        display: flex;
        align-items: center;
        width: 100%;
        position: relative;
        border: 1px solid #e5e5e5;
        border-radius: 5px;
        background: #fff;
        min-height: 48px;
        gap: 12px;
        padding-left: 16px;
    }
    
    .mobile-search-options .destination-icon,
    .mobile-search-options .dates-icon,
    .mobile-search-options .guests-icon {
        color: #999;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .mobile-search-options #mobileDestination {
        width: 100%;
        flex: 1;
        border: none;
        background: transparent;
        padding: 12px 16px 12px 0;
        font-size: 16px;
        font-family: 'Inter', sans-serif;
        color: #1a1a1a;
        outline: none;
        min-width: 0;
    }
    
    .mobile-search-options #mobileDestination::placeholder {
        color: #999;
    }
    
    .mobile-search-options .destination-dropdown {
        left: 0;
        right: 0;
        width: 100%;
        top: calc(100% + 8px);
        border-radius: 5px;
    }
    
    .mobile-search-options .dates-btn,
    .mobile-search-options .guests-btn {
        width: 100%;
        padding: 12px 16px 12px 0;
        border: none;
        background: transparent;
        text-align: left;
        font-size: 16px;
        font-family: 'Inter', sans-serif;
        color: #999;
        cursor: pointer;
        outline: none;
        flex: 1;
    }
    
    .mobile-search-options .dates-btn.has-value,
    .mobile-search-options .guests-btn.has-value {
        color: #1a1a1a;
    }
    
    .mobile-search-btn {
        width: 100%;
        height: 48px;
        border-radius: 5px;
        background: #3d271a;
        border: none;
        color: #faf8f5;
        font-size: 1rem;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        cursor: pointer;
        margin-top: 4px;
        transition: background 0.2s ease;
    }
    
    .mobile-search-btn:hover {
        background: #8a4a14;
    }
    
    .mobile-search-options .calendar-dropdown {
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        min-width: 340px;
        max-width: 90vw;
        top: calc(100% + 8px);
        border-radius: 5px;
        padding: 20px;
    }
    
    .mobile-search-options .calendar-container {
        width: 100%;
    }
    
    .mobile-search-options .calendar-month {
        width: 100%;
        max-width: 100%;
    }
    
    .mobile-search-options .guests-dropdown {
        left: 0;
        right: 0;
        width: 100%;
        top: calc(100% + 8px);
        border-radius: 5px;
    }
    
    
    .section {
        padding: 80px 30px;
    }
    
    .about-section {
        padding: 60px 30px;
    }
    
    .about-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-image-wrapper {
        max-width: 100%;
        height: 400px;
        order: -1;
    }
    
    .about-image {
        height: 100%;
        object-fit: cover;
    }
    
    .features-card-wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 40px 30px;
    }
    
    .features-phone-wrapper {
        flex: 0 0 auto;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .features-image {
        max-width: 300px;
    }
    
    .features-grid {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-item {
        padding: 24px 20px;
    }
    
    .feature-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .feature-title {
        font-size: 0.875rem;
        margin-bottom: 10px;
    }
    
    .feature-text {
        font-size: 0.8125rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 0.9375rem;
    }
    
    .main-footer {
        padding: 60px 30px 30px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
        font-size: 1rem;
    }
    
    .submit-btn {
        width: 100%;
        font-size: 1rem;
    }
    
    .footer {
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .nav {
        flex-direction: row;
        gap: 10px;
        padding: 10px 20px;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-menu {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
    }
    
    .hero-section {
        min-height: 44vh;
        padding: 55px 20px 12px;
    }
    
    .mobile-hero-title {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 40px 20px;
    }
    
    .featured-panels-section {
        padding-top: 30px;
    }
    
    .about-page-hero {
        min-height: 45vh;
        padding: 100px 20px 60px;
    }
    
    .about-page-title {
        font-size: 2rem;
    }
    
    .about-content-section {
        padding: 40px 20px !important;
        overflow-x: hidden;
        box-sizing: border-box;
        width: 100% !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .about-content-wrapper {
        max-width: 100% !important;
        margin: 0 auto !important;
        width: 100% !important;
        padding: 0 !important;
    }
    
    .about-section-container {
        margin-bottom: 32px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .about-intro-section {
        gap: 24px;
        justify-items: center !important;
        text-align: center !important;
        display: grid !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .about-intro-image {
        display: none;
    }
    
    .about-outro-section {
        gap: 24px;
        justify-items: center !important;
        text-align: center !important;
        display: grid !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .about-outro-image {
        display: none;
    }
    
    .about-content-text {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        text-align: center !important;
        box-sizing: border-box;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .about-content-description,
    p.about-content-description,
    .about-content-text p,
    .about-content-text .about-content-description {
        font-size: 0.9375rem;
        line-height: 1.7;
        margin-bottom: 16px;
        color: #4a4a4a;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
    }
    
    .about-content-description:last-child {
        margin-bottom: 0;
    }
    
    .about-section-container {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        margin: 0 auto !important;
    }
    
    .about-intro-section,
    .about-outro-section {
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        margin: 0 auto !important;
    }
    
    .haven-standard-section-title {
        font-size: 1.25rem;
    }
    
    .haven-standard-grid {
        width: calc(100vw - 40px);
        margin-left: calc(-50vw + 50% + 20px);
        padding-left: 60px;
        padding-right: 40px;
        padding-bottom: 4px;
    }
    
    .haven-standard-card-wrapper {
        flex: 0 0 calc(80vw - 20px);
        min-width: calc(80vw - 20px);
        max-width: calc(80vw - 20px);
        flex-shrink: 0;
    }
    
    .haven-standard-card {
        height: 220px;
    }
    
    .stay-section {
        padding: 80px 24px;
    }
    
    .stay-section-title {
        font-size: 2rem;
    }
    
    .stay-section-description {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .stay-section-btn {
        padding: 14px 32px;
        font-size: 0.875rem;
    }
    
    .coming-soon-section {
        padding: 60px 20px;
    }
    
    .coming-soon-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .coming-soon-description {
        text-align: center;
        margin: 0 auto 40px;
    }
    
    .coming-soon-cities-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .coming-soon-left-column {
        gap: 24px;
    }
    
    .coming-soon-city-card-large .coming-soon-image-wrapper {
        min-height: 400px;
    }
    
    .coming-soon-city-name {
        font-size: 1.25rem;
    }
    
    .coming-soon-learn-more-btn {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .testimonials-section {
        padding: 80px 24px;
    }
    
    .testimonials-header {
        margin-bottom: 48px;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .testimonial-quote-mark {
        font-size: 3rem;
        top: 24px;
        left: 24px;
    }
    
    .testimonial-quote {
        font-size: 1rem;
    }
    
    .about-section {
        padding: 50px 20px;
    }
    
    .about-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-image-wrapper {
        max-width: 100%;
        height: 350px;
        order: -1;
    }
    
    .about-image {
        height: 100%;
        object-fit: cover;
    }
    
    .features-card-wrapper {
        padding: 30px 20px;
        gap: 30px;
    }
    
    .features-image {
        max-width: 250px;
    }
    
    .features-grid {
        gap: 16px;
    }
    
    .feature-item {
        padding: 20px 16px;
    }
    
    .feature-icon {
        font-size: 1.75rem;
    }
    
    .feature-title {
        font-size: 0.8125rem;
    }
    
    .feature-text {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-newsletter {
        max-width: 100%;
    }
    
    .footer-email-form {
        flex-direction: column;
    }
    
    .footer-submit-btn {
        width: 100%;
    }
    
    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .section-description {
        font-size: 0.875rem;
    }
    
    .main-footer {
        padding: 50px 20px 30px;
    }
    
    .footer-top {
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-divider {
        margin-bottom: 35px;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 35px;
    }
    
    .footer-submit-btn {
        width: 100%;
    }
    
    .about-page-hero {
        padding: 100px 20px 60px;
        margin-top: 50px;
    }
    
    .about-page-title {
        font-size: 2.5rem;
    }
    
    .about-page-subtitle {
        font-size: 1rem;
    }
    
    .about-page-hero {
        padding: 100px 20px 60px;
    }
    
    .about-page-title {
        font-size: 3rem;
    }
    
    .about-content-section {
        padding: 60px 20px;
    }
    
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content-section-alt .about-content-image {
        order: 0;
    }
    
    .about-content-title {
        font-size: 2rem;
        margin-bottom: 24px;
    }
    
    .about-content-description {
        font-size: 1rem;
    }
    
    .about-content-image {
        height: 300px;
    }
    
    .haven-standard-section-title {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    
    .haven-standard-card {
        height: 250px;
    }
    
    .haven-standard-card-content {
        padding: 20px;
    }
    
    .haven-standard-card-title {
        font-size: 0.9375rem;
    }
    
    .haven-standard-card-text {
        font-size: 0.8125rem;
    }
    
    .about-stats-section {
        padding: 60px 20px;
    }
    
    .about-stats-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stat-number {
        font-size: 2.5rem;
    }
    
    .about-features-list {
        gap: 24px;
    }
    
    .support-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 32px;
    }
    
    .email-input {
        padding: 18px 20px;
    }
    
    .submit-btn {
        padding: 18px 35px;
    }
}

/* Search Results Page */
.search-results-page {
    padding-top: 64px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Mobile search header - hidden by default */
.mobile-search-results-header {
    display: none;
}

.search-results-header {
    background: #faf8f5;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 40px;
    position: sticky;
    top: 64px;
    z-index: 100;
}

.search-results-search-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto;
}

.search-results-header .search-bar {
    flex: 1;
    margin: 0;
    display: flex;
    background: #faf8f5;
    border-radius: 5px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    gap: 8px;
    align-items: center;
    position: relative;
    z-index: 100;
}

.search-results-header .search-bar .search-btn {
    padding: 14px 32px;
    background: #3d271a;
    border: none;
    border-radius: 50px;
    color: #faf8f5;
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.search-results-header .search-bar .search-btn:hover {
    background: #8a4a14;
}

.search-results-filter-btn {
    padding: 12px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #faf8f5;
    color: #1a1a1a;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: border-color 0.2s ease;
}

.search-results-filter-btn:hover {
    border-color: #3d271a;
}

.filter-badge {
    background: #3d271a;
    color: #faf8f5;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 4px;
}

.active-filters {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 6px 12px;
    background: #faf8f5;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.filter-pill:hover {
    border-color: #3d271a;
}

.filter-pill i {
    font-size: 0.75rem;
    color: #999;
}

/* Coming Soon Page */
.coming-soon-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: #faf8f5;
}

.coming-soon-content {
    max-width: 600px;
    text-align: center;
    width: 100%;
}

.coming-soon-icon {
    margin: 0 auto 32px;
    opacity: 0.3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coming-soon-icon svg {
    width: 80px;
    height: 80px;
}

.coming-soon-title {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: #3d271a;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-align: center;
}

.coming-soon-message {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a4a4a;
    font-weight: 300;
    margin: 0 0 48px 0;
}

/* Blog Coming Soon Styles */
.blog-coming-soon {
    display: none; /* Hidden by default, shown when no posts */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    margin: 40px auto 0;
    width: 100%;
    box-sizing: border-box;
}

.blog-section .blog-container .blog-coming-soon {
    display: flex !important; /* Ensure flex when shown */
    margin: 40px auto 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}

.blog-coming-soon-icon {
    margin-bottom: 24px;
    color: #3d271a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-coming-soon-icon svg {
    width: 60px;
    height: 60px;
}

.blog-coming-soon-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #3d271a;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-align: center;
    width: 100%;
}

.blog-coming-soon-message {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    font-weight: 300;
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    width: 100%;
}

/* Blog page coming soon - larger */
.blog-page .blog-coming-soon {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px;
    min-height: 400px;
    margin: 40px auto 0;
    width: 100%;
    box-sizing: border-box;
}

.blog-page .blog-coming-soon-icon {
    margin-bottom: 32px;
}

.blog-page .blog-coming-soon-icon svg {
    width: 80px;
    height: 80px;
}

.blog-page .blog-coming-soon-title {
    font-size: 3rem;
    margin-bottom: 24px;
}

.blog-page .blog-coming-soon-message {
    font-size: 1.125rem;
    max-width: 700px;
}

.coming-soon-details {
    margin-bottom: 48px;
}

.coming-soon-details-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.coming-soon-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    text-align: left;
}

.coming-soon-detail-label {
    font-size: 0.875rem;
    color: #6a6a6a;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coming-soon-detail-value {
    font-size: 0.9375rem;
    color: #3d271a;
    font-weight: 400;
    text-align: right;
}

.coming-soon-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #3d271a;
    border: 1px solid #3d271a;
    border-radius: 50px;
    color: #faf8f5;
    font-size: 0.9375rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
    letter-spacing: 0.5px;
}

.coming-soon-btn:hover {
    background: transparent;
    color: #3d271a;
}

.search-results-container {
    display: flex;
    height: calc(100vh - 200px);
    overflow: hidden;
}

.listings-panel {
    flex: 0 0 50%;
    overflow-y: auto;
    background: #faf8f5;
    padding: 24px 40px;
}

.property-card {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    background: #faf8f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease;
    cursor: pointer;
}

.property-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.property-image-container {
    flex: 0 0 300px;
    position: relative;
    overflow: hidden;
}

.property-image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 250px;
}

.property-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.property-image.active {
    opacity: 1;
}

.property-carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(250, 248, 245, 0.5);
    cursor: pointer;
    transition: background 0.2s ease;
}

.carousel-dot.active {
    background: #faf8f5;
}

.property-carousel-next {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(250, 248, 245, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 2;
}

.property-image-container:hover .property-carousel-next {
    opacity: 1;
}

.property-carousel-next:hover {
    background: #faf8f5;
}

.property-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(250, 248, 245, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease;
}

.property-wishlist-btn:hover {
    background: #faf8f5;
}

.property-wishlist-btn i {
    color: #1a1a1a;
    font-size: 0.875rem;
}

.property-wishlist-btn.active i {
    color: #3d271a;
}

.property-details {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.property-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}

.property-wishlist-btn-small {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-wishlist-btn-small i {
    color: #1a1a1a;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.property-wishlist-btn-small:hover i,
.property-wishlist-btn-small.active i {
    color: #3d271a;
}

.property-location {
    font-size: 0.9375rem;
    color: #4a4a4a;
    margin: 0;
}

.property-specs {
    font-size: 0.9375rem;
    color: #4a4a4a;
    margin: 0;
}

.property-badges {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.property-badge {
    padding: 4px 8px;
    background: rgba(61, 39, 26, 0.1);
    color: #3d271a;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.map-panel {
    flex: 0 0 50%;
    position: relative;
    background: #faf8f5;
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: #faf8f5;
    position: relative;
}

.map-container svg {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
}

.map-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 10;
    pointer-events: none;
}

.map-controls > * {
    pointer-events: auto;
}

.map-back-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #faf8f5;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.map-back-btn:hover {
    background: #f5f5f5;
}

.map-search-area-btn {
    padding: 10px 20px;
    background: #faf8f5;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.map-search-area-btn:hover {
    border-color: #3d271a;
}

.map-zoom-controls {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: #faf8f5;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.map-zoom-btn {
    width: 40px;
    height: 40px;
    background: #faf8f5;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.map-zoom-btn:hover {
    background: #f5f5f5;
}

.map-zoom-btn i {
    color: #1a1a1a;
    font-size: 0.875rem;
}

/* Responsive for Search Results */
@media (max-width: 1024px) {
    .coming-soon-container {
        padding: 60px 32px;
        min-height: calc(100vh - 180px);
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-message {
        font-size: 1rem;
    }
    
    .coming-soon-details-list {
        max-width: 100%;
    }
    
    .search-results-container {
        flex-direction: column;
        height: auto;
    }
    
    .listings-panel {
        flex: 1;
        max-height: 50vh;
    }
    
    .map-panel {
        flex: 1;
        height: 50vh;
    }
}

@media (max-width: 768px) {
    /* Search page - secondary color for logo and nav buttons on mobile */
    body.search-page .logo-image {
        filter: brightness(0) saturate(100%) invert(15%) sepia(30%) saturate(1500%) hue-rotate(340deg) brightness(0.35) contrast(1.1) !important;
    }
    
    body.search-page .nav-toggle .nav-icon {
        color: #8a6f5a !important;
        stroke: #8a6f5a !important;
    }
    
    body.search-page .nav-toggle:hover .nav-icon {
        color: #8a6f5a !important;
        stroke: #8a6f5a !important;
    }
    
    .search-results-page {
        padding-top: 0;
    }
    
    /* Hide desktop search header on mobile */
    .search-results-header {
        display: none;
    }
    
    /* Mobile search header */
    .mobile-search-results-header {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 20px;
        background: #ffffff;
        border-bottom: 1px solid #e5e5e5;
        position: sticky;
        top: 64px;
        z-index: 100;
    }
    
    .mobile-back-btn {
        width: 40px;
        height: 40px;
        border: none;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border-radius: 50%;
        transition: background 0.2s ease;
        flex-shrink: 0;
    }
    
    .mobile-back-btn:hover {
        background: #f5f5f5;
    }
    
    .mobile-back-btn i {
        font-size: 1.125rem;
        color: #3d271a;
    }
    
    .mobile-search-bar-compact {
        flex: 1;
        min-width: 0;
    }
    
    .mobile-search-form {
        display: flex;
        align-items: center;
        gap: 8px;
        background: #f5f5f5;
        border-radius: 50px;
        padding: 8px 8px 8px 16px;
    }
    
    .mobile-search-input-wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
        min-width: 0;
    }
    
    .mobile-search-input-wrapper i {
        color: #999;
        font-size: 0.875rem;
        flex-shrink: 0;
    }
    
    .mobile-search-input {
        flex: 1;
        border: none;
        background: transparent;
        padding: 0;
        font-size: 0.9375rem;
        font-family: 'Inter', sans-serif;
        color: #1a1a1a;
        outline: none;
        min-width: 0;
    }
    
    .mobile-search-input::placeholder {
        color: #999;
    }
    
    .mobile-search-submit-btn {
        width: 36px;
        height: 36px;
        border: none;
        background: #3d271a;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        flex-shrink: 0;
        transition: background 0.2s ease;
    }
    
    .mobile-search-submit-btn:hover {
        background: #2a1a12;
    }
    
    .mobile-search-submit-btn i {
        color: #faf8f5;
        font-size: 0.875rem;
    }
    
    .coming-soon-container {
        padding: 60px 24px;
        min-height: calc(100vh - 140px);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .coming-soon-content {
        text-align: center;
        max-width: 100%;
    }
    
    .coming-soon-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .coming-soon-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .coming-soon-message {
        font-size: 0.9375rem;
        margin-bottom: 32px;
        line-height: 1.6;
    }
    
    .coming-soon-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px 20px;
    }
    
    .coming-soon-detail-value {
        text-align: left;
    }
    
    .coming-soon-btn {
        padding: 12px 32px;
        font-size: 0.875rem;
    }
    
    .search-results-header .search-bar {
        display: flex;
        flex-direction: row;
        align-items: center;
        background: #faf8f5;
        border-radius: 50px;
        padding: 4px 4px 4px 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        gap: 0;
        height: 52px;
    }
    
    .search-results-header .dates-input-wrapper,
    .search-results-header .guests-input-wrapper {
        display: none !important;
    }
    
    .search-results-header #searchDestination {
        flex: 1;
        border: none;
        background: transparent;
        padding: 14px 20px 14px 0;
        font-size: 0.9375rem;
        font-family: 'Inter', sans-serif;
        color: #1a1a1a;
        outline: none;
        min-width: 0;
    }
    
    .search-results-header #searchDestination::placeholder {
        color: #999;
    }
    
    .search-results-header .search-bar .search-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        max-width: 44px;
        border-radius: 50%;
        background: #3d271a;
        border: none;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        flex-shrink: 0;
        position: relative;
        font-size: 0;
        line-height: 0;
        color: transparent;
    }
    
    .search-results-header .search-bar .search-btn::after {
        content: '\f002';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: #faf8f5;
        font-size: 1.125rem;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        line-height: 1;
    }
    
    .search-results-header .search-bar .search-btn:hover {
        background: #8a4a14;
    }
    
    .listings-panel {
        padding: 16px 20px;
    }
    
    .property-card {
        flex-direction: column;
    }
    
    .property-image-container {
        flex: 1;
        width: 100%;
    }
}

/* Admin Dashboard Styles */
.admin-container {
    display: flex;
    min-height: calc(100vh - 60px);
    margin-top: 60px;
    background: #faf8f5;
}

.admin-sidebar {
    width: 280px;
    background: #ffffff;
    border-right: 1px solid #e5e5e5;
    padding: 40px 0;
    position: fixed;
    height: calc(100vh - 60px);
    overflow-y: auto;
    box-shadow: 2px 0 8px rgba(61, 39, 26, 0.05);
}

.admin-sidebar-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #3d271a;
    padding: 0 32px;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 20px;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: #4a4a4a;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
}

.admin-nav-item:hover {
    background: #faf8f5;
    color: #3d271a;
}

.admin-nav-item.active {
    background: #3d271a;
    color: #faf8f5;
    font-weight: 500;
}

.admin-nav-item i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.admin-main {
    flex: 1;
    margin-left: 280px;
    padding: 60px 50px;
    max-width: calc(100% - 280px);
}

.admin-section {
    display: none;
}

.admin-section.active {
    display: block;
}

.admin-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e5;
}

.admin-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 400;
    color: #3d271a;
    margin: 0;
    letter-spacing: -0.02em;
}

/* Admin Buttons */
.admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.admin-btn-primary {
    background: #3d271a;
    color: #faf8f5;
}

.admin-btn-primary:hover {
    background: #2a1a12;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(61, 39, 26, 0.2);
}

.admin-btn-secondary {
    background: #ffffff;
    color: #3d271a;
    border: 1px solid #d4c4b8;
}

.admin-btn-secondary:hover {
    background: #faf8f5;
    border-color: #3d271a;
}

.admin-btn-danger {
    background: #dc3545;
    color: #ffffff;
}

.admin-btn-danger:hover {
    background: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.admin-btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.admin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Properties List */
.properties-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 32px;
}

.admin-property-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(61, 39, 26, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.admin-property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(61, 39, 26, 0.12);
    border-color: #d4c4b8;
}

.admin-property-card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
    position: relative;
}

.admin-property-card-content {
    padding: 24px;
}

.admin-property-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
}

.admin-property-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #3d271a;
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.admin-property-status {
    font-size: 0.6875rem;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.status-active {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-inactive {
    background: #ffebee;
    color: #c62828;
}

.status-pending {
    background: #fff3e0;
    color: #e65100;
}

.admin-property-card-location {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #6a6a6a;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 300;
}

.admin-property-card-location i {
    color: #3d271a;
    font-size: 0.875rem;
}

.admin-property-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.875rem;
    color: #4a4a4a;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.admin-property-card-specs span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 300;
}

.admin-property-card-specs i {
    color: #3d271a;
    font-size: 0.875rem;
}

.admin-property-card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-loading,
.admin-empty,
.admin-error {
    text-align: center;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    color: #4a4a4a;
    font-size: 1rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.admin-loading {
    color: #6a6a6a;
}

.admin-empty {
    color: #6a6a6a;
}

.admin-error {
    color: #dc3545;
    background: #fff5f5;
    border-color: #ffebee;
}

/* Dashboard Styles */
.dashboard-content {
    width: 100%;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.dashboard-stat-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.2s ease;
}

.dashboard-stat-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.dashboard-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dashboard-stat-icon i {
    font-size: 1.5rem;
}

.dashboard-stat-info {
    flex: 1;
}

.dashboard-stat-value {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #3d271a;
    margin-bottom: 4px;
}

.dashboard-stat-label {
    font-size: 0.875rem;
    color: #6a6a6a;
    font-weight: 400;
}

/* Admin Filters */
.admin-filters {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
}

.admin-search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.admin-search-box i {
    position: absolute;
    left: 16px;
    color: #6a6a6a;
    font-size: 1rem;
}

.admin-search-input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #3d271a;
    transition: all 0.2s ease;
}

.admin-search-input:focus {
    outline: none;
    border-color: #3d271a;
    box-shadow: 0 0 0 3px rgba(61, 39, 26, 0.1);
}

.admin-filter-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-filter-select {
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #3d271a;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 150px;
}

.admin-filter-select:focus {
    outline: none;
    border-color: #3d271a;
    box-shadow: 0 0 0 3px rgba(61, 39, 26, 0.1);
}

.admin-filter-select:hover {
    border-color: #3d271a;
}

/* Property Form */
.property-form {
    background: #ffffff;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(61, 39, 26, 0.08);
    border: 1px solid #e5e5e5;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group-checkbox {
    flex-direction: row;
    align-items: center;
    padding-top: 8px;
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #3d271a;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.form-input,
.form-textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    padding: 12px 16px;
    border: 1px solid #d4c4b8;
    border-radius: 8px;
    background: #ffffff;
    color: #3d271a;
    transition: all 0.2s ease;
    width: 100%;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3d271a;
    box-shadow: 0 0 0 3px rgba(61, 39, 26, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9a9a9a;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #3d271a;
    cursor: pointer;
    font-weight: 400;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #3d271a;
}

.form-help {
    font-size: 0.75rem;
    color: #6a6a6a;
    margin-top: 6px;
    font-weight: 300;
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 32px;
    border-top: 1px solid #e5e5e5;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 968px) {
    .admin-sidebar {
        width: 240px;
    }
    
    .admin-main {
        margin-left: 240px;
        max-width: calc(100% - 240px);
        padding: 40px 32px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .properties-list {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px;
    }
}

/* Account Settings Styles */
.account-settings-container {
    max-width: 800px;
}

.settings-section {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
}

.settings-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #3d271a;
    margin: 0 0 24px 0;
    letter-spacing: -0.01em;
}

.settings-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #3d271a;
    letter-spacing: -0.01em;
}

.form-input {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    padding: 12px 16px;
    border: 1px solid #d4c4b8;
    border-radius: 8px;
    background: #ffffff;
    color: #1a1a1a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #3d271a;
    box-shadow: 0 0 0 3px rgba(61, 39, 26, 0.1);
}

.form-input:disabled {
    background: #f5f5f5;
    color: #6a6a6a;
    cursor: not-allowed;
}

.form-help {
    font-size: 0.8125rem;
    color: #6a6a6a;
    margin: 0;
    font-weight: 300;
}

.form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #1a1a1a;
    font-weight: 400;
    cursor: pointer;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3d271a;
}

.settings-btn {
    align-self: flex-start;
    padding: 12px 32px;
    background: #3d271a;
    border: 1px solid #3d271a;
    border-radius: 50px;
    color: #faf8f5;
    font-size: 0.9375rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.settings-btn:hover {
    background: transparent;
    color: #3d271a;
}

.settings-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 400;
}

.settings-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.settings-message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

@media (max-width: 768px) {
    .settings-section {
        padding: 24px 20px;
    }
    
    .settings-section-title {
        font-size: 1.125rem;
    }
    
    .account-settings-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .admin-container {
        flex-direction: column;
    }
    
    .admin-sidebar {
        width: 100%;
        position: relative;
        height: auto;
        padding: 24px 0;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        box-shadow: 0 2px 8px rgba(61, 39, 26, 0.05);
    }
    
    .admin-sidebar-title {
        padding: 0 24px;
        margin-bottom: 24px;
    }
    
    .admin-nav {
        padding: 0 16px;
    }
    
    .admin-main {
        margin-left: 0;
        max-width: 100%;
        padding: 32px 24px;
    }
    
    .admin-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-bottom: 20px;
    }
    
    .admin-section-title {
        font-size: 1.75rem;
    }
    
    .properties-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .property-form {
        padding: 32px 24px;
    }
    
    .admin-property-card-actions {
        flex-direction: column;
    }
    
    .admin-property-card-actions .admin-btn {
        width: 100%;
        justify-content: center;
    }
    
    .form-actions {
        flex-direction: column-reverse;
    }
    
    .form-actions .admin-btn {
        width: 100%;
        justify-content: center;
    }
    
    .stay-section {
        padding: 100px 24px;
    }
    
    .stay-section-title {
        font-size: 2.25rem;
    }
    
    .stay-section-description {
        font-size: 1rem;
    }
}

