/* ================================================================
   FUTURE OPTIONS — GLASS & EFFECTS LAYER
   Refined for light editorial theme with orange brand
================================================================ */

/* ── GLASS CARD ─────────────────────────────────────────── */
.glass-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-radius: 18px;
    border: 1px solid rgba(240, 235, 228, 0.9);
    box-shadow:
        0 2px 12px rgba(15, 14, 12, 0.04),
        0 8px 32px rgba(15, 14, 12, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
        0 4px 16px rgba(15, 14, 12, 0.06),
        0 16px 48px rgba(15, 14, 12, 0.1),
        0 0 0 1px rgba(232, 97, 10, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* ── GLASS NAV (override supplement) ───────────────────── */
.glass-nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-bottom: 1px solid rgba(240, 235, 228, 0.8);
    box-shadow: none;
}

/* ── GLASS BUTTON ───────────────────────────────────────── */
.btn-glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(232, 97, 10, 0.2);
    color: var(--orange, #E8610A);
    padding: 12px 24px;
    border-radius: 100px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(232, 97, 10, 0.07) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.55s ease;
}

.btn-glass:hover::before {
    transform: translateX(100%);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(232, 97, 10, 0.4);
    color: var(--orange-deep, #C24E06);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 97, 10, 0.12);
}

/* ── GLASS INPUT ────────────────────────────────────────── */
.input-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(240, 235, 228, 0.9);
    border-radius: 10px;
    padding: 12px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #0F0E0C;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-glass:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(232, 97, 10, 0.4);
    box-shadow:
        0 0 0 3px rgba(232, 97, 10, 0.1),
        0 2px 12px rgba(232, 97, 10, 0.06);
}

/* ── PROPERTY CARD SHIMMER ON HOVER ─────────────────────── */
.property-card {
    position: relative;
    overflow: hidden;
}

.property-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        105deg,
        transparent 35%,
        rgba(232, 97, 10, 0.04) 50%,
        transparent 65%
    );
    transform: translateX(-100%);
    transition: transform 0.65s ease;
    pointer-events: none;
    z-index: 3;
}

.property-card:hover::after {
    transform: translateX(100%);
}

/* ── FLOATING ANIMATION ─────────────────────────────────── */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

/* ── GRADIENT TEXT UTILITY ──────────────────────────────── */
.gradient-text {
    background: linear-gradient(135deg, var(--orange, #E8610A), var(--orange-bright, #F5742A));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ── SHIMMER SKELETON LOADER ────────────────────────────── */
.shimmer {
    position: relative;
    overflow: hidden;
    background: #F0EBE4;
    border-radius: 8px;
}

.shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(232, 97, 10, 0.08),
        rgba(255, 255, 255, 0.4),
        rgba(232, 97, 10, 0.08),
        transparent
    );
    animation: shimmerSlide 1.8s infinite;
}

@keyframes shimmerSlide {
    0%   { left: -100%; }
    100% { left: 100%; }
}

/* ── NEUMORPHIC VARIANT (kept for compatibility) ─────────── */
.neumorphic-card {
    background: #FAFAF8;
    border-radius: 16px;
    box-shadow:
        8px 8px 20px rgba(15, 14, 12, 0.07),
        -8px -8px 20px rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.neumorphic-btn {
    background: #FAFAF8;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    box-shadow:
        4px 4px 10px rgba(15, 14, 12, 0.07),
        -4px -4px 10px rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.neumorphic-btn:hover {
    box-shadow:
        inset 4px 4px 10px rgba(15, 14, 12, 0.07),
        inset -4px -4px 10px rgba(255, 255, 255, 0.9);
}

/* ── ORANGE GLOW EFFECT ─────────────────────────────────── */
.orange-glow {
    box-shadow: 0 0 30px rgba(232, 97, 10, 0.2), 0 0 60px rgba(232, 97, 10, 0.08);
}

/* ── SURFACE TINT CARDS ─────────────────────────────────── */
.tint-card {
    background: linear-gradient(145deg, #FFFFFF 0%, #FFF8F3 100%);
    border: 1px solid rgba(232, 97, 10, 0.1);
    border-radius: 16px;
}

/* ── RESPONSIVE ADJUSTMENTS ─────────────────────────────── */
@media (max-width: 768px) {
    .glass-card {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .glass-nav {
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }
}