/* 
========================================================================
   BDS ESTATE - Premium Luxury Real Estate Design System
   Representing Mr. K K Singh - Gurugram Real Estate Consultant
========================================================================
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset and Core Variables */
:root {
    --navy-deep: #8B0000;
    --navy-charcoal: #8B0000;
    --gold-accent: #C9A84C;
    --gold-accent-hover: #B8963B;
    --gold-pale: #FFF5F5;
    --bg-light: #F9FAFB;
    --bg-dark-accent: #FFFFFF;
    --white: #FFFFFF;
    --text-dark: #111827;
    --text-muted: #4B5563;
    --text-light: #F9FAFB;
    --text-muted-light: #9CA3AF;
    
    --border-color: rgba(139, 0, 0, 0.08);
    --border-color-light: rgba(255, 255, 255, 0.15);
    
    --shadow-premium: 0 15px 35px rgba(139, 0, 0, 0.04);
    --shadow-premium-hover: 0 25px 50px rgba(139, 0, 0, 0.08);
    --shadow-gold: 0 10px 25px rgba(201, 168, 76, 0.15);
    
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-bg-dark: rgba(139, 0, 0, 0.9);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    
    --font-serif: 'Montserrat', sans-serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --container-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

input, select, textarea, button, option {
    font-family: var(--font-sans);
}

/* Typography Utilities */
h1, h2, h3, h4, .font-serif {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

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

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

/* Common Layout Scaffolding */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section-padding {
    padding: 5rem 0;
}

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

.section-header .tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-header h2 {
    color: var(--navy-deep);
    margin-bottom: 1.25rem;
}

.section-header p {
    font-size: 1.05rem;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-solid {
    background-color: var(--navy-deep);
    color: var(--white);
}

.btn-solid:hover {
    background-color: var(--gold-accent);
    color: var(--navy-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 180, 131, 0.15);
}

.btn-gold {
    background-color: var(--gold-accent);
    color: var(--navy-deep);
}

.btn-gold:hover {
    background-color: var(--navy-deep);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-premium-hover);
}

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

.btn-outline:hover {
    background-color: var(--navy-deep);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-outline-white:hover {
    border-color: var(--gold-accent);
    background-color: var(--gold-accent);
    color: var(--navy-deep);
    transform: translateY(-2px);
}

/* Navigation Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

header.scrolled {
    height: 70px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-premium);
}

/* Light soothing glassmorph transparent header when at top of landing */
header.header-transparent {
    background-color: rgba(139, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

header.header-transparent .logo {
    color: var(--white);
}

header.header-transparent .logo svg {
    fill: var(--gold-accent);
}

header.header-transparent .nav-links a {
    color: rgba(255, 255, 255, 0.8);
}

header.header-transparent .nav-links a.active,
header.header-transparent .nav-links a:hover {
    color: var(--white);
}

header.header-transparent .nav-icon-btn {
    color: var(--white);
}

header.header-transparent .mobile-menu-toggle {
    color: var(--white);
}

header.header-transparent .btn-consult-nav {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
}

header.header-transparent .btn-consult-nav:hover {
    border-color: var(--gold-accent);
    background-color: var(--gold-accent);
    color: var(--navy-deep);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--navy-deep);
}

.logo svg {
    fill: var(--gold-accent);
    width: 24px;
    height: 24px;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    background-color: var(--white);
    padding: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--gold-accent);
    transition: var(--transition-fast);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy-deep);
    opacity: 0.8;
    transition: var(--transition-fast);
    padding: 0.5rem;
}

.nav-icon-btn:hover {
    opacity: 1;
    color: var(--gold-accent);
    transform: scale(1.05);
}

.nav-icon-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.btn-consult-nav {
    padding: 0.65rem 1.4rem;
    font-size: 0.75rem;
    background-color: var(--navy-deep);
    color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--navy-deep);
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    margin: 5px 0;
    transition: var(--transition-fast);
}

/* Single Page Container & State routing */
.page-container {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    padding-top: var(--header-height);
}

.page-container.active {
    display: block;
}

.page-container.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* SPA Transitions overlay */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--navy-deep);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

#page-loader.active {
    opacity: 1;
    pointer-events: all;
}

.loader-logo {
    color: var(--gold-accent);
    font-family: var(--font-serif);
    font-size: 2rem;
    letter-spacing: 0.1em;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.02); }
}

/* 
========================================================================
   PAGE 1: LANDING / HOME
========================================================================
*/

/* Scroll-Driven Gate Opening Container */
.scroll-gate-container {
    position: relative;
    height: 250vh; /* Scroll scrub length */
    background-color: var(--navy-deep);
    margin-top: calc(-1 * var(--header-height));
    z-index: 10;
}

.scroll-gate-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#gate-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}

.gate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 2;
    transition: opacity 0.3s ease;
}

/* Landing Page Centered branding shown initially */
.scroll-gate-branding {
    position: absolute;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.scroll-gate-branding .branding-tag {
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.scroll-gate-branding h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.scroll-gate-branding p {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-serif);
}

/* Mouse wheel indicator */
.scroll-indicator-mouse {
    margin-top: 3.5rem;
    display: flex;
    justify-content: center;
}

.scroll-indicator-mouse .mouse-wheel {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator-mouse .mouse-wheel::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--gold-accent);
    border-radius: 2px;
    animation: scrollMouse 1.8s infinite ease-in-out;
}

@keyframes scrollMouse {
    0% { opacity: 0; transform: translate(-50%, 0); }
    40% { opacity: 1; }
    80% { opacity: 0; transform: translate(-50%, 8px); }
    100% { opacity: 0; }
}

/* Hero Content overlay that fades in once gate is open */
.scroll-hero-content {
    position: absolute;
    z-index: 4;
    color: var(--white);
    max-width: 900px;
    width: 100%;
    padding: 0 2rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.scroll-hero-content.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.scroll-hero-content .hero-tag {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-accent);
    font-weight: 600;
    margin-bottom: 1.25rem;
    display: block;
}

.scroll-hero-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.scroll-hero-content .hero-subhead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.scroll-hero-content .hero-ctas {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.scroll-hero-content .hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.scroll-hero-content .hero-stat-item h3 {
    font-size: 2.2rem;
    color: var(--gold-accent);
    margin-bottom: 0.25rem;
}

.scroll-hero-content .hero-stat-item p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
}

/* Expertise Section */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.expertise-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--navy-deep);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium-hover);
    border-color: transparent;
}

.expertise-card:hover::before {
    transform: scaleX(1);
    background-color: var(--gold-accent);
}

.expertise-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.expertise-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--navy-deep);
    stroke-width: 1.5;
    fill: none;
}

.expertise-card:hover .expertise-icon {
    background-color: var(--gold-accent);
}

.expertise-card:hover .expertise-icon svg {
    stroke: var(--navy-deep);
}

.expertise-card h3 {
    font-size: 1.5rem;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

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

/* Property Grid Components */
.property-previews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
}

.property-previews-header .section-header {
    text-align: left;
    margin: 0;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--navy-deep);
    padding-bottom: 4px;
    border-bottom: 1.5px solid var(--gold-accent);
}

.link-arrow svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: var(--transition-fast);
}

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

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.property-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium-hover);
    border-color: transparent;
}

.property-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.property-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background-color: var(--gold-accent);
    color: var(--navy-deep);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.75rem;
    border-radius: 2px;
}

.property-badge.new {
    background-color: var(--navy-deep);
    color: var(--white);
}

.property-tags {
    position: absolute;
    bottom: 1rem;
    left: 1.25rem;
    display: flex;
    gap: 0.5rem;
}

.property-tag {
    background-color: rgba(139, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
}

.property-details-container {
    padding: 1.75rem;
    border-bottom: 1px solid var(--border-color);
}

.property-details-container h4 {
    font-size: 1.35rem;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.property-location svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.property-financials {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.75rem;
    background-color: var(--bg-light);
}

.property-financials .price-label,
.property-financials .area-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.15rem;
}

.property-financials .price-value {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-deep);
}

.property-financials .area-value {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--navy-deep);
}

.property-card-action {
    display: block;
    width: 100%;
    padding: 1.1rem;
    text-align: center;
    background-color: var(--white);
    color: var(--navy-deep);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-top: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.property-card:hover .property-card-action {
    background-color: var(--navy-deep);
    color: var(--white);
}

/* Why Choose Us Section */
.advantage-section {
    background-color: var(--bg-light);
}

.advantage-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.advantage-content .tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.advantage-content h2 {
    color: var(--navy-deep);
    margin-bottom: 2rem;
}

.advantage-content > p {
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.advantage-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.advantage-item {
    display: flex;
    gap: 1.25rem;
}

.advantage-badge {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-premium);
}

.advantage-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--navy-deep);
    stroke-width: 1.5;
    fill: none;
}

.advantage-text h4 {
    font-size: 1.25rem;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

.advantage-visual {
    position: relative;
}

.advantage-image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-premium-hover);
    background-color: var(--white);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3rem;
    display: block;
    transition: var(--transition-smooth);
}

.advantage-image-wrapper:hover img {
    transform: scale(1.05);
}

.advantage-floating-badge {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background-color: var(--navy-deep);
    color: var(--white);
    padding: 2.2rem;
    border-left: 4px solid var(--gold-accent);
    box-shadow: 0 20px 45px rgba(139, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 160px;
}

.advantage-floating-badge h3 {
    font-size: 2.5rem;
    color: var(--gold-accent);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.advantage-floating-badge p {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Call to Action Banner */
.cta-banner-section {
    position: relative;
    background-color: var(--navy-deep);
    color: var(--white);
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/penthouse_interior.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(139, 0, 0, 0.9) 0%, rgba(139, 0, 0, 0.98) 100%);
    z-index: 2;
}

.cta-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(212, 180, 131, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem auto;
}

.cta-banner-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold-accent);
    stroke-width: 1.25;
    fill: none;
}

.cta-banner-content h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-banner-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.cta-banner-note {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-accent);
    margin-top: 1.75rem;
    display: block;
    opacity: 0.8;
}

/* 
========================================================================
   PAGE 2: PROPERTIES EXPLORATION
========================================================================
*/

.properties-hero {
    background-color: var(--bg-light);
    padding: 5rem 0 3.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.properties-hero h1 {
    color: var(--navy-deep);
    margin-bottom: 0.75rem;
}

.properties-hero p {
    font-size: 1.05rem;
    max-width: 600px;
}

/* Advanced Filter Bar */
.filter-bar-container {
    margin-top: 3rem;
}

.filter-bar {
    background-color: var(--white);
    box-shadow: var(--shadow-premium-hover);
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 0.8fr;
    gap: 1.5rem;
    align-items: flex-end;
    border: 1px solid var(--border-color);
}

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

.filter-group label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--navy-deep);
}

.filter-select-wrapper {
    position: relative;
}

.filter-select-wrapper svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    stroke: var(--navy-deep);
    stroke-width: 1.5;
    fill: none;
    pointer-events: none;
}

.filter-select-wrapper select {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.8rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-dark);
    border-radius: 0;
    appearance: none;
    outline: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-select-wrapper select:focus {
    border-color: var(--gold-accent);
    background-color: var(--white);
}

.btn-filter-search {
    width: 100%;
    padding: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}

.btn-filter-search svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* Listings Sub-navigation & Header */
.listings-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.listings-title h3 {
    font-size: 1.8rem;
    color: var(--navy-deep);
}

.listings-tabs {
    display: flex;
    background-color: var(--bg-light);
    padding: 4px;
    border: 1px solid var(--border-color);
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.6rem 1.4rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.tab-btn.active {
    background-color: var(--navy-deep);
    color: var(--white);
}

.tab-btn:hover:not(.active) {
    color: var(--navy-deep);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 4.5rem;
}

.page-num, .page-nav {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.page-num.active {
    background-color: var(--navy-deep);
    color: var(--white);
    border-color: var(--navy-deep);
}

.page-num:hover:not(.active),
.page-nav:hover {
    border-color: var(--gold-accent);
    color: var(--navy-deep);
}

.page-nav svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.page-dots {
    color: var(--text-muted);
    padding: 0 0.5rem;
}

/* Consultation Banner */
.consult-banner {
    background: linear-gradient(135deg, var(--gold-pale) 0%, #FAF6F0 100%);
    border: 1px solid rgba(212, 180, 131, 0.25);
    padding: 3.5rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 6rem;
}

.consult-banner-portrait {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-premium);
}

.consult-banner-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consult-banner-text .tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-accent-hover);
    font-weight: 600;
    margin-bottom: 0.25rem;
    display: block;
}

.consult-banner-text h3 {
    font-size: 2rem;
    color: var(--navy-deep);
    margin-bottom: 0.75rem;
}

.consult-banner-text p {
    font-size: 0.95rem;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.consult-banner-ctas {
    display: flex;
    gap: 1rem;
}

.consult-banner-ctas .btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.75rem;
}

.consult-banner-ctas .btn-outline {
    border-color: var(--navy-deep);
}

/* 
========================================================================
   PAGE 3: ACHIEVEMENTS
========================================================================
*/

/* Achievements Hero */
.achievements-hero {
    position: relative;
    height: 450px;
    background-color: var(--navy-deep);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.achievements-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.achievements-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(139, 0, 0, 0.7) 0%, var(--navy-deep) 100%);
    z-index: 2;
}

.achievements-hero .container {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
}

.achievements-hero .tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-accent);
    margin-bottom: 1rem;
    display: block;
}

.achievements-hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.achievements-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 300;
}

/* Milestone Grid Layout (Highly custom layout similar to achieve.png) */
.milestones-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

/* Custom Milestone Cards */
.milestone-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.milestone-card-dark {
    background-color: var(--navy-deep);
    color: var(--white);
    border-color: transparent;
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.milestone-card-dark .gold-medal-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(212, 180, 131, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.milestone-card-dark .gold-medal-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold-accent);
    stroke-width: 1.25;
    fill: none;
}

.milestone-card-dark h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.milestone-card-dark p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.milestone-mastery {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    width: 100%;
}

.milestone-mastery .number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-accent);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.milestone-mastery .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

/* Horizontal milestone layout card */
.milestone-card-horizontal {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
}

.milestone-card-horizontal.reversed {
    grid-template-columns: 0.8fr 1.2fr;
}

.milestone-card-img {
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

.milestone-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.milestone-card-body {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.milestone-card-body .tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-accent-hover);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.milestone-card-body h3 {
    font-size: 1.8rem;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.milestone-card-body p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.milestone-specs {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.spec-item .label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    display: block;
}

.spec-item .val {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy-deep);
}

.milestone-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.milestone-tag {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 0.3rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--navy-deep);
}

/* Mr K K Singh Direct Consultation Banner */
.personal-quote-section {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.quote-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4.5rem;
    align-items: center;
}

.quote-portrait {
    width: 250px;
    height: 330px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.quote-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-content .tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-accent-hover);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.quote-content h2 {
    color: var(--navy-deep);
    margin-bottom: 1.5rem;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
}

.quote-text::before {
    content: '“';
    font-size: 4rem;
    color: var(--gold-accent);
    position: absolute;
    left: -2rem;
    top: -1.5rem;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.quote-contact-links {
    display: flex;
    gap: 3rem;
}

.quote-contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy-deep);
}

.quote-contact-link svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold-accent);
    stroke-width: 1.5;
    fill: none;
}

/* Credentials Clean Grid & Cards */
.credentials-clean-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.credential-clean-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.credential-clean-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--gold-accent);
}

.credential-clean-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium-hover);
    border-color: rgba(139, 0, 0, 0.2);
}

.credential-clean-card h3 {
    font-size: 1.5rem;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

.credential-org {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold-accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.credential-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* YouTube Premium Channel Banner */
.youtube-channel-banner {
    position: relative;
    background: linear-gradient(to right, rgba(15, 15, 15, 0.9) 30%, rgba(15, 15, 15, 0.4) 100%), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=80') no-repeat center center;
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 3.5rem;
    color: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-premium-hover);
}

.yt-banner-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at right, rgba(139, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.yt-channel-info {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.yt-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.yt-channel-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--white);
    object-fit: cover;
    background-color: var(--white);
    box-shadow: var(--shadow-premium);
}

.yt-verified-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: #606060;
    color: var(--white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0f0f0f;
}

.yt-verified-badge svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.yt-channel-details {
    flex-grow: 1;
}

.yt-channel-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-accent);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.yt-channel-details h2 {
    font-size: 2.2rem;
    font-family: var(--font-serif);
    color: var(--white);
    margin-bottom: 0.25rem;
}

.yt-handle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.25rem;
}

.yt-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 750px;
    margin-bottom: 2rem;
}

.btn-yt-subscribe {
    display: inline-flex;
    align-items: center;
    background-color: #FF0000; /* YouTube Red */
    color: var(--white);
    border: none;
    padding: 0.9rem 1.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-yt-subscribe:hover {
    background-color: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
    color: var(--white);
}

@media (max-width: 900px) {
    .yt-channel-info {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .youtube-channel-banner {
        padding: 2.5rem;
    }
    
    .yt-description {
        margin: 0 auto 2rem auto;
    }
}

/* Accreditations & Honors */
.accreditations-section {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.accreditation-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 2.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.accreditation-item:hover {
    background-color: var(--white);
    border-color: var(--gold-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
}

.accreditation-icon-box {
    width: 54px;
    height: 54px;
    background-color: var(--navy-deep);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accreditation-icon-box svg {
    width: 24px;
    height: 24px;
    fill: var(--gold-accent);
}

.accreditation-item span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--navy-deep);
}

/* 
========================================================================
   PAGE 4: CONTACT & APPOINTMENT
========================================================================
*/

/* Contact Connect Hero */
.contact-hero {
    background-color: var(--bg-light);
    padding: 6rem 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.contact-hero-content h1 {
    color: var(--navy-deep);
    margin-bottom: 1.5rem;
}

.contact-hero-content p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.contact-consultant-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: var(--shadow-premium);
}

.contact-consultant-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
}

.contact-consultant-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-consultant-info h4 {
    font-size: 1.15rem;
    color: var(--navy-deep);
    font-weight: 600;
}

.contact-consultant-info p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold-accent-hover);
    margin: 0;
}

.contact-hero-visual {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-premium-hover);
}

.contact-hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    min-height: 380px;
}

/* Contact Grid Form & Scheduling */
.contact-grid {
    display: flex;
    justify-content: center;
}

.contact-form-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 4rem 3.5rem;
    box-shadow: var(--shadow-premium);
    width: 100%;
    max-width: 700px;
}

.card-header-group {
    margin-bottom: 3rem;
}

.card-header-group h3 {
    font-size: 1.8rem;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

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

/* Custom Inquiry Form Fields */
.form-grid {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

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

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

.form-group-custom label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--navy-deep);
}

.form-group-custom input,
.form-group-custom select,
.form-group-custom textarea {
    padding: 0.9rem 1.25rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-dark);
    border-radius: 0;
    outline: none;
    transition: var(--transition-fast);
    width: 100%;
}

.form-group-custom select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230D1B2A'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 1.25rem) center;
    background-size: 16px;
    padding-right: 3rem;
}

.form-group-custom input:focus,
.form-group-custom select:focus,
.form-group-custom textarea:focus {
    border-color: var(--gold-accent);
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 180, 131, 0.05);
}

.form-group-custom textarea {
    resize: none;
    height: 120px;
}

.btn-form-submit {
    margin-top: 1rem;
    padding: 1.1rem;
}

/* Scheduler / Calendar Layout */
.scheduler-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.calendar-month {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-deep);
}

.calendar-navs {
    display: flex;
    gap: 0.25rem;
}

.calendar-nav-btn {
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--navy-deep);
    transition: var(--transition-fast);
}

.calendar-nav-btn:hover {
    color: var(--gold-accent);
}

.calendar-nav-btn svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 2px;
}

.calendar-day-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    background-color: var(--white);
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.calendar-day-cell.inactive {
    color: var(--text-muted-light);
    background-color: transparent;
    pointer-events: none;
}

.calendar-day-cell:hover:not(.inactive) {
    background-color: var(--gold-pale);
    color: var(--navy-deep);
}

.calendar-day-cell.selected {
    background-color: var(--navy-deep);
    color: var(--white);
    font-weight: 600;
}

/* Time Picker Column */
.time-picker-column {
    border-left: 1px solid var(--border-color);
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
}

.time-picker-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.time-slots-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.time-slot-chip {
    padding: 0.75rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.time-slot-chip:hover {
    border-color: var(--gold-accent);
    color: var(--navy-deep);
}

.time-slot-chip.selected {
    background-color: var(--gold-accent);
    color: var(--navy-deep);
    border-color: var(--gold-accent);
    font-weight: 600;
}

.btn-booking-submit {
    width: 100%;
}

/* Office Details & Embedded Map Section */
.office-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.office-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 5rem;
    align-items: center;
}

.office-info h2 {
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.office-info > p {
    font-size: 1.05rem;
    margin-bottom: 3.5rem;
}

.office-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2.5rem;
}

.office-detail-item {
    display: flex;
    gap: 1.25rem;
}

.office-detail-icon {
    width: 44px;
    height: 44px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-premium);
}

.office-detail-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--navy-deep);
    stroke-width: 1.5;
    fill: none;
}

.office-detail-text h4 {
    font-size: 1.15rem;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.office-detail-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.office-detail-text a.whatsapp-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #25D366; /* Green accent for WhatsApp */
    display: inline-block;
    margin-top: 0.25rem;
}

.office-detail-text a.whatsapp-link:hover {
    color: #128C7E;
}

/* Map Container with Dark Overlay similar to contact.png */
.map-visual-container {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-premium-hover);
    border: 1px solid var(--border-color);
    height: 450px;
}

.map-visual-container img.map-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Custom map design overlay */
.map-overlay-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(139, 0, 0, 0.4);
    pointer-events: none;
}

.map-marker-pin {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-marker-pin svg {
    width: 32px;
    height: 32px;
    fill: var(--navy-deep);
    stroke: var(--white);
    stroke-width: 1.5;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.map-marker-tooltip {
    background-color: var(--white);
    color: var(--navy-deep);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.6rem 1.2rem;
    border-radius: 2px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    margin-top: 0.5rem;
    white-space: nowrap;
    border: 1.5px solid var(--gold-accent);
}

/* 
========================================================================
   FOOTER SECTION
========================================================================
*/

footer {
    background-color: var(--navy-deep);
    color: var(--white);
    padding: 6rem 0 3rem 0;
    border-top: 1px solid var(--border-color-light);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4.5rem;
    border-bottom: 1px solid var(--border-color-light);
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: 1.25rem;
}

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

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-muted-light);
    transition: var(--transition-fast);
}

.footer-social-link:hover {
    background-color: var(--gold-accent);
    color: var(--navy-deep);
    border-color: var(--gold-accent);
}

.footer-social-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.footer-column h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--gold-accent);
    margin-bottom: 1.75rem;
}

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

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

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

.footer-newsletter h4 {
    margin-bottom: 1.25rem;
}

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

.newsletter-form-group {
    display: flex;
    border: 1px solid var(--border-color-light);
    background-color: rgba(255,255,255,0.02);
}

.newsletter-form-group input {
    flex: 1;
    background: none;
    border: none;
    padding: 0.9rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--white);
    outline: none;
}

.newsletter-form-group input::placeholder {
    color: var(--text-muted-light);
}

.newsletter-submit-btn {
    background: none;
    border: none;
    padding: 0 1.25rem;
    color: var(--gold-accent);
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-submit-btn:hover {
    color: var(--white);
    transform: scale(1.05);
}

.newsletter-submit-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted-light);
}

/* Floating WhatsApp Sticky Action */
.whatsapp-sticky {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-smooth);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-sticky:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-sticky svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Simulated Success Toast */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 10000;
    background-color: var(--navy-deep);
    border-left: 4px solid var(--gold-accent);
    color: var(--white);
    padding: 1.25rem 2rem;
    box-shadow: 0 20px 45px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.active {
    transform: translateX(0);
}

.toast-icon {
    color: var(--gold-accent);
    display: flex;
    align-items: center;
}

.toast-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.toast-text h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.toast-text p {
    font-size: 0.75rem;
    color: var(--text-muted-light);
    margin: 0;
}

/* 
========================================================================
   RESPONSIVE MEDIA QUERIES (Mobile-first logic styling)
========================================================================
*/

@media (max-width: 1024px) {
    :root {
        --container-width: 960px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-subhead {
        margin: 0 auto 2.5rem auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-visual {
        display: none; /* Hide visual sidebar on medium screen sizes */
    }
    
    .expertise-grid,
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantage-layout,
    .quote-layout,
    .contact-hero-layout,
    .office-layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .quote-portrait {
        width: 200px;
        height: 260px;
        margin: 0 auto;
    }
    
    .quote-content {
        text-align: center;
    }
    
    .quote-text::before {
        left: 0;
    }
    
    .quote-contact-links {
        justify-content: center;
    }
    
    .milestones-grid,
    .milestones-row-2 {
        grid-template-columns: 1fr;
    }
    
    .milestone-card-horizontal,
    .milestone-card-horizontal.reversed {
        grid-template-columns: 1fr;
    }
    
    .milestone-card-img {
        height: 250px;
    }
    
    .contact-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3.5rem 0;
    }
    
    header {
        background-color: var(--white);
    }
    
    .nav-links {
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: #8B0000;
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--gold-accent);
        box-shadow: var(--shadow-premium-hover);
        display: none;
        z-index: 1001;
    }
    
    .nav-links.active {
        display: flex;
        padding: 1.5rem 2rem;
    }
    
    .nav-links li {
        width: 100%;
        text-align: left;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: #FFFFFF !important;
    }
    
    .nav-links a.active,
    .nav-links a:hover {
        color: var(--gold-accent) !important;
    }
    
    .nav-links li:last-child a {
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-actions {
        display: none; /* Hide search & consult button on mobile header */
    }
    
    .filter-bar {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .listings-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .consult-banner {
        grid-template-columns: 1fr;
        padding: 2.2rem;
        text-align: center;
        gap: 2rem;
    }
    
    .consult-banner-portrait {
        margin: 0 auto;
    }
    
    .consult-banner-ctas {
        justify-content: center;
    }
    
    .scheduler-layout {
        grid-template-columns: 1fr;
    }
    
    .time-picker-column {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-left: 0;
        padding-top: 1.5rem;
    }
    
    .accreditations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .expertise-grid,
    .property-grid,
    .accreditations-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .hero-stats-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .contact-form-card,
    .scheduler-card {
        padding: 2.5rem 1.75rem;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .office-details-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ========================================================================
   PROPERTY DETAILS MODAL STYLING
======================================================================== */
.details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.details-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.details-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(139, 0, 0, 0.65);
    backdrop-filter: blur(8px);
}

.details-modal-container {
    position: relative;
    width: 95vw;
    max-width: 95vw;
    height: 95vh;
    max-height: 95vh;
    background-color: var(--white);
    box-shadow: 0 50px 100px rgba(139, 0, 0, 0.25);
    z-index: 2010;
    overflow-y: auto;
    transform: translateY(30px) scale(0.98);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.details-modal.active .details-modal-container {
    transform: translateY(0) scale(1);
}

.details-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(139, 0, 0, 0.05);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--navy-deep);
    z-index: 2020;
    transition: var(--transition-fast);
}

.details-modal-close:hover {
    background-color: var(--navy-deep);
    color: var(--white);
    transform: rotate(90deg);
}

.details-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.details-modal-content {
    padding: 3rem;
}

.details-modal-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
}

.details-modal-gallery {
    position: relative;
    height: 100%;
    min-height: 450px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.details-modal-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.details-modal-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: var(--gold-accent);
    color: var(--navy-deep);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.9rem;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.details-modal-info {
    display: flex;
    flex-direction: column;
}

.details-modal-info .modal-tag {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gold-accent);
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    display: block;
}

.details-modal-info h3 {
    font-size: 2.2rem;
    color: var(--navy-deep);
    margin-bottom: 0.75rem;
}

.details-modal-info .modal-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.details-modal-info .modal-location svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.modal-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.modal-spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.modal-spec-item .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.modal-spec-item .value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-deep);
}

#modal-prop-price {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    color: var(--navy-deep);
    font-weight: 700;
}

.modal-description {
    margin-bottom: 2rem;
}

.modal-description h4,
.modal-features h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--navy-deep);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.modal-description p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.modal-features {
    margin-bottom: 2.5rem;
}

.modal-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
}

.modal-features li::before {
    content: '•';
    position: absolute;
    left: 0.25rem;
    color: var(--gold-accent);
    font-size: 1.25rem;
    line-height: 1;
    top: -2px;
}

.modal-action-row {
    margin-top: auto;
}

.modal-action-row .btn {
    width: 100%;
    padding: 1.1rem;
}

/* Modal Responsive overrides */
@media (max-width: 900px) {
    .details-modal-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .details-modal-gallery {
        min-height: 300px;
        height: 300px;
    }
    
    .details-modal-content {
        padding: 2.5rem 1.75rem;
    }
}

/* 
========================================================================
   PAGE 5: BLOG (Latest Insights)
========================================================================
*/
.blog-hero {
    background-color: var(--navy-deep);
    color: var(--white);
    padding: 8rem 0 5rem 0;
    text-align: center;
}

.blog-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin: 1rem 0;
    font-family: var(--font-serif);
}

.blog-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.blog-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium-hover);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.blog-card-content h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: var(--font-serif);
}

.blog-card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-deep);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-read-more:hover {
    color: var(--gold-accent);
}

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

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

/* Coming Soon Empty State */
.coming-soon-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 6rem 2rem;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 2rem auto;
}
.coming-soon-empty-state svg.empty-state-icon {
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    stroke: var(--gold-accent);
}
.coming-soon-empty-state h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--navy-deep);
    margin-bottom: 1rem;
    font-weight: 500;
}
.coming-soon-empty-state p {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Featured Coming Soon Container */
.featured-coming-soon-container {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.featured-coming-soon-container p.coming-soon-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--navy-deep);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}
.featured-coming-soon-container .btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
}

/* Split Layout for Blog Details Modal */
.blog-modal-split {
    display: flex;
    flex-direction: row;
    overflow: hidden !important; /* Prevent the container itself from scrolling */
}

.blog-modal-media-col {
    width: 45%;
    height: 100%;
    background-color: #f7f7f7;
    border-right: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    box-sizing: border-box;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

#modal-blog-video-container {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
    border: 1px solid var(--border-color);
}

#modal-blog-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#modal-blog-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

.blog-modal-text-col {
    width: 55%;
    height: 100%;
    overflow-y: auto; /* Enable scrolling for the text side */
    padding: 4.5rem 4rem 3rem 3rem; /* Extra top/right padding for scroll and close btn */
    box-sizing: border-box;
}

.blog-modal-text-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Responsive Overrides for split modal on tablets/phones */
@media (max-width: 900px) {
    .blog-modal-split {
        flex-direction: column;
        overflow-y: auto !important; /* Allow the container to scroll on mobile */
    }
    
    .blog-modal-media-col {
        width: 100%;
        height: auto;
        min-height: 250px;
        padding: 1.5rem;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    #modal-blog-video-container {
        max-width: 100%;
    }
    
    #modal-blog-image-container {
        height: auto;
        max-height: 300px;
    }
    
    .blog-modal-text-col {
        width: 100%;
        height: auto;
        overflow-y: visible;
        padding: 4rem 1.5rem 2rem 1.5rem;
    }
}

/* Premium styling for Ask For Price buttons */
.btn-ask-price {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    min-height: 28px;
    line-height: 1;
    border: 1px solid var(--gold-accent) !important;
    color: var(--gold-accent) !important;
    background: transparent !important;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
    font-family: inherit;
    transition: var(--transition-fast) !important;
}

.btn-ask-price:hover {
    background-color: var(--gold-accent) !important;
    color: var(--navy-deep) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.2);
}
