: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;
}

@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;
    }
}

@media (max-width: 480px) {
    .luxury-hero {
        min-height: auto;
        overflow: visible;
        padding-bottom: 40px;
    }
    
    .hero-background {
        object-position: center 50%;
        opacity: 0.3;
    }
}

.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;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    width: 100%;
    overflow: visible;
}

.project-logo {
    max-width: 400px;
    margin-bottom: 30px;
    background: white;
    padding: 15px;
    border-radius: 10px;
}

.luxury-title {
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 2px;
    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.8rem);
    font-weight: 300;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--luxury-gold);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    max-width: 100%;
    line-height: 1.8;
    margin-bottom: 40px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(12px, 2vw, 20px);
    margin-bottom: 20px;
    width: 100%;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    padding: clamp(12px, 2vw, 15px) clamp(16px, 3vw, 25px);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.hero-badge i {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--luxury-gold);
    flex-shrink: 0;
}

.badge-text {
    font-size: clamp(0.75rem, 1.5vw, 0.95rem);
    font-weight: 500;
    white-space: normal;
}

.hero-stamp {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stamp svg,
.hero-stamp img {
    max-width: clamp(80px, 15vw, 120px);
    height: auto;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
}

.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;
}

.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.3);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
    color: var(--luxury-dark);
    transform: translateY(-3px);
}

.cta-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* Responsive CTA buttons */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .hero-content {
        padding: 60px 20px;
    }
    
    .hero-cta {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .cta-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .luxury-hero {
        min-height: auto;
        overflow: visible;
        padding-bottom: 40px;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .hero-content {
        padding: 50px 16px 60px 16px;
    }
    
    .hero-left,
    .hero-right {
        width: 100%;
        overflow: visible;
    }
    
    .hero-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .hero-badge {
        padding: 12px 14px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .hero-badge i {
        font-size: 1.4rem;
    }
    
    .hero-cta {
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }
    
    .cta-btn {
        width: 100%;
        min-height: 50px;
    }
    
    .luxury-title {
        font-size: 2.5rem;
    }
    
    .luxury-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .builders-display-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .project-logos-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .builders-name-cards {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .project-logo {
        max-width: 150px;
        margin: 0 auto 15px auto;
    }
}

@media (max-width: 480px) {
    .luxury-hero {
        min-height: auto;
        overflow: visible;
        padding-bottom: 40px;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .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;
    }
    
    .hero-badges {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .hero-badge {
        padding: 10px 12px;
        gap: 6px;
        width: 100%;
    }
    
    .hero-badge i {
        font-size: 1.2rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .hero-cta {
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }
    
    .cta-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
        min-height: 48px;
        gap: 6px;
        width: 100%;
    }
    
    .builders-display-row {
        gap: 15px;
        flex-direction: column;
    }
    
    .builder-name-card {
        padding: 10px 12px;
        flex: 1;
    }
    
    .card-builder-name {
        font-size: 0.85rem;
    }
    
    .card-builder-tagline {
        font-size: 0.75rem;
    }
    
    .project-logo {
        max-width: 120px;
        padding: 10px;
        margin-bottom: 15px;
    }
}

/* Quick Info Bar */
.quick-info-bar {
    background: white;
    padding: 30px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 20;
    margin-top: -80px;
}

.info-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid #eee;
}

.info-item:last-child {
    border-right: none;
}

.info-icon {
    font-size: 2.5rem;
    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.3rem;
    font-weight: 700;
    color: var(--luxury-dark);
}

/* About Section */
.about-project {
    padding: 100px 0;
    background: var(--luxury-cream);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--luxury-gold);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Floor Plans Section */
.floor-plans-section {
    padding: 100px 0;
    background: white;
}

.floor-plan-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.floor-tab {
    padding: 15px 40px;
    background: white;
    border: 2px solid var(--luxury-gold);
    border-radius: 50px;
    font-weight: 600;
    color: var(--luxury-gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.floor-tab.active,
.floor-tab:hover {
    background: var(--luxury-gold);
    color: white;
}

.floor-plan-card {
    background: var(--luxury-cream);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.floor-plan-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    background: white;
    padding: 30px;
}

.floor-plan-details {
    padding: 40px;
    background: white;
}

.plan-spec {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.plan-spec:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--text-light);
}

.spec-value {
    font-weight: 700;
    color: var(--luxury-dark);
}

/* Amenities Section */
.amenities-section {
    padding: 100px 0;
    background: var(--luxury-dark);
    color: white;
}

/* Nearby Facilities Section */
.nearby-facilities-section {
    padding: 100px 0;
    background: white;
    color: var(--text-dark);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.amenity-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.amenity-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenity-icon {
    font-size: 2.5rem;
    color: var(--luxury-gold);
    opacity: 0.9;
}

.amenity-name {
    font-size: 1.05rem;
    font-weight: 500;
    color: inherit;
    line-height: 1.4;
    padding-top: 5px;
}

@media (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 30px 0;
    }
    
    .amenity-item {
        gap: 15px;
    }
    
    .amenity-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .amenity-icon {
        font-size: 2rem;
    }
    
    .amenity-name {
        font-size: 0.95rem;
    }
}

/* Landmarks Grid - Project Page */
.landmarks-grid-project {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.landmark-card-project {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-left: 5px solid var(--luxury-gold);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    color: white;
}

.landmark-card-project:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
}

.landmark-card-project .landmark-icon {
    color: var(--luxury-gold);
}

.landmark-card-project .landmark-title {
    color: white;
}

.landmark-card-project .landmark-distance {
    color: rgba(255,255,255,0.8);
}

.landmark-distance::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--luxury-gold);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse-landmark 1.5s ease-in-out infinite;
}

@keyframes pulse-landmark {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@media (max-width: 768px) {
    .landmarks-grid-project {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .landmark-card-project {
        padding: 30px 25px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    display: block;
}

/* 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%;
    }
}

.gallery-item:hover img { transform: scale(1.03); }

@media (max-width: 768px) {
    .gallery-item { aspect-ratio: 1 / 1; }
}

@media (max-width: 768px) {
    .gallery-item { aspect-ratio: 1 / 1; }
}
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Location Map */
.location-section {
    padding: 100px 0;
    background: var(--luxury-cream);
}

.location-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.location-advantage {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.location-advantage i {
    font-size: 2.5rem;
    color: var(--luxury-gold);
    margin-bottom: 15px;
}

.location-advantage h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.location-advantage p {
    color: var(--text-light);
    margin: 0;
}

/* Why Marsares Section */
.why-marsares {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    color: white;
}

.benefit-box {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    height: 100%;
    transition: all 0.4s ease;
}

.benefit-box:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-10px);
}

.benefit-icon-box {
    width: 80px;
    height: 80px;
    background: var(--luxury-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.benefit-icon-box i {
    font-size: 2.5rem;
    color: white;
}

.benefit-box h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.benefit-box p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Fixed Bottom Contact Bar */
.bottom-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    padding: 15px 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 1001;
}

.bottom-contact-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.bottom-contact-btn {
    flex: 1;
    max-width: 180px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.bottom-contact-btn i {
    font-size: 1.3rem;
}

.bottom-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.call-btn {
    background: #28a745;
    color: white;
}

.call-btn:hover {
    background: #218838;
    color: white;
    text-decoration: none;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #1fb855;
    color: white;
    text-decoration: none;
}

/* Ensure WhatsApp label text is white and any nested elements render white */
.whatsapp-btn, .whatsapp-btn span, .whatsapp-btn i, .whatsapp-btn svg, .whatsapp-btn * {
    color: #ffffff !important;
    fill: #ffffff !important;
}

.download-btn {
    background: var(--luxury-gold);
    color: white;
}

.download-btn:hover {
    background: #b8935f;
    color: white;
    text-decoration: none;
}

.schedule-btn {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #d4a05f 100%) !important;
    color: white;
}

.schedule-btn:hover {
    background: linear-gradient(135deg, #d4a05f 0%, #b89037 100%) !important;
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    /* Make bottom contact buttons circular and icon-only on mobile */
    .bottom-contact-btn {
        width: 52px;
        height: 52px;
        min-width: 52px;
        padding: 0;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    }

    .bottom-contact-btn span {
        display: none;
    }

    .bottom-contact-btn i {
        font-size: 1.4rem;
    }

    /* Force WhatsApp icon lines to be white */
    .whatsapp-btn, .whatsapp-btn i, .whatsapp-btn svg { color: #fff !important; fill: #fff !important; }
}

/* Ensure WhatsApp icon visibility on larger screens too */
.whatsapp-btn i, .whatsapp-btn svg { color: #ffffff !important; fill: #ffffff !important; }

/* Contact Modal */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-modal.active {
    display: flex;
}

.modal-content-custom {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

.modal-content-custom h3 {
    color: var(--luxury-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.modal-content-custom .form-control {
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.modal-content-custom .form-control:focus {
    border-color: var(--luxury-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 160, 99, 0.1);
}

.modal-content-custom .submit-btn {
    background: var(--luxury-gold);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.modal-content-custom .submit-btn:hover {
    background: #b8935f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 160, 99, 0.4);
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: #28a745;
}

.download-btn {
    background: var(--luxury-gold);
}

/* Payment Plan */
.payment-plan-section {
    padding: 100px 0;
    background: white;
}

.payment-plan-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.payment-plan-table table {
    width: 100%;
}

.payment-plan-table thead {
    background: var(--luxury-dark);
    color: white;
}

.payment-plan-table th,
.payment-plan-table td {
    padding: 20px;
    text-align: left;
}

.payment-plan-table tbody tr:nth-child(even) {
    background: var(--luxury-cream);
}

.payment-plan-table tbody tr:hover {
    background: rgba(201, 160, 99, 0.1);
}

/* Price Highlight */
.price-highlight {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #d4af37 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin: 50px 0;
}

.price-label {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-subtext {
    font-size: 1.1rem;
    opacity: 0.9;
}
