/* Import modern premium fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary: #E6BF0F;
    --primary-glow: rgba(230, 191, 15, 0.2);
    --primary-dark: #bfa00d;
    --bg-darker: #0B0C10;
    --bg-dark: #12141C;
    --bg-card: rgba(25, 28, 41, 0.65);
    --bg-glass: rgba(18, 20, 28, 0.7);
    --text-white: #FFFFFF;
    --text-light: #E0E2EC;
    --text-muted: #8E92A4;
    --border-color: rgba(230, 191, 15, 0.15);
    --border-glow: rgba(230, 191, 15, 0.3);
    --border-white-glow: rgba(255, 255, 255, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography & Layout Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 600;
}

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

/* Glassmorphism utility */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-white-glow);
}

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

/* Button & interactive components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-darker);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.15);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-darker);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--primary-glow);
}

/* Navigation header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1.2rem 5%;
}

header.scrolled {
    background: rgba(11, 12, 16, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-white-glow);
    padding: 0.8rem 5%;
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    fill: var(--primary);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

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

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 5% 4rem;
    background: radial-gradient(circle at 70% 30%, rgba(230, 191, 15, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 10% 80%, rgba(30, 41, 59, 0.3) 0%, transparent 50%),
                var(--bg-darker);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    z-index: 2;
}

.hero-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    font-weight: 600;
    border-left: 2px solid var(--primary);
    padding-left: 12px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 2rem;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.hero-img-container {
    position: relative;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 40px var(--primary-glow);
    border: 1px solid var(--border-color);
}

.hero-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.05);
    transition: var(--transition-smooth);
}

.hero-img-container:hover img {
    transform: scale(1.05);
}

/* Elegant Search / Check Availability Bar */
.search-bar-container {
    max-width: 1100px;
    margin: -3rem auto 4rem;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

.search-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 0.8fr;
    gap: 1.5rem;
    padding: 1.8rem;
    border-radius: var(--radius-md);
    align-items: flex-end;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 20px var(--primary-glow);
    border: 1px solid var(--border-color);
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-field label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
}

.search-field input, .search-field select {
    background: rgba(25, 28, 41, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
}

.search-field select option, .form-group select option {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 10px;
}

.search-field input:focus, .search-field select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    background: rgba(25, 28, 41, 0.98);
}

/* What We Do Section */
.section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4.5rem;
}

.section-tagline {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* What We Do grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-white-glow);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px var(--primary-glow);
}

.service-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

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

/* Properties Showcase */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-white-glow);
    color: var(--text-light);
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: var(--bg-darker);
    border-color: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

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

.property-card {
    background: var(--bg-card);
    border: 1px solid var(--border-white-glow);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--primary-glow);
}

.property-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.property-card:hover .property-img-wrapper img {
    transform: scale(1.05);
}

.property-tag {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: rgba(11, 12, 16, 0.85);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
}

.property-info {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.property-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    gap: 1rem;
}

.property-title-row h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

.property-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.property-amenities {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-white-glow);
    padding-bottom: 1rem;
    flex-wrap: wrap;
}

.amenity-item {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.amenity-item svg {
    width: 14px;
    height: 14px;
    fill: var(--primary);
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.property-price {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.property-price span {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 700;
    margin-right: 2px;
}

/* Why Choose Us & Stats */
.why-us {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
    position: relative;
    padding: 6rem 5%;
}

.why-us-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.why-us-item {
    display: flex;
    gap: 1.5rem;
}

.why-us-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    border-bottom: 2px solid var(--primary);
    height: fit-content;
}

.why-us-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

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

.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border-white-glow);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.stat-box:hover {
    border-color: var(--border-glow);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 10px var(--primary-glow);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* Reviews / Testimonials */
.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-white-glow);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(230, 191, 15, 0.1);
    line-height: 1;
}

.review-stars {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-white);
}

.reviewer-title {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Footer styling */
footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-white-glow);
    padding: 5rem 5% 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-white-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--primary);
    color: var(--bg-darker);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.footer-links h4 {
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-newsletter p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-white-glow);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    padding: 0.8rem 1rem;
    outline: none;
    flex-grow: 1;
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid var(--border-white-glow);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* MODAL SYSTEM (Luxurious glass checkout wizard) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 8, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 2rem 1rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-window {
    background: #11131c;
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 30px var(--primary-glow);
    width: 100%;
    max-width: 850px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-window {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-white-glow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-dark);
}

.modal-header h2 {
    font-size: 1.6rem;
}

.close-modal-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-modal-btn:hover {
    color: var(--primary);
}

.modal-body {
    padding: 2.5rem 2rem;
    overflow-y: auto;
    flex-grow: 1;
}

/* Wizard Steps Indicator */
.wizard-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    z-index: 1;
}

.wizard-step-line {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 2px;
    background: var(--primary);
    width: 0%;
    z-index: 2;
    transition: var(--transition-smooth);
}

.wizard-step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-darker);
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 3;
    transition: var(--transition-smooth);
    color: var(--text-muted);
}

.wizard-step.active {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
}

.wizard-step.completed {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-darker);
}

/* Wizard Content Panels */
.wizard-panel {
    display: none;
}

.wizard-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.booking-summary-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
}

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

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

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

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.form-group input, .form-group select, .form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-white-glow);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    padding: 0.8rem 1rem;
    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);
    box-shadow: 0 0 10px var(--primary-glow);
}

.booking-sidebar-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-white-glow);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    height: fit-content;
}

.booking-sidebar-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 1.2rem;
}

.summary-property-name {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.summary-property-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    display: block;
}

.price-calculation-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-white-glow);
}

.calc-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.calc-row.total {
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
}

.calc-row.total span {
    color: var(--primary);
    font-size: 1.35rem;
    font-family: var(--font-heading);
}

/* Service Addons Options */
.addons-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.addon-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-white-glow);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.addon-card:hover {
    border-color: rgba(230, 191, 15, 0.4);
}

.addon-card.selected {
    border-color: var(--primary);
    background: rgba(230, 191, 15, 0.05);
}

.addon-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.addon-card.selected .addon-checkbox {
    background: var(--primary);
    border-color: var(--primary);
}

.addon-card.selected .addon-checkbox::after {
    content: '✓';
    color: var(--bg-darker);
    font-weight: 700;
    font-size: 0.85rem;
}

.addon-details {
    flex-grow: 1;
}

.addon-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--text-white);
}

.addon-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.addon-price {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 600;
    font-size: 1.15rem;
}

/* Simulated Payments card design */
.payment-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-method {
    background: var(--bg-dark);
    border: 1px solid var(--border-white-glow);
    padding: 1rem;
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.payment-method.active {
    border-color: var(--primary);
    background: rgba(230, 191, 15, 0.05);
    color: var(--primary);
}

.credit-card-face {
    background: linear-gradient(135deg, #1b203a 0%, #0d1020 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 2rem;
    color: var(--text-white);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.credit-card-face::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(230, 191, 15, 0.1) 0%, transparent 60%);
}

.card-logo {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.card-number-display {
    font-size: 1.4rem;
    letter-spacing: 3px;
    margin-bottom: 1.8rem;
    font-family: monospace;
}

.card-bottom-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.card-holder-name {
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--text-white);
    letter-spacing: 1px;
}

/* Success Receipt Layout */
.success-checkmark {
    width: 70px;
    height: 70px;
    background: rgba(230, 191, 15, 0.15);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px var(--primary-glow);
}

.receipt-box {
    background: var(--bg-dark);
    border: 1px solid var(--border-white-glow);
    border-radius: var(--radius-md);
    padding: 2rem;
    max-width: 480px;
    margin: 2rem auto;
}

.receipt-title {
    text-align: center;
    border-bottom: 1px dashed var(--border-white-glow);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.receipt-title h3 {
    font-size: 1.4rem;
}

.receipt-title span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.receipt-details-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-bottom: 1px dashed var(--border-white-glow);
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.receipt-row label {
    color: var(--text-muted);
}

.receipt-row span {
    color: var(--text-white);
    font-weight: 500;
}

/* Modal Buttons Row */
.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-white-glow);
    display: flex;
    justify-content: space-between;
    background: var(--bg-dark);
}

/* User Profile Bookings panel */
.user-bookings-section {
    background: var(--bg-dark);
    border: 1px solid var(--border-white-glow);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    margin-top: 4rem;
}

.user-bookings-table-wrapper {
    overflow-x: auto;
    margin-top: 1.5rem;
}

.user-bookings-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.user-bookings-table th {
    color: var(--primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem;
    border-bottom: 1px solid var(--border-white-glow);
}

.user-bookings-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.status-badge {
    padding: 0.25rem 0.8rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.confirmed {
    background: rgba(230, 191, 15, 0.15);
    border: 1px solid var(--primary);
    color: var(--primary);
}

.empty-bookings-state {
    text-align: center;
    color: var(--text-muted);
    padding: 3rem 0;
    font-size: 1rem;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-tagline {
        border-left: none;
        border-bottom: 2px solid var(--primary);
        padding-left: 0;
        padding-bottom: 4px;
    }

    .hero-desc {
        margin: 0 auto 2.5rem;
    }

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

    .hero-img-container {
        max-width: 600px;
        margin: 0 auto;
        height: 400px;
    }

    .search-bar {
        grid-template-columns: 1fr 1fr;
    }

    .why-us-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* In production a hamburger overlay would open this */
    }

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

    .hero h1 {
        font-size: 2.8rem;
    }

    .search-bar {
        grid-template-columns: 1fr;
    }

    .booking-summary-grid {
        grid-template-columns: 1fr;
    }

    .form-group-row {
        grid-template-columns: 1fr;
    }

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

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

/* FLOATING VIP LEAD CAPTURE POPUP */
.lead-capture-floating {
    position: fixed;
    bottom: -400px;
    right: 2rem;
    width: 380px;
    background: rgba(18, 20, 28, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px var(--primary-glow);
    z-index: 999;
    transition: bottom 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lead-capture-floating.active {
    bottom: 2rem;
}

.lead-capture-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lead-capture-close:hover {
    color: var(--primary);
}

.lead-capture-header {
    margin-bottom: 1.2rem;
}

.lead-capture-header h4 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.lead-capture-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.lead-capture-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.lead-capture-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.lead-capture-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.status-badge.cancelled {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* FLOATING WHATSAPP CHAT ASSISTANT WIDGET */
.whatsapp-chat-widget {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(25, 28, 41, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid #25D366;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(37, 211, 102, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.whatsapp-chat-widget:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(37, 211, 102, 0.4);
    background: rgba(37, 211, 102, 0.1);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: #25D366;
}

.whatsapp-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: rgba(7, 8, 12, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: #0d0f1a;
    border-left: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-nav-overlay.active .mobile-nav-panel {
    transform: translateX(0);
}

.mobile-nav-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    transition: color 0.3s;
}

.mobile-nav-close:hover { color: var(--primary); }

.mobile-nav-logo {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-white-glow);
    padding-top: 1.5rem;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex-grow: 1;
}

.mobile-nav-links li a {
    display: block;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.mobile-nav-links li a:hover {
    background: rgba(230, 191, 15, 0.08);
    color: var(--primary);
    padding-left: 1.4rem;
}

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.zinny-toast {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    min-width: 300px;
    max-width: 420px;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(-16px) scale(0.96);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.zinny-toast--show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.zinny-toast--success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
}

.zinny-toast--error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
}

.zinny-toast--info {
    background: rgba(230, 191, 15, 0.12);
    border: 1px solid var(--border-glow);
    color: var(--primary);
}

/* ============================================================
   PROPERTY CARD EXTRAS
   ============================================================ */
.property-badge-popular {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(230, 191, 15, 0.9);
    color: #0B0C10;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.property-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.prop-feature-tag {
    background: rgba(230, 191, 15, 0.07);
    border: 1px solid rgba(230, 191, 15, 0.2);
    color: var(--text-muted);
    font-size: 0.7rem;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* ============================================================
   FLUTTERWAVE PAYMENT PANEL
   ============================================================ */
.flw-payment-panel {
    background: linear-gradient(135deg, rgba(25, 28, 41, 0.9) 0%, rgba(15, 17, 26, 0.95) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.flw-payment-panel::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(230, 191, 15, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.flw-logo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-white-glow);
}

.flw-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.flw-payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.flw-icon-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-white-glow);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.payment-method {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   STATUS BADGES — PENDING
   ============================================================ */
.status-badge.pending {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid #3b82f6;
    color: #60a5fa;
}

/* ============================================================
   SUCCESS ANIMATION
   ============================================================ */
@keyframes successPop {
    0% { transform: scale(0.5); opacity: 0; }
    70% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
    header, footer, .modal-footer, .whatsapp-chat-widget,
    .lead-capture-floating, .mobile-nav-overlay, .zinny-toast {
        display: none !important;
    }
    body { background: #fff; color: #111; }
    .modal-window { box-shadow: none; border: none; max-height: none; }
}
