/* Service Pages CSS - Consolidated styles for all service pages */

/* Hero Section Styles */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #2b3990 0%, #4A90E2 50%, #6fa8dc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px 0;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 10;
    position: relative;
}

.hero-icon {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 30px;
    animation: slowRotate 30s linear infinite;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.95;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.8);
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: rgba(255,255,255,0.6);
    margin: 10px auto 0;
    animation: bounce 2s infinite;
}

/* Content Section */
.content-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.content-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-bottom: 50px;
}

.content-title {
    color: #2b3990;
    font-size: 3rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.content-title::after {
    content: '';
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #4A90E2, #2b3990);
    margin: 20px auto;
    border-radius: 2px;
    display: block;
}

.content-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #4A90E2;
    margin-bottom: 50px;
    text-align: center;
}

.content-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c3e50;
    margin: 0;
}

.content-intro p:first-child {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Service Item Styles */
.service-item {
    margin-bottom: 40px;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #4A90E2;
}

.service-item h4 {
    color: #2b3990;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.service-item i {
    margin-right: 15px;
    font-size: 1.2rem;
}

.service-item p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    min-width: 200px;
    padding: 18px 40px;
    border: none;
    outline: none;
    box-shadow: 0 8px 32px 0 rgba(44,62,80,0.15);
    transition: all 0.18s cubic-bezier(.4,0,.2,1);
    text-align: center;
    display: inline-block;
    margin: 0;
}

.cta-buttons .btn.cta-contact {
    background: #3796f6;
    color: #fff;
    box-shadow: 0 0 24px 0 rgba(55,150,246,0.25);
}

.cta-buttons .btn.cta-contact:hover,
.cta-buttons .btn.cta-contact:focus {
    background: #2176d2;
    color: #fff;
    box-shadow: 0 0 32px 0 rgba(55,150,246,0.35);
    text-decoration: none;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    padding: 20px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 300px;
    margin-top: 10px;
    background: #ffffff;
}

.services-menu {
    padding: 0;
}

.services-category {
    padding: 0 0 15px 0;
}

.services-category:last-child {
    padding-bottom: 0;
}

.services-category h6 {
    color: #2b3990;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0 12px 8px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-item {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4a5568;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #2b3990;
    text-decoration: none;
}

.dropdown-item.active {
    color: #2b3990;
    font-weight: 600;
    background: #f8f9fa;
}

.dropdown-item img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Animations */
@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.5rem; }
    .hero-subtitle { font-size: 1.3rem; }
}

@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.2rem; }
}

@media (max-width: 768px) {
    .hero-section { padding: 100px 20px 50px 20px; }
    .hero-title { font-size: 2.5rem; margin-bottom: 20px; }
    .hero-subtitle { font-size: 1.1rem; margin-bottom: 30px; padding: 0 10px; }
    .hero-icon { font-size: 3rem; }
    
    .dropdown-menu {
        min-width: 100%;
        margin-top: 0;
        border-radius: 0;
        padding: 15px;
    }
    
    .services-category {
        padding: 0 0 10px 0;
    }
    
    .dropdown-item {
        padding: 10px 12px;
    }
}

@media (max-width: 600px) {
    .cta-buttons {
        flex-direction: column;
        gap: 18px;
    }
    
    .cta-buttons .btn {
        min-width: 0;
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-icon { font-size: 2.5rem; }
}
