/* Service Pages Styles */

/* Page Header - Image Background Header */
.page-header {
    background: linear-gradient(135deg, #1e90ff 0%, #0066cc 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header-image {
    position: relative;
    background: none;
    padding: 0;
    overflow: hidden;
    height: 300px;
}

.header-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.8) 0%, rgba(0, 102, 204, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-overlay .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header .subtitle {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-nav {
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb-nav a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: #1e90ff;
}

.separator {
    margin: 0 8px;
    color: #adb5bd;
}

.current {
    color: #1e90ff;
    font-weight: 500;
}

/* Main Content Layout */
.main-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.content-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sidebar Styles */
.sidebar {
    width: 250px;
    flex-shrink: 0;
}

.solution-menu {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.solution-menu h3 {
    background: #1e90ff;
    color: white;
    margin: 0;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
}

.solution-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.solution-menu li {
    border-bottom: 1px solid #e9ecef;
}

.solution-menu li:last-child {
    border-bottom: none;
}

.solution-menu a {
    display: block;
    padding: 15px 20px;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.solution-menu a:hover,
.solution-menu a.active {
    background: #f8f9ff;
    color: #1e90ff;
    border-left-color: #1e90ff;
}

/* Content Area */
.content-area {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Service Overview */
.service-overview {
    margin-bottom: 40px;
}

.overview-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

/* Service Details */
.service-details {
    margin-bottom: 40px;
}

.service-details h2 {
    color: #1e90ff;
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9ff;
    border-radius: 12px;
    border-left: 4px solid #1e90ff;
}

.service-number {
    background: #1e90ff;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.service-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Technical Support */
.technical-support {
    margin-bottom: 40px;
}

.technical-support h2 {
    color: #1e90ff;
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9ff;
    border-radius: 12px;
    border-left: 4px solid #1e90ff;
}

.contact-icon {
    font-size: 24px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e90ff;
    border-radius: 50%;
    color: white;
}

.contact-details h4 {
    color: #1e90ff;
    margin: 0 0 5px 0;
    font-size: 16px;
}

.contact-details p {
    margin: 0;
    color: #333;
    font-size: 15px;
}

/* Service Features */
.service-features {
    margin-bottom: 40px;
}

.service-features h2 {
    color: #1e90ff;
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-card {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e8f2ff;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #1e90ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.15);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #1e90ff;
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Service Process */
.service-process h2 {
    color: #1e90ff;
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9ff;
    border-radius: 12px;
    border-left: 4px solid #1e90ff;
}

.step-number {
    background: #1e90ff;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1e90ff;
    margin: 0 0 8px 0;
    font-size: 16px;
}

.step-content p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

/* Service Locations Styles */
.region-section {
    margin-bottom: 40px;
}

.region-title {
    color: #ff6b35;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ff6b35;
}

.location-card {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #1e90ff;
    margin-bottom: 20px;
}

.location-name {
    color: #1e90ff;
    font-size: 18px;
    margin-bottom: 15px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.detail-label {
    color: #666;
    font-weight: 600;
    min-width: 50px;
}

.detail-value {
    color: #333;
    flex: 1;
}

/* Service Map */
.service-map {
    margin: 40px 0;
}

.service-map h2 {
    color: #1e90ff;
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
    text-align: center;
}

.map-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.map-background {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    font-size: 12px;
}

.legend-item:last-child {
    margin-bottom: 0;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
}

.legend-dot.headquarters {
    background: #ff6b35;
}

.legend-dot.branch {
    background: #1e90ff;
}

.legend-line {
    width: 16px;
    height: 2px;
    background: #1e90ff;
    opacity: 0.6;
}

/* Service Commitment */
.service-commitment {
    margin: 40px 0;
}

.service-commitment h2 {
    color: #1e90ff;
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
    text-align: center;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.commitment-item {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e8f2ff;
    transition: all 0.3s ease;
}

.commitment-item:hover {
    border-color: #1e90ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.15);
}

.commitment-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.commitment-item h3 {
    color: #1e90ff;
    font-size: 18px;
    margin-bottom: 12px;
}

.commitment-item p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 25px;
}

.contact-card {
    background: #f8f9ff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e8f2ff;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #1e90ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.15);
}

.contact-icon-large {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-card h3 {
    color: #1e90ff;
    font-size: 18px;
    margin-bottom: 12px;
}

.contact-number {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-desc {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .solution-menu {
        margin-bottom: 30px;
    }
    
    .solution-menu ul {
        display: flex;
        overflow-x: auto;
    }
    
    .solution-menu li {
        border-bottom: none;
        border-right: 1px solid #e9ecef;
        flex-shrink: 0;
    }
    
    .features-grid,
    .process-steps,
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .content-area {
        padding: 25px 20px;
    }
    
    .service-item,
    .contact-item,
    .step {
        padding: 15px;
    }
    
    .feature-card,
    .commitment-item,
    .contact-card {
        padding: 20px;
    }
    
    .location-card {
        padding: 20px;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .detail-label {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .content-area {
        padding: 20px 15px;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .map-legend {
        bottom: 10px;
        right: 10px;
        padding: 10px;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item,
.feature-card,
.step,
.location-card,
.commitment-item,
.contact-card {
    animation: fadeInUp 0.6s ease-out;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

/* Footer Contact Row - Remove White Background */
.footer-bottom {
    background: transparent !important;
}

.footer-bottom .contact-row {
    background: transparent !important;
}

.footer-bottom .contact-item {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}