/* ════════════════════════════════════════
   HOME PAGE — Hero Slider
════════════════════════════════════════ */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--dark);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(17, 14, 67, .84) 0%, rgba(17, 14, 67, .42) 60%, transparent 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 56px 80px;
    max-width: 700px;
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--teal);
}

.hero-h {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5.5vw, 78px);
    font-weight: 400;
    line-height: 1;
    color: #fff;
    margin-bottom: 20px;
}

.hero-h em {
    font-style: italic;
    color: var(--teal);
}

.hero-p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .7);
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-dots {
    position: absolute;
    bottom: 36px;
    left: 56px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: background .3s, transform .3s;
}

.hero-dot.active {
    background: var(--teal);
    transform: scale(1.3);
}

/* ── Stats Bar ── */
.stats-bar {
    background: var(--navy);
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid rgba(255, 255, 255, .06);
}

.stat-item {
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .06);
    transition: background .3s;
}

.stat-item:hover {
    background: rgba(0, 157, 162, .12);
}

.stat-n {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-l {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
}

/* ── Welcome Section ── */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.welcome-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.welcome-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.welcome-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--navy);
    color: #fff;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .05em;
    line-height: 1.6;
    border-left: 3px solid var(--teal);
}

.welcome-body {
    font-size: 15px;
    line-height: 1.9;
    color: var(--body);
    margin-top: 22px;
}

.welcome-body p+p {
    margin-top: 14px;
}

.welcome-body strong {
    color: var(--navy);
    font-weight: 600;
}

.pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

/* ── Logos Strip ── */
.logos-strip {
    background: var(--light);
    padding: 56px 0;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid #e5e5e5;
    border-radius: var(--radius);
    overflow: hidden;
}

.logo-cell {
    padding: 28px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    transition: background .2s;
}

.logo-cell:hover {
    background: var(--light);
}

.logo-cell img {
    max-height: 44px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(.3);
    transition: filter .2s;
}

.logo-cell:hover img {
    filter: none;
}

/* ── Awards ── */
.awards-sec {
    background: var(--dark);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 64px;
}

.award-card {
    background: rgba(255, 255, 255, .04);
    padding: 40px 28px;
    text-align: center;
    transition: background .3s;
}

.award-card:hover {
    background: rgba(0, 157, 162, .15);
}

.award-img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(.85);
    transition: filter .3s;
}

.award-card:hover .award-img {
    filter: brightness(1);
}

.award-year {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 8px;
}

.award-name {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .7);
}

/* ── Green Grid (Sustainability) ── */
.green-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 64px;
}

.green-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid rgba(0, 157, 162, .1);
    transition: all .3s;
}

.green-card:hover {
    box-shadow: 0 12px 40px rgba(0, 157, 162, .12);
    border-color: var(--teal);
}

.green-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(0, 157, 162, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.green-icon .ti {
    font-size: 26px;
    color: var(--teal);
}

.green-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
}

.green-body {
    font-size: 14px;
    line-height: 1.8;
    color: var(--body);
}

.green-list {
    margin-top: 10px;
}

.green-list li {
    padding: 8px 0 8px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    position: relative;
    font-size: 13.5px;
}

.green-list li:last-child {
    border-bottom: none;
}

.green-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-content {
        padding: 20px 28px 60px;
    }

    .stats-inner,
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .green-grid {
        grid-template-columns: 1fr;
    }
    .stats-bar .stat-item .stat-n{
        font-size: clamp(26px, 3vw, 46px) !important;
    }
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .logo-cell{
        padding: 20px 10px;
    }
}
