/* ==========================================================================
   Lugaju Engineering Technologies - Page Specific Styles
   ========================================================================== */

/* Page Banner Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--accent-cyan);
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--text-light);
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 6px;
    border-left: 3px solid var(--accent-cyan);
}

.value-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Services Page Layout */
.service-block {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    transition: var(--transition);
}

.service-block:hover {
    border-color: var(--accent-cyan);
}

.service-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.service-badge {
    display: inline-block;
    background: rgba(0, 245, 212, 0.1);
    color: var(--accent-cyan);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-list {
    list-style: none;
    margin-top: 15px;
}

.service-list li {
    color: var(--text-muted);
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
}

.service-list li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

@media (max-width: 768px) {

    .about-grid,
    .service-block {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}









/* Updated Page Banner Header with Overlay */
/* .page-header {
    position: relative;
    padding: 90px 0;
    background-color: var(--secondary-dark);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    overflow: hidden;
} */

/* Semi-transparent dark overlay for high text contrast */
/* .page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(11, 19, 43, 0.85) 0%,
            rgba(28, 37, 65, 0.92) 100%);
    z-index: 1;
} */

.page-header .container {
    position: relative;
    z-index: 2;
}

/* Image Card Showcase Overlay Styles */
.card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
    margin: -30px -30px 20px -30px;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image-wrapper img {
    transform: scale(1.05);
}





/* ==========================================================================
   Lugaju Engineering Technologies - Page Specific Styles (UPDATE)
   ========================================================================== */

/* Page Banner Header with Dark Overlay (As suggested) */
.page-header {
    position: relative;
    padding: 100px 0;
    background-color: var(--secondary-dark);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 19, 43, 0.8) 0%, rgba(28, 37, 65, 0.95) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 10;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 0.95rem;
    color: var(--accent-cyan);
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--text-light);
}

/* ... existing About Page Styles remain identical ... */

/* --- Updated Services Page Layout --- */
.service-block {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 40px;
    transition: var(--transition);
    display: flex;
    /* Key for internal image and content split */
    overflow: hidden;
}

.service-block:hover {
    border-color: var(--accent-cyan);
}

/* Inner Content Container */
.service-content {
    flex: 2;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

/* Inner Image Container */
.service-image-container {
    flex: 1;
    min-height: 300px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    border-left: 1px solid var(--border-color);
}

.service-block:hover .service-image-container::after {
    background-color: rgba(0, 245, 212, 0.05);
    /* Subtle color shift on hover */
}

.service-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 19, 43, 0.2);
    transition: var(--transition);
}

.service-header {
    margin-bottom: 25px;
}

.service-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-light);
    margin-top: 10px;
}

.service-badge {
    display: inline-block;
    background: rgba(0, 245, 212, 0.1);
    color: var(--accent-cyan);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-summary {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    margin-top: auto;
    /* Push to bottom of content area */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.service-list li {
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.service-list li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-size: 0.8rem;
}

/* Responsiveness Update for Services */
@media (max-width: 992px) {
    .service-block {
        flex-direction: column;
    }

    .service-image-container {
        order: -1;
        min-height: 250px;
        border-left: none;
        border-bottom: 1px solid var(--border-color);
    }

    .service-content {
        padding: 30px;
    }
}









/* ==========================================================================
   Home Page Hero Styling (.page-hero)
   ========================================================================== */

.hero.page-hero {
    position: relative;
    padding: 140px 0 100px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--primary-dark);
    color: var(--text-light);
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

/* Multi-layer Dark Gradient Overlay for optimal contrast against background imagery */
.hero.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(11, 19, 43, 0.92) 0%,
            rgba(28, 37, 65, 0.85) 50%,
            rgba(11, 19, 43, 0.95) 100%);
    z-index: 1;
}

/* Subtle Technical Grid Overlay Accent */
.hero.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 245, 212, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 212, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 2;
    pointer-events: none;
}

/* Ensure container content sits above background overlays */
.hero.page-hero .container {
    position: relative;
    z-index: 10;
}

/* Dual Column Layout Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 50px;
    align-items: center;
}

/* Typography & Content Block */
.hero-content {
    max-width: 680px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.hero-title span {
    color: var(--accent-cyan);
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Glassmorphism Feature Card (Right Column) */
.hero-card .card {
    background: rgba(22, 32, 50, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 35px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
}

.hero-card .card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 245, 212, 0.3);
    box-shadow: 0 25px 50px rgba(0, 245, 212, 0.1);
}

.hero-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsive Rules */
@media (max-width: 992px) {
    .hero.page-hero {
        padding: 100px 0 70px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .hero.page-hero {
        padding: 80px 0 50px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        text-align: center;
    }
}





/* --- Special Button Styling --- */
.btn-whatsapp {
    background-color: #25D366;
    color: #FFFFFF !important;
    border: none;
    font-weight: 700;
}

.btn-whatsapp:hover {
    background-color: #1DA851;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}