/* ===================================
   SERVICES PAGE STYLES WITH SLIDESHOW
   =================================== */

/* Hero Section */
.services-hero {
    margin-top: 80px;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f4c81 0%, #2196F3 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 2rem;
}

.hero-text {
    color: white;
}

.eyebrow {
    display: inline-block;
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #fbbf24;
    color: #0f4c81;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #fbbf24;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #0f4c81;
}

/* ===================================
   SLIDESHOW STYLES
   =================================== */

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
    padding: 3rem 2rem 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Slide Controls */
.slide-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 1.2rem;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-control:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slide-control.prev {
    left: 1.5rem;
}

.slide-control.next {
    right: 1.5rem;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: #fbbf24;
    border-color: #fbbf24;
    width: 30px;
    border-radius: 10px;
}

/* Services Overview */
.services-overview {
    padding: 4rem 2rem 2rem;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #0f4c81;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Content */
.services-content {
    padding: 4rem 2rem;
    background: white;
}

.service-category {
    margin-bottom: 5rem;
    animation: fadeIn 0.5s ease-in;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Business Category - Gradient with Rocket Pattern */
.business-category {
    position: relative;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    padding: 4rem 2rem;
    border-radius: 30px;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(33, 150, 243, 0.1);
}

.business-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(33, 150, 243, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(15, 76, 129, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.business-category::after {
    content: '🚀';
    position: absolute;
    font-size: 20rem;
    top: 50%;
    right: -5%;
    transform: translateY(-50%) rotate(15deg);
    opacity: 0.05;
    z-index: 0;
    animation: float 10s ease-in-out infinite;
}

.business-category > * {
    position: relative;
    z-index: 1;
}

/* Financial Category - Premium Gold Accent */
.financial-category {
    position: relative;
    background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 100%);
    padding: 4rem 2rem;
    border-radius: 30px;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.15);
}

.financial-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(251, 191, 36, 0.03) 40px, rgba(251, 191, 36, 0.03) 80px),
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(245, 158, 11, 0.03) 40px, rgba(245, 158, 11, 0.03) 80px);
    z-index: 0;
}

.financial-category::after {
    content: '💰';
    position: absolute;
    font-size: 20rem;
    bottom: -10%;
    left: -5%;
    opacity: 0.06;
    z-index: 0;
    animation: pulse 5s ease-in-out infinite;
}

.financial-category > * {
    position: relative;
    z-index: 1;
}

.financial-category .category-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Operations Category - Tech Grid Pattern */
.operations-category {
    position: relative;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 4rem 2rem;
    border-radius: 30px;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(71, 85, 105, 0.1);
}

.operations-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(71, 85, 105, 0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(71, 85, 105, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.operations-category::after {
    content: '⚙️';
    position: absolute;
    font-size: 25rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.04;
    z-index: 0;
    animation: float 15s linear infinite;
}

.operations-category > * {
    position: relative;
    z-index: 1;
}

.operations-category .category-icon {
    background: linear-gradient(135deg, #475569, #64748b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Market Category - World Map Themed */
.market-category {
    position: relative;
    background: linear-gradient(135deg, #dcfce7 0%, #f0fdf4 100%);
    padding: 4rem 2rem;
    border-radius: 30px;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.1);
}

.market-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(22, 163, 74, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.market-category::after {
    content: '🌍';
    position: absolute;
    font-size: 25rem;
    top: 50%;
    right: -8%;
    transform: translateY(-50%);
    opacity: 0.06;
    z-index: 0;
}

.market-category > * {
    position: relative;
    z-index: 1;
}

.market-category .category-icon {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Monitoring Category - Data Visualization Theme */
.monitoring-category {
    position: relative;
    background: linear-gradient(135deg, #ddd6fe 0%, #ede9fe 100%);
    padding: 4rem 2rem;
    border-radius: 30px;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.1);
}

.monitoring-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(139, 92, 246, 0.03) 30px, rgba(139, 92, 246, 0.03) 60px),
        repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(124, 58, 237, 0.03) 30px, rgba(124, 58, 237, 0.03) 60px);
    z-index: 0;
}

.monitoring-category::after {
    content: '📈';
    position: absolute;
    font-size: 20rem;
    bottom: -5%;
    right: -5%;
    opacity: 0.07;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.monitoring-category > * {
    position: relative;
    z-index: 1;
}

.monitoring-category .category-icon {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Capacity Building Category - Educational Premium */
.capacity-category {
    position: relative;
    background: linear-gradient(-45deg, #0f4c81, #2196F3, #1e88e5, #0d47a1);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    padding: 5rem 2rem;
    border-radius: 30px;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 76, 129, 0.3);
}

.capacity-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.capacity-category::after {
    content: '🎓';
    position: absolute;
    font-size: 22rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    opacity: 0.08;
    z-index: 0;
    animation: float 12s ease-in-out infinite;
}

.capacity-category > * {
    position: relative;
    z-index: 1;
}

.capacity-category .category-header h2,
.capacity-category .category-header p {
    color: white;
}

.capacity-category .category-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.3));
}

.capacity-category .category-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.capacity-category .service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.capacity-category .service-card:hover {
    background: white;
    border-color: #fbbf24;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Monitoring & Eval Category */
.monitoring-eval-category {
    position: relative;
    background: linear-gradient(135deg, #ddd6fe 0%, #ede9fe 100%);
    padding: 4rem 2rem;
    border-radius: 30px;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.1);
}

.monitoring-eval-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(139, 92, 246, 0.03) 30px, rgba(139, 92, 246, 0.03) 60px),
        repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(124, 58, 237, 0.03) 30px, rgba(124, 58, 237, 0.03) 60px);
    z-index: 0;
}

.monitoring-eval-category::after {
    content: '📊';
    position: absolute;
    font-size: 20rem;
    bottom: -5%;
    right: -5%;
    opacity: 0.07;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.monitoring-eval-category > * {
    position: relative;
    z-index: 1;
}

/* Cooperative Business Category */
#cooperative-business-category {
    position: relative;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 4rem 2rem;
    border-radius: 30px;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.1);
}

#cooperative-business-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(22, 163, 74, 0.05) 0%, transparent 50%);
    z-index: 0;
}

#cooperative-business-category::after {
    content: '🤝';
    position: absolute;
    font-size: 25rem;
    top: 50%;
    right: -8%;
    transform: translateY(-50%);
    opacity: 0.06;
    z-index: 0;
}

#cooperative-business-category > * {
    position: relative;
    z-index: 1;
}

/* CTA Section */
.services-cta {
    background: linear-gradient(135deg, #0f4c81, #2196F3);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    background: #fbbf24;
    color: #0f4c81;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #fbbf24;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
}

.btn-outline-light {
    background: transparent;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: white;
    color: #0f4c81;
}

/* ===================================
   SINGLE CARD STYLES
   =================================== */

.service-card-single {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-single:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.service-card-header {
    background: linear-gradient(135deg, #0f4c81 0%, #2196F3 100%);
    color: white;
    padding: 3rem 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.service-card-header .category-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
    min-width: 70px;
}

.service-card-header h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin: 0;
    font-weight: 700;
}

.service-card-content {
    padding: 3rem 2.5rem;
}

.service-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin: 0 0 2.5rem 0;
    font-weight: 500;
}

.service-supports h3 {
    font-size: 1.4rem;
    color: #0f4c81;
    margin: 0 0 2rem 0;
    font-weight: 600;
}

.modern-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.modern-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid #2196F3;
    transition: all 0.3s ease;
}

.modern-bullets li:hover {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    border-left-color: #fbbf24;
    transform: translateX(8px);
}

.bullet-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    min-width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bullet-icon::before {
    content: '✓';
    color: #2196F3;
    font-weight: bold;
}

.bullet-text {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
    font-weight: 500;
}

.service-link-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0f4c81 0%, #2196F3 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.service-link-btn:hover {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.4);
}

.service-summary {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #fbbf24;
}

/* ===================================
   DARK MODE
   =================================== */

:root.dark .services-overview {
    background: #0f172a;
}

:root.dark .services-content {
    background: #1e293b;
}

:root.dark .service-card-single {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-color: #334155;
}

:root.dark .service-card-content {
    color: #e2e8f0;
}

:root.dark .service-intro,
:root.dark .bullet-text {
    color: #cbd5e1;
}

:root.dark .service-supports h3 {
    color: #60a5fa;
}

:root.dark .modern-bullets li {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    border-left-color: #60a5fa;
}

:root.dark .modern-bullets li:hover {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15) 0%, rgba(251, 191, 36, 0.15) 100%);
}

:root.dark .bullet-icon::before {
    color: #60a5fa;
}

:root.dark .service-summary {
    background: #1e293b;
    color: #cbd5e1;
}

:root.dark .section-title {
    color: #60a5fa;
}

:root.dark .section-subtitle {
    color: #94a3b8;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .hero-content-wrapper {
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-slideshow {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .services-hero {
        margin-top: 70px;
        min-height: auto;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-slideshow {
        height: 350px;
    }

    .slide-caption {
        font-size: 1.2rem;
        padding: 2rem 1.5rem 1.5rem;
    }

    .slide-control {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        padding: 0.8rem 1rem;
    }

    .slide-control.prev {
        left: 1rem;
    }

    .slide-control.next {
        right: 1rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 24px;
    }

    .service-card-single {
        margin: 0 -1rem;
        border-radius: 12px;
    }

    .service-card-header {
        flex-direction: column;
        padding: 2.5rem 1.5rem;
        text-align: center;
    }

    .service-card-header .category-icon {
        font-size: 3rem;
        margin: 0 auto;
    }

    .service-card-header h2 {
        font-size: 1.6rem;
    }

    .service-card-content {
        padding: 2rem 1.5rem;
    }

    .service-intro {
        font-size: 1rem;
    }

    .service-supports h3 {
        font-size: 1.2rem;
    }

    .modern-bullets li {
        padding: 1.2rem;
        margin-bottom: 1.2rem;
        gap: 1rem;
    }

    .bullet-icon {
        font-size: 1.5rem;
        min-width: 40px;
        height: 40px;
    }

    .bullet-text {
        font-size: 1rem;
    }

    .service-link-btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .business-category,
    .financial-category,
    .operations-category,
    .market-category,
    .monitoring-category,
    .capacity-category,
    .monitoring-eval-category,
    #cooperative-business-category {
        padding: 3rem 1.5rem;
        border-radius: 20px;
    }

    .capacity-category {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-slideshow {
        height: 300px;
        border-radius: 15px;
    }

    .slide-caption {
        font-size: 1rem;
        padding: 1.5rem 1rem 1rem;
    }

    .slide-control {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .slide-control.prev {
        left: 0.5rem;
    }

    .slide-control.next {
        right: 0.5rem;
    }

    .slide-indicators {
        bottom: 1rem;
    }

    .service-card-header {
        padding: 2rem 1rem;
    }

    .service-card-header .category-icon {
        font-size: 2.5rem;
    }

    .service-card-header h2 {
        font-size: 1.4rem;
    }

    .service-card-content {
        padding: 1.5rem 1rem;
    }

    .service-intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .service-supports h3 {
        font-size: 1.1rem;
    }

    .modern-bullets li {
        padding: 1rem;
        margin-bottom: 1rem;
        gap: 0.8rem;
    }

    .bullet-icon {
        font-size: 1.3rem;
        min-width: 38px;
        height: 38px;
    }

    .bullet-text {
        font-size: 0.95rem;
    }

    .service-link-btn {
        width: 100%;
        text-align: center;
        padding: 0.85rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large,
    .btn-outline-light {
        width: 100%;
        max-width: 300px;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .services-hero,
    .hero-slideshow,
    .hero-cta,
    .services-cta,
    .service-link-btn {
        display: none;
    }

    .service-card-single {
        page-break-inside: avoid;
        border: 1px solid #ddd;
        box-shadow: none;
    }

    .business-category,
    .financial-category,
    .operations-category,
    .market-category,
    .monitoring-category,
    .capacity-category,
    .monitoring-eval-category,
    #cooperative-business-category {
        background: white !important;
        box-shadow: none !important;
    }

    .business-category::before,
    .business-category::after,
    .financial-category::before,
    .financial-category::after,
    .operations-category::before,
    .operations-category::after,
    .market-category::before,
    .market-category::after,
    .monitoring-category::before,
    .monitoring-category::after,
    .capacity-category::before,
    .capacity-category::after,
    .monitoring-eval-category::before,
    .monitoring-eval-category::after,
    #cooperative-business-category::before,
    #cooperative-business-category::after {
        display: none !important;
    }
}