/* ===================================
   Professional Services Section Design
   Fully Responsive CSS
   =================================== */

/* Main Services Section */
.services-section-professional {
    padding: 80px 0 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.services-section-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #38b6ff 0%, #004a94 100%);
}

/* Container */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header with Gradient Background */
.services-header-box {
    background: linear-gradient(135deg, #38b6ff 0%, #004a94 100%);
    padding: 40px 50px;
    border-radius: 16px;
    margin-bottom: 50px;
    box-shadow: 0 8px 32px rgba(0, 74, 148, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInDown 0.8s ease-out;
}

.services-header-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.services-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 1;
    font-family: 'Exo', sans-serif;
    line-height: 1.2;
}

/* Intro Paragraph */
.services-intro {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.services-intro-text {
    font-size: 18px;
    color: #606060;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Two Column Content Layout */
.services-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.services-column {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #38b6ff;
    transition: all 0.3s ease;
}

.services-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 74, 148, 0.12);
    border-left-color: #004a94;
}

.services-column-text {
    font-size: 18px;
    color: #606060;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-column-text:last-child {
    margin-bottom: 0;
}

/* Highlight Text */
.services-highlight {
    color: #004a94;
    font-weight: 600;
}

/* Decorative Elements */
.services-decorator {
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
}

.services-decorator::before,
.services-decorator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #38b6ff 50%, transparent 100%);
}

.services-decorator::before {
    left: 0;
}

.services-decorator::after {
    right: 0;
}

.services-decorator-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #38b6ff 0%, #004a94 100%);
    border-radius: 50%;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(56, 182, 255, 0.4);
}

/* Call-to-Action Box */
.services-cta-box {
    background: linear-gradient(135deg, #004a94 0%, #38b6ff 100%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 8px 32px rgba(0, 74, 148, 0.2);
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.services-cta-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Exo', sans-serif;
}

.services-cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    line-height: 1.6;
}

.services-cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #004a94;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Exo', sans-serif;
}

.services-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
    background: #f8f9fa;
}

/* Feature List (Optional) */
.services-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.services-feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.services-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.services-feature-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.services-feature-text {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

/* ===================================
   Responsive Design - Tablet
   =================================== */
@media screen and (max-width: 991px) {
    .services-section-professional {
        padding: 60px 0 30px 0;
    }

    .services-header-box {
        padding: 35px 40px;
        margin-bottom: 40px;
    }

    .services-main-title {
        font-size: 36px;
    }

    .services-intro {
        margin-bottom: 40px;
    }

    .services-intro-text {
        font-size: 17px;
    }

    .services-content-grid {
        gap: 30px;
        margin-bottom: 50px;
    }

    .services-column {
        padding: 30px;
    }

    .services-column-text {
        font-size: 17px;
    }

    .services-cta-box {
        padding: 35px 30px;
    }

    .services-cta-title {
        font-size: 26px;
    }

    .services-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ===================================
   Responsive Design - Mobile
   =================================== */
@media screen and (max-width: 767px) {
    .services-section-professional {
        padding: 50px 0 20px 0;
    }

    .services-container {
        padding: 0 15px;
    }

    .services-header-box {
        padding: 30px 25px;
        margin-bottom: 35px;
        border-radius: 12px;
    }

    .services-main-title {
        font-size: 28px;
    }

    .services-intro {
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .services-intro-text {
        font-size: 16px;
    }

    .services-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .services-column {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .services-column-text {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .services-decorator {
        margin: 40px 0 30px;
    }

    .services-decorator::before,
    .services-decorator::after {
        width: 25%;
    }

    .services-decorator-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .services-cta-box {
        padding: 30px 20px;
        margin-top: 40px;
        border-radius: 12px;
    }

    .services-cta-title {
        font-size: 24px;
    }

    .services-cta-text {
        font-size: 15px;
    }

    .services-cta-button {
        padding: 14px 35px;
        font-size: 15px;
    }

    .services-features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }

    .services-feature-item {
        padding: 18px;
    }

    .services-feature-icon {
        font-size: 32px;
    }
}

/* ===================================
   Responsive Design - Small Mobile
   =================================== */
@media screen and (max-width: 480px) {
    .services-header-box {
        padding: 25px 20px;
    }

    .services-main-title {
        font-size: 24px;
    }

    .services-intro-text {
        font-size: 15px;
    }

    .services-column {
        padding: 20px 18px;
    }

    .services-column-text {
        font-size: 15px;
    }

    .services-cta-title {
        font-size: 22px;
    }

    .services-cta-text {
        font-size: 14px;
    }

    .services-cta-button {
        width: 100%;
        padding: 14px 20px;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .services-section-professional {
        background: #ffffff;
        padding: 20px 0;
    }

    .services-header-box {
        background: #f0f0f0;
        box-shadow: none;
    }

    .services-main-title {
        color: #000000;
    }

    .services-column {
        box-shadow: none;
        border: 1px solid #e0e0e0;
        page-break-inside: avoid;
    }

    .services-cta-box {
        background: #f0f0f0;
        box-shadow: none;
    }

    .services-cta-button {
        border: 2px solid #000;
    }
}

/* ===================================
   Accessibility
   =================================== */
.services-section-professional :focus-visible {
    outline: 3px solid #38b6ff;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .services-header-box,
    .services-intro,
    .services-content-grid,
    .services-cta-box,
    .services-column,
    .services-feature-item {
        animation: none !important;
        transition: none !important;
    }
}
