:root {
    --bg-primary: #fdfbf7; /* Sandy white */
    --bg-secondary: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --accent-color: #00a8cc; /* Ocean teal */
    --accent-hover: #008ba8;
    --whatsapp-color: #25D366;
    --whatsapp-hover: #1da851;
    --card-bg: rgba(255, 255, 255, 0.85);
    --border-color: rgba(0, 168, 204, 0.15);
    --coral-pop: #ff7a7a;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.palm-icon {
    color: var(--coral-pop);
}

.palm-icon-small {
    color: var(--coral-pop);
    vertical-align: middle;
}

.nav-cta {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #fff;
    color: var(--accent-color);
    transform: translateY(-2px);
    text-shadow: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #00a8cc 0%, #20c997 100%);
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 168, 204, 0.3) 0%, rgba(253, 251, 247, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUP 1s ease-out;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--coral-pop);
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 122, 122, 0.3);
}

.btn-primary:hover {
    background-color: #ff5f5f;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 122, 122, 0.4);
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: #fff;
    box-shadow: 0 8px 15px rgba(37, 211, 102, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 1.5rem;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(37, 211, 102, 0.3);
}

/* Villas Section */
.villas-section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.villas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

/* Villa Card */
.villa-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 168, 204, 0.08);
}

.villa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 168, 204, 0.15);
    border-color: rgba(0, 168, 204, 0.3);
}

.villa-gallery {
    position: relative;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
}

.villa-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.villa-card:hover .gallery-nav {
    opacity: 1;
}

.gallery-btn {
    background: rgba(255,255,255,0.8);
    color: var(--text-primary);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.3s, color 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.gallery-btn:hover {
    background: #fff;
    color: var(--accent-color);
}

.gallery-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.dot {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    transition: all 0.3s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.dot.active {
    background: #fff;
    transform: scale(1.3);
}

.villa-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.villa-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.3;
    transition: color 0.3s;
}

.villa-title a:hover {
    color: var(--accent-color);
}

.villa-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Features */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 5rem 5%;
    background: linear-gradient(135deg, rgba(0, 168, 204, 0.05), rgba(32, 201, 151, 0.05));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.feature {
    text-align: center;
    padding: 2.5rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}

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

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Footer */
footer {
    padding: 4rem 5% 2rem;
    background-color: #fdfbf7;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 300px;
}

.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.whatsapp-link {
    color: var(--whatsapp-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.whatsapp-link:hover {
    color: var(--whatsapp-hover);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Utilities & Animations */
.loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

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

/* Listing Page Specific Styles */
.listing-title-wrapper {
    padding: 2rem 5% 1rem;
    max-width: 1400px;
    margin: 0 auto;
    animation: fadeInUP 0.8s ease-out;
}

.listing-title-wrapper h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.listing-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Airbnb Style Gallery */
.airbnb-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    height: clamp(300px, 50vh, 500px);
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding: 0 5%;
    position: relative;
    animation: fadeInUP 1s ease-out;
}

.airbnb-gallery-main {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px 0 0 15px;
    min-height: 0;
    min-width: 0;
}

.airbnb-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s, transform 0.3s;
    cursor: pointer;
}

.airbnb-gallery-main img:hover, .airbnb-gallery-side img:hover {
    filter: brightness(0.9);
}

.airbnb-gallery-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 100%;
    min-height: 0;
    min-width: 0;
}

.airbnb-gallery-side .img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    min-height: 0;
    min-width: 0;
}

.airbnb-gallery-side .img-wrapper:nth-child(2) {
    border-radius: 0 15px 0 0;
}

.airbnb-gallery-side .img-wrapper:nth-child(4) {
    border-radius: 0 0 15px 0;
}

.airbnb-gallery-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s, transform 0.3s;
    cursor: pointer;
}

.btn-show-all {
    position: absolute;
    bottom: 24px;
    right: calc(5% + 24px);
    background: linear-gradient(135deg, var(--accent-color) 0%, #2b9386 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
}

.btn-show-all:hover {
    background: linear-gradient(135deg, #2b9386 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.btn-show-all:active {
    transform: scale(0.96);
}

/* Photos Modal */
.photos-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 2000;
    overflow-y: auto;
    padding: 0 5% 4rem;
}

.photos-modal.active {
    display: block;
    animation: fadeInUP 0.3s ease-out;
}

.photos-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.btn-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.btn-close:hover {
    background: #f1f5f9;
}

.photos-modal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.photos-modal-grid img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.listing-content {
    display: flex;
    gap: 4rem;
    padding: 0 5% 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.listing-main {
    flex: 1;
}

.listing-main h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.listing-overview {
    margin-bottom: 2rem;
}

.listing-capacity {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.listing-rating {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.listing-divider {
    border: 0;
    height: 1px;
    background: var(--border-color);
    margin: 2.5rem 0;
}

.listing-section {
    margin-bottom: 2.5rem;
}

.listing-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.sleeping-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 1.5rem;
}

.sleeping-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.sleeping-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.sleeping-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.sleeping-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.amenities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.amenities-list li {
    font-size: 1.1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.amenities-list .check-icon {
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

.listing-sidebar {
    width: 380px;
    flex-shrink: 0;
}

.booking-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 168, 204, 0.1);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
}

.booking-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.booking-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .listing-content {
        flex-direction: column;
    }
    .listing-sidebar {
        width: 100%;
    }
    .booking-card {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .villas-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .navbar {
        padding: 1.5rem 5%;
    }
    .airbnb-gallery {
        grid-template-columns: 1fr;
        height: 300px;
        margin-bottom: 2rem;
    }
    .airbnb-gallery-side {
        display: none;
    }
    .airbnb-gallery-main {
        border-radius: 15px;
    }
    .btn-show-all {
        bottom: 16px;
        right: calc(5% + 16px);
    }
    .listing-title-wrapper {
        padding: 1.5rem 5% 1rem;
    }
}

.review-theme-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #e2e8f0;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    color: #334155;
    font-weight: 500;
}

/* Welcome / About Overview Section */
.about-overview-section {
    padding: 6rem 5% 4rem;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-primary) 100%);
    border-bottom: 1px solid var(--border-color);
}

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

.about-hero-block {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3.5rem;
    animation: fadeInUP 0.8s ease-out;
}

.about-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 168, 204, 0.08);
    color: var(--accent-color);
    border: 1px solid rgba(0, 168, 204, 0.15);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.about-main-title {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    color: var(--text-primary);
    line-height: 1.4;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.about-pillar-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 168, 204, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.about-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: background 0.3s ease;
}

.about-pillar-card:hover::before {
    background: linear-gradient(90deg, var(--accent-color), var(--coral-pop));
}

.about-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 168, 204, 0.08);
    border-color: rgba(0, 168, 204, 0.25);
}

.pillar-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.about-pillar-card:hover .pillar-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.icon-blue {
    background: rgba(0, 168, 204, 0.1);
    color: var(--accent-color);
}

.icon-coral {
    background: rgba(255, 122, 122, 0.1);
    color: var(--coral-pop);
}

.icon-green {
    background: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp-color);
}

.pillar-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-weight: 700;
}

.pillar-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-overview-section {
        padding: 4rem 5% 2.5rem;
    }
    .about-hero-block {
        margin-bottom: 2.5rem;
    }
    .about-pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    .about-pillar-card {
        padding: 2rem 1.5rem;
    }
}

.wa-nav-btn {
    background: #25D366 !important;
    color: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
}

@media (max-width: 768px) {
    .wa-nav-btn {
        width: 40px;
        height: 40px;
        padding: 0 !important;
        border-radius: 50% !important;
        justify-content: center !important;
    }
    .wa-nav-btn .wa-text {
        display: none !important;
    }
    .wa-nav-btn svg {
        margin: 0 !important;
    }
}

/* Premium Monthly Housing Details */
.monthly-housing-premium-block {
    background: linear-gradient(135deg, rgba(0, 168, 204, 0.04) 0%, rgba(32, 201, 151, 0.02) 100%);
    border: 2px solid rgba(0, 168, 204, 0.12);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 12px 30px rgba(0, 168, 204, 0.04);
    position: relative;
    animation: fadeInUP 0.8s ease-out;
}

.monthly-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, #20c997 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.monthly-headline {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.monthly-subheadline {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    color: var(--coral-pop);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.monthly-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.monthly-cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.monthly-cta-tag {
    background: rgba(37, 211, 102, 0.08);
    color: var(--whatsapp-hover);
    border: 1px solid rgba(37, 211, 102, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.03);
}

.monthly-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.monthly-info-card {
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.monthly-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 168, 204, 0.05);
}

.monthly-info-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.monthly-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.monthly-info-card li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 1.2rem;
}

.monthly-info-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.card-teal {
    background: rgba(0, 168, 204, 0.02);
    border-color: rgba(0, 168, 204, 0.1);
}

.card-teal h4 {
    color: var(--accent-color);
}

.card-coral {
    background: rgba(255, 122, 122, 0.02);
    border-color: rgba(255, 122, 122, 0.1);
}

.card-coral h4 {
    color: var(--coral-pop);
}

.card-gold {
    background: rgba(245, 158, 11, 0.02);
    border-color: rgba(245, 158, 11, 0.1);
}

.card-gold h4 {
    color: #d97706;
}

.monthly-footer-block {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.monthly-availability {
    font-size: 0.95rem;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(0, 168, 204, 0.08);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.monthly-final-cta {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.6;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.85; }
    100% { transform: scale(1); opacity: 1; }
}

.pulse-icon {
    display: inline-block;
    animation: pulse 1.5s infinite ease-in-out;
}

@media (max-width: 768px) {
    .monthly-housing-premium-block {
        padding: 1.8rem 1.2rem;
        margin-bottom: 1.8rem;
    }
    .monthly-info-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}
