:root {
    --luxury-gold: #C9A063;
    --luxury-dark: #1a1a1a;
    --luxury-cream: #f5f1ea;
    --text-dark: #2c2c2c;
    --text-light: #666;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: white;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Luxury Hero Section */
.luxury-hero {
    position: relative;
    min-height: 70vh;
    height: auto;
    overflow: visible;
    background: linear-gradient(135deg, var(--luxury-dark) 0%, #2c2c2c 100%);
    padding-bottom: 40px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.hero-background:hover {
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.property-type-badge {
    display: inline-block;
    background: var(--luxury-gold);
    color: var(--luxury-dark);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.project-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.project-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.project-badge i {
    margin-right: 2px;
    color: var(--luxury-gold);
    font-size: 1.1rem;
}

.project-badge .project-info {
    display: inline;
}

.badge-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.luxury-title {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.luxury-subtitle {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    font-weight: 300;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--luxury-gold);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 300;
    max-width: 100%;
    line-height: 1.8;
    margin-bottom: 35px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.price-display {
    font-size: clamp(2rem, 7vw, 3rem);
    font-weight: 700;
    color: var(--luxury-gold);
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.price-period {
    font-size: 1.2rem;
    font-weight: 400;
    color: white;
}

.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    padding: 10px 18px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
}

.hero-badge i {
    font-size: 1.4rem;
    color: var(--luxury-gold);
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    align-items: stretch;
    overflow: visible;
}

.cta-btn {
    padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 35px);
    border-radius: 50px;
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
    min-height: 48px;
    white-space: normal;
    text-align: center;
    width: 100%;
    border: none;
    cursor: pointer;
    overflow: visible;
}

.hero-badges-container {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    overflow-x: auto;
    padding: 0 10px;
}

.hero-cta-container {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    overflow-x: auto;
    padding: 0 10px;
}

.hero-badges-and-cta {
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.hero-title-centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Site Visit Form Section - Inline at Bottom */
.site-visit-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.site-visit-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero-contact-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: hidden;
    border: 3px solid var(--luxury-gold);
}

.hero-contact-card .card-header {
    background: var(--luxury-gold);
    padding: 18px 30px;
    text-align: center;
}

.hero-contact-card .card-header h3 {
    color: white;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.hero-contact-card .card-body {
    padding: 30px;
}

.hero-contact-card .form-subtitle {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #666;
}

.hero-contact-card .info-box {
    background: #fff9f0;
    border: 1px solid var(--luxury-gold);
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.hero-contact-card .info-box .icon {
    color: var(--luxury-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-contact-card .info-box .text {
    flex: 1;
}

.hero-contact-card .info-box .title {
    color: var(--luxury-gold);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.hero-contact-card .info-box .description {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

.hero-contact-card .form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--luxury-gold);
    margin-bottom: 6px;
}

.hero-contact-card .form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    margin-bottom: 15px;
    width: 100%;
}

.hero-contact-card .form-control:focus {
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 3px rgba(201, 160, 99, 0.1);
    outline: none;
}

.hero-contact-card .form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.hero-contact-card .form-row .form-group {
    flex: 1;
}

.hero-contact-card .form-group {
    margin-bottom: 15px;
}

.hero-contact-card .helper-text {
    font-size: 0.8rem;
    color: #999;
    margin-top: -10px;
    margin-bottom: 15px;
}

.hero-contact-card .checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #666;
    margin-top: -8px;
    margin-bottom: 15px;
    cursor: pointer;
}

.hero-contact-card .checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.hero-contact-card .btn-submit {
    background: var(--luxury-gold);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.hero-contact-card .btn-submit:hover {
    background: #b8903d;
    transform: translateY(-2px);
}

.hero-contact-card .contact-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.hero-contact-card .contact-info p {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 12px;
}

.hero-contact-card .contact-info a {
    display: block;
    color: var(--luxury-gold);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.hero-contact-card .contact-info a:hover {
    text-decoration: underline;
}

.hero-project-card {
    background: white;
    border: 2px solid var(--luxury-gold);
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
}

.hero-project-card h4 {
    color: var(--luxury-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.hero-project-card p {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--luxury-dark);
    margin-bottom: 12px;
}

.hero-project-card .btn-project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--luxury-dark);
    text-decoration: none;
    padding: 8px 18px;
    border: 2px solid var(--luxury-dark);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-project-card .btn-project-link:hover {
    background: var(--luxury-dark);
    color: white;
}

/* Sticky Contact Sidebar - Right Side Sticky Form */
/* Two-column layout wrapper */
.property-page-wrapper {
    position: relative;
    display: flex;
    gap: 20px;
}

.sticky-contact-sidebar {
    position: fixed;
    right: 20px;
    top: 150px;
    width: 380px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.sticky-contact-sidebar-inline {
    width: 100%;
    display: block;
}

.sticky-contact-sidebar-inline .form-row {
    display: flex;
    gap: 20px;
}

.sticky-contact-sidebar-inline .form-row .form-group {
    flex: 1;
}

/* Sticky bottom button for scheduling */

.sticky-form-wrapper {
    width: 100%;
}

.sticky-card {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.sticky-card .card-header {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #b89037 100%);
    padding: 18px 30px;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.sticky-card .card-header h3 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Scrollbar styling for sticky sidebar */
.sticky-contact-sidebar::-webkit-scrollbar {
    width: 6px;
}

.sticky-contact-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.sticky-contact-sidebar::-webkit-scrollbar-thumb {
    background: var(--luxury-gold);
    border-radius: 10px;
}

.sticky-contact-sidebar::-webkit-scrollbar-thumb:hover {
    background: #b89037;
}

.property-main-content {
    width: 100%;
    padding-right: 0;
    margin-right: 0;
}

@media (max-width: 1024px) {
    .luxury-hero {
        min-height: 65vh;
    }
    
    .hero-background {
        object-position: center 30%;
    }
}

@media (max-width: 768px) {
    .luxury-hero {
        min-height: auto;
        overflow: visible;
        padding-bottom: 40px;
    }
    
    .hero-background {
        object-position: center 40%;
        opacity: 0.35;
    }
    
    .hero-content {
        padding: 50px 16px 60px 16px;
    }
    
    .luxury-title {
        font-size: 2.5rem;
    }
    
    .luxury-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .price-display {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .hero-cta {
        width: 100%;
        max-width: 100%;
        gap: 10px;
        margin-top: 15px;
    }
    
    .cta-btn {
        width: 100%;
        min-height: 50px;
    }

    .property-page-wrapper {
        flex-direction: column;
    }

    .sticky-contact-sidebar {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        max-height: none;
        margin: 50px 0;
        display: block !important;
    }
    
    .property-main-content {
        width: 100%;
        margin-right: 0;
    }
    
    .hero-contact-card .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .hero-contact-card .card-body {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .luxury-hero {
        min-height: auto;
        overflow: visible;
        padding-bottom: 40px;
    }
    
    .hero-background {
        object-position: center 50%;
        opacity: 0.3;
    }
    
    .hero-content {
        padding: 40px 12px 60px 12px;
    }
    
    .luxury-title {
        font-size: 1.8rem;
    }
    
    .luxury-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .price-display {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-cta {
        width: 100%;
        max-width: 100%;
        gap: 10px;
        margin-top: 15px;
    }
    
    .cta-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
        min-height: 48px;
        width: 100%;
    }
}

.cta-primary {
    background: var(--luxury-gold);
    color: var(--luxury-dark);
    border: 2px solid var(--luxury-gold);
}

.cta-primary:hover {
    background: transparent;
    color: var(--luxury-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 160, 99, 0.35);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
    color: var(--luxury-dark);
    transform: translateY(-3px);
}

.cta-whatsapp {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.cta-whatsapp:hover {
    background: transparent;
    color: #25D366;
    border-color: #25D366;
    transform: translateY(-3px);
}

/* Quick Info Bar */
.quick-info-bar {
    background: white;
    padding: 25px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    position: relative;
    z-index: 20;
    margin-top: -70px;
    border-radius: 15px;
}

/* Project Panel Section */
.project-panel-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #fafaf8 0%, #ffffff 100%);
}

.project-panel-card {
    background: white;
    border: 3px solid var(--luxury-gold);
    border-radius: 15px;
    padding: 35px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(201, 160, 99, 0.15);
}

.project-panel-card .panel-header {
    color: var(--luxury-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-panel-card .panel-header i {
    font-size: 1.3rem;
}

.project-panel-card .project-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--luxury-dark);
    margin-bottom: 25px;
}

.project-panel-card .btn-project-details {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--luxury-dark);
    text-decoration: none;
    padding: 12px 30px;
    border: 2px solid var(--luxury-dark);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-panel-card .btn-project-details:hover {
    background: var(--luxury-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .project-panel-section {
        padding: 30px 0;
    }
    
    .project-panel-card {
        padding: 25px 20px;
    }
    
    .project-panel-card .project-name {
        font-size: 1.4rem;
    }
}

.info-item {
    text-align: center;
    padding: 18px;
    border-right: 1px solid #eee;
}

.info-item:last-child {
    border-right: none;
}

.info-icon {
    font-size: 2.3rem;
    color: var(--luxury-gold);
    margin-bottom: 10px;
}

.info-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-value {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--luxury-dark);
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: center;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--luxury-gold);
    margin: 25px auto;
}

/* Property Details Grid */
.property-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

@media (max-width: 1024px) {
    .property-details-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .property-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .property-details-grid {
        grid-template-columns: 1fr;
    }
}

.detail-card {
    background: var(--luxury-cream);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--luxury-gold);
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.detail-icon {
    font-size: 1.5rem;
    color: var(--luxury-gold);
    margin-bottom: 8px;
}

.detail-title {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.detail-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--luxury-dark);
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 80px;
    max-width: 1000px;
    margin: 30px auto 0;
}

.amenity-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.amenity-icon {
    font-size: 2.5rem;
    color: var(--luxury-gold);
    opacity: 0.85;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenity-name {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
    padding-top: 5px;
}

@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 30px 0;
    }
}

/* Contact Sidebar */
.contact-sidebar {
    position: sticky;
    top: 100px;
}

.contact-card {
    background: var(--luxury-cream);
    padding: 35px;
    border-radius: 15px;
    border-left: 4px solid var(--luxury-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-card h3 {
    color: var(--luxury-dark);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.form-control {
    border: 2px solid #ddd;
    padding: 12px 18px;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 160, 99, 0.25);
}

.btn-submit {
    background: var(--luxury-gold);
    color: var(--luxury-dark);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--luxury-dark);
    color: var(--luxury-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Sticky Contact Bar */
.sticky-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--luxury-dark);
    padding: 15px 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
    animation: slideUp 0.5s ease;
}

.sticky-contact-bar.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.sticky-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hide the top sticky bar on small screens to avoid overlapping with the compact bottom bar */
@media (max-width: 768px) {
    .sticky-contact-bar {
        display: none !important;
        visibility: hidden;
        pointer-events: none;
    }
}

.sticky-price {
    color: var(--luxury-gold);
    font-size: 1.8rem;
    font-weight: 700;
}

.sticky-actions {
    display: flex;
    gap: 15px;
}

.sticky-btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Project Link Card */
.project-link-card {
    background: white;
    border: 2px solid var(--luxury-gold);
    padding: 25px;
    border-radius: 12px;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.project-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 160, 99, 0.2);
}

.project-link-card h4 {
    color: var(--luxury-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.project-link-card p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--luxury-dark);
    margin-bottom: 15px;
}

.btn-project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--luxury-dark);
    text-decoration: none;
    padding: 8px 20px;
    border: 2px solid var(--luxury-dark);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-project-link:hover {
    background: var(--luxury-dark);
    color: white;
}

@media (max-width: 768px) {
    .luxury-title {
        font-size: 2.5rem;
    }
    
    .price-display {
        font-size: 2rem;
    }
    
    .hero-badges {
        gap: 10px;
    }
    
    .hero-badges-and-cta {
        gap: 0;
        margin-top: 25px;
        flex-wrap: nowrap;
    }
    
    .hero-badges-container {
        gap: 10px;
        margin-bottom: 15px;
        flex-wrap: wrap;
        overflow-x: visible;
    }
    
    .hero-cta-container {
        gap: 10px;
        flex-wrap: wrap;
        overflow-x: visible;
    }
    
    .cta-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .quick-info-bar {
        margin-top: 0;
        border-radius: 0;
    }
    
    .info-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 15px 10px;
    }
    
    .info-item:last-child {
        border-bottom: none;
    }
    
    .sticky-bar-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .sticky-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .sticky-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Benefit Box Styles */
.benefit-box {
    background: linear-gradient(135deg, rgba(201, 160, 99, 0.05) 0%, rgba(201, 160, 99, 0.02) 100%);
    border: 2px solid var(--luxury-gold);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201, 160, 99, 0.2);
    border-color: var(--luxury-gold);
}

.benefit-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #d4a05f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(201, 160, 99, 0.3);
}

.benefit-box h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--luxury-dark);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.benefit-box p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.why-marsares {
    background: white;
    padding: 60px 0;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .benefit-box {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .benefit-icon-box {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .benefit-box h4 {
        font-size: 1.1rem;
    }
}

/* Landmarks Grid */
.landmarks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.landmark-card {
    background: linear-gradient(135deg, #faf7f2 0%, #f5f0ea 100%);
    border-left: 5px solid var(--luxury-gold);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.landmark-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.landmark-icon {
    font-size: 2.8rem;
    color: var(--luxury-gold);
    margin-bottom: 20px;
    display: block;
}

.landmark-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--luxury-dark);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.landmark-distance {
    font-size: 0.95rem;
    color: #8b7355;
    margin: 0;
    line-height: 1.5;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landmark-distance::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--luxury-gold);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@media (max-width: 768px) {
    .landmarks-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .landmark-card {
        padding: 30px 25px;
    }
    
    .landmark-icon {
        font-size: 2.3rem;
    }
    
    .landmark-title {
        font-size: 1.1rem;
    }
}
/* Bottom Contact Bar Styles (compact on mobile, pill on desktop) */
.bottom-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 12px;
    display: flex;
    justify-content: center;
    pointer-events: none;
    z-index: 1050;
}

.bottom-contact-buttons {
    display: flex;
    gap: 12px;
    max-width: 620px;
    margin: 0 auto;
    pointer-events: auto;
    padding: 0 12px;
}

.bottom-contact-btn {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    text-decoration: none;
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.bottom-contact-btn i {
    font-size: 1.4rem;
}

/* Make sure WhatsApp icons are visible (white) regardless of SVG/font rendering */
.bottom-contact-btn.whatsapp-btn i,
.bottom-contact-btn.whatsapp-btn svg,
.bottom-contact-btn.whatsapp-btn * {
    color: #ffffff !important;
    fill: #ffffff !important;
}

/* Ensure WhatsApp label text is white */
.bottom-contact-btn.whatsapp-btn span,
.bottom-contact-btn.whatsapp-btn {
    color: #ffffff !important;
}

/* Also ensure any standalone floating WhatsApp FAB uses white icon */
.whatsapp-fab,
.whatsapp-fab i,
.whatsapp-fab svg {
    color: #ffffff !important;
    fill: #ffffff !important;
}

/* Specific button colors */
.bottom-contact-btn.call-btn { background: linear-gradient(135deg, var(--luxury-gold) 0%, #d4a574 100%); }
.bottom-contact-btn.whatsapp-btn { background: #25d366; }
.bottom-contact-btn.schedule-btn { background: linear-gradient(135deg, var(--luxury-gold) 0%, #d4a574 100%); }
.bottom-contact-btn.contact-btn { background: #ff6b6b; border: 1px solid rgba(255,107,107,0.95); }

.bottom-contact-btn:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.25); }

/* On larger screens show label text and pill style */
@media (min-width: 769px) {
    .bottom-contact-btn {
        width: auto;
        min-width: 140px;
        height: auto;
        padding: 10px 18px;
        border-radius: 40px;
        gap: 10px;
        font-size: 0.95rem;
    }

    .bottom-contact-btn i { font-size: 1.2rem; }

    .bottom-contact-btn span { display: inline-block; }
}

/* On larger screens the sticky-contact-bar at top/bottom is preferred; hide the compact bottom bar to avoid duplicates */
@media (min-width: 769px) {
    .bottom-contact-bar { display: none !important; }
}

/* On tablet & mobile keep icons-only compact row */
@media (max-width: 768px) {
    .bottom-contact-bar { bottom: 10px; }
    .bottom-contact-buttons { gap: 10px; }
    .bottom-contact-btn { width: 52px; height: 52px; }
    .bottom-contact-btn i { font-size: 1.3rem; }
    .bottom-contact-btn span { display: none; }
}

@media (max-width: 480px) {
    .bottom-contact-bar { bottom: 8px; }
    .bottom-contact-buttons { gap: 8px; max-width: 92%; }
    .bottom-contact-btn { width: 48px; height: 48px; }
    .bottom-contact-btn i { font-size: 1.15rem; }
}

/* Gallery grid and lightbox styles */
.property-gallery .gallery-item {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 10px;
}

.property-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.property-gallery .gallery-item:hover img {
    transform: scale(1.03);
}

/* Lightbox controls */
.lightbox-prev, .lightbox-next {
    opacity: 0.85;
    z-index: 1060;
}

@media (max-width: 768px) {
    .property-gallery .gallery-item { aspect-ratio: 1 / 1; }
}

/* Lightbox watermark overlay */
#galleryLightboxModal .lightbox-watermark {
    position: absolute;
    bottom: 18px;
    right: 18px;
    color: rgba(255,255,255,0.95);
    font-weight: 700;
    font-size: 1.05rem;
    background: rgba(0,0,0,0.35);
    padding: 6px 10px;
    border-radius: 6px;
    pointer-events: none;
    z-index: 1051;
    display: none;
    white-space: nowrap;
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.95;
}

@media (max-width: 768px) {
    #galleryLightboxModal .lightbox-watermark {
        font-size: 0.9rem;
        bottom: 12px;
        right: 12px;
        max-width: 90%;
    }
}