/*
================================================================================
  KHOBRAA AL-DHIL - LUXURY ARCHITECTURAL HERO SECTION
  Crafted to match the luxury dark aesthetic of the design reference
================================================================================
*/

.hero-section {
    position: relative;
    min-height: calc(100vh - var(--header-height) - var(--topbar-height));
    min-height: 820px;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    background-color: var(--background-deep);
    overflow: hidden;
}

/* Hero Background & Architectural Overlay */
.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.42) contrast(1.15);
    transform: scale(1.02);
    transition: transform 10s ease;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 40%, rgba(162, 122, 92, 0.12) 0%, transparent 50%),
                linear-gradient(180deg, rgba(12, 14, 17, 0.7) 0%, rgba(22, 26, 29, 0.4) 40%, rgba(12, 14, 17, 0.95) 100%),
                linear-gradient(90deg, rgba(12, 14, 17, 0.9) 0%, rgba(12, 14, 17, 0.4) 50%, transparent 100%);
    pointer-events: none;
}

/* Floating Location Pin Tag (Like top right pill in reference) */
.hero-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(22, 26, 29, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(237, 233, 225, 0.12);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-location-badge svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent-light);
}

/* Hero Content Grid */
.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 60px;
}

.hero-main-content {
    max-width: 820px;
}

/* Customer Trust Rating Badge (Like reference ★★★★★) */
.hero-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-stars {
    color: #D4AF37; /* Warm Gold */
    letter-spacing: 2px;
    font-size: 1rem;
}

.hero-rating-text {
    font-weight: 500;
}

/* Editorial Title & Subtitle */
.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-title .highlight-bronze {
    background: linear-gradient(135deg, #EDE9E1 30%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    color: rgba(237, 233, 225, 0.85);
    line-height: 1.8;
    max-width: 680px;
    margin-bottom: 36px;
}

/* Hero CTA Button Group */
.hero-cta-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.hero-btn-main {
    padding: 14px 32px;
    font-size: 1.05rem;
}

/* ==========================================================================
   Hero Bottom Floating Metrics Hub (Matching reference bottom cards)
   ========================================================================== */
.hero-bottom-hub {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(237, 233, 225, 0.1);
}

.hero-stat-card {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    font-family: var(--font-primary);
}

.hero-stat-number .stat-unit {
    color: var(--accent-light);
    font-size: 1.5rem;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Floating Testimonial/Quote Glass Card (Bottom Right in reference) */
.hero-spotlight-card {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(30, 33, 36, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(237, 233, 225, 0.12);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    max-width: 380px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.hero-spotlight-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
}

.hero-spotlight-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-spotlight-avatar svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-light);
}

.hero-spotlight-content {
    display: flex;
    flex-direction: column;
}

.hero-spotlight-quote {
    font-size: 0.85rem;
    color: var(--text-primary);
    line-height: 1.4;
    font-weight: 500;
}

.hero-spotlight-author {
    font-size: 0.75rem;
    color: var(--accent-light);
    margin-top: 4px;
}

/* Responsive adjustments for Hero */
@media (max-width: 1024px) {
    .hero-bottom-hub {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .hero-spotlight-card {
        grid-column: span 2;
        justify-self: stretch;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 40px 0 36px;
    }
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.6rem);
        margin-bottom: 18px;
    }
    .hero-description {
        font-size: 1rem;
        margin-bottom: 28px;
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 12px;
    }
    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
    }
    .hero-bottom-hub {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 24px;
    }
    .hero-spotlight-card {
        grid-column: span 1;
        padding: 12px 16px;
    }
}

