.service-detail-page {
    width: 100%;
}

.services-hero-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    margin: -120px 0 0 0;
    position: relative;
}

.services-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.hero-service-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    color: #ffffff;
    transition: all 0.5s ease;
    cursor: pointer;
    overflow: hidden;
}

.hero-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.88), rgba(16, 52, 116, 0.88));
    transition: all 0.5s ease;
    z-index: 1;
}

.hero-service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(16, 52, 116, 0.4), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 1;
}

.hero-service-card:hover::after {
    width: 600px;
    height: 600px;
}

.hero-service-card:hover::before {
    background: linear-gradient(135deg, rgba(16, 52, 116, 0.9), rgba(26, 26, 46, 0.9));
}

.hero-service-card:hover {
    transform: scale(1.02);
}

.hero-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 500px;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-card-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-card-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    padding: 0 20px;
}

.hero-card-content p p {
    padding: 0;
    margin: 0;
}

.hero-btn {
    display: inline-block;
    padding: 18px 50px;
    background: transparent;
    border: 3px solid #ffffff;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.hero-btn:hover {
    background: #ffffff;
    color: #1a1a2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
    .services-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-service-card {
        min-height: 50vh;
    }
    
    .hero-card-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .services-hero-section {
        margin-top: -100px;
    }
    
    .hero-service-card {
        padding: 60px 30px;
    }
    
    .hero-card-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-card-content p {
        font-size: 1.1rem;
    }
    
    .hero-btn {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

.service-hero {
    padding: 120px 0 80px;
    color: #ffffff;
    position: relative;
}

.breadcrumb-nav {
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #ffffff;
}

.breadcrumb-nav span {
    margin: 0 12px;
    opacity: 0.7;
}

.service-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.service-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 800px;
    line-height: 1.6;
}

.service-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-content-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.service-main {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-image-box {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.service-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.rich-content {
    line-height: 1.8;
    color: #2c3e50;
}

.rich-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 35px 0 20px;
}

.rich-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #34495e;
    margin: 30px 0 15px;
}

.rich-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.rich-content ul,
.rich-content ol {
    margin: 20px 0 20px 30px;
}

.rich-content li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
}

.rich-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.rich-content table th,
.rich-content table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.rich-content table th {
    background: #f8f9fa;
    font-weight: 700;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card-info {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #103474;
}

.service-card-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item i {
    color: #103474;
    font-size: 18px;
}

.info-item span {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 500;
}

.btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    background: linear-gradient(135deg, #103474, #FFC107);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 52, 116, 0.3);
}

.other-services {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.other-services h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.other-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.other-services li {
    margin-bottom: 12px;
}

.other-services a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
}

.other-services a:hover {
    background: linear-gradient(135deg, rgba(16, 52, 116, 0.1), rgba(255, 193, 7, 0.1));
    color: #103474;
    padding-left: 20px;
}

.other-services a i {
    color: #103474;
    font-size: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.1);
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #103474, #FFC107);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(16, 52, 116, 0.3);
}

.service-card .service-icon i {
    font-size: 35px;
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 25px 30px 15px;
    text-align: center;
}

.service-card p {
    color: #6c757d;
    margin: 0 30px 25px;
    line-height: 1.7;
    text-align: center;
}

.service-card .btn {
    margin: 0 30px 30px;
    width: calc(100% - 60px);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-light {
    background: #ffffff;
    color: #2c3e50;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
    .service-content-section .container {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        grid-row: 2;
    }
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-subtitle {
        font-size: 1.1rem;
    }
    
    .service-main {
        padding: 30px;
    }
    
    .service-card-info,
    .other-services {
        padding: 25px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

