/* ============================================
   VR Property Management
   Design: Professional blue & navy real estate aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800;900&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
    --red-primary: #1E3A5F;
    --red-dark: #152C4A;
    --red-light: #2C5282;
    --red-accent: #3B6FA0;
    --gold: #4A90D9;
    --gold-light: #6BA8E8;
    --charcoal: #0F1B2D;
    --charcoal-light: #1A2D47;
    --off-white: #F0F4F8;
    --warm-gray: #7B8FA3;
    --text-dark: #1A1A1A;
    --text-light: #F0F4F8;
    --text-muted: #5A6B7D;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.25);
    --radius: 4px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --navy-primary: #0a192f;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--off-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

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

svg {
    display: inline-block;
    vertical-align: middle;
}

ul {
    list-style: none;
}

/* ---- Container ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--charcoal);
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--warm-gray);
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.top-bar a {
    color: var(--warm-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar a:hover {
    color: var(--gold);
}

.top-bar .btn-pay-rent {
    background: var(--red-primary);
    color: #fff;
    padding: 6px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar .btn-pay-rent:hover {
    background: var(--red-accent);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

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

.logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    color: var(--red-primary);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
    padding-top: 9px;
}

.logo-text span {
    display: block;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    padding: 8px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    background: var(--red-primary);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.6rem;
    cursor: pointer;
    padding: 8px;
}

/* ---- Nav Dropdown (Services) ---- */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-trigger {
    cursor: pointer;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 4px;
    z-index: 999;
    min-width: 220px;
}

.nav-dropdown-menu a {
    background: #fff;
    border-left: 1px solid #E2E8F0;
    border-right: 1px solid #E2E8F0;
}

.nav-dropdown-menu a:first-child {
    border-top: 1px solid #E2E8F0;
    border-radius: 8px 8px 0 0;
}

.nav-dropdown-menu a:last-child {
    border-bottom: 1px solid #E2E8F0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark) !important;
    background: #fff !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    border-radius: 0 !important;
    transition: var(--transition);
}

.nav-dropdown-menu a:hover {
    background: var(--off-white) !important;
    color: var(--red-primary) !important;
    padding-left: 24px;
}

/* ---- Navbar Action Buttons ---- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.login-dropdown {
    position: relative;
}

.btn-login-nav {
    background: #fff;
    color: var(--text-dark);
    border: 1.5px solid #D1D9E6;
    padding: 8px 24px;
    border-radius: 6px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-login-nav:hover {
    border-color: var(--red-primary);
    color: var(--red-primary);
}

.login-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 160px;
    z-index: 999;
    overflow: hidden;
}

.login-dropdown.open .login-dropdown-menu {
    display: block;
}

.login-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.login-dropdown-menu a:hover {
    background: #1e3a5f;
    color: #fff;
}

.btn-book-demo {
    background: var(--red-primary);
    color: #fff !important;
    padding: 8px 24px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.5px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-book-demo:hover {
    background: var(--red-accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/static/img/hero-bg.png') center/cover;
    min-height: 100%;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 27, 45, 0.88) 0%, rgba(30, 58, 95, 0.70) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    max-width: 700px;
}

/* ---- Hero Slider ---- */
.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.hero-slide.exit-left {
    opacity: 0;
    transform: translateX(-80px);
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-divider {
    width: 120px;
    height: 3px;
    background: var(--gold);
    margin: 24px 0;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red-primary);
    color: #fff;
    padding: 16px 36px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.4);
}

.btn-hero:hover {
    background: var(--red-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(30, 58, 95, 0.5);
}

/* ============================================
   QUICK ACCESS BARS (Tenants / Owners)
   ============================================ */
.quick-access {
    padding: 0;
    width: 100%;
}

.qa-row {
    display: flex;
    align-items: stretch;
    min-height: 80px;
    width: 100%;
}

.qa-row--tenants {
    background: var(--red-primary);
}

.qa-row--owners {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.qa-label {
    min-width: 200px;
    display: flex;
    align-items: center;
    padding: 28px 32px;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.qa-row--tenants .qa-label {
    color: #fff;
}

.qa-row--owners .qa-label {
    color: var(--text-dark);
}

.qa-items {
    display: flex;
    flex: 1;
    justify-content: center;
    gap: 0;
    min-height: inherit;
}

.qa-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    gap: 10px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    min-height: 80px;
}

.qa-row--tenants .qa-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.qa-row--owners .qa-item:hover {
    background: var(--off-white);
}

.qa-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.qa-row--tenants .qa-icon {
    color: #fff;
}

.qa-row--owners .qa-icon {
    color: var(--red-primary);
}

.qa-item-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.qa-row--tenants .qa-item-text {
    color: #fff;
}

.qa-row--owners .qa-item-text {
    color: var(--text-dark);
}

/* ============================================
   DASHBOARD SECTION
   ============================================ */
.dashboard-section {
    padding: 80px 0;
    background: var(--off-white);
}

.dashboard-header {
    text-align: center;
    margin-bottom: 48px;
}

.dashboard-header h2 {
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

.dashboard-video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 16 / 9;
    background: var(--charcoal);
}

.dashboard-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   PARTNER SECTION
   ============================================ */
.partner-section {
    padding: 80px 0;
    background: #fff;
}

.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.partner-text h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.partner-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.partner-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 28px;
}

.btn-consultation {
    display: inline-block;
    background: var(--red-primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-consultation:hover {
    background: var(--red-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.3);
}

.partner-video {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.partner-video-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.partner-video-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--gold);
    aspect-ratio: 16 / 9;
}

.partner-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.custom-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    /* slight padding to visually center the play triangle */
    padding-left: 4px;
}

.custom-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.custom-play-btn svg {
    width: 28px;
    height: 28px;
    fill: var(--navy-primary, #1e3a5f);
    stroke: var(--navy-primary, #1e3a5f);
}

@media (max-width: 768px) {
    .partner-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 80px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.15) 0%, transparent 70%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

/* ============================================
   SECTIONS (generic)
   ============================================ */
.section {
    padding: 80px 0;
}

.section--gray {
    background: #F0EBE5;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-header .accent-line {
    width: 60px;
    height: 3px;
    background: var(--red-primary);
    margin: 16px auto 0;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 16px auto 0;
}

/* ============================================
   FEATURED PROPERTIES / VACANCY CARDS
   ============================================ */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.property-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.property-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.property-card__img {
    position: relative;
    height: 220px;
    min-height: 220px;
    overflow: hidden;
}

.property-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.property-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--red-primary);
    color: #fff;
    padding: 4px 14px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property-card__body {
    padding: 22px;
}

.property-card__price {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--red-primary);
    margin-bottom: 4px;
}

.property-card__price span {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}

.property-card__title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.property-card__address {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.property-card__meta {
    display: flex;
    gap: 16px;
    padding-top: 14px;
    border-top: 1px solid #eee;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.property-card__meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.property-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.feature-tag {
    background: var(--off-white);
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    display: block;
    height: 100%;
    background: #fff;
    padding: 32px;
    border-radius: 6px;
    border-left: 4px solid var(--red-primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card__icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.service-card h3 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ============================================
   TEAM GRID
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
}

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

.team-card__img {
    width: 160px;
    height: 160px;
    min-width: 160px;
    min-height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 4px solid var(--red-primary);
}

.team-card h3 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--red-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 32px;
    position: relative;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--charcoal);
    padding: 16px 40px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: var(--transition);
}

.btn-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ============================================
   BOOKING / SCHEDULING PAGE
   ============================================ */
.booking-section {
    padding: 60px 0 80px;
    background: var(--off-white);
}

.booking-title {
    text-align: center;
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-style: italic;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    align-items: start;
}

/* -- Consultation Type Cards -- */
.booking-types {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: stretch;
    justify-content: center;
}

.booking-type-card {
    background: #fff;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    padding: 36px 28px;
    cursor: pointer;
    transition: var(--transition);
    border-left: 4px solid transparent;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-type-card:hover {
    border-color: #CBD5E1;
    box-shadow: var(--shadow-sm);
}

.booking-type-card.active {
    border-left-color: var(--gold);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.booking-type-icon {
    width: 44px;
    height: 44px;
    background: var(--off-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-primary);
    margin-bottom: 16px;
}

.booking-type-card.active .booking-type-icon {
    background: var(--red-primary);
    color: #fff;
}

.booking-type-card h3 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.booking-type-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* -- Calendar Widget -- */
.booking-calendar {
    background: var(--charcoal);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.calendar-header {
    padding: 28px 24px 20px;
    text-align: center;
}

.calendar-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    filter: brightness(0) invert(1);
}

.calendar-brand {
    color: #fff;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.calendar-month-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #fff;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.cal-nav-btn {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.cal-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 0 16px 20px;
    gap: 0;
}

.cal-day-header {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 0;
}

#cal-days {
    display: contents;
}

.cal-day {
    text-align: center;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    cursor: pointer;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2px auto;
    transition: var(--transition);
}

.cal-day:hover:not(.disabled):not(.empty) {
    background: rgba(74, 144, 217, 0.3);
}

.cal-day.selected {
    background: var(--gold);
    color: #fff;
    font-weight: 700;
}

.cal-day.disabled {
    color: rgba(255, 255, 255, 0.2);
    cursor: default;
}

.cal-day.empty {
    cursor: default;
}

/* -- Right: Booking Details -- */
.booking-details {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid #E2E8F0;
}

.booking-detail-group {
    margin-bottom: 20px;
}

.booking-detail-group strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.booking-detail-group p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.duration-toggle {
    display: flex;
    gap: 0;
    border: 1.5px solid #E2E8F0;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 6px;
}

.duration-btn {
    flex: 1;
    padding: 8px 16px;
    border: none;
    background: #fff;
    color: var(--text-muted);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.duration-btn.active {
    background: var(--gold);
    color: #fff;
}

.duration-btn:first-child {
    border-right: 1.5px solid #E2E8F0;
}

.time-showing {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.timezone-label {
    font-size: 0.78rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.time-slot-btn {
    width: 100%;
    padding: 10px;
    border: 1.5px solid #E2E8F0;
    border-radius: 6px;
    background: #fff;
    color: var(--text-dark);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.time-slot-btn:hover {
    border-color: var(--gold);
    background: rgba(74, 144, 217, 0.05);
}

.time-slot-btn.active {
    background: var(--red-primary);
    color: #fff;
    border-color: var(--red-primary);
}

/* -- Step Layout -- */
.booking-step {
    display: block;
}

.booking-step-2 {
    display: block;
}

/* -- Booking Form Panel (Step 2) -- */
.booking-form-panel {
    background: #fff;
    border-radius: 12px;
    padding: 36px 40px;
    border: 1px solid #E2E8F0;
}

.booking-form-panel h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.booking-form-datetime {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.booking-form-location {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.booking-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-form-group {
    margin-bottom: 16px;
}

.booking-form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.booking-form-group input,
.booking-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #D1D9E6;
    border-radius: 6px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: #fff;
    transition: var(--transition);
}

.booking-form-group input:focus,
.booking-form-group textarea:focus {
    outline: none;
    border-color: var(--red-primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.08);
}

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

.booking-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.btn-booking-back {
    background: #fff;
    color: var(--text-dark);
    border: 1.5px solid #D1D9E6;
    padding: 10px 24px;
    border-radius: 6px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-booking-back:hover {
    border-color: var(--red-primary);
    color: var(--red-primary);
}

.btn-booking-confirm {
    background: var(--red-primary);
    color: #fff;
    border: none;
    padding: 10px 32px;
    border-radius: 6px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-booking-confirm:hover {
    background: var(--red-accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

@media (max-width: 900px) {
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .booking-step {
        grid-template-columns: 1fr;
        grid-column: auto;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-intro {
    padding: 60px 0 40px;
    background: var(--off-white);
    text-align: center;
}

.contact-intro h1 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.contact-intro p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 60px 0 80px;
    background: var(--off-white);
}

.contact-card {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 48px 56px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-card h2 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-subtitle {
    text-align: center;
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 36px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #D1D9E6;
    border-radius: 6px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: #F8FAFC;
    transition: var(--transition);
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: var(--red-primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.08);
    background: #fff;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #94A3B8;
}

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

.btn-contact-submit {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--red-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-contact-submit:hover {
    background: var(--red-accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.3);
}

.contact-info-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-item {
    text-align: center;
}

.contact-info-icon {
    color: var(--red-primary);
    margin-bottom: 10px;
}

.contact-info-item strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-info-item p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

@media (max-width: 600px) {
    .contact-card {
        padding: 32px 24px;
    }

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

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

/* ============================================
   FORMS
   ============================================ */
.form-section {
    padding: 80px 0;
}

.form-card {
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.form-card h2 {
    text-align: center;
    margin-bottom: 8px;
}

.form-card>p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D5CFC7;
    border-radius: var(--radius);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--red-primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.15);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--red-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--red-accent);
}

.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-weight: 500;
}

.alert--success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
}

.alert--error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #FFCDD2;
}

/* ============================================
   FILTER BAR
   ============================================ */
.filter-bar {
    background: #fff;
    padding: 24px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 36px;
}

.filter-bar form {
    display: flex;
    gap: 14px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.filter-bar .form-group {
    flex: 1;
    min-width: 160px;
    margin-bottom: 0;
}

.filter-bar .form-group label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.filter-bar .form-group input,
.filter-bar .form-group select {
    padding: 10px 14px;
    font-size: 0.9rem;
}

.btn-filter {
    padding: 10px 28px;
    background: var(--red-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-filter:hover {
    background: var(--red-accent);
}

/* ============================================
   PORTAL CARDS (Tenants/Owners pages)
   ============================================ */
.portal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.portal-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: 6px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.portal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--red-primary);
}

.portal-card__icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    margin: 0 auto 18px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--red-primary);
    transition: var(--transition);
    flex-shrink: 0;
}

.portal-card:hover .portal-card__icon {
    background: var(--red-primary);
    color: #fff;
}

.portal-card h3 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

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

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: var(--charcoal);
    padding: 28px 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(30, 58, 95, 0.3) 100%);
}

.page-header h1 {
    font-size: 1.6rem;
    color: #fff;
    position: relative;
}

.page-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    margin-top: 4px;
    position: relative;
}

.page-header .accent-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin-top: 10px;
    position: relative;
}

/* ============================================
   VACANCY DETAIL
   ============================================ */
.detail-hero {
    height: 400px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

/* ============================================
   AUTH OVERLAY WIDGET
   ============================================ */
.auth-overlay {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 360px;
    z-index: 10;
}

.auth-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.auth-toggle-group {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 4px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-toggle-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.auth-toggle-btn.active {
    background: var(--red-primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.4);
}

.auth-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 0;
    color: #fff;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.auth-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.auth-input:focus {
    outline: none;
    border-bottom-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    padding-left: 8px;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.forgot-password {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.forgot-password:hover {
    color: #fff;
}

.btn-auth-submit {
    width: 100%;
    background: var(--red-primary);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 25px;
    /* Pill shape */
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.btn-auth-submit:hover {
    background: var(--red-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.4);
}

.auth-switch-text {
    text-align: center;
    margin-top: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.auth-switch-text a {
    color: var(--gold);
    font-weight: 600;
}

@media (max-width: 768px) {
    .auth-overlay {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        margin-top: 20px;
        padding: 0 20px;
    }

    .hero {
        flex-direction: column;
        justify-content: center;
        padding-top: 80px;
        /* Space for navbar */
    }

    .hero-content {
        padding: 40px 0;
        text-align: center;
    }

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

.detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
}

.detail-content {
    padding: 48px 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.detail-sidebar {
    background: #fff;
    padding: 28px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.detail-sidebar .price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--red-primary);
    font-weight: 800;
}

.detail-sidebar .price span {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.6);
    padding: 56px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-left: 40px;
}

.footer h4 {
    color: #fff;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links a {
    display: block;
    padding: 4px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    text-align: center;
    font-size: 0.82rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 16px;
}

.mt-4 {
    margin-top: 32px;
}

.mb-4 {
    margin-bottom: 32px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    border: 2px solid var(--red-primary);
    color: var(--red-primary);
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--red-primary);
    color: #fff;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-in:nth-child(1) {
    animation-delay: 0.05s;
}

.animate-in:nth-child(2) {
    animation-delay: 0.1s;
}

.animate-in:nth-child(3) {
    animation-delay: 0.15s;
}

.animate-in:nth-child(4) {
    animation-delay: 0.2s;
}

.animate-in:nth-child(5) {
    animation-delay: 0.25s;
}

.animate-in:nth-child(6) {
    animation-delay: 0.3s;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.faq-title {
    text-align: center;
    font-size: 3.2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 800;
}

.faq-list {
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: #fff;
    border: none;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f8f9fa;
    color: var(--red-primary);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--red-primary);
    width: 20px;
    height: 20px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ============================================
   CONTACT US SECTION
   ============================================ */
.contact-us-section {
    padding: 60px 0 80px;
    background: #fff;
}

.contact-us-title {
    text-align: center;
    font-size: 3.2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 800;
}

.contact-us-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
    overflow: hidden;
}

/* ============================================
   ABOUT PAGE REFRESH
   ============================================ */
.about-intro {
    padding: 80px 0 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.section-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-split {
    padding: 60px 0;
}

.about-split.bg-light {
    background-color: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-grid.reverse .about-image {
    order: 2;
}

.about-grid.reverse .about-content {
    order: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
    width: 100%;
}

.about-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-list {
    list-style: disc;
    padding-left: 20px;
    margin-top: 16px;
    margin-bottom: 24px;
}

.about-list li {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--navy-primary);
    color: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gold);
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.about-list-simple {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list-simple li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.about-list-simple li::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid.reverse .about-image {
        order: -1;
    }

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



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

.contact-us-info {
    background: #fff;
    padding: 40px;
    border-right: 1px solid #eee;
}

.contact-info-group {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-info-group:last-child {
    margin-bottom: 0;
}

.contact-icon-wrapper {
    width: 40px;
    height: 40px;
    background: rgba(74, 144, 217, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-primary);
    flex-shrink: 0;
}

.contact-info-group h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-info-group p,
.contact-info-group a {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    text-decoration: none;
    margin: 0;
}

.contact-us-form {
    padding: 40px;
    background: #fff;
}

.contact-us-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: #fafafa;
    transition: var(--transition);
}

.contact-us-form .form-control:focus {
    outline: none;
    border-color: var(--red-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.contact-us-form .form-group {
    margin-bottom: 20px;
}

.contact-us-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-us-form .btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--charcoal);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.contact-us-form .btn-submit:hover {
    background: var(--text-dark);
}

@media (max-width: 900px) {
    .contact-us-grid {
        grid-template-columns: 1fr;
    }

    .contact-us-info {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.6rem;
    }

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

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

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

    .qa-row {
        flex-direction: column;
    }

    .qa-label {
        min-width: auto;
        padding: 16px 24px;
    }

    .qa-items {
        flex-wrap: wrap;
    }
}

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

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 16px;
        box-shadow: var(--shadow-lg);
    }

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

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

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

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

    .form-card {
        padding: 28px 20px;
    }

    .filter-bar form {
        flex-direction: column;
    }
}

/* Team Profiles on About Page */
.about-team-profiles {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    /* Center them in the column */
}

.team-profile-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
    width: 100%;
    max-width: 400px;
    min-height: 90px;
    transition: var(--transition);
}

.team-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.team-profile-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.profile-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.profile-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Utility for transparent images */
.img-transparent {
    box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent !important;
}

/* ============================================
   TIME SLOTS (New)
   ============================================ */
.time-slots {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 8px;
    margin-top: 15px;
}

/* Scrollbar styling */
.time-slots::-webkit-scrollbar {
    width: 6px;
}

.time-slots::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.time-slots::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.time-slots::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.time-slot-btn {
    width: 100%;
    padding: 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot-btn:hover:not(.disabled):not(:disabled) {
    border-color: var(--gold);
    background: #fffcf5;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.time-slot-btn.active {
    background: var(--navy-primary);
    color: #fff;
    border-color: var(--navy-primary);
    font-weight: 600;
}

/* Disabled state */
.time-slot-btn.disabled,
.time-slot-btn:disabled {
    background: #f5f5f5;
    color: #bbb;
    border-color: #eee;
    cursor: not-allowed;
    opacity: 0.7;
}

/* ============================================
   SUCCESS POPUP (Premium / King Style)
   ============================================ */
.success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.success-popup-overlay.show {
    display: flex;
    opacity: 1;
}

.success-popup-content {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.95) translateY(10px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 450px;
    width: 90%;
    border: 1px solid rgba(10, 38, 71, 0.1);
    /* Subtle Navy Border */
    position: relative;
    overflow: hidden;
}

/* Gold decorative line at top */
.success-popup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #D4AF37, #F1D06E, #D4AF37);
}

.success-popup-overlay.show .success-popup-content {
    transform: scale(1) translateY(0);
}

.success-icon-container {
    width: 90px;
    height: 90px;
    background: #0A2647;
    /* Navy Blue Brand Color */
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    /* Gold Icon Color */
    font-size: 44px;
    box-shadow: 0 10px 25px rgba(10, 38, 71, 0.3);
    border: 4px solid #fff;
    outline: 4px solid rgba(212, 175, 55, 0.3);
    /* Gold outline effect */
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.success-icon-container i {
    color: #D4AF37;
    /* Gold Checkmark */
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    80% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

.success-popup-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0A2647;
    /* Navy Blue */
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.success-popup-message {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 400;
}

.success-popup-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.success-popup-message {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}