/* Modern Katalog Page Styles - Matching Home Theme */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4ff 100%);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
#katalog-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0066cc 0%, #00baff 100%);
    color: white;
  overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatCircle 20s ease-in-out infinite;
}

.circle-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.circle-3 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 10%;
    animation-delay: -14s;
}

@keyframes floatCircle {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-30px) rotate(90deg) scale(1.1); 
        opacity: 0.5;
    }
    50% { 
        transform: translateY(-60px) rotate(180deg) scale(0.9); 
        opacity: 0.7;
    }
    75% { 
        transform: translateY(-30px) rotate(270deg) scale(1.1); 
        opacity: 0.5;
    }
}

.hero-content {
  position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Hero Stats */
.hero-stats {
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}



/* Main Katalog Section */
#katalog-main {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.katalog-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.katalog-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 186, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 186, 255, 0.05) 0%, transparent 50%);
}

.katalog-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(0, 186, 255, 0.1), rgba(0, 230, 255, 0.05));
    border-radius: 50%;
    animation: floatShape 25s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 70%;
    right: 10%;
    animation-delay: -8s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 5%;
    animation-delay: -16s;
}

.shape-4 {
    width: 60px;
    height: 60px;
    top: 85%;
    left: 20%;
    animation-delay: -24s;
}

@keyframes floatShape {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
        opacity: 0.4;
    }
    25% { 
        transform: translateY(-25px) rotate(90deg) scale(1.1); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-50px) rotate(180deg) scale(0.9); 
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-25px) rotate(270deg) scale(1.1); 
        opacity: 0.6;
    }
}

.container {
    position: relative;
    z-index: 1;
}



/* Katalog Sections */
.katalog-section {
    margin-bottom: 6rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 186, 255, 0.1);
    transition: all 0.3s ease;
    scroll-margin-top: 100px;
}

.katalog-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 186, 255, 0.15);
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.section-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00baff, #0066cc);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 186, 255, 0.3);
    transition: all 0.3s ease;
}

.katalog-section:hover .section-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 186, 255, 0.4);
}

.section-info {
    flex: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 186, 255, 0.1);
    border: 1px solid rgba(0, 186, 255, 0.2);
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0066cc;
    backdrop-filter: blur(10px);
}

.section-badge i {
    color: #00baff;
    font-size: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #0066cc 0%, #00baff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
}

.features-list {
    display: block;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.features-list .feature-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #555;
    background: rgba(0, 186, 255, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 186, 255, 0.1);
}

.features-list .feature-item i {
    color: #00baff;
}

.section-action {
    margin-left: auto;
    flex-shrink: 0;
}

.section-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00baff, #0066cc);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 186, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.section-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.5s ease;
}

.section-btn:hover::before {
    left: 100%;
}

.section-btn:hover {
    background: linear-gradient(135deg, #0066cc, #00baff);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 186, 255, 0.4);
    color: white;
    text-decoration: none;
}

.section-btn i {
    transition: transform 0.3s ease;
}

.section-btn:hover i {
    transform: translateX(3px);
}

/* Katalog Content */
.katalog-content {
    margin-top: 2rem;
}

/* Service Image */
.service-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    margin-bottom: 2rem;
}

.service-image-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00baff, #0066cc);
    opacity: 0.1;
    z-index: 1;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image-wrapper:hover .service-image {
    transform: scale(1.05);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 102, 204, 0.8) 0%, 
        rgba(0, 186, 255, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.service-image-wrapper:hover .service-image-overlay {
  opacity: 1;
}

.service-features {
    text-align: center;
    color: white;
}

.service-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.service-image-wrapper:hover .service-feature-item {
    opacity: 1;
    transform: translateY(0);
}

.service-feature-item:nth-child(1) { transition-delay: 0.1s; }
.service-feature-item:nth-child(2) { transition-delay: 0.2s; }
.service-feature-item:nth-child(3) { transition-delay: 0.3s; }

.service-feature-item i {
    font-size: 1.2rem;
}

/* Employees Carousel */
.employees-carousel-wrapper {
    position: relative;
}

.employees-carousel {
    padding: 1rem 0;
}

.employees-carousel .owl-stage-outer {
    padding: 1rem 0;
}

.employees-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.employees-carousel .owl-item {
    display: flex;
    align-items: stretch;
}

.employees-carousel .item {
    display: flex;
    width: 100%;
}

.employee-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 0 10px;
    box-shadow: 0 5px 20px rgba(0, 186, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.employee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 186, 255, 0.2);
    border-color: rgba(0, 186, 255, 0.3);
}

.employee-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.employee-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.employee-card:hover .employee-image {
  transform: scale(1.1);
}

.employee-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 102, 204, 0.8) 0%, 
        rgba(0, 186, 255, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.employee-card:hover .employee-overlay {
    opacity: 1;
}

.employee-actions {
    display: flex;
    gap: 1rem;
}

.employee-action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.employee-action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    color: white;
}

.whatsapp-btn:hover {
    background: #25D366;
    border-color: #25D366;
}

.employee-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00baff, #0066cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 186, 255, 0.3);
    z-index: 3;
}

.employee-info {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.employee-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #0066cc 0%, #00baff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.5;
}

.employee-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.employee-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars i {
    color: #ffd700;
  font-size: 0.9rem;
}

.rating-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

/* Call to Action */
.katalog-cta {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 4rem 2rem;
    margin-top: 4rem;
    box-shadow: 0 10px 40px rgba(0, 186, 255, 0.1);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 186, 255, 0.1);
    border: 1px solid rgba(0, 186, 255, 0.2);
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0066cc;
    backdrop-filter: blur(10px);
}

.cta-badge i {
    color: #00baff;
    font-size: 1rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0066cc 0%, #00baff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #00baff, #0066cc);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 186, 255, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn.primary:hover {
    background: linear-gradient(135deg, #0066cc, #00baff);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 186, 255, 0.4);
    color: white;
}

.cta-btn.secondary:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(3px);
}

/* Owl Carousel Custom Styles - Reimproved */
.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.owl-carousel .owl-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(0, 186, 255, 0.3);
    color: #0066cc;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.18);
    pointer-events: all;
    opacity: 0;
    transform: scale(0.85);
}

/* Show on desktop hover */
.employees-carousel-wrapper:hover .owl-nav button {
    opacity: 1;
    transform: scale(1);
}

/* Always show on touch devices */
@media (hover: none) and (pointer: coarse) {
    .owl-carousel .owl-nav button {
        opacity: 1 !important;
        transform: scale(1) !important;
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}

.owl-carousel .owl-nav button:hover {
    background: linear-gradient(135deg, #00baff, #0066cc);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
    transform: scale(1.1) !important;
    color: white;
    border-color: transparent;
}

.owl-carousel .owl-nav .owl-prev {
    margin-left: -22px;
}

.owl-carousel .owl-nav .owl-next {
    margin-right: -22px;
}

/* Owl Carousel Dot Indicators */
.owl-carousel .owl-dots {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    padding: 4px 0;
}

/* Button wrapper — transparent tap target */
.owl-carousel .owl-dots .owl-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    margin: 0;
    flex-shrink: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* The visible dot is the span */
.owl-carousel .owl-dots .owl-dot span {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0, 186, 255, 0.3);
    border: 1.5px solid rgba(0, 186, 255, 0.5);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin: 0;
}

.owl-carousel .owl-dots .owl-dot:hover span {
    background: rgba(0, 186, 255, 0.6);
    border-color: #00baff;
}

/* Active dot — pill shape */
.owl-carousel .owl-dots .owl-dot.active span {
    width: 24px;
    height: 7px;
    border-radius: 4px;
    background: linear-gradient(90deg, #00baff, #0066cc);
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(0, 186, 255, 0.4);
}

/* Nav prev/next offset already set by margin-left/right */

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .katalog-section {
        padding: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-image-wrapper {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .katalog-section {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    #katalog-hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    

    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .service-image-wrapper {
        height: 250px;
    }
    
    .employee-image-wrapper {
        height: 250px;
    }
    
    .katalog-section {
        padding: 1.5rem;
        margin-bottom: 4rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-badge {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-image-wrapper {
        height: 200px;
    }
    
    .employee-image-wrapper {
        height: 220px;
    }
    
    .employee-info {
        padding: 1rem;
    }
    
    .employee-name {
        font-size: 1.1rem;
    }
    
    .employee-description {
        font-size: 0.9rem;
    }
    
    .katalog-cta {
        padding: 3rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .owl-carousel .owl-nav .owl-prev {
        left: -15px;
    }
    
    .owl-carousel .owl-nav .owl-next {
        right: -15px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .floating-circle,
    .floating-shape,
    .employee-card,
    .service-image,
    .employee-image {
        animation: none;
        transition: none;
    }
    
    .employee-card:hover,
    .service-image-wrapper:hover .service-image,
    .employee-card:hover .employee-image {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .katalog-section,
    .employee-card,
    .katalog-cta {
        border: 2px solid #0066cc;
        background: white;
    }
    
    .hero-title,
    .section-title,
    .employee-name,
    .cta-title {
        -webkit-text-fill-color: #0066cc;
    }
}

/* Focus Styles */
.section-btn:focus,
.employee-action-btn:focus,
.cta-btn:focus {
    outline: 3px solid rgba(0, 186, 255, 0.5);
    outline-offset: 2px;
}