/* Homely Theme - Main Stylesheet */
:root {
    --primary-green: #120d01;
    --accent-green: #bd9947;
    --light-bg: #ddcfb4;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #F0F0F0;
    --text-muted: #666666;
    --border-color: #E0E0E0;
    --font-family: 'Figtree', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--accent-green);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    color: var(--primary-green);
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-family);
}

.btn-primary {
    background-color: var(--accent-green);
    color: var(--primary-green);
    font-weight: 700;
}

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

.btn-light {
    background-color: var(--accent-green);
    color: var(--primary-green);
    font-weight: 600;
}

.btn-light:hover {
    background-color: #b0c98b;
}

/* Header */
.header {
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 60px);
    max-width: 1280px;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.header.sticky {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 60px);
    max-width: 1280px;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-120%);
    }

    to {
        transform: translateY(0);
    }
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #120d01;
    border-radius: 12px;
    padding: 14px 28px;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

.logo svg {
    flex-shrink: 0;
    width: 36px;
    height: 29px;
}

.custom-logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.custom-logo-wrapper img {
    max-height: 52px;
    width: auto;
    display: block;
    margin-top: 6px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-list a {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    letter-spacing: 0.2px;
    transition: var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--white);
}

.nav-icon {
    font-size: 10px;
    margin-left: 4px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
}

.close-menu-btn {
    display: none;
}

.nav-overlay {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 72px;
    color: var(--white);
    margin-top: 80px;
    font-weight: 600;
    line-height: 1.1;
    max-width: 800px;
}

.hero-agent {
    position: absolute;
    top: 80px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
}

.agent-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid var(--white);
}

.agent-name {
    font-weight: 600;
    font-size: 18px;
}

.agent-phone {
    font-size: 14px;
    opacity: 0.9;
}

.hero-card {
    position: absolute;
    bottom: 80px;
    right: 20px;
    width: 600px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 20px;
    display: flex;
    gap: 30px;
    color: var(--white);
    z-index: 10;
}

.card-img-wrapper {
    width: 240px;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
}

.card-title {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-text {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-watermark {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 25%);
    width: 100vw;
    text-align: center;
    font-size: 22vw;
    font-weight: 700;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.45) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: -1vw;
    pointer-events: none;
    z-index: 1;
}

.hero-address {
    position: absolute;
    bottom: 80px;
    left: 20px;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    z-index: 2;
}

/* About Property */
/* Property Banner */
.property-banner {
    background-color: #120d01;
    padding: 36px 0;
}

.property-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.banner-title-col {
    flex: 1.2;
}

.banner-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
}

.banner-price-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0 40px;
}

.banner-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-green);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.banner-price {
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1;
}

.banner-agent-col {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    justify-content: flex-end;
}

.banner-agent-img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

.banner-agent-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.banner-agent-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.banner-agent-phone {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.3px;
}

/* About Property Section */
.about-property {
    background-color: var(--white);
    padding: 100px 0;
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    width: 100%;
}

.about-left {
    flex: 0 0 400px;
    max-width: 400px;
    min-width: 0;
}

.about-subtitle {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #4a7a3a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-heading {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 18px;
}

.about-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 30px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.property-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 16px;
    background-color: #ece5d6;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    min-width: 0;
}

.stat-icon {
    color: var(--accent-green);
    font-size: 28px;
    flex-shrink: 0;
}

.location-card {
    background-color: #ece5d6;
    border-radius: 14px;
    padding: 24px 28px;
    margin-top: 8px;
}

.location-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #6c5627;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.location-value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.location-pin {
    color: var(--accent-green);
    font-size: 28px;
}

.about-right {
    flex: 1;
    min-width: 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.room-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.room-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

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

.room-card::after {
    content: "View";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background-color: var(--white);
    color: var(--primary-green);
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.room-card:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.room-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 26px 16px 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.52) 0%, transparent 100%);
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-align: center;
}

/* Facilities */
.facilities {
    padding: 100px 0;
    background-color: #f8f3eb;
    overflow: hidden;
}

.facilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.facility-card {
    display: flex;
    align-items: center;
    gap: 40px;
}

.facility-img {
    width: 250px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.facility-img.rounded-img {
    border-radius: 30px;
}

.facility-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facility-card:hover .facility-img img {
    transform: scale(1.05);
}

.facility-info h3 {
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.facility-info p {
    color: var(--text-muted);
}

/* Video Tour */
.video-tour {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.video-tour:hover .video-bg img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.play-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: scale(1.1);
}

.video-watermark {
    position: absolute;
    bottom: -60px;
    left: 60%;
    transform: translateX(-50%);
    font-size: 22vw;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    pointer-events: none;
}

/* Floorplans */
.floorplans {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 100px 0;
}

.floorplan-container {
    display: flex;
    gap: 80px;
}

.floorplan-content {
    flex: 1;
}

.section-title.light {
    color: var(--white);
}

.section-subtitle.light {
    color: var(--white);
}

.room-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.room-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.floorplan-visual {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.floorplan-visual img {
    object-fit: contain;
}

.floorplan-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 8px 20px;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 16px;
    transition: var(--transition);
}

.tab-btn.active {
    background-color: var(--accent-green);
    color: var(--primary-green);
}

.blueprint-container {
    width: 100%;
}

.blueprint-container img {
    display: block;
}

/* Gallery */
.gallery {
    padding: 100px 0;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.gallery-nav {
    display: flex;
    gap: 15px;
}

.gallery-btn {
    width: 40px;
    height: 40px;
    background-color: var(--accent-green);
    border: none;
    color: var(--primary-green);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-btn:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.gallery-carousel {
    display: flex;
    gap: 30px;
    padding: 0 20px;
    overflow-x: auto;
    scrollbar-width: none;
}

.gallery-carousel::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    min-width: 700px;
    height: 450px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-title {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--white);
    font-size: 22px;
    font-weight: 600;
    z-index: 2;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.view-text {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid var(--white);
    border-radius: 30px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .view-text {
    transform: translateY(0);
}

/* Location Highlights */
.location-highlights {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.location-highlights .section-subtitle {
    color: #0B2218;
}

.location-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
}

.loc-tab {
    background: transparent;
    border: none;
    font-size: 16px;
    color: var(--text-muted);
    cursor: pointer;
    font-family: var(--font-family);
    transition: var(--transition);
}

.loc-tab.active,
.loc-tab:hover {
    color: var(--primary-green);
    font-weight: 600;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: opacity 0.3s ease;
}

.location-item {
    display: flex;
    gap: 20px;
}

.loc-icon {
    font-size: 30px;
    color: var(--primary-green);
    margin-top: 5px;
}

.loc-details h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary-green);
}

.loc-time {
    font-size: 14px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 15px;
}

.loc-details p {
    font-size: 15px;
    color: var(--text-muted);
}

/* Schedule */
.schedule {
    padding: 100px 0;
}

.schedule-container {
    display: flex;
    gap: 80px;
}

.schedule-info {
    flex: 1;
}

.schedule-desc {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.agent-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.agent-img-small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.agent-name-dark {
    display: block;
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-green);
}

.agent-phone-green {
    color: var(--accent-green);
    font-weight: 500;
}

.schedule-form {
    flex: 1;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

input,
select,
textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 16px;
    background-color: #FAFAFA;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-green);
}

.schedule-form .btn {
    margin-top: 10px;
}

/* CF7 in schedule form */
.schedule-form .wpcf7 form>br {
    display: none;
}

.schedule-form .wpcf7 form p {
    margin: 0 0 20px;
}

.schedule-form .wpcf7 .form-row {
    margin-bottom: 20px;
}

.schedule-form .wpcf7 .form-row>p {
    display: flex;
    gap: 20px;
    margin: 0;
}

.schedule-form .wpcf7 .form-row>p>.wpcf7-form-control-wrap {
    flex: 1;
    min-width: 0;
}

.schedule-form .wpcf7 .form-row>p>br {
    display: none;
}

.schedule-form .wpcf7 input:not([type="submit"]),
.schedule-form .wpcf7 select,
.schedule-form .wpcf7 textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 16px;
    background-color: #FAFAFA;
    box-sizing: border-box;
}

.schedule-form .wpcf7 input:not([type="submit"]):focus,
.schedule-form .wpcf7 select:focus,
.schedule-form .wpcf7 textarea:focus {
    outline: none;
    border-color: var(--accent-green);
}

.schedule-form .wpcf7 select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
    color: var(--text-muted);
}

.schedule-form .wpcf7 select option:not([value=""]) {
    color: #333;
}

.schedule-form .wpcf7 input[type="submit"] {
    background-color: var(--accent-green);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: auto;
    margin-top: 10px;
}

.schedule-form .wpcf7 input[type="submit"]:hover {
    background-color: var(--primary-green);
}

.schedule-form .wpcf7 .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
}

.schedule-form .wpcf7 .wpcf7-not-valid-tip {
    font-size: 13px;
    color: #dc3232;
    margin-top: 5px;
}

/* Marquee */
.marquee-container {
    background-color: var(--light-bg);
    padding: 40px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-size: 48px;
    font-weight: 600;
    color: var(--primary-green);
    margin-right: 40px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Footer */
.footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.footer-widget-area {
    margin-bottom: 60px;
}

.footer-widget-area .footer-container {
    margin-bottom: 0;
}

.footer-widget {
    flex: 1;
    text-align: left;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-title {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo-white {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--accent-green);
}

.footer-col.right {
    text-align: right;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: center;
    position: relative;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-green);
    color: var(--primary-green);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Video Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--accent-green);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.close-image-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 1001;
}

.close-image-modal:hover {
    color: var(--accent-green);
}

.modal-image {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* =========================================
   Blog & Single Post Styles
   ========================================= */

/* ---- Page Hero ---- */
.page-hero {
    position: relative;
    height: 260px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.page-hero--tall {
    height: 380px;
    align-items: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(11, 34, 24, 0.75) 0%,
            rgba(11, 34, 24, 0.45) 60%,
            rgba(11, 34, 24, 0.3) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 36px;
    width: 100%;
}

.page-hero-content--article {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 16px;
}

.page-hero-title {
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.page-hero-title--article {
    font-size: 44px;
    max-width: 720px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--accent-green);
}

.breadcrumb i {
    font-size: 11px;
    opacity: 0.7;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.65);
    max-width: 340px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---- Blog Grid ---- */
.blog-section {
    padding: 80px 0 100px;
    background-color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.blog-card {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card-img {
    position: relative;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

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

.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(11, 34, 24, 0.82) 0%,
            rgba(11, 34, 24, 0.25) 55%,
            transparent 100%);
    transition: background 0.35s ease;
}

.blog-card:hover .blog-card-overlay {
    background: linear-gradient(to top,
            rgba(11, 34, 24, 0.9) 0%,
            rgba(11, 34, 24, 0.4) 55%,
            transparent 100%);
}

.blog-date-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    padding: 6px 12px;
    text-align: center;
    line-height: 1.2;
    backdrop-filter: blur(6px);
    z-index: 2;
    min-width: 48px;
}

.badge-day {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
}

.badge-month {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-title {
    position: absolute;
    bottom: 22px;
    left: 20px;
    right: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.45;
    z-index: 2;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-title {
    transform: translateY(-4px);
}

.blog-pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

/* ---- Single Post ---- */
.single-post-section {
    padding: 80px 0 100px;
}

.single-post-container {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: start;
}

.post-content {
    min-width: 0;
}

.post-intro {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.post-intro strong {
    color: var(--primary-green);
}

.post-intro em {
    color: var(--primary-green);
    font-style: normal;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.post-points {
    list-style: none;
    margin-bottom: 44px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.post-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.point-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--accent-green);
    color: var(--primary-green);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.point-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 6px;
}

.point-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.post-image-block {
    margin: 44px 0;
    border-radius: 16px;
    overflow: hidden;
}

.post-full-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.post-image-block:hover .post-full-img {
    transform: scale(1.03);
}

.post-heading {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.post-content>p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0 36px;
    padding-top: 36px;
    border-top: 1px solid var(--border-color);
}

.post-tag {
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid #d0ddc0;
    background-color: #f3f7ec;
    font-size: 13px;
    color: var(--primary-green);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.post-tag:hover {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
}

.post-meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-green);
}

.author-date {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.share-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--light-bg);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition);
}

.share-icon:hover {
    background-color: var(--accent-green);
}

.post-nav {
    display: flex;
    gap: 0;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.post-nav-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 20px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.25s ease;
}

.post-nav-item:hover {
    background-color: #ddcfb4;
}

.post-nav-prev {
    border-right: 1px solid var(--border-color);
}

.post-nav-next {
    justify-content: flex-end;
}

.post-nav-text-right {
    text-align: right;
}

.post-nav-item>i {
    font-size: 22px;
    color: var(--accent-green);
    flex-shrink: 0;
}

.post-nav-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.post-nav-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    line-height: 1.4;
}

/* ---- Sidebar ---- */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: #fff;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--accent-green);
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.related-post {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.related-post:last-child {
    border-bottom: none;
}

.related-post:hover .related-post-info h4 {
    color: var(--accent-green);
}

.related-post-img {
    width: 72px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-post:hover .related-post-img img {
    transform: scale(1.08);
}

.related-post-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    line-height: 1.4;
    margin-bottom: 6px;
    transition: color 0.2s;
}

.related-post-date {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.related-post-date i {
    font-size: 13px;
    color: var(--accent-green);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-pill {
    padding: 6px 14px;
    border-radius: 30px;
    background-color: #f0f5e8;
    font-size: 13px;
    color: var(--primary-green);
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #dde8cc;
    transition: var(--transition);
}

.tag-pill:hover {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    color: var(--primary-green);
}

.sidebar-widget--newsletter {
    background-color: var(--primary-green);
    border-radius: 16px;
    padding: 28px 24px;
}

.sidebar-widget--newsletter .widget-title {
    color: var(--white);
    border-bottom-color: var(--accent-green);
}

.widget-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-family);
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-green);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    width: 100%;
    text-align: center;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
}

/* Blog responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .single-post-container {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }

    .page-hero-title {
        font-size: 40px;
    }

    .page-hero-title--article {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 200px;
    }

    .page-hero--tall {
        height: 300px;
    }

    .page-hero-title {
        font-size: 32px;
    }

    .page-hero-title--article {
        font-size: 26px;
    }

    .page-hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-bottom: 24px;
    }

    .breadcrumb span {
        max-width: 180px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-card-img {
        height: 260px;
    }

    .single-post-container {
        grid-template-columns: 1fr;
    }

    .post-sidebar {
        position: static;
    }

    .post-nav {
        flex-direction: column;
    }

    .post-nav-prev {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .post-meta-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 50px 0 70px;
    }

    .blog-card-img {
        height: 220px;
    }

    .blog-card-title {
        font-size: 14px;
    }

    .post-heading {
        font-size: 22px;
    }
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }

    .container {
        padding: 0 30px;
    }

    .header {
        width: calc(100% - 48px);
    }

    .header-container {
        padding: 20px 30px;
    }

    .section-title {
        font-size: 34px;
    }

    .hero-title {
        font-size: 42px;
        margin-top: 40px;
        max-width: 55%;
    }

    .hero-card {
        max-width: 400px;
        gap: 20px;
        bottom: 50px;
        right: 20px;
        padding: 15px;
    }

    .card-img-wrapper {
        max-width: 150px;
        height: auto;
    }

    .hero-agent {
        top: 50px;
        right: 20px;
    }

    .about-container,
    .floorplan-container,
    .schedule-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-left {
        flex: 0 0 320px;
        max-width: 320px;
    }

    .about-heading {
        font-size: 32px;
    }

    .about-description {
        font-size: 20px;
    }

    .stat-card {
        padding: 20px 14px;
        font-size: 16px;
    }

    .property-stats {
        gap: 14px;
    }

    .stat-icon {
        font-size: 26px;
    }

    .location-card {
        padding: 24px 20px;
    }

    .location-value {
        font-size: 20px;
    }

    .rooms-grid {
        gap: 10px;
    }

    .room-card {
        height: 200px;
    }

    .room-label {
        font-size: 13px;
        padding: 20px 12px 10px;
    }

    .facility-card {
        gap: 24px;
    }

    .facility-img {
        width: 200px;
        height: 240px;
    }

    .gallery-item {
        min-width: 500px;
        height: 350px;
    }

    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .schedule-container {
        gap: 50px;
    }

    .marquee-content span {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 24px;
    }
}

@media (max-width: 1024px) {
    .header {
        width: calc(100% - 32px);
        top: 12px;
    }

    .header .btn {
        display: none;
    }

    .header-container {
        flex-wrap: nowrap;
        padding: 12px 16px;
        gap: 12px;
    }

    .logo {
        font-size: 21px;
    }

    .logo svg {
        width: 28px;
        height: 22px;
    }

    .custom-logo-wrapper img {
        max-height: 42px;
        margin-top: 4px;
    }

    .mobile-menu-btn {
        display: block;
        position: relative;
        z-index: 1001;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-btn.hidden {
        opacity: 0;
        pointer-events: none;
    }

    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .close-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        left: 0;
        width: 60px;
        height: 60px;
        background-color: #bd9947;
        color: var(--white);
        border: none;
        font-size: 28px;
        cursor: pointer;
        transition: var(--transition);
        z-index: 2;
    }

    .close-menu-btn:hover {
        background-color: var(--accent-green);
    }

    .nav {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: 80%;
        height: 100vh;
        background-color: #120d01;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        visibility: hidden;
        transition: transform 0.3s ease, visibility 0s 0.3s;
        z-index: 1000;
        margin-top: 0;
        padding-top: 80px;
    }

    .nav.active {
        transform: translateX(0);
        visibility: visible;
        transition: transform 0.3s ease, visibility 0s 0s;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 28px;
        gap: 28px;
    }

    .nav-list a {
        font-size: 17px;
        color: rgba(255, 255, 255, 0.85);
    }

    .nav-list a:hover,
    .nav-list a.active {
        color: #C5DCA0;
    }
}

@media (max-width: 768px) {
    .property-banner {
        padding: 40px 0;
    }

    .property-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .banner-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .banner-price-col {
        align-items: flex-start;
        border: none;
        padding: 0;
        width: 100%;
        gap: 8px;
    }

    .banner-label {
        font-size: 22px;
        text-transform: none;
        letter-spacing: 0;
    }

    .banner-price {
        font-size: 46px;
    }

    .banner-agent-col {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 16px;
    }

    .banner-agent-img {
        width: 80px;
        height: 80px;
    }

    .banner-agent-name {
        font-size: 16px;
    }

    .banner-agent-phone {
        font-size: 28px;
    }

    .about-property {
        padding: 60px 0;
    }

    .about-container {
        flex-direction: column;
        gap: 36px;
    }

    .about-left {
        flex: unset;
        max-width: 100%;
        width: 100%;
    }

    .about-heading {
        font-size: 28px;
    }

    .property-stats {
        gap: 14px;
    }

    .stat-card {
        padding: 16px 14px;
        font-size: 15px;
        gap: 10px;
    }

    .stat-icon {
        font-size: 26px;
    }

    .location-card {
        padding: 24px 20px;
    }

    .location-value {
        font-size: 20px;
    }

    .rooms-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .room-card {
        height: 160px;
    }

    .room-label {
        font-size: 13px;
        padding: 20px 12px 10px;
    }

    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .facility-card {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .facility-img {
        height: 250px;
        width: 100%;
        border-radius: 16px;
    }

    .facility-img.rounded-img {
        height: 240px;
        border-radius: 16px;
    }

    .facility-info h3 {
        font-size: 20px;
    }

    .video-tour {
        height: 55vh;
    }

    .play-btn {
        width: 70px;
        height: 70px;
        font-size: 22px;
    }

    .video-watermark {
        display: none;
    }

    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .gallery-item {
        min-width: 80vw;
        height: 280px;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .location-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 15px;
        justify-content: flex-start;
        width: 100%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .location-tabs::-webkit-scrollbar {
        display: none;
    }

    .location-item {
        flex-direction: row;
        gap: 16px;
    }

    .schedule-container {
        flex-direction: column;
        gap: 40px;
    }

    .form-row {
        flex-direction: column;
        gap: 14px;
    }

    .marquee-content span {
        font-size: 28px;
        margin-right: 24px;
    }

    .footer {
        padding: 60px 0 24px;
    }

    .footer-container {
        flex-direction: column;
        gap: 36px;
        text-align: center;
    }

    .footer-col.right,
    .footer-widget {
        text-align: center;
    }

    .footer-col.center {
        order: -1;
    }

    .footer-social {
        justify-content: center;
    }

    .modal-content {
        width: 95%;
    }

    .close-image-modal {
        top: 10px;
        right: 10px;
        font-size: 28px;
    }

    .schedule-form .wpcf7 .form-row>p {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    section {
        padding: 48px 0;
    }

    .container {
        padding: 0 16px;
    }

    .header {
        width: calc(100% - 24px);
        top: 60px;
    }

    .header-container {
        padding: 20px;
    }

    .logo {
        font-size: 18px;
    }

    .logo svg {
        width: 24px;
        height: 19px;
    }

    .custom-logo-wrapper img {
        max-height: 36px;
        margin-top: 2px;
    }

    .hero {
        height: 80vh;
        min-height: 320px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .section-subtitle {
        font-size: 12px;
    }

    .about-heading {
        font-size: 24px;
    }

    .about-description {
        font-size: 13px;
    }

    .property-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-card {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px 14px;
        gap: 8px;
        font-size: 14px;
    }

    .stat-icon {
        font-size: 22px;
    }

    .location-value {
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        font-size: 26px;
        margin-top: 10px;
    }

    .location-pin {
        font-size: 32px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .room-card {
        height: auto;
        border-radius: 12px;
    }

    .room-label {
        font-size: 22px;
        padding: 40px 16px 20px;
        text-align: center;
    }

    .facility-img,
    .facility-img.rounded-img {
        height: 200px;
    }

    .video-tour {
        height: 45vh;
    }

    .play-btn {
        width: 56px;
        height: 56px;
        font-size: 18px;
    }

    .gallery-item {
        min-width: 88vw;
        height: 220px;
    }

    .gallery-title {
        font-size: 18px;
        bottom: 20px;
    }

    .loc-details h4 {
        font-size: 17px;
    }

    .room-list {
        gap: 10px;
    }

    .room-item {
        font-size: 14px;
    }

    .floorplan-tabs {
        gap: 6px;
    }

    .tab-btn {
        font-size: 14px;
        padding: 6px 14px;
    }

    input,
    select,
    textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .marquee-content span {
        font-size: 22px;
        margin-right: 18px;
    }

    .footer {
        padding: 48px 0 20px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-col p {
        font-size: 14px;
    }

    .logo-white {
        font-size: 20px;
    }
}

/* Gallery Page Template */
.gallery-page-section {
    padding: 120px 0 80px;
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-page-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-page-item:hover img {
    transform: scale(1.06);
}

.gallery-page-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-page-item:hover .gallery-page-overlay {
    opacity: 1;
}

.gallery-page-label {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .gallery-page-section {
        padding: 100px 0 60px;
    }

    .gallery-page-grid {
        gap: 16px;
    }

    .gallery-page-item {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .gallery-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-page-item {
        height: 240px;
    }
}

/* Block editor styles */
.wp-block {
    max-width: 1320px;
}

.editor-styles-wrapper .block-editor-block-list__block {
    font-family: var(--font-family);
}

/* Page builder compat */
.page-template-default .entry-content>*,
.page-template-fullwidth .entry-content>*,
.home .entry-content>* {
    max-width: 100%;
}

/* Gallery Modal Popup */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gallery-modal-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

#gallery-modal-caption {
    margin-top: 15px;
    color: #fff;
    font-size: 18px;
    text-align: center;
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 100000;
}

.gallery-modal-close:hover {
    color: var(--accent-green, #C5DCA0);
}

.gallery-page-item {
    cursor: pointer;
}