/* ==========================================================================
   Ethics Orovia Custom Luxury Stylesheet
   Theme: Midnight Slate & Brushed Gold Accent
   ========================================================================== */

/* Design Variables */
:root {
    --bg-dark: #090d16;
    --bg-card: #121824;
    --bg-input: #1b2336;
    --primary-gold: #c5a059;
    --accent-gold: #e2c98a;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --border-gold: rgba(197, 160, 89, 0.2);
    --border-gold-hover: rgba(197, 160, 89, 0.5);
    --glass-bg: rgba(18, 24, 36, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.01em;
}

p {
    font-size: 1rem;
    color: var(--text-secondary);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Section Containers & Typography */
.section-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 100px 4%;
}

.text-gold {
    color: var(--primary-gold);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.section-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: 700;
    font-family: var(--font-body);
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto 60px auto;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary-gold) 100%);
    color: #000;
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.2);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(197, 160, 89, 0.4);
}

.btn-primary {
    background-color: var(--primary-gold);
    color: #000;
}

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

.btn-outline-white {
    background-color: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
}

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

.btn-large {
    padding: 15px 36px;
    font-size: 1rem;
}

.btn-small {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 12px 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

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

.btn-nav-cta {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.mobile-toggle-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.08) 0%, transparent 60%);
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-left {
    position: relative;
    z-index: 3;
}

.hero-right {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    padding: 10px;
    background: linear-gradient(135deg, var(--border-gold) 0%, transparent 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.hero-right-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.hero-img-gold-border {
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
}

.hero-content-container {
    position: relative;
    z-index: 3;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4%;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(197, 160, 89, 0.15);
    border: 1px solid var(--border-gold);
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 650px;
    margin-bottom: 45px;
}

.hero-highlights {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-highlight-item .h-icon {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.hero-highlight-item .h-text {
    display: flex;
    flex-direction: column;
}

.hero-highlight-item .h-text span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.hero-highlight-item .h-text strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Overview Section */
.overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.overview-desc {
    margin-bottom: 25px;
    font-size: 1.05rem;
    text-align: justify;
}

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

.stat-card {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-3px);
}

.stat-card h3 {
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Forms CSS */
.overview-form-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-form-card {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.form-header p {
    font-size: 0.9rem;
}

.lead-enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background-color: var(--bg-input);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 12px 16px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.15);
}

.form-status-msg {
    margin-top: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 4px;
}

.form-status-msg.success {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgb(16, 185, 129);
    color: rgb(52, 211, 153);
}

/* Pricing Card Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold-hover);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.premium-border {
    border: 1.5px solid var(--primary-gold);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
}

.card-badge.gold {
    background-color: var(--primary-gold);
    color: #000;
}

.card-icon {
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-desc {
    font-size: 0.9rem;
    margin-bottom: auto;
    min-height: 50px;
}

.price-info {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
}

.price-info:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 10px;
    margin-bottom: 35px;
}

.price-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.price-val {
    font-size: 1.35rem;
    font-weight: 700;
}

/* Estimator Box */
.pricing-calculator-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 40px;
    margin-top: 60px;
}

.calc-header {
    margin-bottom: 30px;
}

.calc-header h4 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.calc-inputs {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.calc-group select {
    background-color: var(--bg-input);
    border: 1px solid var(--primary-gold);
    color: #fff;
    padding: 15px;
    font-size: 1rem;
    border-radius: 6px;
    outline: none;
    cursor: pointer;
}

.calc-result {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 10px;
    font-size: 0.95rem;
}

.result-item.total {
    border-bottom: none;
    font-size: 1.2rem;
    font-weight: 700;
    padding-top: 10px;
}

.calc-action {
    margin-top: 30px;
}

/* Amenities tab system */
.amenities-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover, .tab-btn.active {
    color: #000;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary-gold) 100%);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.amenity-card {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

.amenity-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-3px);
}

.amenity-card .a-icon {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.amenity-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.amenity-card p {
    font-size: 0.85rem;
}

/* Location Styles */
.location-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: stretch;
}

.location-map-wrapper {
    min-height: 380px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
}

.custom-map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #0b111e;
    background-image: radial-gradient(rgba(197, 160, 89, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.map-overlay {
    text-align: center;
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 8px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.map-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.map-overlay p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.map-overlay .badge {
    display: inline-block;
    font-size: 0.75rem;
    background-color: rgba(197, 160, 89, 0.15);
    color: var(--accent-gold);
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
}

.connectivity-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
}

.info-group h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-group ul li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
}

.info-group ul li strong {
    color: var(--text-primary);
}

/* Accordion FAQs */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 1.05rem;
    transition: var(--transition-smooth);
}

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

.faq-question i {
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-question {
    color: var(--accent-gold);
    border-bottom: 1px solid var(--glass-border);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 22px 30px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Cards CSS */
.contact-card-wrapper {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
}

.contact-info-panel {
    background-color: #0b111e;
    padding: 60px;
    border-right: 1px solid var(--border-gold);
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-info-panel h2 {
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.panel-subtitle {
    font-size: 0.95rem;
}

.office-address, .direct-calls, .email-panel {
    display: flex;
    gap: 20px;
}

.office-address i, .direct-calls i, .email-panel i {
    font-size: 1.5rem;
    margin-top: 3px;
}

.office-address p {
    font-size: 0.95rem;
}

.call-numbers, .email-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.call-numbers strong, .email-details strong {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.call-numbers a, .email-details a {
    font-size: 1.2rem;
    font-weight: 700;
}

.call-numbers a:hover, .email-details a:hover {
    color: var(--accent-gold);
}

.disclaimer-note {
    margin-top: 20px;
    font-size: 0.75rem;
    line-height: 1.5;
}

.contact-form-panel {
    padding: 60px;
}

.contact-form-panel h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.contact-form-panel p {
    font-size: 0.9rem;
    margin-bottom: 35px;
}

/* Footer Section */
.main-footer {
    background-color: #05070c;
    border-top: 1px solid var(--glass-border);
    padding: 40px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

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

/* Modal Popup Window */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 7, 12, 0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: opacity 0.4s ease;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background-color: var(--bg-card);
    border: 1px solid var(--primary-gold);
    width: 100%;
    max-width: 500px;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.modal-backdrop.active .modal-box {
    transform: translateY(0);
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.close-modal-btn:hover {
    color: #fff;
}

.modal-header {
    margin-bottom: 25px;
}

.modal-header h2 {
    font-size: 1.6rem;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 0.85rem;
}

/* Floating Actions Mobile Bottom */
.floating-mobile-actions {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    grid-template-columns: repeat(3, 1fr);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
}

.mobile-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
}

.mobile-action-btn.phone {
    background-color: #0b0f19;
    color: var(--accent-gold);
    border-top: 1.5px solid var(--border-gold);
}

.mobile-action-btn.whatsapp {
    background-color: #25d366;
    color: #fff;
    border-top: 1.5px solid rgba(255, 255, 255, 0.1);
}

.mobile-action-btn.enquire {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary-gold) 100%);
    color: #000;
}

/* Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .location-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-highlights {
        justify-content: center;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .section-container {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-highlights {
        gap: 20px 30px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .calc-inputs {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        border-right: none;
        border-bottom: 1px solid var(--border-gold);
        padding: 40px 25px;
    }

    .contact-form-panel {
        padding: 40px 25px;
    }

    .mobile-toggle-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-dark);
        flex-direction: column;
        padding: 40px 20px;
        align-items: stretch;
        transition: var(--transition-smooth);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 15px 0;
        border-bottom: 1px solid var(--glass-border);
    }

    .btn-nav-cta {
        margin-top: 30px;
        padding: 12px;
        font-size: 1rem;
    }

    .floating-mobile-actions {
        display: grid;
    }

    body {
        padding-bottom: 50px; /* Offset for floating actions */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .modal-box {
        padding: 30px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Gallery Section Styles */
.gallery-section {
    background-color: var(--bg-dark);
    position: relative;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    background-color: var(--bg-card);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(9, 13, 22, 0.9) 0%, rgba(9, 13, 22, 0) 100%);
    padding: 20px;
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-left: 2px solid var(--primary-gold);
    padding-left: 10px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Lightbox Modal Styles */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 13, 22, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid var(--border-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-caption {
    margin-top: 15px;
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

.close-lightbox-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-lightbox-btn:hover {
    color: var(--primary-gold);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .close-lightbox-btn {
        top: 20px;
        right: 25px;
        font-size: 2.5rem;
    }
}

/* Floating WhatsApp Button Styles */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1500;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: wa-pulsate 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(8deg);
    background-color: #20ba5a;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes wa-pulsate {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Adjust WhatsApp float position on mobile to avoid overlapping with floating action footer */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 85px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
        box-shadow: 0 3px 10px rgba(37, 211, 102, 0.35);
    }
}
