/* Service Page Styles */

/* Navbar Logo - Match Home Page Size */
.navbar-logo {
    height: 40px;
    width: auto;
}

/* Hero Section */
.service-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    padding: 120px 0 60px;
    color: var(--white);
}

.breadcrumb-nav {
    margin-bottom: 2rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--gold-secondary);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-large i {
    font-size: 2rem;
    color: var(--primary-black);
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-tagline {
    font-size: 1.25rem;
    color: var(--gold-primary);
    font-weight: 500;
}

/* Section Styles */
.service-section {
    padding: 5rem 0;
}

.service-section:nth-child(even) {
    background: var(--light-gray);
}

.service-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-black);
}

/* Executive Summary */
.executive-summary {
    background: var(--white);
}

.summary-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--gold-primary);
}

.summary-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

.summary-card .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.summary-card p {
    color: #555;
    line-height: 1.7;
}

/* For Whom Section */
.whom-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.whom-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.whom-header i {
    font-size: 1.5rem;
}

.whom-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.whom-yes .whom-header i {
    color: #28a745;
}

.whom-no .whom-header i {
    color: #dc3545;
}

.whom-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.whom-card ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #eee;
}

.whom-card ul li:last-child {
    border-bottom: none;
}

.whom-yes ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.whom-no ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

/* Transformation Section */
.transformation {
    background: var(--white);
}

.transformation-flow {
    margin-top: 2rem;
}

.transform-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.transform-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.transform-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.transform-before .transform-icon {
    background: #dc3545;
}

.transform-during .transform-icon {
    background: var(--gold-primary);
}

.transform-after .transform-icon {
    background: #28a745;
}

.transform-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.transform-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transform-card ul li {
    padding: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
    font-size: 0.95rem;
    color: #555;
}

.transform-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
}

/* KPIs Section */
.kpis-section {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
}

.kpis-section h4 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.kpi-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.kpi-item i {
    color: var(--gold-primary);
    font-size: 1.25rem;
    width: 30px;
}

.kpi-item span {
    font-size: 0.95rem;
    color: var(--primary-black);
}

/* Methodology Section */
.methodology {
    background: var(--primary-black) !important;
    color: var(--white) !important;
}

.methodology .section-title {
    color: var(--white) !important;
}

.methodology-steps {
    max-width: 700px;
    margin: 0 auto;
}

.method-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.method-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: calc(100% - 40px);
    background: var(--gold-primary);
    opacity: 0.3;
}

.step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gold-primary);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-content h4 {
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Scope Section */
.scope-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.scope-card h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.scope-includes h4 i {
    color: #28a745;
}

.scope-excludes h4 i {
    color: #dc3545;
}

.scope-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scope-card ul li {
    padding: 0.75rem 0;
    padding-left: 1.25rem;
    position: relative;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.scope-card ul li:last-child {
    border-bottom: none;
}

.scope-includes ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
}

.scope-excludes ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc3545;
}

/* Duration Section */
.duration-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.duration-card h3 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

.duration-card p {
    margin-bottom: 0.75rem;
    color: #555;
}

.duration-icons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.duration-icon-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.duration-icon-item i {
    color: var(--gold-primary);
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.duration-icon-item span {
    font-weight: 600;
    color: var(--primary-black);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    text-align: center;
}

.cta-section h2 {
    color: var(--primary-black);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: var(--primary-black);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta,
.btn.btn-cta {
    background: var(--primary-black) !important;
    color: var(--white) !important;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-cta:hover,
.btn.btn-cta:hover {
    background: var(--secondary-black) !important;
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary,
.btn.btn-cta-secondary {
    background: transparent !important;
    color: var(--primary-black) !important;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-black) !important;
}

.btn-cta-secondary:hover,
.btn.btn-cta-secondary:hover {
    background: var(--primary-black) !important;
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.cta-note {
    margin-top: 1rem;
    color: var(--primary-black);
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Related Services */
.related-services {
    background: var(--white);
}

.related-services h3 {
    margin-bottom: 2rem;
    color: var(--primary-black);
}

.related-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-card:hover {
    background: var(--primary-black);
    transform: translateY(-5px);
}

.related-card i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.related-card span {
    color: var(--primary-black);
    font-weight: 600;
    transition: color 0.3s ease;
}

.related-card:hover span {
    color: var(--white);
}

/* Responsive */
@media (max-width: 991px) {
    .service-title {
        font-size: 2.25rem;
    }
    
    .service-section {
        padding: 3rem 0;
    }
}

@media (max-width: 767px) {
    .service-hero {
        padding: 100px 0 40px;
    }
    
    .service-title {
        font-size: 1.75rem;
    }
    
    .service-tagline {
        font-size: 1rem;
    }
    
    .whom-card,
    .transform-card {
        margin-bottom: 1.5rem;
    }
    
    .scope-card {
        margin-bottom: 1.5rem;
    }
    
    .method-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .method-step::after {
        display: none;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .btn-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .related-card {
        margin-bottom: 1rem;
    }
}
