:root {
    --green: #004040;
    --brown: #c29d68;
    --bg: #f7f7f5;
    --text: #1f2937;
    --muted: #6b7280;
    --white: #ffffff;
    --border: #e5e7eb;
    --success: #dff5e8;
    --success-text: #106b3d;
    --danger: #fde8e8;
    --danger-text: #a33232;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: Inter, sans-serif;
    color: var(--text);
    background: #fff;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}
.topbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--border);
}
.contact-bar {
    background: var(--green);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}
.contact-bar-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 38px;
}
.contact-links,
.social-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.contact-links a,
.social-links a {
    opacity: 0.94;
}
.contact-links a:hover,
.social-links a:hover {
    opacity: 1;
}
.social-links a {
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
}
.nav-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 78px;
}
.brand {
    font-size: 28px;
    font-weight: 800;
    color: var(--green);
}
.brand span {
    color: var(--brown);
}
.logo-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}
.logo-brand img {
    width: 150px;
    height: auto;
    max-height: 64px;
    object-fit: contain;
}
.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 14px;
    filter: brightness(0) invert(1);
}
.main-nav {
    display: flex;
    gap: 26px;
    align-items: center;
}
.main-nav a {
    font-weight: 600;
}
.menu-toggle {
    display: none;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    color: var(--green);
    cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px 0;
    border-radius: 999px;
    background: currentColor;
}
.phone-pill,
.btn {
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
}
.phone-pill {
    background: #16a34a;
    color: #fff;
    padding: 14px 18px;
}
.hero {
    padding: 64px 0 24px;
    background: linear-gradient(180deg, #fbfbfa, #f4f6f6);
}
.hero-minimal {
    padding: 62px 0 46px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
}
.hero-stack {
    display: grid;
    gap: 28px;
}
.hero-copy {
    max-width: 820px;
    margin: 0 auto;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 64, 64, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 40px rgba(31, 41, 55, 0.07);
}
.eyebrow {
    color: var(--brown);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.hero h1 {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.12;
    margin: 12px 0;
    letter-spacing: 0;
    color: var(--green);
    font-weight: 800;
}
.hero p {
    color: #004400;
    font-size: 17px;
    line-height: 1.65;
    max-width: 680px;
    margin: 0 auto;
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}
.hero-primary-btn,
.hero-whatsapp-btn {
    min-width: 140px;
    border-radius: 8px;
}
.hero-primary-btn {
    background: #004040;
}
.hero-whatsapp-btn {
    background: #25d366;
    color: #fff;
}
.hero-primary-btn:hover {
    background: #003333;
    opacity: 1;
}
.hero-whatsapp-btn:hover {
    background: #1fb85a;
    opacity: 1;
}
.hero-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 380px;
    background-size: cover;
    background-position: center;
}
.search-shell {
    margin-top: -50px;
    position: sticky;
    top: 92px;
    z-index: 90;
}
.floating-search {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 0.8fr auto;
    gap: 10px;
    background: #fff;
    padding: 16px;
    border-radius: 28px;
    box-shadow: var(--shadow);
    border: 1px solid #f0f0f0;
}
.floating-search .field,
.form-control,
textarea,
select {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
}
.field label {
    display: block;
    font-size: 12px;
    color: var(--muted);
    padding: 10px 14px 0;
    font-weight: 700;
}
.field input,
.form-control,
textarea,
select {
    width: 100%;
    padding: 12px 14px;
    font: inherit;
    outline: none;
}
.field input,
.form-control,
textarea,
select {
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}
.field:focus-within,
.form-control:focus,
textarea:focus,
select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(0, 64, 64, 0.1);
}
.field:focus-within {
    background: #fff;
}
textarea {
    min-height: 110px;
}
.btn {
    padding: 14px 20px;
    background: var(--green);
    color: #fff;
}
.btn:hover {
    opacity: 0.95;
}
.btn-secondary {
    background: var(--brown);
}
.btn-outline {
    background: #fff;
    color: var(--green);
    border: 1px solid var(--green);
}
.section {
    padding: 56px 0;
}
.section h2 {
    font-size: 34px;
    margin: 0 0 8px;
}
.section p.lead {
    color: var(--muted);
    margin-top: 0;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.property-card,
.info-card,
.panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
.property-card img,
.property-slider img {
    height: 240px;
    width: 100%;
    object-fit: cover;
}
.property-slider {
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
}
.property-image-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    pointer-events: none;
}
.property-image-location,
.property-image-rating {
    max-width: 68%;
    padding: 7px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    box-shadow: 0 8px 20px rgba(31, 41, 55, 0.14);
}
.property-image-location {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.property-image-rating {
    flex: 0 0 auto;
    color: #7a5a2c;
}
.property-slider-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.property-slider-track::-webkit-scrollbar {
    display: none;
}
.property-slider-track img {
    flex: 0 0 100%;
    scroll-snap-align: start;
}
.property-slider-btn {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--green);
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: 0 8px 22px rgba(31, 41, 55, 0.16);
}
.property-slider-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.property-slider-prev {
    left: 10px;
}
.property-slider-next {
    right: 10px;
}
.property-slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 6px;
}
.property-slider-dots span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}
.property-slider-dots span.active {
    width: 18px;
    background: #fff;
}
.property-detail-slider {
    margin-top: 18px;
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(31, 41, 55, 0.1);
}
.property-detail-slider img {
    height: 430px;
}
.property-detail-slider .property-slider-btn {
    width: 42px;
    height: 42px;
}
.property-detail-slider .property-slider-btn svg {
    width: 24px;
    height: 24px;
}
.property-card-body {
    padding: 18px;
}
.badge {
    display: inline-flex;
    padding: 6px 12px;
    background: rgba(194, 157, 104, 0.16);
    color: #7a5a2c;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}
.property-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
    margin: 10px 0;
}
.property-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 10px;
}
.property-title-row h2 {
    margin: 0;
}
.property-title-row h1 {
    margin: 0;
}
.property-title-actions {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.leave-review-btn {
    flex: 0 0 auto;
    border-radius: 8px;
}
.mobile-book-btn {
    display: none;
    border-radius: 8px;
    background: #004040;
}
.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
}
.price {
    font-size: 22px;
    font-weight: 800;
    color: var(--green);
}
.split {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 24px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.detail-gallery-grid {
    margin-top: 14px;
}
.gallery-grid img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
}
.property-map-section {
    margin-top: 34px;
}
.property-map-frame {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #eef4f4;
    box-shadow: 0 16px 40px rgba(31, 41, 55, 0.08);
}
.property-map-frame iframe {
    display: block;
    width: 100%;
}
.property-map-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}
.property-map-actions .btn {
    border-radius: 8px;
}
.list-clean {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}
.review {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    margin-bottom: 14px;
}
.section-heading {
    margin-bottom: 20px;
}
.section-heading .eyebrow {
    margin: 0 0 8px;
}
.section-heading h2 {
    margin-bottom: 8px;
}
.home-search-card {
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 34px rgba(17, 24, 39, 0.14);
}
.home-search-placeholder {
    display: none;
}
.home-search-card.is-fixed {
    position: fixed;
    top: 126px;
    left: 50%;
    z-index: 90;
    width: min(1180px, calc(100% - 32px));
    transform: translateX(-50%);
}
.home-search-placeholder.is-active {
    display: block;
}
.stay-search {
    grid-template-columns: 1.05fr 0.95fr 0.95fr 0.95fr 0.85fr auto;
    gap: 0;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 34px rgba(17, 24, 39, 0.14);
}
.search-form-premium {
    position: relative;
}
.listing-filter-form {
    position: sticky;
    top: 92px;
    z-index: 80;
    margin: 20px 0 32px;
}
.stay-search .search-cell {
    min-height: 96px;
    padding: 16px 16px 14px;
    border: 0;
    border-right: 1px solid #e5e7eb;
    border-radius: 0;
    background: #fff;
}
.stay-search .search-cell-wide {
    min-width: 180px;
}
.stay-search .field label {
    padding: 0;
    margin-bottom: 10px;
    color: #374151;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.search-control-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111827;
}
.search-control-row svg {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    padding: 8px;
    border-radius: 8px;
    color: var(--green);
    background: rgba(0, 64, 64, 0.08);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    box-shadow: inset 0 0 0 1px rgba(0, 64, 64, 0.08);
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}
.search-control-row svg path {
    fill: currentColor;
    stroke: none;
}
.stay-search .search-cell:nth-child(2) .search-control-row svg {
    color: #7a5a2c;
    background: rgba(194, 157, 104, 0.14);
    box-shadow: inset 0 0 0 1px rgba(194, 157, 104, 0.14);
}
.stay-search .search-cell:nth-child(3) .search-control-row svg,
.stay-search .search-cell:nth-child(4) .search-control-row svg {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.1);
}
.stay-search .search-cell:nth-child(5) .search-control-row svg {
    color: #16a34a;
    background: rgba(22, 163, 74, 0.1);
    box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.1);
}
.stay-search .search-cell:focus-within .search-control-row svg {
    color: #fff;
    background: var(--green);
    transform: translateY(-1px);
}
.stay-search input,
.stay-search select {
    width: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #111827;
    font-weight: 500;
    box-shadow: none;
}
.stay-search input::placeholder {
    color: #9ca3af;
}
.stay-search input:focus,
.stay-search select:focus {
    box-shadow: none;
}
.search-submit-btn {
    align-self: center;
    min-height: 38px;
    margin: 0 16px;
    padding: 0 18px;
    gap: 9px;
    border-radius: 8px;
    background: #004040;
    color: #fff;
    box-shadow: 0 12px 24px rgba(0, 64, 64, 0.24);
}
.search-submit-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.search-submit-btn span {
    font-size: 14px;
}
.search-submit-btn:hover {
    transform: translateY(-1px);
    opacity: 1;
    background: #003333;
}
.why-section {
    background: #fafaf9;
}
.centered-heading {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 28px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.why-card {
    padding: 22px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(31, 41, 55, 0.06);
}
.why-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    margin-bottom: 18px;
}
.why-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.why-icon-green {
    color: #00796b;
    background: rgba(0, 121, 107, 0.12);
}
.why-icon-gold {
    color: #b7791f;
    background: rgba(183, 121, 31, 0.13);
}
.why-icon-blue {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.12);
}
.why-icon-coral {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
}
.why-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: var(--text);
}
.why-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}
.why-action {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}
.book-stay-btn {
    background: #004040;
    border-radius: 8px;
    padding: 14px 24px;
}
.book-stay-btn:hover {
    background: #003333;
    opacity: 1;
}
.about-host-section {
    background: #fff;
    padding-top: 46px;
}
.about-title {
    margin: 0 0 14px;
    color: var(--green);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.1;
    text-align: center;
    letter-spacing: 0.08em;
}
.host-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
    border: 1px solid var(--border);
    background: #fff;
}
.host-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px;
}
.host-copy p {
    max-width: 500px;
    margin: 0;
    color: var(--text);
    font-size: 16px;
    line-height: 1.55;
}
.host-signature {
    margin-top: 34px;
}
.host-signature span {
    display: block;
    width: 36px;
    height: 2px;
    margin-bottom: 20px;
    background: #2563eb;
}
.host-signature strong,
.host-signature small {
    display: block;
}
.host-signature strong {
    color: #111827;
    font-size: 16px;
}
.host-signature small {
    margin-top: 7px;
    color: #9ca3af;
    font-size: 12px;
}
.host-photo {
    display: grid;
    place-items: center;
    min-height: 430px;
    padding: 12px;
    background: #efebe6;
    overflow: hidden;
}
.host-photo img {
    width: min(420px, 100%);
    aspect-ratio: 1;
    border-radius: 999px;
    object-fit: cover;
}
.about-rules-section {
    padding-top: 34px;
}
.rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 30px;
}
.rule-card {
    border: 1px solid #c29d68;
    background: #fff;
}
.rule-card h2 {
    margin: 0;
    padding: 16px 34px;
    background: #c29d68;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.rule-card div {
    padding: 24px 34px;
}
.rule-card p {
    margin: 0;
    color: #2f343b;
    font-size: 14px;
    line-height: 1.7;
}
.rule-card p + p {
    margin-top: 2px;
}
.form-card {
    background: linear-gradient(135deg, #fff, #fbf8f2);
    border-color: rgba(194, 157, 104, 0.28);
}
.form-card-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}
.form-card-header h3,
.booking-card h3 {
    margin: 0 0 4px;
    color: var(--green);
}
.form-card-header p {
    margin: 0;
    color: var(--muted);
}
.form-card-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: rgba(194, 157, 104, 0.18);
    color: #7a5a2c;
    font-weight: 800;
}
.stacked-form {
    display: grid;
    gap: 16px;
}
.stacked-form .btn {
    width: fit-content;
}
.stacked-form .form-grid {
    gap: 14px;
}
.booking-card {
    padding: 24px;
    border: 0;
    background: linear-gradient(160deg, #fff 0%, #f7fbfa 48%, #f8efe2 100%);
    box-shadow: 0 24px 60px rgba(0, 64, 64, 0.14);
}
.sticky-booking-card {
    position: sticky;
    top: 100px;
}
.booking-card-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(0, 64, 64, 0.1);
}
.booking-card .price {
    margin: 0;
    text-align: right;
    white-space: nowrap;
}
.booking-card .price span {
    display: block;
    font-size: 13px;
    color: var(--muted);
    font-weight: 700;
}
.booking-card .form-control,
.booking-card textarea,
.review-form-card .form-control,
.review-form-card textarea,
.review-form-card select,
.login-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border-color: #d8dee6;
}
.booking-note {
    color: var(--muted);
    margin: 16px 0 0;
    padding: 14px;
    border-radius: 16px;
    background: rgba(0, 64, 64, 0.06);
}
.booking-form-message {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(0, 64, 64, 0.06);
    color: var(--green);
    font-weight: 700;
}
.booking-form-message:empty,
.booking-form-message[hidden] {
    display: none;
}
.booking-form-message[data-type="warning"] {
    background: rgba(194, 157, 104, 0.18);
    color: #7a5a2c;
}
.booking-form-message[data-type="error"] {
    background: var(--danger);
    color: var(--danger-text);
}
.booking-submit-btn {
    position: relative;
    gap: 10px;
}
.booking-submit-btn.is-loading,
.booking-submit-btn:disabled {
    cursor: wait;
    opacity: 0.82;
}
.booking-submit-btn.is-loading::before {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #fff;
    border-radius: 999px;
    animation: button-spin 0.8s linear infinite;
}
@keyframes button-spin {
    to {
        transform: rotate(360deg);
    }
}
.booking-total-box {
    padding: 16px;
    border: 1px solid rgba(0, 64, 64, 0.14);
    border-radius: 8px;
    background: linear-gradient(
        135deg,
        rgba(0, 64, 64, 0.08),
        rgba(194, 157, 104, 0.14)
    );
}
.booking-total-box span,
.booking-total-box small {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}
.booking-total-box strong {
    display: block;
    margin: 5px 0;
    color: var(--green);
    font-size: 24px;
    line-height: 1.2;
}
.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(0, 64, 64, 0.14);
    border-radius: 8px;
    background: rgba(0, 64, 64, 0.05);
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    cursor: pointer;
}
.terms-checkbox input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: var(--green);
}
.blocked-dates-panel {
    padding: 14px;
    border: 1px solid rgba(194, 157, 104, 0.32);
    border-radius: 18px;
    background: rgba(194, 157, 104, 0.12);
}
.blocked-dates-panel strong {
    display: block;
    color: #7a5a2c;
    margin-bottom: 8px;
}
.blocked-dates-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px;
}
.blocked-dates-list li + li {
    margin-top: 4px;
}
.alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 14px;
}
.alert-success {
    background: var(--success);
    color: var(--success-text);
}
.alert-error {
    background: var(--danger);
    color: var(--danger-text);
}
.site-footer {
    background: var(--green);
    color: #fff;
    padding: 50px 0;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    background: #25d366;
    color: #fff;
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: var(--shadow);
    z-index: 100;
}

.admin-body {
    background: #f3f4f6;
}
.admin-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}
.admin-sidebar {
    background: #f6f6f6;
    border-right: 1px solid var(--border);
    padding: 24px 14px;
}
.sidebar-brand {
    display: inline-flex;
    margin-bottom: 30px;
}
.sidebar-section {
    color: #9ca3af;
    font-size: 12px;
    font-weight: 800;
    margin: 24px 12px 10px;
}
.sidebar-link {
    display: block;
    padding: 14px 16px;
    border-radius: 18px;
    margin-bottom: 8px;
    background: #fff;
    border: 1px solid var(--border);
}
.admin-main {
    padding: 16px 18px;
}
.admin-topbar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.admin-content {
    padding-top: 18px;
}
.admin-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    gap: 12px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 20px 0;
}
.stat-box {
    padding: 28px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--border);
}
.stat-box h3 {
    margin: 0;
    font-size: 16px;
    color: var(--muted);
}
.stat-box strong {
    display: block;
    margin-top: 10px;
    font-size: 42px;
    color: var(--green);
}
.analytics-stats-grid {
    margin-top: 0;
}
.analytics-stat span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}
.analytics-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 24px;
    margin: 24px 0;
}
.analytics-grid-secondary {
    grid-template-columns: 1fr 1fr;
}
.analytics-panel {
    min-width: 0;
}
.analytics-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}
.analytics-panel-header h3 {
    margin: 0;
    color: var(--green);
}
.analytics-panel-header span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}
.traffic-chart {
    display: grid;
    grid-template-columns: repeat(14, minmax(24px, 1fr));
    align-items: end;
    gap: 10px;
    min-height: 260px;
}
.traffic-bar-item {
    display: grid;
    grid-template-rows: 1fr auto auto;
    align-items: end;
    gap: 7px;
    min-width: 0;
    text-align: center;
}
.traffic-bar-track {
    position: relative;
    height: 170px;
    border-radius: 8px;
    background: rgba(0, 64, 64, 0.08);
    overflow: hidden;
}
.traffic-bar-track span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(180deg, #c29d68, #004040);
}
.traffic-bar-item strong {
    font-size: 13px;
    color: var(--green);
}
.traffic-bar-item small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}
.analytics-list {
    display: grid;
    gap: 10px;
}
.analytics-list-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fbfcfc;
}
.analytics-list-row span {
    min-width: 0;
    overflow: hidden;
    color: var(--text);
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.analytics-list-row strong {
    flex: 0 0 auto;
    color: var(--green);
    font-size: 13px;
}
.analytics-empty {
    margin: 0;
    color: var(--muted);
}
.admin-panels {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}
.table-wrap {
    overflow: auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
}
.table {
    width: 100%;
    border-collapse: collapse;
}
.table th,
.table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}
.table th {
    background: #fafafa;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.table-actions,
.table-action-form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
.table-action-form .form-control {
    min-width: 130px;
}
.table-delete-form {
    margin-top: 8px;
}
.card-pad {
    padding: 22px;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.panel {
    padding: 22px;
}
.admin-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 18px;
}
.admin-page-header h1 {
    margin: 6px 0 8px;
    font-size: clamp(30px, 3vw, 42px);
    color: var(--green);
}
.admin-page-header .eyebrow {
    margin: 0;
}
.admin-page-lead {
    color: var(--muted);
    margin: 0;
}
.compact-filter-form {
    width: min(320px, 100%);
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(31, 41, 55, 0.04);
}
.property-form-panel {
    padding: 0;
    border: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 64, 64, 0.08),
        rgba(194, 157, 104, 0.14)
    );
    box-shadow: var(--shadow);
}
.admin-form {
    background: rgba(255, 255, 255, 0.92);
    margin: 1px;
    padding: 28px;
    border-radius: 24px;
}
.form-section {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(31, 41, 55, 0.04);
}
.form-section + .form-section {
    margin-top: 20px;
}
.form-section-header {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}
.form-section-header h2 {
    margin: 0 0 4px;
    font-size: 20px;
    color: var(--green);
}
.form-section-header p {
    margin: 0;
    color: var(--muted);
}
.form-section-kicker {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(194, 157, 104, 0.18);
    color: #7a5a2c;
    font-weight: 800;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-field + .form-field {
    margin-top: 18px;
}
.form-grid .form-field + .form-field {
    margin-top: 0;
}
.form-field label {
    font-size: 13px;
    font-weight: 800;
    color: var(--text);
}
.admin-form .form-control,
.admin-form textarea,
.admin-form select {
    border-color: #d8dee6;
    background: #fbfcfc;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}
.admin-form .form-control:focus,
.admin-form textarea:focus,
.admin-form select:focus {
    border-color: var(--green);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 64, 64, 0.1);
}
.admin-form textarea {
    min-height: 140px;
    resize: vertical;
}
.rich-editor {
    border: 1px solid #d8dee6;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}
.rich-editor-toolbar {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding: 10px;
    border-bottom: 1px solid var(--border);
    background: #fbfcfc;
}
.rich-editor-toolbar button {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    color: var(--green);
    cursor: pointer;
    font-weight: 800;
    padding: 8px 10px;
}
.rich-editor-toolbar button:hover {
    background: rgba(0, 64, 64, 0.07);
}
.rich-editor-surface {
    min-height: 190px;
    padding: 14px;
    outline: none;
}
.rich-editor-surface:focus {
    box-shadow: inset 0 0 0 3px rgba(0, 64, 64, 0.08);
}
.rich-editor-surface ol,
.rich-editor-surface ul,
.rich-content ol,
.rich-content ul {
    padding-left: 22px;
}
.rich-editor-surface li + li,
.rich-content li + li {
    margin-top: 6px;
}
.rich-editor-input {
    display: none;
}
.rich-content {
    color: var(--text);
    line-height: 1.7;
}
.rich-content p:first-child,
.rich-content h3:first-child,
.rich-content h4:first-child {
    margin-top: 0;
}
.rich-content a {
    color: var(--green);
    font-weight: 800;
    text-decoration: underline;
}
.rich-content ol,
.rich-content ul {
    color: var(--muted);
}
.admin-form-inline {
    margin-top: 22px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fbfcfc;
}
.booking-detail-panel {
    box-shadow: var(--shadow);
}
.booking-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.booking-summary-grid p {
    margin: 0;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fbfcfc;
}
.booking-summary-grid strong,
.booking-request-note strong {
    display: block;
    color: var(--green);
    margin-bottom: 6px;
}
.booking-summary-grid span {
    color: var(--muted);
}
.booking-request-note {
    margin-top: 14px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(194, 157, 104, 0.13);
}
.booking-request-note p {
    margin: 6px 0 0;
}
.form-hint {
    color: var(--muted);
    font-size: 13px;
}
.file-field .form-control {
    padding: 10px;
}
.existing-gallery {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.existing-gallery h3 {
    margin: 0 0 6px;
    color: var(--green);
}
.existing-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 14px;
}
.existing-gallery-item {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}
.existing-gallery-item img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}
.existing-gallery-item span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}
.existing-gallery-item input {
    width: 16px;
    height: 16px;
    accent-color: var(--green);
}
.toggle-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.toggle-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fbfcfc;
    cursor: pointer;
}
.toggle-card input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--green);
}
.toggle-card strong {
    display: block;
    color: var(--green);
    margin-bottom: 4px;
}
.toggle-card small {
    color: var(--muted);
}
.form-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #eef4f4, #f9f9f8);
}
.login-card {
    width: min(460px, calc(100% - 32px));
    background: linear-gradient(135deg, #fff, #f8efe2);
    border: 1px solid rgba(194, 157, 104, 0.28);
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow);
}
.login-card h2 {
    margin: 6px 0 8px;
    color: var(--green);
}
.login-form {
    margin-top: 20px;
}
@media (max-width: 980px) {
    .hero-grid,
    .split,
    .admin-layout,
    .admin-panels,
    .analytics-grid,
    .analytics-grid-secondary,
    .host-card,
    .rules-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .floating-search,
    .listing-filter-form,
    .search-form-premium,
    .stay-search {
        grid-template-columns: 1fr 1fr;
    }
    .main-nav {
        display: none;
    }
    .menu-toggle {
        display: grid;
    }
    .main-nav.is-open {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        z-index: 120;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        border: 1px solid var(--border);
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 18px 34px rgba(17, 24, 39, 0.14);
    }
    .main-nav.is-open a {
        padding: 13px 12px;
        border-radius: 8px;
    }
    .main-nav.is-open a:hover {
        background: rgba(0, 64, 64, 0.06);
    }
    .admin-page-header {
        align-items: flex-start;
        flex-direction: column;
    }
    .sticky-booking-card {
        position: static;
    }
}
@media (max-width: 720px) {
    .grid-3,
    .gallery-grid,
    .form-grid,
    .stats-grid,
    .analytics-stats-grid,
    .existing-gallery-grid,
    .toggle-row,
    .booking-summary-grid {
        grid-template-columns: 1fr;
    }
    .container {
        width: min(100% - 20px, 1180px);
    }
    .about-title {
        letter-spacing: 0.04em;
    }
    .host-copy {
        padding: 28px;
    }
    .host-photo {
        min-height: 300px;
    }
    .rule-card h2,
    .rule-card div {
        padding-left: 20px;
        padding-right: 20px;
    }
    .contact-bar-wrap {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 9px 0;
    }
    .contact-links,
    .social-links {
        gap: 8px;
    }
    .contact-links span {
        display: none;
    }
    .social-links a {
        padding: 4px 7px;
    }
    .logo-brand img {
        width: 118px;
    }
    .hero {
        padding-top: 34px;
    }
    .phone-pill {
        display: none;
    }
    .hero-minimal {
        padding-bottom: 34px;
    }
    .hero-card {
        min-height: 260px;
    }
    .search-shell {
        margin-top: -22px;
        top: 78px;
        width: min(100% - 12px, 1180px);
    }
    .home-search-card {
        border-radius: 16px;
    }
    .home-search-card.is-fixed {
        top: 140px;
        width: min(100% - 12px, 1180px);
    }
    .listing-filter-form {
        top: 78px;
        margin: 14px 0 24px;
    }
    .stay-search {
        grid-template-columns: 1fr 1fr;
        border-radius: 16px;
        max-height: 42vh;
        overflow: auto;
    }
    .stay-search .search-cell {
        min-height: 56px;
        padding: 9px 11px 8px;
        border-right: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
    }
    .stay-search .search-cell:nth-child(even) {
        border-right: 0;
    }
    .stay-search .field label {
        margin-bottom: 5px;
        font-size: 10px;
        letter-spacing: 0.06em;
    }
    .search-control-row {
        gap: 7px;
    }
    .search-control-row svg {
        width: 28px;
        height: 28px;
        padding: 7px;
    }
    .stay-search input,
    .stay-search select {
        font-size: 13px;
    }
    .search-submit-btn {
        grid-column: 1 / -1;
        width: calc(100% - 18px);
        margin: 9px;
        min-height: 40px;
        padding: 0 14px;
        border-radius: 8px;
    }
    .search-submit-btn svg {
        width: 16px;
        height: 16px;
    }
    .admin-form {
        padding: 16px;
    }
    .form-section {
        padding: 18px;
    }
    .booking-card-top {
        flex-direction: column;
    }
    .booking-card .price {
        text-align: left;
    }
    .property-title-row {
        align-items: flex-start;
        flex-direction: column;
    }
    .property-title-actions {
        justify-content: flex-start;
        width: 100%;
    }
    .mobile-book-btn {
        display: inline-flex;
    }
    .traffic-chart {
        gap: 6px;
        overflow-x: auto;
        padding-bottom: 8px;
    }
    .traffic-bar-item {
        min-width: 44px;
    }
    .property-detail-slider img {
        height: 280px;
    }
    .stacked-form .btn,
    .search-form-premium .btn,
    .listing-filter-form .btn {
        width: 100%;
    }
    .stay-search .search-submit-btn {
        width: calc(100% - 18px);
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
}
