/* ══════════════════════════════════════════════
   INDEX PAGE – Hero, Properties, Leadership
   ══════════════════════════════════════════════ */

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--blue-deep);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(10, 61, 143, 0.88) 0%, rgba(10, 61, 143, 0.65) 55%, rgba(21, 101, 192, 0.3) 100%);
}

.hero-stripe {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: rgba(240, 123, 32, 0.06);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.4rem;
    animation: fadeUp 1s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 em {
    font-style: italic;
    color: var(--blue-sky);
}

.hero>.hero-content>.hero-text>p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(168, 212, 245, 0.85);
    margin-bottom: 2.2rem;
    max-width: 480px;
    animation: fadeUp 1s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ─── HERO CARD ─── */
.hero-card {
    animation: fadeUp 1s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-img-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35);
}

.hero-img-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.hero-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.badge-icon {
    width: 38px;
    height: 38px;
    background: var(--orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.badge-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
}

.badge-text span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ─── SCROLL INDICATOR ─── */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 2;
    animation: fadeUp 1s 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.scroll-indicator span {
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(168, 212, 245, 0.6);
}

.scroll-dot {
    width: 1.5px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(168, 212, 245, 0.7), transparent);
    animation: pulse 2s infinite;
}

/* ─── PROPERTIES ─── */
.properties {
    background: var(--white);
}

.properties-header {
    max-width: 1280px;
    margin: 0 auto 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hotel-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
}

.hotel-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(10, 61, 143, 0.10);
    transition: transform 0.3s, box-shadow 0.3s;
    background: var(--white);
}

.hotel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10, 61, 143, 0.16);
}

.hotel-img-wrap {
    position: relative;
    overflow: hidden;
}

.hotel-img-wrap img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hotel-card:hover .hotel-img-wrap img {
    transform: scale(1.05);
}

.hotel-star-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--orange);
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 3px;
}

.hotel-body {
    padding: 1.8rem;
    border-top: 3px solid var(--blue-mid);
}

.hotel-body h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 0.5rem;
}

.hotel-body p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.4rem;
}

.feature-tag {
    background: var(--blue-pale);
    color: var(--blue-mid);
    font-size: 0.66rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
}

.hotel-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
    transition: gap 0.25s;
}

.hotel-link:hover {
    gap: 0.7rem;
}

.hotel-link::after {
    content: '→';
}

/* Coming Soon Card */
.hotel-card.coming {
    border: 2px dashed var(--border);
    box-shadow: none;
}

.hotel-card.coming:hover {
    transform: none;
    box-shadow: none;
}

.coming-placeholder {
    background: var(--blue-pale);
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.coming-icon {
    font-size: 2.5rem;
}

.coming-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--blue-mid);
}

/* ─── LEADERSHIP ─── */
.leadership {
    background: var(--blue-deep);
    position: relative;
    overflow: hidden;
}

.leadership::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(240, 123, 32, 0.07);
    pointer-events: none;
}

.leadership-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.leadership .section-label::before {
    background: var(--orange);
}

.leadership .section-label span {
    color: var(--orange);
}

.leadership .section-title {
    color: var(--white);
}

.leadership-header {
    margin-bottom: 3.5rem;
}

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

.director-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2.5rem;
    transition: background 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.director-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}

.director-card:hover::before {
    transform: scaleX(1);
}

.director-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.dir-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(168, 212, 245, 0.12);
    line-height: 1;
    margin-bottom: 1.2rem;
}

.director-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.director-card .role {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
}

.dir-divider {
    width: 32px;
    height: 2px;
    background: rgba(168, 212, 245, 0.15);
    margin: 1.2rem 0;
}

/* ─── RESPONSIVE – Index Page ─── */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-card {
        display: none;
    }
}

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

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