/* Service Detail Page Styles */
.service-detail-hero {
    padding: 10rem 0 5rem;
    background-color: var(--bg-light);
    color: var(--text-main);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-detail-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--primary);
    filter: blur(150px);
    opacity: 0.15;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
}

.service-hero-icon {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    background-color: rgba(25, 135, 84, 0.15);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(25, 135, 84, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-detail-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.service-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.service-breadcrumbs a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.service-breadcrumbs a:hover {
    color: var(--primary);
}

.service-breadcrumbs span {
    color: var(--text-main);
    font-weight: 600;
}

/* Details Grid Layout */
.service-detail-content {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

@media (max-width: 992px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.main-detail-card {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--glass-border);
}

.main-detail-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.service-rich-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

.service-rich-description p {
    margin-bottom: 1.5rem;
}

.features-bullet-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .features-bullet-list {
        grid-template-columns: 1fr;
    }
}

.features-bullet-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.features-bullet-list li i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Sidebar Widgets */
.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--glass-border);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f5f9;
    color: var(--text-main);
}

.other-services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.other-service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.other-service-item:hover {
    border-color: rgba(25, 135, 84, 0.15);
    background-color: rgba(25, 135, 84, 0.02);
}

.other-service-icon {
    width: 42px;
    height: 42px;
    border-radius: 4px;
    background-color: rgba(25, 135, 84, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.other-service-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-main);
}

.other-service-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* CTA Widget - Dark themed premium look */
.cta-widget {
    background: linear-gradient(135deg, #212529 0%, #111315 100%);
    color: #ffffff;
    border: none;
    text-align: center;
}

.cta-widget h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-widget p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cta-widget .btn {
    width: 100%;
    justify-content: center;
}
