/* Seamless Uniform SEO Landing Page Layout System */

.service-page-wrapper {
    width: 100%;
    overflow-x: hidden;
    background: #f8fafc;
    color: var(--text-dark, #212121);
    font-family: 'Roboto', sans-serif;
}

/* Integrated Hero Navigation Header */
.service-hero-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.service-hero-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark, #212121);
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
}

.service-hero-nav-brand img {
    height: 28px;
}

.service-hero-nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.service-hero-nav-actions a {
    color: rgba(33, 33, 33, 0.75);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    transition: color 0.2s ease;
}

.service-hero-nav-actions a:hover {
    color: var(--primary-teal, #009688);
}

/* Heroic Section - Solid 100% Uniform Background Flow */
.service-hero-heroic {
    position: relative;
    padding: 2.5rem 1.5rem 5.5rem 1.5rem;
    background: #f8fafc !important;
    color: var(--text-dark, #212121);
    text-align: center;
    border-bottom: none !important;
    overflow: hidden;
    width: 100%;
}

.service-hero-heroic::before {
    display: none !important;
}

/* Static Full-Color Official LUX-LEET Brand Logo */
.service-static-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem auto;
}

.service-static-logo {
    height: 190px;
    width: auto;
    max-width: 380px;
    object-fit: contain;
    filter: drop-shadow(0 8px 25px rgba(0, 150, 136, 0.2));
}

.service-hero-container {
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 150, 136, 0.3);
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.1);
    border-radius: 30px;
    color: var(--primary-teal, #009688);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.service-hero-heroic h1 {
    font-size: clamp(2.3rem, 4.8vw, 3.8rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-dark, #212121);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
    font-family: 'Roboto', sans-serif;
}

.service-hero-heroic h1 span {
    background: linear-gradient(-70deg, #009688, #4caf50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-hero-lead {
    font-size: 1.22rem;
    line-height: 1.85;
    color: rgba(33, 33, 33, 0.85);
    max-width: 820px;
    margin: 0 auto 2.5rem auto;
}

.service-hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-btn-secondary {
    border-radius: 30px;
    font-weight: 700;
    padding: 0.9rem 2rem;
    background: #ffffff;
    color: var(--text-dark, #212121);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.service-btn-secondary:hover {
    background: #ffffff;
    border-color: var(--primary-teal, #009688);
    color: var(--primary-teal, #009688);
}

/* Stats Counter Grid */
.service-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 3.5rem auto 0 auto;
}

.service-stat-card {
    background: #ffffff;
    border: 2px dashed rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 1.6rem 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 150, 136, 0.4);
    box-shadow: 0 12px 30px rgba(0, 150, 136, 0.12);
}

.service-stat-value {
    font-size: clamp(1.4rem, 2.2vw, 2.2rem);
    font-weight: 900;
    color: var(--primary-teal, #009688);
    font-family: 'Roboto', sans-serif;
    line-height: 1.1;
    margin-bottom: 0.4rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.service-stat-label {
    font-size: 0.78rem;
    font-weight: 800;
    color: rgba(33, 33, 33, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Content Sections */
.service-section {
    padding: 5.5rem 1.5rem;
    width: 100%;
}

.service-section-slate {
    background: #f8fafc;
}

.service-section-neutral {
    background: #ffffff;
    border-top: 2px dashed rgba(0, 0, 0, 0.06);
    border-bottom: 2px dashed rgba(0, 0, 0, 0.06);
}

.service-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
}

.section-tag {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--primary-teal, #009688);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.section-main-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-dark, #212121);
    line-height: 1.2;
    font-family: 'Roboto', sans-serif;
}

/* Glassmorphic Blueprint Cards Grid - Equal Heights */
.service-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.service-detail-card {
    background: #ffffff;
    border: 2px dashed rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-detail-card:hover {
    border-color: var(--primary-teal, #009688);
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 150, 136, 0.14);
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.service-card-header h3 {
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-dark, #212121);
    margin-bottom: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.3;
}

.service-card-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 150, 136, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-card-header .metric-icon-svg {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
}

.service-detail-card p {
    font-size: 0.96rem;
    color: rgba(33, 33, 33, 0.78);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.service-checklist {
    list-style: none;
    padding: 0;
    margin: auto 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 2px dashed rgba(0, 0, 0, 0.08);
    padding-top: 1.2rem;
}

.service-checklist li {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark, #212121);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-checklist li i {
    color: var(--primary-teal, #009688);
    font-size: 0.85rem;
}

/* Architecture / Process Step Cards - Equal Heights */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.process-card {
    background: #ffffff;
    border: 2px dashed rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.process-card:hover {
    border-color: var(--primary-teal, #009688);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 150, 136, 0.12);
}

.process-number {
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--primary-teal, #009688);
    background: rgba(0, 150, 136, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.process-card h4 {
    font-size: 1.12rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-dark, #212121);
    margin-bottom: 0.75rem;
    font-family: 'Roboto', sans-serif;
}

.process-card p {
    font-size: 0.92rem;
    color: rgba(33, 33, 33, 0.75);
    line-height: 1.65;
    margin-bottom: 0;
}

/* Signature Banner Section */
.service-banner-section {
    padding: 2rem 1.5rem 5rem 1.5rem;
}

.capacity-promo-banner {
    background: linear-gradient(-70deg, #009688, #4caf50);
    border-radius: 28px;
    padding: 4rem 3.5rem;
    color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 150, 136, 0.25);
    position: relative;
    overflow: hidden;
}

.capacity-promo-content h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Roboto', sans-serif;
}

.capacity-promo-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 720px;
    margin-bottom: 0;
    line-height: 1.7;
}

.capacity-promo-btn {
    white-space: nowrap;
    padding: 1.1rem 2.2rem;
    background: #ffffff !important;
    color: var(--primary-teal, #009688) !important;
    border-color: #ffffff !important;
    font-weight: 800 !important;
    border-radius: 30px !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.capacity-promo-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25) !important;
}

@media (max-width: 768px) {
    .capacity-promo-banner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 1.5rem;
    }
}
