/* MİMAROBA REHABİLİTASYON - MODERN PREMIUM FRONTEND CSS */

:root {
    --primary-color: #667eea;
    --primary-dark: #764ba2;
    --secondary-color: #f093fb;
    --accent-color: #4facfe;
    --success-color: #00d4aa;
    --warning-color: #ffc107;
    --danger-color: #ff6b6b;
    --info-color: #17a2b8;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --text-color: #2d3748;
    --text-light: #718096;
    --border-color: #e2e8f0;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 16px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-attachment: fixed;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-info a,
.top-social a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
}

.top-social a {
    font-size: 18px;
    margin-left: 15px;
    margin-right: 0;
}

.top-info a:hover,
.top-social a:hover {
    opacity: 0.8;
}

/* Navbar - Glassmorphism Enhanced */
.navbar {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar.navbar-scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.95) !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-brand i {
    font-size: 28px;
    vertical-align: middle;
}

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    line-height: 1.3;
}

.brand-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    margin: 0;
    line-height: 1.2;
}

.brand-text {
    color: var(--primary-dark);
}

/* Responsive Brand Text */
@media (max-width: 991.98px) {
    .brand-title {
        font-size: 14px;
    }
    
    .brand-subtitle {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 20px;
    }
    
    .navbar-logo {
        max-height: 35px !important;
        margin-right: 8px !important;
    }
    
    .brand-title {
        font-size: 13px;
    }
    
    .brand-subtitle {
        font-size: 10px;
    }
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 10px 15px !important;
    transition: all 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    list-style: none !important;
    margin: 0 auto !important;
    padding: 0 !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
}

.nav-item {
    display: list-item !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.navbar-collapse {
    display: flex !important;
}

@media (max-width: 991.98px) {
    .navbar-collapse.collapse:not(.show) {
        display: none !important;
    }
    .navbar-collapse.collapse.show {
        display: block !important;
    }
    .navbar-nav {
        flex-direction: column !important;
        width: 100% !important;
        text-align: center !important;
    }
    .navbar-nav .nav-item {
        width: 100% !important;
    }
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    max-width: 300px !important;
    max-height: 400px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

/* Dropdown menu başlangıçta gizli olmalı */
.dropdown-menu:not(.show) {
    display: none !important;
}

.dropdown-menu.show {
    display: block !important;
}

.services-dropdown-menu {
    max-width: 350px !important;
}

.services-dropdown-menu .dropdown-header {
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-color);
    padding: 10px 20px 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f8f9fa;
    margin: 0;
    border-bottom: 2px solid var(--primary-color);
}

.services-dropdown-menu .dropdown-divider {
    margin: 8px 0;
    border-color: #e9ecef;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-item i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
    display: inline-block;
}

.dropdown-item:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Hero Section - Ultra Modern Premium */
.hero-modern {
    position: relative;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
    min-height: 700px;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    animation: kenburns 20s ease-in-out infinite alternate;
}

.hero-gradient {
    background: linear-gradient(135deg, #667eea 0%, #4facfe 50%, #00f2fe 100%);
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
    box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.1);
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.5s ease;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.hero-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 12px 30px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
    font-size: 20px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 2px 10px rgba(0,0,0,0.4);
    letter-spacing: -2px;
    line-height: 1.1;
    color: #ffffff;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 45px;
    font-weight: 400;
    opacity: 0.98;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4), 0 1px 6px rgba(0, 0, 0, 0.3);
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(79, 172, 254, 0.1) 50%, rgba(0, 242, 254, 0.1) 100%);
    border: 2px solid rgba(79, 172, 254, 0.3);
    border-radius: 50px;
    padding: 8px 25px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-badge i {
    font-size: 16px;
    color: var(--warning-color);
}

/* Section Titles - Modern */
.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
    position: relative;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.section-subtitle {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 50px;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Cards - Modern Premium */
.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 45px 35px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.25);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 28px;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
}

.service-card:hover .service-icon::after {
    opacity: 0.6;
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
    z-index: 1;
}

.service-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.service-link i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ============================================
   SERVICES VISUAL CAROUSEL SECTION
   ============================================ */

.services-section-visual {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services-section-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(102,126,234,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.services-section-visual .container {
    position: relative;
    z-index: 1;
}

.category-title-main {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -1px;
}

.services-category-section {
    margin-bottom: 80px;
}

.services-category-section:last-child {
    margin-bottom: 0;
}

.services-scroll-wrapper {
    position: relative;
    padding: 0 60px;
    margin: 0 auto;
}

.services-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    width: 100%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.services-scroll-container::-webkit-scrollbar {
    display: none;
}

.services-scroll-track {
    display: flex;
    gap: 30px;
    width: max-content;
    min-width: 100%;
}

.services-scroll-track:active {
    cursor: grabbing;
}

.service-card-visual {
    flex-shrink: 0;
    width: 380px;
    min-width: 380px;
    max-width: 380px;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card-visual:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.25);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-visual:hover .service-image {
    transform: scale(1.1);
}

.service-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 80px;
    position: relative;
    overflow: hidden;
}

.service-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.service-image-placeholder i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-visual:hover .service-overlay {
    opacity: 1;
}

.service-content-visual {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content-visual h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.3;
    min-height: 65px;
}

.service-content-visual p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.btn-service-detail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3);
}

.btn-service-detail:hover {
    background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(32, 201, 151, 0.4);
    color: white;
}

.btn-service-detail i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-service-detail:hover i {
    transform: translateX(3px);
}

.scroll-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.scroll-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.scroll-prev {
    left: 0;
}

.scroll-next {
    right: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .services-scroll-wrapper {
        padding: 0 50px;
    }
    
    .service-card-visual {
        width: 320px;
        min-width: 320px;
        max-width: 320px;
    }
    
    .category-title-main {
        font-size: 32px;
    }
    
    .scroll-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .scroll-prev {
        left: 10px;
    }
    
    .scroll-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .services-scroll-wrapper {
        padding: 0 40px;
    }
    
    .service-card-visual {
        width: 280px;
        min-width: 280px;
        max-width: 280px;
    }
    
    .service-image-wrapper {
        height: 220px;
    }
    
    .service-content-visual {
        padding: 20px;
    }
    
    .service-content-visual h4 {
        font-size: 20px;
        min-height: auto;
    }
}

/* Trainer Cards - Modern Premium */
.trainer-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.9);
    height: 100%;
    position: relative;
}

.trainer-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.trainer-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.trainer-card:hover::after {
    transform: scaleX(1);
}

.trainer-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.trainer-card:hover .trainer-image img {
    transform: scale(1.1);
}

.trainer-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 100px;
}

.trainer-info {
    padding: 25px;
    text-align: center;
}

.trainer-info h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.trainer-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.trainer-education,
.trainer-description {
    color: #666;
    font-size: 14px;
}

/* Testimonials Section - Premium Background */
.testimonials-section {
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: 50px auto;
    border-radius: 20px;
    padding: 40px 35px;
}


.testimonial-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
    border-radius: 20px;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.03) 0px,
        transparent 1px,
        transparent 40px,
        rgba(255, 255, 255, 0.03) 41px
    ),
    repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.03) 0px,
        transparent 1px,
        transparent 40px,
        rgba(255, 255, 255, 0.03) 41px
    );
    z-index: 0;
}

/* Testimonial Cards - Ultra Premium Glass */
.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.quote-mark {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    margin-bottom: 12px;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-rating {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 16px;
}

.testimonial-text {
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
    min-height: 70px;
}

.testimonial-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 12px;
}

.testimonial-author {
    font-weight: 700;
    color: white;
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.testimonial-control {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonial-control:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.testimonial-control i {
    font-size: 28px;
    color: white;
}

/* Testimonials Responsive */
@media (max-width: 1200px) {
    .testimonials-section {
        max-width: 95%;
        margin: 40px auto;
        padding: 35px 30px;
    }
}

@media (max-width: 992px) {
    .testimonials-section {
        max-width: 100%;
        margin: 30px auto;
        padding: 30px 20px;
        border-radius: 0;
    }
    
    .testimonial-bg {
        border-radius: 0;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-section .container {
        padding: 0 15px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .quote-mark {
        font-size: 40px;
        margin-bottom: 12px;
    }
    
    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
        min-height: 60px;
        margin-bottom: 15px;
    }
    
    .testimonial-footer {
        padding-top: 12px;
    }
    
    .testimonial-author {
        font-size: 16px;
    }
    
    .testimonial-role {
        font-size: 13px;
    }
    
    .testimonial-rating {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .testimonial-control {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-control i {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 30px 0 !important;
    }
    
    .testimonials-section .container {
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 18px;
        border-radius: 20px;
    }
    
    .quote-mark {
        font-size: 35px;
        margin-bottom: 10px;
    }
    
    .testimonial-text {
        font-size: 13px;
        line-height: 1.5;
        min-height: 50px;
        margin-bottom: 12px;
    }
    
    .testimonial-footer {
        padding-top: 10px;
    }
    
    .testimonial-author {
        font-size: 15px;
    }
    
    .testimonial-role {
        font-size: 12px;
    }
    
    .testimonial-rating {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .testimonial-control {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-control i {
        font-size: 20px;
    }
}

/* Testimonials Modern Section */
.testimonials-modern {
    background: #f8f9fa;
    position: relative;
}

.testimonial-card-modern {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar span {
    color: white;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

.testimonial-rating-modern {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 3px;
}

.testimonial-quote-icon {
    font-size: 60px;
    color: #e0e0e0;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text-modern {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
    flex: 1;
}

.testimonial-author-modern {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.testimonial-role-modern {
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* Testimonials Carousel - Mobile */
#testimonialsCarousel {
    padding-bottom: 50px;
}

#testimonialsCarousel .carousel-indicators {
    bottom: 10px;
    margin-bottom: 0;
}

#testimonialsCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    margin: 0 5px;
}

#testimonialsCarousel .carousel-indicators button.active {
    background-color: var(--primary-color);
}

#testimonialsCarousel .carousel-control-prev,
#testimonialsCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#testimonialsCarousel .carousel-control-prev:hover,
#testimonialsCarousel .carousel-control-next:hover {
    opacity: 1;
}

#testimonialsCarousel .carousel-control-prev {
    left: 10px;
}

#testimonialsCarousel .carousel-control-next {
    right: 10px;
}

#testimonialsCarousel .carousel-control-prev-icon,
#testimonialsCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Testimonials Responsive */
@media (max-width: 768px) {
    .testimonial-card-modern {
        padding: 25px 20px;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .testimonial-avatar {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .testimonial-avatar span {
        font-size: 28px;
    }
    
    .testimonial-quote-icon {
        font-size: 50px;
        margin-bottom: 15px;
    }
    
    .testimonial-text-modern {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .testimonial-name {
        font-size: 16px;
    }
}

/* Gallery Items */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    font-size: 48px;
    margin-bottom: 10px;
}

/* CTA Section - Enhanced */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-section p {
    font-size: 20px;
    opacity: 0.95;
}

/* Page Header - Modern Premium */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 70px;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    backdrop-filter: blur(5px);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100px;
    background: #f5f7fa;
    border-radius: 50% 50% 0 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.page-header .breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: white;
}

.page-header .breadcrumb-item.active {
    color: rgba(255,255,255,0.8);
}

/* Region Landing Page - Modern Hero */
.region-landing-hero {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 140px 0 80px;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.region-hero-title {
    font-size: 72px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.region-hero-description {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.region-stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.region-stat-item {
    text-align: center;
    color: #ffffff;
    min-width: 150px;
}

.region-stat-number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
}

.region-stat-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    font-weight: 500;
}

.region-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.region-shape-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    pointer-events: none;
}

.region-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.region-shape-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    right: -80px;
}

/* Region Landing Responsive */
@media (max-width: 768px) {
    .region-landing-hero {
        padding: 100px 0 60px;
        min-height: 500px;
    }
    
    .region-hero-title {
        font-size: 42px;
    }
    
    .region-hero-description {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .region-stats-container {
        gap: 20px;
        padding: 0 20px;
    }
    
    .region-stat-item {
        min-width: 120px;
    }
    
    .region-stat-number {
        font-size: 28px;
    }
    
    .region-stat-text {
        font-size: 12px;
    }
    
    .region-content-section {
        padding: 50px 0;
    }
    
    .region-image-box,
    .region-highlights-box {
        padding: 30px 20px;
    }
    
    .region-highlights-title {
        font-size: 18px;
    }
    
    .region-intro-content {
        padding: 30px 20px;
    }
}

/* Region Content Section */
.region-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.region-image-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.region-image-placeholder {
    text-align: center;
    color: #cbd5e0;
}

.region-image-placeholder i {
    font-size: 64px;
    margin-bottom: 15px;
    display: block;
}

.region-image-placeholder p {
    font-size: 16px;
    color: #a0aec0;
    margin: 0;
}

.region-highlights-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.region-highlights-title {
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 25px;
    line-height: 1.4;
}

.region-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.region-highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.region-highlights-list li:last-child {
    margin-bottom: 0;
}

.region-highlights-list li i {
    color: #38b2ac;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.region-highlights-list li span {
    flex: 1;
}

.region-intro-content {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* Region Rich Content Styles */
.region-services-content h3,
.region-intro-content h3,
.region-why-content h3 {
    color: #667eea;
    font-size: 26px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid rgba(102, 126, 234, 0.2);
    position: relative;
}

.region-services-content h3:first-child,
.region-intro-content h3:first-child,
.region-why-content h3:first-child {
    margin-top: 0;
}

.region-services-content p,
.region-intro-content p,
.region-why-content p {
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.8;
    font-size: 16px;
}

.region-services-content ul,
.region-intro-content ul,
.region-why-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.region-services-content li,
.region-intro-content li,
.region-why-content li {
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.7;
}

/* Region Services Section */
.region-services-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.region-section-title {
    font-size: 42px;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.region-section-subtitle {
    font-size: 18px;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
}

.region-services-content {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-top: 40px;
}

/* Region Why Section */
.region-why-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
}

.region-why-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.region-why-content {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

/* Content Box */
.content-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 16px;
}

/* Stats Section */
.stat-box {
    padding: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #666;
    font-weight: 600;
}

/* Contact Info Boxes - Modern Premium */
.contact-info-box {
    text-align: center;
    padding: 45px 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-info-box:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.contact-info-box:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.contact-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 28px;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s ease;
}

.contact-info-box:hover .contact-icon {
    transform: rotateY(360deg) scale(1.1);
}

.contact-info-box:hover .contact-icon::after {
    opacity: 0.6;
}

.contact-info-box h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info-box a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Contact Form */
.contact-form .form-control,
.contact-form .form-select {
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Blog Cards - Modern Premium */
.blog-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.07);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.9);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-meta {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-meta span {
    margin-right: 15px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-dark);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.other-services-widget {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border: 1px solid rgba(102, 126, 234, 0.15);
}

.other-services-widget .widget-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}

.badge-soft-primary {
    background: rgba(102, 126, 234, 0.12);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 6px 12px;
    font-weight: 600;
    font-size: 12px;
}

.other-services-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(102, 126, 234, 0.08);
}

.other-services-grid::-webkit-scrollbar {
    width: 8px;
}

.other-services-grid::-webkit-scrollbar-track {
    background: rgba(102, 126, 234, 0.06);
    border-radius: 10px;
}

.other-services-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.other-service-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(102, 126, 234, 0.12);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.04) 0%, rgba(118, 75, 162, 0.06) 100%);
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.other-service-card:hover {
    transform: translateX(6px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.12);
    border-color: rgba(102, 126, 234, 0.35);
}

.other-service-card.is-active {
    border-color: rgba(102, 126, 234, 0.55);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.16) 100%);
    box-shadow: 0 10px 30px rgba(118, 75, 162, 0.15);
}

.other-service-card.is-active .service-card-icon {
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
    color: white;
}

.service-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(102, 126, 234, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.service-card-text h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
}

.service-card-text small {
    color: var(--text-light);
    font-size: 12px;
}

.other-service-card .bi-chevron-right {
    margin-left: auto;
    color: var(--primary-color);
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.other-service-card:hover .bi-chevron-right {
    transform: translateX(3px);
    opacity: 1;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.service-list,
.category-list {
    list-style: none;
    padding: 0;
}

.service-list li,
.category-list li {
    margin-bottom: 12px;
}

.service-list a,
.category-list a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
}

.service-list a:hover,
.category-list a:hover,
.service-list a.active,
.category-list a.active {
    color: var(--primary-color);
    padding-left: 10px;
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.cta-widget .widget-title {
    color: white;
}

/* Advantages List */
.advantages-list {
    list-style: none;
    padding: 0;
}

.advantages-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.advantages-list li:last-child {
    border-bottom: none;
}

.advantages-list i {
    margin-right: 10px;
    font-size: 20px;
}

/* Video Cards */
.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.video-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
}

/* WhatsApp Float - Modern */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.4s ease;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    color: white;
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover::after {
    opacity: 0.7;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 10px 50px rgba(37, 211, 102, 0.7);
        transform: scale(1.05);
    }
}

/* Footer - Modern */
.footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 80px 0 30px;
    margin-top: 80px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-contact a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0 20px;
}

.copyright {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* Carousel Controls - Modern */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 3;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

/* Instructor Carousel Controls */
.instructor-carousel-control {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.instructor-carousel-control:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.instructor-carousel-control.carousel-control-prev {
    left: -25px;
}

.instructor-carousel-control.carousel-control-next {
    right: -25px;
}

@media (max-width: 768px) {
    .instructor-carousel-control {
        width: 40px;
        height: 40px;
    }
    
    .instructor-carousel-control.carousel-control-prev {
        left: -15px;
    }
    
    .instructor-carousel-control.carousel-control-next {
        right: -15px;
    }
}

/* Responsive - Enhanced */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 56px;
    }
    
    .hero-stats {
        gap: 20px;
        padding: 25px 30px;
    }
    
    .stat-item {
        gap: 10px;
    }
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 500px;
        height: 100vh;
        max-height: 600px;
    }
    
    .hero-image {
        animation: none; /* Kenburns animasyonunu mobilde kapat */
    }
    
    .hero-overlay {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(1px);
        -webkit-backdrop-filter: blur(1px);
        box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.08);
    }
    
    .hero-caption {
        padding: 20px 15px;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-badge {
        padding: 10px 24px;
        font-size: 12px;
        margin-bottom: 20px;
        gap: 8px;
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 8px 32px rgba(79, 172, 254, 0.2);
    }
    
    .hero-badge i {
        font-size: 16px;
        color: #4facfe;
    }
    
    .hero-badge span {
        font-size: 11px; /* Mobilde daha küçük yazı */
    }
    
    .hero-title {
        font-size: 32px;
        letter-spacing: -1px;
        margin-bottom: 20px;
        line-height: 1.2;
        text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.4);
        color: #ffffff;
        filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
        padding: 0 10px;
        opacity: 0.98;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 1px 5px rgba(0, 0, 0, 0.4);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 100%;
        padding: 16px 24px;
        font-size: 14px;
        box-shadow: 0 8px 24px rgba(79, 172, 254, 0.3);
    }
    
    .hero-stats {
        padding: 12px;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 5px);
        padding: 10px;
        gap: 8px;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
        opacity: 0.7;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
    
    .modern-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    .modern-indicators button {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.9);
    }
    
    .modern-indicators button.active {
        width: 32px;
        background: linear-gradient(135deg, #667eea 0%, #4facfe 50%, #00f2fe 100%);
        box-shadow: 0 0 15px rgba(79, 172, 254, 0.7);
    }
    
    .hero-floating-shapes {
        display: none; /* Mobilde floating shapes'i gizle */
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        min-height: 450px;
        max-height: 550px;
    }
    
    .hero-caption {
        padding: 15px 10px;
    }
    
    .hero-overlay {
        background: rgba(255, 255, 255, 0.25);
        box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.06);
    }
    
    .hero-badge {
        padding: 8px 18px;
        font-size: 11px;
        margin-bottom: 15px;
        background: rgba(255, 255, 255, 0.3);
    }
    
    .hero-title {
        font-size: 26px;
        margin-bottom: 15px;
        line-height: 1.15;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 1px 6px rgba(0, 0, 0, 0.4);
        color: #ffffff;
        filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
        padding: 0;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.4);
    }
    
    .hero-buttons {
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .btn-hero {
        padding: 14px 20px;
        font-size: 13px;
    }
    
    .btn-hero i {
        font-size: 14px;
        margin-right: 6px;
    }
    
    .hero-stats {
        padding: 10px;
        gap: 8px;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 4px);
        padding: 8px 5px;
        gap: 6px;
    }
    
    .stat-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 9px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 30px;
        height: 30px;
    }
    
    .carousel-control-prev {
        left: 5px;
    }
    
    .carousel-control-next {
        right: 5px;
    }
}

@media (max-width: 400px) {
    .carousel-item {
        min-height: 400px;
        max-height: 500px;
    }
    
    .hero-title {
        font-size: 22px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 1px 5px rgba(0, 0, 0, 0.4);
        color: #ffffff;
    }
    
    .hero-subtitle {
        font-size: 13px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.4);
    }
    
    .btn-hero {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .hero-stats {
        padding: 8px;
    }
    
    .stat-item {
        flex: 0 0 100%;
        margin-bottom: 5px;
    }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-hero {
    padding: 18px 40px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-hero.btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: #667eea;
    border-color: rgba(255, 255, 255, 0.95);
}

.btn-hero.btn-primary:hover {
    background: white;
    color: #4facfe;
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(79, 172, 254, 0.4);
}

.btn-hero.btn-outline-light {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-hero.btn-outline-light:hover {
    background: white;
    color: #4facfe;
    border-color: #4facfe;
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(79, 172, 254, 0.4);
}

/* Hero Stats Bar */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 30px 50px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
}

/* Floating Shapes */
.hero-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: floating 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation: floating 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 15%;
    animation: floating 7s ease-in-out infinite;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 10px;
}

.wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-indicator p {
    color: white;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Modern Carousel Indicators */
.modern-indicators {
    bottom: 30px;
    z-index: 3;
}

.modern-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.modern-indicators button.active {
    width: 40px;
    border-radius: 6px;
    background: linear-gradient(135deg, #667eea 0%, #4facfe 50%, #00f2fe 100%);
    border-color: white;
    box-shadow: 0 0 20px rgba(79, 172, 254, 0.6);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #4facfe 50%, #00f2fe 100%);
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5568d3 0%, #3d9be8 50%, #00d9e8 100%);
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Floating Animation */
@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

/* Glow Effect */
.glow {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3),
                0 0 40px rgba(102, 126, 234, 0.2),
                0 0 60px rgba(102, 126, 234, 0.1);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Page header gradient text override */
.page-header .gradient-text {
    background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Effect Utility */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Buttons - Modern Premium */
.btn {
    border-radius: 50px;
    padding: 14px 35px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #5568d3 0%, #65428b 100%);
}

.btn-lg {
    padding: 16px 45px;
    font-size: 16px;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* ============================================
   HİZMETLER SAYFASI STİLLERİ
   ============================================ */

/* Page Header - Services */
.services-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
}

.services-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    z-index: 0;
}

.services-header .container {
    position: relative;
    z-index: 1;
}

.services-header .page-title {
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.services-header .page-subtitle {
    color: rgba(255,255,255,0.9);
}

.services-header .page-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-badge i {
    font-size: 18px;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
}

.header-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.header-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
    z-index: 0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-30px) translateX(30px);
    }
    66% {
        transform: translateY(30px) translateX(-30px);
    }
}

.header-shapes .shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.header-shapes .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

.header-shapes .shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation-delay: 10s;
}

/* Services Category */
.services-category {
    margin-bottom: 80px;
}

.category-header {
    margin-bottom: 50px;
}

.category-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.category-title i {
    color: var(--primary-color);
    font-size: 32px;
}

.category-description {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Card Modern (Hizmetler Sayfası) */
.service-card-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.service-card-modern:hover::before {
    opacity: 1;
}

.service-card-header {
    padding: 35px 30px 20px;
    position: relative;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card-modern:hover .service-icon-wrapper {
    transform: rotateY(360deg) scale(1.1);
}

.service-number-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-color);
    z-index: 2;
}

.service-card-body {
    padding: 0 30px 25px;
    position: relative;
    z-index: 1;
}

.service-card-modern .service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark);
    line-height: 1.4;
    min-height: 56px;
}

.service-card-modern .service-description {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

.service-card-footer {
    padding: 0 30px 30px;
    position: relative;
    z-index: 1;
}

.service-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.service-link-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.service-link-btn i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.service-link-btn:hover i {
    transform: translateX(3px);
}

/* Services CTA */
.services-cta {
    margin-top: 60px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 30px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.cta-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-title i {
    color: var(--primary-color);
    font-size: 32px;
}

.cta-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .category-title {
        font-size: 28px;
    }
    
    .service-card-modern .service-title {
        min-height: auto;
    }
    
    .cta-title {
        font-size: 22px;
    }
    
    .cta-box {
        padding: 35px 25px;
    }
}

/* ============================================
   MODERN PAGE HEADERS
   ============================================ */

.about-header,
.contact-header,
.trainers-header,
.blog-header,
.gallery-header,
.service-detail-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
}

.about-header::before,
.contact-header::before,
.trainers-header::before,
.blog-header::before,
.gallery-header::before,
.service-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    z-index: 0;
}

.about-header .container,
.contact-header .container,
.trainers-header .container,
.blog-header .container,
.gallery-header .container,
.service-detail-header .container {
    position: relative;
    z-index: 1;
}

.about-header .page-title,
.contact-header .page-title,
.trainers-header .page-title,
.blog-header .page-title,
.gallery-header .page-title,
.service-detail-header .page-title {
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.about-header .page-subtitle,
.contact-header .page-subtitle,
.trainers-header .page-subtitle,
.blog-header .page-subtitle,
.gallery-header .page-subtitle,
.service-detail-header .page-subtitle {
    color: rgba(255,255,255,0.9);
}

.about-header .page-badge,
.contact-header .page-badge,
.trainers-header .page-badge,
.blog-header .page-badge,
.gallery-header .page-badge,
.service-detail-header .page-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.blog-detail-header {
    padding: 150px 0 100px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.blog-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    z-index: 0;
}

.blog-detail-header .container {
    position: relative;
    z-index: 1;
}

.blog-detail-header .page-title {
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.blog-meta-header {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

.blog-meta-header span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ============================================
   CONTENT CARDS MODERN
   ============================================ */

.content-card-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.content-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

.content-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
}

.content-title i {
    color: var(--primary-color);
    font-size: 28px;
}

.content-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

/* ============================================
   STATS SECTION MODERN
   ============================================ */

.stats-section-modern {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.stat-box-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-box-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-box-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.stat-box-modern:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* ============================================
   CONTACT PAGE MODERN
   ============================================ */

.contact-info-box-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
    height: 100%;
}

.contact-info-box-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.contact-icon-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.contact-info-box-modern h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.contact-info-box-modern p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
}

.contact-info-box-modern a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-box-modern a:hover {
    color: var(--primary-dark);
}

.form-card-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-title i {
    color: var(--primary-color);
    font-size: 32px;
}

.form-group-modern {
    margin-bottom: 25px;
}

.form-label-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 15px;
}

.form-label-modern i {
    color: var(--primary-color);
}

.form-control-modern {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-control-modern:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: white;
}

.alert-modern {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.alert-success-modern {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-danger-modern {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.map-card-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.map-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.map-title i {
    color: var(--primary-color);
    font-size: 32px;
}

.map-container-modern {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ============================================
   TRAINERS PAGE MODERN
   ============================================ */

.trainer-card-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
    height: 100%;
}

.trainer-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.trainer-image-modern {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.trainer-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.trainer-card-modern:hover .trainer-image-modern img {
    transform: scale(1.1);
}

.trainer-placeholder-modern {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--primary-color);
}

.trainer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trainer-card-modern:hover .trainer-overlay {
    opacity: 1;
}

.trainer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
    color: var(--primary-dark);
}

.trainer-info-modern {
    padding: 25px;
}

.trainer-info-modern h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.trainer-position-modern {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.trainer-education-modern {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trainer-description-modern {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.empty-state {
    padding: 60px 20px;
    text-align: center;
}

.empty-state i {
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.empty-state h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-light);
}

/* ============================================
   BLOG PAGE MODERN
   ============================================ */

.blog-card-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
    height: 100%;
}

.blog-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.blog-image-modern {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-modern:hover .blog-image-modern img {
    transform: scale(1.1);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card-modern:hover .blog-overlay {
    opacity: 1;
}

.blog-overlay i {
    font-size: 50px;
    color: white;
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.blog-content-modern {
    padding: 25px;
}

.blog-content-modern h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content-modern h3 a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content-modern h3 a:hover {
    color: var(--primary-color);
}

.blog-meta-modern {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.blog-meta-modern span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-summary {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.read-more-modern {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more-modern:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.sidebar-modern {
    position: sticky;
    top: 100px;
}

.sidebar-widget-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.widget-title-modern {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

.widget-title-modern i {
    color: var(--primary-color);
}

.category-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list-modern li {
    margin-bottom: 10px;
}

.category-list-modern a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.category-list-modern a:hover,
.category-list-modern a.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: var(--primary-color);
    transform: translateX(5px);
}

.popular-posts-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-posts-modern li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.popular-posts-modern li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-posts-modern a {
    display: flex;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.popular-posts-modern a:hover {
    transform: translateX(5px);
}

.popular-posts-modern img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.popular-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 30px;
    flex-shrink: 0;
}

.popular-posts-modern span {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.popular-posts-modern a:hover span {
    color: var(--primary-color);
}

/* ============================================
   BLOG DETAIL MODERN
   ============================================ */

.blog-detail-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.blog-summary-modern {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 30px;
}

.blog-summary-modern .lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

.blog-content-modern {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-color);
}

.blog-share-modern {
    padding-top: 30px;
    border-top: 2px solid rgba(102, 126, 234, 0.1);
}

.blog-share-modern h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.share-facebook {
    background: #1877f2;
    color: white;
}

.share-facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.share-twitter {
    background: #1da1f2;
    color: white;
}

.share-twitter:hover {
    background: #1a91da;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.3);
}

.share-whatsapp {
    background: #25d366;
    color: white;
}

.share-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.related-posts-modern {
    margin-top: 50px;
}

.related-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.related-title i {
    color: var(--primary-color);
    font-size: 32px;
}

/* ============================================
   GALLERY PAGE MODERN
   ============================================ */

.nav-tabs-modern {
    border: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: inline-flex;
}

.nav-link-modern {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link-modern:hover {
    color: var(--primary-color);
}

.nav-link-modern.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.gallery-item-modern {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item-modern:hover img {
    transform: scale(1.1);
}

.gallery-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: white;
    text-align: center;
    padding: 20px;
}

.gallery-item-modern:hover .gallery-overlay-modern {
    opacity: 1;
}

.gallery-overlay-modern i {
    font-size: 50px;
    margin-bottom: 10px;
}

.gallery-overlay-modern p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.video-card-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
}

.video-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.video-thumbnail-modern {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-thumbnail-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-card-modern:hover .video-thumbnail-modern img {
    transform: scale(1.1);
}

.video-play-modern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 40px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.video-play-modern:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-info-modern {
    padding: 20px;
}

.video-info-modern h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   RESPONSIVE UPDATES
   ============================================ */

@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }
    
    .content-title {
        font-size: 24px;
    }
    
    .form-title,
    .map-title {
        font-size: 22px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .content-card-modern,
    .form-card-modern,
    .map-card-modern {
        padding: 25px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
    
    .filter-buttons {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   SERVICE DETAIL PAGE MODERN
   ============================================ */

.service-detail-header {
    padding: 150px 0 100px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.service-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    z-index: 0;
}

.service-detail-header .container {
    position: relative;
    z-index: 1;
}

.service-detail-header .page-title {
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.service-detail-header .page-subtitle {
    color: rgba(255,255,255,0.9);
}

.service-detail-image {
    overflow: hidden;
    border-radius: 15px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-detail-image:hover img {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .service-detail-image {
        margin-bottom: 25px;
    }
    
    .service-detail-image img {
        border-radius: 12px;
    }
}

/* About Section Modern */
.about-section-modern {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-card-modern {
    background: #ffffff;
    border-radius: 25px;
    padding: 50px 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.about-badge-modern {
    color: #ff6b35;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
}

.about-title-modern {
    font-size: 42px;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-title-modern .highlight-text {
    color: #00d4aa;
}

.about-description-modern {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.about-features-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.about-features-modern li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.about-features-modern li i {
    color: #28a745;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.about-buttons-modern {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-about-primary {
    background: #00d4aa;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}

.btn-about-primary:hover {
    background: #00b894;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 170, 0.3);
    color: white;
}

.btn-about-phone {
    background: #ff6b35;
    color: white;
    padding: 14px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-about-phone:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    color: white;
}

.about-images-modern {
    position: relative;
    height: 600px;
}

.about-image-large {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-border-dashed {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px dashed #4facfe;
    border-radius: 50%;
    opacity: 0.6;
    z-index: -1;
}

.about-image-small {
    position: absolute;
    bottom: 0;
    right: 80px;
    width: 280px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.about-image-placeholder i {
    font-size: 80px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.about-image-placeholder p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.about-image-placeholder-small {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.about-image-placeholder-small i {
    font-size: 50px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.about-image-placeholder-small p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

/* About Section Responsive */
@media (max-width: 1200px) {
    .about-image-large {
        width: 450px;
        height: 450px;
    }
    
    .about-image-small {
        width: 250px;
        height: 250px;
        right: 60px;
    }
}

@media (max-width: 992px) {
    .about-card-modern {
        padding: 40px 35px;
        margin-bottom: 40px;
    }
    
    .about-title-modern {
        font-size: 36px;
    }
    
    .about-images-modern {
        height: 500px;
    }
    
    .about-image-large {
        width: 400px;
        height: 400px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .about-image-small {
        width: 220px;
        height: 220px;
        right: 50%;
        transform: translateX(calc(50% - 40px));
    }
}

@media (max-width: 768px) {
    .about-card-modern {
        padding: 30px 25px;
    }
    
    .about-title-modern {
        font-size: 28px;
    }
    
    .about-description-modern {
        font-size: 15px;
    }
    
    .about-buttons-modern {
        flex-direction: column;
    }
    
    .btn-about-primary,
    .btn-about-phone {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .about-images-modern {
        height: 400px;
    }
    
    .about-image-large {
        width: 350px;
        height: 350px;
    }
    
    .about-image-small {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .about-title-modern {
        font-size: 24px;
    }
    
    .about-images-modern {
        height: 350px;
    }
    
    .about-image-large {
        width: 300px;
        height: 300px;
    }
    
    .about-image-small {
        width: 180px;
        height: 180px;
        transform: translateX(calc(50% - 30px));
    }
}

.service-detail-modern {
    background: transparent;
}

.advantages-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.advantages-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.advantages-title i {
    color: #28a745;
    font-size: 32px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 12px;
    border-left: 3px solid #28a745;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.advantage-item i {
    color: #28a745;
    font-size: 20px;
    flex-shrink: 0;
}

.advantage-item span {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
}

.faq-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.faq-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-title i {
    color: var(--primary-color);
    font-size: 32px;
}

.accordion-modern {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-radius: 15px;
    border: 2px solid rgba(102, 126, 234, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item-modern:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.accordion-button-modern {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-button-modern:not(.collapsed) {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    color: var(--primary-color);
}

.accordion-button-modern i:first-child {
    color: var(--primary-color);
    font-size: 20px;
}

.accordion-button-modern i:last-child {
    margin-left: auto;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.accordion-button-modern:not(.collapsed) i:last-child {
    transform: rotate(180deg);
}

.accordion-body-modern {
    padding: 0 25px 25px 60px;
    color: var(--text-color);
    line-height: 1.8;
    font-size: 15px;
}

