/* ==========================================================================
   EthosStay Client Portal Premium Design System
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root[data-theme="dark"] {
    --bg-primary: #1C1613; /* Espresso Base */
    --bg-secondary: #27201C; /* Dark Clay Card Base */
    --bg-tertiary: #332B27; /* Muted Espresso Accent */
    --glass-bg: rgba(39, 32, 28, 0.85);
    --glass-border: rgba(194, 65, 12, 0.25);
    --glass-shadow: rgba(0, 0, 0, 0.4);
    
    --text-primary: #FAF8F5; /* Warm Sand light text */
    --text-secondary: #CBBFB5; /* Soft Muted Sand */
    --text-tertiary: #8A7B70; /* Espresso Gray */
    
    --accent-color: #E06D3B; /* Soft Terracotta */
    --accent-gradient: linear-gradient(135deg, #E06D3B 0%, #F18F63 100%);
    --accent-btn-bg: linear-gradient(135deg, #C2410C 0%, #E06D3B 100%);
    --accent-glow: rgba(224, 109, 59, 0.25);
    
    --violet-glow: rgba(224, 109, 59, 0.05);
    
    --success: #4E9F80;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #5B8296;

    --card-hover-bg: rgba(224, 109, 59, 0.05);
}

:root[data-theme="light"] {
    --bg-primary: #FAF8F5; /* Warm Sand Base */
    --bg-secondary: #FFFFFF; /* Pure White Card Base */
    --bg-tertiary: #F3ECE5; /* Soft Warm Sand accent */
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(194, 65, 12, 0.15); /* Terracotta tint */
    --glass-shadow: rgba(194, 65, 12, 0.04);
    
    --text-primary: #2C2520; /* Deep Warm Charcoal */
    --text-secondary: #5C524A; /* Soft Sand Charcoal */
    --text-tertiary: #9C8E84; /* Light Warm Gray */
    
    --accent-color: #C2410C; /* Terracotta Primary */
    --accent-gradient: linear-gradient(135deg, #C2410C 0%, #E06D3B 100%);
    --accent-btn-bg: linear-gradient(135deg, #C2410C 0%, #D75A22 100%);
    --accent-glow: rgba(194, 65, 12, 0.12);
    
    --violet-glow: rgba(194, 65, 12, 0.04);
    
    --success: #3E8E75; /* Soft Premium Sage */
    --warning: #D97706;
    --danger: #B91C1C;
    --info: #4A6B82;

    --card-hover-bg: rgba(194, 65, 12, 0.02);
}

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

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    position: relative;
    transition: background-color 0.4s ease, color 0.4s ease;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

/* Background Glowing Orbs Container */
.glow-orb-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Background Glowing Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
    transition: all 0.4s ease;
}
.glow-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(194, 65, 12, 0.08) 0%, rgba(194, 65, 12, 0) 70%);
    top: -150px;
    left: -100px;
}
.glow-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 109, 59, 0.08) 0%, rgba(224, 109, 59, 0) 70%);
    bottom: -150px;
    right: -100px;
}

/* Layout Elements */
.client-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

/* Glowing Top Header */
.client-header {
    background: rgba(10, 10, 20, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
.client-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.65rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
    text-decoration: none;
}

.brand-logo i {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
}

.text-gold {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.client-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

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

/* Soft Claymorphic Panels */
.glass-panel {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8), 
                inset 0 -2px 4px rgba(194, 65, 12, 0.02),
                0 12px 36px var(--glass-shadow);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1), box-shadow 0.3s ease;
}

/* Buttons */
.btn-primary {
    background: var(--accent-btn-bg);
    color: #FFFFFF !important;
    font-weight: 700;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 6px 16px var(--accent-glow), 
                inset 0 3px 5px rgba(255, 255, 255, 0.35), 
                inset 0 -3px 5px rgba(0, 0, 0, 0.15);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px var(--accent-glow), 
                inset 0 4px 6px rgba(255, 255, 255, 0.45), 
                inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    filter: brightness(1.08);
}
.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 3px 8px var(--accent-glow), 
                inset 0 2px 3px rgba(0, 0, 0, 0.15), 
                inset 0 -2px 3px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: var(--bg-secondary);
    border: 1.5px solid var(--glass-border);
    color: var(--text-primary);
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: inset 0 2px 4px #ffffff, 0 4px 10px var(--glass-shadow);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-color);
    box-shadow: inset 0 2px 4px #ffffff, 0 6px 15px var(--accent-glow);
    transform: translateY(-1px);
}
.btn-secondary:active {
    transform: translateY(0);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05), 0 2px 5px var(--glass-shadow);
}

/* Forms */
.form-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.form-group label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 700;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
}
.form-control, select, input[type="date"] {
    width: 100%;
    padding: 0.8rem 1.4rem;
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    box-shadow: inset 2px 2px 5px rgba(194, 65, 12, 0.05), 
                inset -2px -2px 5px #ffffff;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}
:root[data-theme="light"] .form-control, :root[data-theme="light"] select, :root[data-theme="light"] input[type="date"] {
    box-shadow: inset 2px 2px 5px rgba(194, 65, 12, 0.05), 
                inset -2px -2px 5px #ffffff;
}
select option {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}
.form-control:focus, select:focus, input[type="date"]:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: inset 1px 1px 3px rgba(194, 65, 12, 0.05), 
                0 0 0 4px var(--accent-glow);
    background: var(--bg-secondary);
}

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

/* Hero Section */
.hero-section {
    position: relative;
    padding: 7rem 2rem 5rem 2rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    overflow: hidden;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

/* Horizontal Search Bar Widget */
.search-widget-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}
.horizontal-search-bar {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 0.8fr auto;
    gap: 0.75rem;
    padding: 0.6rem 0.6rem 0.6rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8),
                0 12px 36px var(--glass-shadow);
}
.search-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.4rem 0.8rem;
    border-right: 1px solid rgba(194, 65, 12, 0.1);
}
.search-field:last-of-type {
    border-right: none;
}
.search-field label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Space Grotesk', sans-serif;
}
.search-field input, .search-field select {
    border: none;
    background: transparent;
    padding: 0;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    width: 100%;
}
.search-field input:focus, .search-field select:focus {
    outline: none;
}
.search-btn {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-btn-bg);
    color: #FFFFFF !important;
    font-size: 1.15rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px var(--accent-glow), 
                inset 0 2px 3px rgba(255,255,255,0.3), 
                inset 0 -2px 3px rgba(0,0,0,0.15);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
.search-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px var(--accent-glow), 
                inset 0 3px 4px rgba(255,255,255,0.45);
}
.search-btn:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 5px var(--accent-glow);
}

/* Responsive Search Bar Stack */
@media (max-width: 900px) {
    .horizontal-search-bar {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 1.5rem !important;
    }
    .search-field {
        border-right: none !important;
        border-bottom: 1px solid var(--glass-border) !important;
        padding-bottom: 0.75rem !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .search-field:last-of-type {
        border-bottom: none !important;
    }
    .search-btn {
        width: 100% !important;
        height: 48px !important;
        margin-top: 0.5rem !important;
    }
}

/* Mobile-first Grid and Form Optimizations to prevent overflow */
@media (max-width: 600px) {
    .properties-grid {
        grid-template-columns: 1fr !important;
    }
    .form-row-2 {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

/* Featured / Listings Grid */
.section-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}
.section-title-area {
    text-align: left;
}
.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-color);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--glass-border);
    border-top: 1.5px solid rgba(255, 255, 255, 0.4);
    padding: 0.35rem 0.95rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 4px 10px rgba(0,0,0,0.15);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}
.section-title {
    font-size: 2.25rem;
    font-weight: 800;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

/* Soft Claymorphic Property Card */
.property-card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8), 
                0 10px 28px var(--glass-shadow);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.property-card:hover {
    transform: translateY(-8px) scale(1.015);
    border-color: var(--accent-color);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.9), 
                0 16px 36px var(--accent-glow);
}
.property-card-media {
    height: 240px;
    position: relative;
    overflow: hidden;
}
.property-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.property-card:hover .property-card-img {
    transform: scale(1.08);
}
.property-badge-status {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 12px;
    text-transform: uppercase;
}
.property-badge-price {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background: rgba(7, 7, 15, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.85rem;
    border-radius: 12px;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
}
.property-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.property-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
}
.property-card-location {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}
.property-card-location i {
    color: var(--accent-color);
}
.property-card-features {
    display: flex;
    gap: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.25rem;
    margin-top: auto;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.property-card-features span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.property-card-features i {
    color: var(--accent-color);
}

/* Explore Catalog Page Layout */
.explore-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
}
.filter-sidebar {
    position: sticky;
    top: 90px;
    height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 0.5rem;
}
.filter-sidebar::-webkit-scrollbar {
    width: 4px;
}
.filter-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
.filter-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.range-slider-wrapper {
    margin-bottom: 1.5rem;
}
.range-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 0.5rem;
}
input[type="range"] {
    width: 100%;
    accent-color: var(--accent-color);
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    height: 6px;
    outline: none;
    -webkit-appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(212,175,55,0.5);
    transition: transform 0.1s;
}
input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.amenities-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.amenity-checkbox {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    user-select: none;
}
.amenity-checkbox input {
    accent-color: var(--accent-color);
    width: 16px;
    height: 16px;
}

/* Detail Property Page Layout */
.detail-layout {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 3rem;
}
.gallery-container {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 480px;
    box-shadow: 0 15px 40px var(--glass-shadow);
}
.gallery-slide {
    width: 100%;
    height: 100%;
    display: none;
    animation: fadeEffect 0.6s ease-in-out;
}
.gallery-slide.active {
    display: block;
}
.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    pointer-events: none;
}
.gallery-nav-btn {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #ffffff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}
.gallery-nav-btn:hover {
    background: var(--accent-color);
    color: #000000;
    border-color: var(--accent-color);
}
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}
.gallery-thumb {
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}
.gallery-thumb.active {
    border-color: var(--accent-color);
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-details-content {
    margin-top: 2.5rem;
}
.property-title-section {
    margin-bottom: 2rem;
}
.property-detail-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.property-details-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 1.5rem;
}

.details-block {
    margin-bottom: 2.5rem;
}
.details-block h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.details-block h3 i {
    color: var(--accent-color);
}
.details-block p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.specs-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 14px;
}
.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.spec-label {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    font-weight: 600;
}
.spec-value {
    font-size: 1.05rem;
    font-weight: 700;
}

/* Pricing Surge Stay Estimator Card */
.calculator-card {
    position: sticky;
    top: 90px;
}
.calculator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 1rem;
}
.calculator-header h3 {
    font-size: 1.35rem;
}
.calculator-price-tag {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    font-family: 'Space Grotesk', sans-serif;
}

.calc-output {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--glass-border);
    padding: 1.25rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}
.calc-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}
.calc-line:last-child {
    margin-bottom: 0;
}
.calc-line-total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

/* RazorPay Transaction Modal simulation */
.razorpay-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 10, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out forwards;
}
.razorpay-modal {
    width: 400px;
    background: #111122;
    border: 1px solid var(--accent-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
}
.razorpay-header {
    background: #090915;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.razorpay-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.15rem;
}
.razorpay-brand img {
    height: 24px;
}
.razorpay-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-color);
    font-family: 'Space Grotesk', sans-serif;
}
.razorpay-body {
    padding: 1.75rem;
    flex-grow: 1;
}
.razorpay-section-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.pay-method-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s ease;
}
.pay-method-card:hover, .pay-method-card.active {
    background: rgba(212,175,55,0.06);
    border-color: var(--accent-color);
}
.pay-method-card i {
    font-size: 1.5rem;
    color: var(--accent-color);
}
.razorpay-input-group {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    margin-bottom: 0.75rem;
}
.razorpay-input-group label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.15rem;
}
.razorpay-input-group input {
    background: transparent;
    border: none;
    width: 100%;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0;
}
.razorpay-input-group input:focus {
    outline: none;
}
.razorpay-btn {
    background: var(--accent-btn-bg);
    color: #000000;
    font-weight: 800;
    width: 100%;
    padding: 0.9rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}
.razorpay-btn:hover {
    filter: brightness(1.1);
}

/* Spinner and Success Animations */
.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(0, 0, 0, 0.15);
    border-top: 3px solid #000000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}
.spinner.active {
    display: block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.razorpay-success-screen {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    text-align: center;
    animation: fadeIn 0.4s ease-out;
}
.razorpay-success-screen.active {
    display: flex;
}
.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid #10b981;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

/* Client Dashboard Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.dashboard-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: 0 8px 24px var(--glass-shadow);
}
.booking-ledger-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    text-align: left;
}
.booking-ledger-table th {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    font-weight: 700;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    letter-spacing: 0.5px;
}
.booking-ledger-table td {
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.95rem;
}
.booking-ledger-table tr:last-child td {
    border-bottom: none;
}
.booking-ledger-table tr:hover td {
    background: var(--card-hover-bg);
}

/* Status Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
}
.badge-pending {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}
.badge-confirmed {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.badge-cancelled {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}
.badge-completed {
    background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Invoices Print Cohesive Layout Modal */
.invoice-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 10, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 11000;
    animation: fadeIn 0.3s ease-out forwards;
}
.invoice-modal {
    width: 750px;
    max-width: 90vw;
    background: #0f0f1d;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.invoice-modal::-webkit-scrollbar {
    width: 6px;
}
.invoice-modal::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
}
.close-invoice-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.05);
    border: none;
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s ease;
}
.close-invoice-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
}

.invoice-brand-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 2px solid rgba(255,255,255,0.05);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}
.invoice-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.invoice-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.invoice-meta-label {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    font-weight: 700;
}
.invoice-meta-value {
    font-size: 1rem;
    font-weight: 600;
}

.invoice-bill-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}
.invoice-bill-table th {
    text-align: left;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.invoice-bill-table td {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.95rem;
}
.invoice-total-row td {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-color);
    border-bottom: none;
    padding-top: 1.5rem;
}

/* Print Styling */
@media print {
    body * {
        visibility: hidden;
    }
    .invoice-modal, .invoice-modal * {
        visibility: visible;
    }
    .invoice-modal {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        background: #ffffff !important;
        color: #000000 !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
    }
    .close-invoice-btn, .invoice-print-btn-block {
        display: none !important;
    }
    .invoice-modal .invoice-meta-label, .invoice-modal th {
        color: #555555 !important;
    }
    .invoice-modal td, .invoice-modal .invoice-meta-value {
        color: #000000 !important;
    }
    .invoice-modal .invoice-brand-block, .invoice-modal .spec-value {
        border-color: #dddddd !important;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeEffect {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Toast container style */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 15000;
    pointer-events: none;
}
.toast {
    background: rgba(20, 20, 35, 0.9);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
    animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    pointer-events: auto;
    max-width: 380px;
    font-size: 0.9rem;
    font-weight: 500;
}
.toast-success {
    border-left: 4px solid var(--success);
}
.toast-success i {
    color: var(--success);
}
.toast-danger {
    border-left: 4px solid var(--danger);
}
.toast-danger i {
    color: var(--danger);
}
.toast-info {
    border-left: 4px solid var(--info);
}
.toast-info i {
    color: var(--info);
}

/* ==========================================================================
   Storefront Overhaul Custom Style Polish (Footer, Grids, Forms, Responsive)
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

/* Premium Footers Styles */
.premium-footer {
    background: rgba(10, 10, 20, 0.96) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 5rem 2rem 2.5rem 2rem;
    margin-top: auto;
    font-size: 0.9rem;
    color: #ffffff !important;
    position: relative;
    z-index: 10;
    transition: background-color 0.4s ease;
}

.premium-footer .brand-logo {
    color: #ffffff !important;
}

.premium-footer .brand-logo .brand-name {
    color: #ffffff !important;
}

.premium-footer .brand-logo i {
    background: var(--accent-gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.premium-footer .footer-title {
    color: #ffffff !important;
}

.premium-footer .footer-slogan {
    color: #ffffff !important;
    opacity: 0.9 !important;
}

.premium-footer .footer-links a {
    color: #ffffff !important;
    opacity: 0.85 !important;
}

.premium-footer .footer-links a:hover {
    color: var(--accent-color) !important;
    opacity: 1 !important;
}

.premium-footer .social-icons a {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.premium-footer .social-icons a:hover {
    color: #000000 !important;
    background: var(--accent-gradient) !important;
    border-color: transparent !important;
}

.premium-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.premium-footer .copyright-text {
    color: #ffffff !important;
    opacity: 0.6 !important;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.brand-col {
    padding-right: 1.5rem;
}

.footer-slogan {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.9;
}

.footer-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #ffffff;
    opacity: 0.85;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateX(4px);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent-gradient);
    color: #000000;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--accent-glow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 3.5rem;
    padding-top: 1.75rem;
    text-align: center;
}

.copyright-text {
    font-size: 0.85rem;
    color: #ffffff;
    opacity: 0.6;
}

/* Advantages features grid style */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.25rem 1.75rem;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8), 
                inset 0 -2px 4px rgba(194, 65, 12, 0.02),
                0 10px 28px var(--glass-shadow);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    text-align: left;
    transform-style: preserve-3d;
}

.feature-card:hover {
    transform: translateY(-6px) rotateX(3deg) rotateY(-3deg) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.9),
                0 16px 36px var(--accent-glow);
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(194, 65, 12, 0.12) 0%, rgba(194, 65, 12, 0.04) 100%);
    border: 1px solid var(--glass-border);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8), 0 4px 10px var(--glass-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.feature-icon-wrapper i {
    font-size: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--accent-gradient);
    transform: scale(1.05);
}

.feature-card:hover .feature-icon-wrapper i {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #000000;
    color: #000000;
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Category stay experiences grid style */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    perspective: 1200px;
}

.experience-card {
    position: relative;
    height: 350px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8),
                0 10px 28px var(--glass-shadow);
    cursor: pointer;
    border: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    transform-style: preserve-3d;
}

.experience-card:hover {
    transform: translateY(-6px) rotateX(3deg) rotateY(-3deg) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.9),
                0 16px 36px var(--accent-glow);
}

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

.experience-card:hover .experience-img {
    transform: scale(1.08);
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 22, 19, 0.95) 0%, rgba(28, 22, 19, 0.35) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.experience-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.experience-subtitle {
    font-size: 0.75rem;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* VIP reviews cards style */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    perspective: 1200px;
}

.testimonial-card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8), 
                inset 0 -2px 4px rgba(194, 65, 12, 0.02),
                0 10px 28px var(--glass-shadow);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    transform-style: preserve-3d;
}

.testimonial-card:hover {
    transform: translateY(-6px) rotateX(3deg) rotateY(-3deg) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.9),
                0 16px 36px var(--accent-glow);
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(194, 65, 12, 0.08);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.stars-rating {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.25rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

/* Contact and Consultation structures style */
.contact-consultation-section {
    background: radial-gradient(circle at bottom, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    padding: 6rem 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.contact-info-block {
    text-align: left;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail-content h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-detail-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Custom policy page styling */
.policy-container h1, .policy-container h2, .policy-container h3, .policy-container h4 {
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}
.policy-container h3 {
    font-size: 1.35rem;
    border-left: 3px solid var(--accent-color);
    padding-left: 0.75rem;
}
.policy-container p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Robust Collapsing Media Queries */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .brand-col {
        padding-right: 0;
    }
    .client-header-inner {
        padding: 1rem;
    }
    .section-title {
        font-size: 1.85rem;
    }
}

/* ==========================================================================
   EthosStay 3D Decorative Enhancements & Section Wrappers
   ========================================================================== */

/* Homepage Section Layout Wrappers */
.homepage-section {
    position: relative;
    padding: 6rem 0;
    transition: background-color 0.4s ease, background 0.4s ease;
    overflow: hidden;
}

.section-featured {
    background-color: var(--bg-tertiary);
    padding: 4rem 0 7rem 0;
}

.section-vibes {
    background: radial-gradient(circle at center, var(--bg-tertiary) 0%, var(--bg-primary) 70%);
}

.section-advantages {
    background-color: var(--bg-primary);
}

.section-testimonials {
    background-color: var(--bg-primary);
}

/* Decorative Floating 3D Spheres */
.floating-sphere {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        inset 0 10px 20px rgba(255, 255, 255, 0.25),
        inset 0 -10px 20px rgba(0, 0, 0, 0.1),
        0 15px 35px rgba(0, 0, 0, 0.15);
    animation: floatSphere 8s ease-in-out infinite alternate;
    transition: all 0.4s ease;
}

:root[data-theme="light"] .floating-sphere {
    background: radial-gradient(circle at 30% 30%, rgba(184, 134, 11, 0.15) 0%, rgba(184, 134, 11, 0.03) 50%, rgba(184, 134, 11, 0) 100%);
    border: 1px solid rgba(184, 134, 11, 0.15);
    box-shadow: 
        inset 0 10px 20px rgba(255, 255, 255, 0.6),
        inset 0 -10px 20px rgba(184, 134, 11, 0.05),
        0 15px 30px rgba(184, 134, 11, 0.08);
}

.sphere-1 {
    width: 140px;
    height: 140px;
    top: 10%;
    left: 8%;
    animation-delay: 0s;
}

.sphere-2 {
    width: 90px;
    height: 90px;
    top: 55%;
    right: 6%;
    animation-delay: -2s;
    animation-duration: 10s;
}

.sphere-3 {
    width: 60px;
    height: 60px;
    bottom: 12%;
    left: 20%;
    animation-delay: -4s;
    animation-duration: 7s;
}

.properties-grid, .features-grid {
    perspective: 1200px;
}

@keyframes floatSphere {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-20px) rotate(360deg);
    }
}

