/* CSS Design System for Keshavaa Esperanza */

:root {
    --primary-dark: #121824;
    --primary-medium: #1c2536;
    --primary-light: #2d3b54;
    --accent-gold: #c5a059;
    --accent-gold-hover: #b38e47;
    --neutral-bg-warm: #faf9f6;
    --neutral-bg-white: #ffffff;
    --text-dark: #1c2536;
    --text-muted: #5e6b7e;
    --text-light: #f3f4f6;
    --border-color: #e5e7eb;
    --max-width: 1200px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--neutral-bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Containers & Typography */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Common Section Header */
.section-header {
    margin-bottom: 48px;
}

.section-header.text-center {
    text-align: center;
}

.sub-heading {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.gold-bar {
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
}

.center-bar {
    margin: 0 auto;
}

/* Buttons */
.cta-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

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

.secondary-btn {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(18, 24, 36, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.brand-main {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-light);
}

.brand-sub {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 14px;
    font-weight: 500;
}

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

.nav-cta {
    padding: 10px 20px;
    font-size: 12px;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.nav-cta:hover {
    background-color: var(--accent-gold-hover);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--text-light);
    overflow: hidden;
    padding-top: 80px;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0 24px;
}

.tagline {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 18px;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}

.hero-specs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spec-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
    margin-bottom: 4px;
}

.spec-val {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-gold);
}

.spec-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Overview Section */
.overview-section {
    padding: 100px 0;
    background-color: var(--neutral-bg-warm);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: start;
}

.lead-text {
    font-size: 20px;
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin-bottom: 24px;
    line-height: 1.5;
}

.overview-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-card {
    background-color: var(--neutral-bg-white);
    padding: 24px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--accent-gold);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.stat-unit {
    display: inline-block;
    font-size: 14px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-left: 2px;
}

.stat-desc {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-top: 8px;
}

.overview-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.detail-card {
    background-color: var(--neutral-bg-white);
    padding: 32px;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
}

.detail-card h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.status-badge {
    display: inline-block;
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--accent-gold);
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.detail-card ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 15px;
}

.detail-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.price-card {
    background-color: var(--neutral-bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 160, 89, 0.4);
}

.price-card.featured-card {
    background-color: var(--primary-dark);
    color: var(--text-light);
    border: none;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 3px;
    letter-spacing: 0.1em;
}

.card-header h3 {
    font-size: 26px;
    margin-bottom: 6px;
}

.price-card.featured-card .card-header h3 {
    color: var(--text-light);
}

.highlight-txt {
    font-size: 13px;
    color: var(--accent-gold);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.price-amount {
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.price-card.featured-card .price-amount {
    border-top-color: rgba(255, 255, 255, 0.1);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.starting-from {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.price-card.featured-card .starting-from {
    color: rgba(255, 255, 255, 0.6);
}

.price-amount .value {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.1;
    display: inline-block;
}

.price-card.featured-card .price-amount .value {
    color: var(--accent-gold);
}

.taxes {
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 8px;
}

.price-card.featured-card .taxes {
    color: rgba(255, 255, 255, 0.6);
}

.specs-list {
    list-style: none;
    margin-bottom: 40px;
}

.specs-list li {
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-color);
    font-size: 15px;
    color: var(--text-dark);
}

.price-card.featured-card .specs-list li {
    border-bottom-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
}

.price-card.featured-card .specs-list li strong {
    color: var(--text-light);
}

.card-btn {
    display: block;
    text-align: center;
    border: 1px solid var(--primary-dark);
    color: var(--primary-dark);
}

.card-btn:hover {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

.gold-btn {
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

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

/* Amenities Section */
.amenities-section {
    padding: 100px 0;
    background-color: var(--primary-dark);
    color: var(--text-light);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.amenity-card {
    background-color: var(--primary-medium);
    padding: 48px 32px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

.amenity-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-4px);
}

.amenity-icon {
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.amenity-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.amenity-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background-color: var(--neutral-bg-warm);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
    align-items: center;
    margin-top: 48px;
}

.location-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.location-info p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.connectivity-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.point-item {
    display: flex;
    gap: 16px;
}

.point-marker {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.point-details strong {
    display: block;
    color: var(--primary-dark);
    font-size: 15px;
}

.point-details span {
    color: var(--text-muted);
    font-size: 13px;
}

.location-map {
    height: 400px;
    background-color: var(--primary-dark);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: radial-gradient(circle at center, #232e42 1px, transparent 1px);
    background-size: 20px 20px;
    color: var(--text-light);
}

.map-circle {
    width: 20px;
    height: 20px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    margin-bottom: 16px;
    position: relative;
}

.ripple::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--accent-gold);
    opacity: 0.5;
    animation: ripple-anim 2s infinite ease-out;
}

@keyframes ripple-anim {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.map-label {
    font-size: 24px;
    color: var(--text-light);
}

.map-sub {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.map-distance {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
}

/* Enquire Section */
.enquire-section {
    padding: 100px 0;
}

.enquire-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background-color: var(--primary-dark);
    color: var(--text-light);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.enquire-info {
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.enquire-info h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.enquire-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--accent-gold);
    font-size: 15px;
}

.enquire-form-container {
    padding: 64px;
    background-color: var(--primary-medium);
}

.enquire-form-container h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.inquiry-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.form-group:nth-child(5) {
    grid-column: span 2;
}

.inquiry-form label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
}

.inquiry-form input, .inquiry-form select {
    background-color: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 4px;
    color: var(--text-light);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.inquiry-form input:focus, .inquiry-form select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.form-submit-btn {
    grid-column: span 2;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    padding: 16px;
    font-size: 14px;
    margin-top: 10px;
}

.form-submit-btn:hover {
    background-color: var(--accent-gold-hover);
}

.form-feedback {
    grid-column: span 2;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

.form-feedback.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-feedback.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.hidden {
    display: none;
}

/* Footer */
.footer {
    background-color: #0d121c;
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand h3 {
    color: var(--text-light);
    font-size: 22px;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.footer-brand p {
    max-width: 320px;
    line-height: 1.7;
}

.footer-links h4, .footer-legal h4 {
    color: var(--text-light);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-legal p {
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .overview-grid, .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .enquire-wrapper {
        grid-template-columns: 1fr;
    }
    
    .enquire-info {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 48px;
    }
    
    .enquire-form-container {
        padding: 48px;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        position: relative;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .hero {
        height: auto;
        padding: 80px 0 100px 0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-specs {
        flex-direction: column;
        gap: 16px;
    }
    
    .spec-divider {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .inquiry-form {
        grid-template-columns: 1fr;
    }
    
    .form-group:nth-child(5) {
        grid-column: span 1;
    }
    
    .form-submit-btn {
        grid-column: span 1;
    }
}
