/* ========================================
   COASTA CABANA - MAIN STYLESHEET
   Modern Luxury Design
   ======================================== */

/* CSS Variables */
:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-gold: #d4af37;
    --accent-gold-light: #f4d47e;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --shadow-gold: rgba(212, 175, 55, 0.3);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--primary-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section (Home Page) */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    background-image: url(images/thomson-view-hero.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;

}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 1200px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

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

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

/* Page Header (Other Pages) */
.page-header {
    padding: 10rem 5% 5rem;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px var(--shadow-gold);
    animation: fadeInUp 1s ease-out 0.7s backwards;
    font-size: 0.9rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-gold);
}

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.cta-button-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow-gold);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-indicator::before {
    content: '';
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent-gold);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 3px;
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* Section Styles */
section {
    padding: 8rem 5%;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    text-align: center;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

/* Intro Section (Home) */
.intro-section {
    background: var(--secondary-dark);
}

.intro-content {
    max-width: 1400px;
    margin: 0 auto;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.text-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.text-link:hover {
    transform: translateX(5px);
}

.intro-image {
    height: 500px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Features Preview (Home) */
.features-preview {
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--secondary-dark);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.cta-center {
    text-align: center;
}

/* Floor Plans Preview (Home) */
.floorplans-preview {
    background: var(--secondary-dark);
}

.floorplan-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.floorplan-preview-card {
    background: var(--primary-dark);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.floorplan-preview-card:hover {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.floorplan-preview-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.floorplan-preview-card .size {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.floorplan-preview-card .price {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    text-align: center;
    padding: 6rem 5%;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* About Page Styles */
.about-main {
    background: var(--secondary-dark);
}

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

.about-text-full {
    margin-bottom: 4rem;
}

.about-text-full p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image-large {
    height: 600px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.vision-section {
    max-width: 1200px;
    margin: 0 auto;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.vision-image {
    height: 400px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.architecture-section {
    background: var(--secondary-dark);
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 0;
}

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

.architecture-card {
    background: var(--primary-dark);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.architecture-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.architecture-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.developer-section {
    max-width: 1200px;
    margin: 0 auto;
}

.developer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.developer-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.developer-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.developer-achievements {
    background: var(--secondary-dark);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.developer-achievements h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.developer-achievements ul {
    list-style: none;
}

.developer-achievements li {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.developer-achievements li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* Details Page Styles */
.project-overview {
    background: var(--secondary-dark);
}

.overview-content {
    max-width: 1200px;
    margin: 0 auto;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.overview-item {
    background: var(--primary-dark);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.overview-item h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.overview-item p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.details-main {
    max-width: 1400px;
    margin: 0 auto;
}

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

.detail-card {
    background: var(--secondary-dark);
    padding: 3rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.detail-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.detail-card:hover::before {
    opacity: 1;
}

.detail-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.detail-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.detail-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.amenities-section {
    background: var(--secondary-dark);
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 0;
}

.amenities-category {
    margin-bottom: 4rem;
}

.amenities-category h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary-dark);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.amenity-item:hover {
    border-color: var(--accent-gold);
    transform: translateX(5px);
}

.amenity-icon {
    font-size: 1.8rem;
}

.unit-features-section {
    max-width: 1200px;
    margin: 0 auto;
}

.unit-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.unit-feature {
    background: var(--secondary-dark);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.unit-feature h4 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.unit-feature ul {
    list-style: none;
}

.unit-feature li {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.unit-feature li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* Floor Plans Page */
.floorplans-full {
    max-width: 1400px;
    margin: 0 auto;
}

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

.floorplan-card {
    background: var(--secondary-dark);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.floorplan-card.featured {
    border: 2px solid var(--accent-gold);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    z-index: 10;
}

.floorplan-card:hover {
    transform: scale(1.03);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.floorplan-image {
    height: 300px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.floorplan-info {
    padding: 2rem;
}

.floorplan-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.floorplan-info .size {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.floorplan-info .price {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.floorplan-features {
    margin: 1.5rem 0;
}

.floorplan-features h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.floorplan-features ul {
    list-style: none;
}

.floorplan-features li {
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    padding-left: 1.3rem;
    position: relative;
    font-size: 0.95rem;
}

.floorplan-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.download-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    margin-top: 1rem;
}

.download-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--shadow-gold);
}

/* Comparison Table */
.comparison-section {
    background: var(--secondary-dark);
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--primary-dark);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table thead {
    background: rgba(212, 175, 55, 0.2);
}

.comparison-table th {
    padding: 1.5rem 1rem;
    text-align: left;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--accent-gold);
}

.comparison-table td {
    padding: 1.2rem 1rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.comparison-table tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.comparison-table .featured-row {
    background: rgba(212, 175, 55, 0.1);
}

/* Location Page */
.location-overview {
    background: var(--secondary-dark);
}

.location-intro {
    max-width: 1000px;
    margin: 0 auto;
}

.location-intro p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.map-section {
    max-width: 1400px;
    margin: 0 auto;
}

.map-frame{
  width: 100%;
  /* pick one: fixed height OR responsive aspect ratio */
  height: 520px;            /* easiest */
  /* aspect-ratio: 16 / 9;  */ /* responsive alternative */
  
  border: 1px solid rgba(255, 215, 0, 0.35); /* your gold-ish border */
  border-radius: 12px;
  overflow: hidden;          /* IMPORTANT: clips map to rounded corners */
  background: #000;
}

.map-frame iframe{
  width: 100%;
  height: 100%;
  border: 0;                 /* remove iframe default border */
  display: block;            /* removes tiny gaps */
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background: var(--secondary-dark);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 3rem;
}

.connectivity-section {
    background: var(--secondary-dark);
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 0;
}

.connectivity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.connectivity-card {
    background: var(--primary-dark);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.connectivity-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.connectivity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.connectivity-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.connectivity-card ul {
    list-style: none;
}

.connectivity-card li {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.amenities-nearby {
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-category {
    margin-bottom: 4rem;
}

.amenity-category h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.amenities-list-location {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.amenity-location-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--secondary-dark);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.amenity-location-item:hover {
    border-color: var(--accent-gold);
    transform: translateX(5px);
}

.amenity-location-item strong {
    color: var(--text-light);
}

.amenity-location-item span {
    color: var(--accent-gold);
    font-weight: 600;
}

.distance-guide {
    background: var(--secondary-dark);
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 0;
}

.distance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.distance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-dark);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.distance-item .destination {
    color: var(--text-light);
    font-weight: 500;
}

.distance-item .time {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Contact Page */
.contact-main {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-intro {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    font-size: 2rem;
    color: var(--accent-gold);
}

.contact-detail-item h4 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-detail-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

.why-contact {
    background: var(--secondary-dark);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.why-contact h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.why-contact ul {
    list-style: none;
}

.why-contact li {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.why-contact li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.contact-form-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-form-section > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
    font-weight: 500;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    background: var(--secondary-dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.submit-button {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--primary-dark);
    border: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px var(--shadow-gold);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-gold);
}

.form-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.form-message {
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.success-message {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.success-message h3 {
    color: #00ff00;
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    background: var(--secondary-dark);
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 0;
}

.faq-container {
    display: grid;
    gap: 2rem;
}

.faq-item {
    background: var(--primary-dark);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-gold);
}

.faq-item h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

.alt-contact-section {
    text-align: center;
    padding: 6rem 5%;
}

.alt-contact-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.alt-contact-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.phone-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px var(--shadow-gold);
}

.phone-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-gold);
}

.contact-note {
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Footer */
footer {
    background: var(--primary-dark);
    padding: 4rem 5%;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 2rem;
    }
    
    .intro-grid,
    .vision-content,
    .developer-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 4rem 5%;
    }

    .features-grid,
    .details-grid,
    .floorplan-grid,
    .connectivity-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
    }
}
/* ========================================
   FLOATING CONTACT BUTTON & POPUP FORM
   Add this to your styles.css
   ======================================== */

/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--primary-dark);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 10px 30px var(--shadow-gold);
    transition: all 0.3s ease;
    border: none;
    animation: pulse 2s infinite;
}

.floating-contact-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px var(--shadow-gold);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px var(--shadow-gold);
    }
    50% {
        box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
    }
}

/* Contact Popup Modal */
.contact-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.contact-popup-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.contact-popup {
    background: var(--secondary-dark);
    border-radius: 15px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
    position: relative;
}

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

.popup-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--accent-gold);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: rotate(90deg);
}

.contact-popup h2 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-popup .subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.quick-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.quick-contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.quick-contact-form label {
    margin-bottom: 0.4rem;
    color: var(--accent-gold);
    font-weight: 500;
    font-size: 0.9rem;
}

.quick-contact-form input,
.quick-contact-form select,
.quick-contact-form textarea {
    padding: 0.9rem;
    background: var(--primary-dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.quick-contact-form input:focus,
.quick-contact-form select:focus,
.quick-contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.quick-contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.quick-contact-form .submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--primary-dark);
    border: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px var(--shadow-gold);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.quick-contact-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px var(--shadow-gold);
}

.quick-contact-form .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success Message */
.success-popup {
    text-align: center;
    padding: 2rem;
}

.success-popup .checkmark {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-popup h3 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.success-popup p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-contact-btn {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
    
    .contact-popup {
        padding: 2rem 1.5rem;
        width: 95%;
    }
    
    .contact-popup h2 {
        font-size: 1.6rem;
    }
}

/* ========================================
   COMPACT/SHORTER PAGE STYLES
   ======================================== */

.page-header-compact {
    padding: 8rem 5% 3rem;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.page-header-compact h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.page-header-compact p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Compact Sections */
.intro-section,
.about-compact,
.details-compact,
.floorplans-compact,
.location-compact,
.contact-compact {
    padding: 4rem 5%;
}

.intro-text-center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.features-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.feature-card-compact {
    background: var(--secondary-dark);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card-compact:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.feature-card-compact .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.feature-card-compact h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

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

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto;
}

.pricing-card {
    background: var(--secondary-dark);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.pricing-card .size {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 600;
}

/* CTA Section Compact */
.cta-section-compact,
.floorplans-preview-compact {
    background: var(--secondary-dark);
    padding: 4rem 5%;
    text-align: center;
}

.cta-section-compact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
}

.cta-section-compact p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* About Compact */
.about-content-compact {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content-compact p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-item {
    background: var(--secondary-dark);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.highlight-item h3 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Details Compact */
.details-content-compact {
    max-width: 1200px;
    margin: 0 auto;
}

.overview-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 4rem;
}

.overview-item {
    background: var(--secondary-dark);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    color: var(--text-muted);
}

.overview-item strong {
    color: var(--accent-gold);
}

.amenities-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.amenity-compact {
    background: var(--secondary-dark);
    padding: 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.amenity-compact:hover {
    border-color: var(--accent-gold);
    transform: translateX(5px);
}

/* Floorplans Compact */
.floorplan-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.floorplan-card-compact {
    background: var(--secondary-dark);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.floorplan-card-compact.featured {
    border-color: var(--accent-gold);
}

.floorplan-card-compact:hover {
    transform: scale(1.03);
    border-color: var(--accent-gold);
}

.floorplan-image-compact {
    height: 150px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.floorplan-card-compact h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.floorplan-card-compact .size {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.floorplan-card-compact .price {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.download-btn-compact {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.download-btn-compact:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

/* Location Compact */
.map-container-compact {
    width: 100%;
    height: 400px;
    background: var(--secondary-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin: 2rem 0;
}

.location-features-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.location-feature-compact {
    background: var(--secondary-dark);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.location-feature-compact h4 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

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

/* Contact Compact */
.contact-intro-compact {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.contact-intro-compact p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-methods-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.contact-method-compact {
    background: var(--secondary-dark);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.contact-method-compact .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-method-compact h3 {
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
}

.contact-method-compact p {
    color: var(--text-muted);
}

.contact-method-compact a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
}

/* Responsive Compact Styles */
@media (max-width: 768px) {
    .page-header-compact h1 {
        font-size: 2rem;
    }
    
    .features-grid-compact,
    .pricing-grid,
    .floorplan-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .intro-section,
    .about-compact,
    .details-compact,
    .floorplans-compact,
    .location-compact,
    .contact-compact {
        padding: 3rem 5%;
    }
}

/* ========================================
   FULL CONTACT FORM ON PAGE
   ======================================== */

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--secondary-dark);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-form-container h2 {
    margin-bottom: 0.5rem;
}

.form-intro {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    text-align: center;
}

.page-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.page-contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.page-contact-form label {
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.page-contact-form input,
.page-contact-form select,
.page-contact-form textarea {
    padding: 1rem;
    background: var(--primary-dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.page-contact-form input:focus,
.page-contact-form select:focus,
.page-contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.page-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row !important;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
    min-width: 18px;
}

.submit-btn-large {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--primary-dark);
    border: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px var(--shadow-gold);
    font-size: 1rem;
    margin-top: 1rem;
}

.submit-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-gold);
}

.submit-btn-large:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
    text-align: center;
}

.success-message-page {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease;
}

.success-message-page h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-message-page p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.footer-disclaimer {
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    margin-top: 2rem;
    padding: 2rem 5% 1.5rem;
    background: rgba(255, 255, 255, 0.01);
}

.footer-disclaimer-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-disclaimer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0 0 1rem 0;
}

.footer-disclaimer .disclaimer-contact {
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.9;
    margin-top: 1.25rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--primary-dark);
    border: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px var(--shadow-gold);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px var(--shadow-gold);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    .footer-disclaimer {
        padding: 1.5rem 1rem 1rem;
    }

    .footer-disclaimer p {
        font-size: 0.82rem;
        line-height: 1.7;
    }
}
