/* ============================================================
   HOME PAGE — Premium Modern Design
============================================================== */

/* ===========================
   HERO SECTION — Enhanced
============================== */
.hero-blend {
    position: relative;
    width: 100%;
    min-height: 650px;
    background: url("../../images/hero/building-hero.jpg") center/cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 var(--space-xl);
    overflow: hidden;
}

.hero-blend::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.25));
    z-index: 1;
}



.hero-blend-content {
    position: relative;
    max-width: 700px;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-blend-content h1 {
    font-size: var(--fs-hero);
    font-weight: var(--fw-extrabold);
    line-height: 1.15;
    margin-bottom: var(--space-sm);
    color: #ffffff !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.hero-blend-content p {
    font-size: var(--fs-md);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.6;
    font-weight: var(--fw-regular);
}

.hero-blend-btn {
    display: inline-block;
    background: #f4b23a;
    padding: 14px 35px;
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    color: var(--primary-dark);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    letter-spacing: 0.5px;
}

.hero-blend-btn:hover {
    background: #e5a832;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* ============================================================
   PROFESSIONAL SECTION SYSTEM
============================================================== */

/* Main section wrapper */
.section {
    padding: var(--space-xxl) var(--space-lg);
}

/* Light grey background for alternating sections */
.section-light {
    background: #F5F6FA;
}

/* Clean white background */
.section-white {
    background: var(--section-white);
}

/* Left-aligned professional title */
.section-title-left {
    font-size: var(--fs-xl);
    font-weight: var(--fw-extrabold);
    color: var(--primary-dark);
    margin-bottom: var(--space-md);
    position: relative;
    padding-bottom: var(--space-xs);
}

.section-title-left::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: var(--radius-full);
}

/* Text block */
.section-text {
    max-width: 900px;
    font-size: var(--fs-base);
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: var(--space-sm);
}

/* Professional bullet list */
.points-list {
    margin-top: var(--space-xs);
    padding-left: 0;
    list-style: none;
    max-width: 900px;
}

.points-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-size: var(--fs-base);
    line-height: 1.7;
    color: var(--text-dark);
}

.points-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--primary-gold);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0;
}

/* Numbered list */
.points-list.number li::before {
    display: none;
}

.points-list.number {
    counter-reset: step;
}

.points-list.number li {
    counter-increment: step;
    padding-left: 40px;
}

.points-list.number li::after {
    content: counter(step) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: var(--fw-bold);
    font-size: var(--fs-md);
    color: var(--primary-gold);
}


/* ============================================================
   CAPABILITIES GRID — Enhanced
============================================================== */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-md);
}


/* ============================================================
   SECTOR GRID — Premium Layout
============================================================== */
.sector-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-md);
}


/* ============================================================
   RESPONSIVE DESIGN
============================================================== */
@media (max-width: 992px) {

    .hero-blend {
        min-height: 500px;
        padding: var(--space-lg) var(--space-md);
    }

    .hero-blend-content h1 {
        font-size: var(--fs-xxl);
    }

    .hero-blend-content p {
        font-size: var(--fs-base);
    }

    .section {
        padding: var(--space-xl) var(--space-md);
    }

    .capabilities-grid,
    .sector-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .section-title-left {
        font-size: var(--fs-lg);
    }
}

@media (max-width: 600px) {

    .hero-blend {
        min-height: 450px;
        padding: var(--space-lg) var(--space-sm);
    }

    .hero-blend-content h1 {
        font-size: var(--fs-xl);
    }

    .hero-blend-content p {
        font-size: var(--fs-sm);
    }

    .hero-blend-btn {
        padding: 14px 32px;
        font-size: var(--fs-sm);
    }

    .section {
        padding: var(--space-lg) var(--space-sm);
    }

    .capabilities-grid,
    .sector-grid-premium {
        grid-template-columns: 1fr;
    }

    .section-title-left {
        font-size: var(--fs-md);
    }

    .section-text,
    .points-list li {
        font-size: var(--fs-sm);
    }
}