/* Ana sayfa için gerekli stil kodları */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #007bff;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #007bff;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: #777;
    font-size: 18px;
}

section {
    padding: 80px 0;
}

/* Hero Bölümü - Slider Tasarımı */
.hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 0;
    padding: 0;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8), rgba(0, 90, 190, 0.8));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero-content .btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,107,53,0.6);
    color: white;
    text-decoration: none;
}

/* Hero Navigation */
.hero-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
}

.hero-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
    font-size: 20px;
}

.hero-nav-btn:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: scale(1.1);
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 15px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.6);
}

.hero-dot.active {
    background: white;
    transform: scale(1.2);
}

.hero-dot:hover {
    background: rgba(255,255,255,0.8);
}

/* Özellikler Bölümü - Yeniden Tasarlanmış */
.features {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23007bff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0095ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 123, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(145deg, #e6f2ff, #f0f8ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(145deg, #007bff, #0095ff);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: white !important;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #007bff;
}

.feature-card p {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #495057;
}

/* Responsive Grid for Features */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 28px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
        margin: 0 auto;
        max-width: 400px;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
    }
    
    .feature-icon i {
        font-size: 26px;
    }
    
    .feature-card h3 {
        font-size: 19px;
    }
}

@media (max-width: 576px) {
    .features {
        padding: 80px 0;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
    
    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
}

/* Paketler Bölümü */
.packages {
    background-color: #fff;
}

/* Paket Kart Stilleri - 4 paket yan yana - Diğer koddan taşındı */
.pricing-container-wrapper {
    width: 100%;
    margin: 20px auto;
    padding: 40px;
    background-color: #f7f9fc;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
}

.pricing-section {
    padding: 0;
}

.pricing-container {
    display: flex;
    flex-wrap: nowrap; /* Yan yana kalması için wrap'i engelledik */
    justify-content: center;
    gap: 20px;
    padding: 0;
}

.pricing-card {
    flex: 1;
    min-width: 0; /* min-width'i 0 yaparak tam genişliğe sığmasını sağladık */
    max-width: none; /* max-width sınırını kaldırdık */
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #eaeaea;
    display: flex; /* Flex container yapıyoruz */
    flex-direction: column; /* İçerikleri dikey olarak düzenliyoruz */
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Popüler kart */
.pricing-card.popular {
    border: 3px solid #ff6a00;
    transform: scale(1.03);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: translateY(-10px) scale(1.03);
}

.popular-badge {
    background-color: #ff6a00;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Paket Başlığı */
.package-name {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    padding: 20px 10px;
    color: #333;
    background-color: #f8f9fa;
}

.popular .package-name {
    background-color: #fff8f0;
    color: #ff6a00;
}

/* Fiyat Alanı */
.price-area {
    background-color: #ffffff;
    padding: 15px 10px;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
    position: relative;
}

.price {
    font-size: 38px;
    font-weight: 900;
    color: #222;
    margin: 0;
    line-height: 1.2;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.popular .price {
    color: #ff6a00;
}

.price-currency {
    font-size: 24px;
    vertical-align: top;
    line-height: 1;
    margin-right: 2px;
}

.price-period {
    font-size: 14px;
    color: #777;
    margin-left: 6px;
}

/* Özellikler Listesi */
.features-list {
    list-style-type: none;
    margin: 0;
    padding: 20px 15px;
    flex-grow: 1; /* Özellikler alanını genişlet, böylece butonlar alt kısımda aynı hizada olsun */
}

.pricing-card .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #444;
    font-size: 14px;
    line-height: 1.4;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    text-align: left;
    transform: none;
}

.pricing-card .feature-item:hover {
    transform: none;
    box-shadow: none;
}

.pricing-card .feature-item i {
    color: #2ecc71;
    margin-right: 8px;
    font-size: 16px;
    min-width: 16px;
}

.pricing-card .feature-item.disabled {
    color: #999;
}

.pricing-card .feature-item.disabled i {
    color: #ddd;
}

/* Satın Al Düğmesi */
.pricing-button {
    display: block;
    margin: 0px 15px 20px;
    padding: 12px 0;
    background: transparent;
    color: #2980b9;
    border: 2px solid #2980b9;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pricing-button:hover {
    background-color: #2980b9;
    color: white;
}

.popular .pricing-button {
    background-color: #ff6a00;
    color: white;
    border-color: #ff6a00;
}

.popular .pricing-button:hover {
    background-color: #e85d00;
}

/* VIDEO & BLOG SLIDER - DÜZELTME YAPILDI */
/* ---------------------------------------------- */

/* Slider ana bölümleri */
.videos,
.blog {
    padding: 80px 0;
    position: relative;
}

.videos {
    background-color: #f0f8ff;
}

.blog {
    background-color: #fff;
}

/* Slider ana konteynerı */
.video-slider-container,
.blog-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

/* Slider wrapper - Ortalama için */
.video-slider-wrapper,
.blog-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Slider içeriği */
.video-slider,
.blog-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 25px;
    padding: 20px 0;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
}

/* Kart stilleri - Düzeltilmiş */
.video-item,
.blog-item {
    flex: 0 0 auto;
    width: 380px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin: 0;
}

.video-item:hover,
.blog-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.video-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    background-color: #000;
}

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

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

.video-item:hover .video-thumbnail,
.blog-item:hover .blog-image img {
    transform: scale(1.08);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #ff3a3a, #ff5252);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 58, 58, 0.4);
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 58, 58, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.play-button i {
    color: white;
    font-size: 26px;
    margin-left: 4px; /* Play ikonunu hafifçe sağa kaydır */
    position: relative;
    z-index: 1;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 58, 58, 0.6);
}

.video-item h4,
.blog-item h4 {
    font-size: 16px;
    color: #333;
    text-align: center;
    padding: 16px;
    margin: 0;
    line-height: 1.4;
    font-weight: 600;
}

/* MODERN NAVİGASYON BUTONLARI - YENİ TASARIM */
.slider-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff 0%, #0095ff 100%);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    font-size: 18px;
}

.slider-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0095ff 0%, #007bff 100%);
}

.slider-btn:active {
    transform: translateY(0) scale(0.95);
}

.slider-btn.prev-btn {
    margin-right: 10px;
}

.slider-btn.next-btn {
    margin-left: 10px;
}

/* Responsive Navigation Buttons */
@media (max-width: 768px) {
    .slider-navigation {
        gap: 15px;
        margin-top: 30px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .slider-navigation {
        gap: 12px;
        margin-top: 25px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Video modal stili */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    width: 85%;
    max-width: 900px;
    position: relative;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.close-modal:hover {
    background-color: rgba(255, 0, 0, 0.7);
    transform: rotate(90deg);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 video oranı */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 12px;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* İLETİŞİM BÖLÜMÜ - YENİ GÜNCELLENMİŞ TASARIM */
.contact {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23007bff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

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

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
    align-items: stretch;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

/* İletişim Bilgileri Bölümü */
.contact-info {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(0, 123, 255, 0.2);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    color: #007bff;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(145deg, #e6f2ff, #f0f8ff);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05),
                -5px -5px 10px rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.info-item:hover i {
    background: linear-gradient(145deg, #007bff, #0095ff);
    color: #fff;
    box-shadow: 5px 5px 15px rgba(0, 123, 255, 0.3);
}

.info-item-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.info-item-content p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

/* Sosyal Medya Linkleri */
.social-links-container {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 123, 255, 0.1);
    text-align: center;
}

.social-links-title {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(145deg, #e6f2ff, #f0f8ff);
    border-radius: 50%;
    color: #007bff;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05),
                -5px -5px 10px rgba(255, 255, 255, 0.8);
}

.social-links a:hover {
    transform: translateY(-5px) rotate(5deg);
    background: linear-gradient(145deg, #007bff, #0095ff);
    color: #fff;
    box-shadow: 5px 5px 15px rgba(0, 123, 255, 0.3);
}

/* İletişim Formu Bölümü */
.contact-form {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
}

.contact-form-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e1e5eb;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #f9fafc;
    color: #333;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
    background-color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
    transition: all 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.5;
    transform: translateX(10px);
}

/* Form sonuç mesajları */
.alert {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 15px;
    text-align: center;
}

.alert-success {
    background-color: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #27ae60;
}

.alert-danger {
    background-color: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

#form-message {
    display: none;
    margin: 10px 0;
}

#form-message .loading {
    text-align: center;
    color: #007bff;
    font-size: 15px;
    padding: 10px;
}

#form-message .success {
    text-align: center;
    padding: 10px;
    background-color: rgba(46, 204, 113, 0.1);
    border-radius: 5px;
    color: #27ae60;
    font-size: 15px;
}

#form-message .error {
    text-align: center;
    padding: 10px;
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: 5px;
    color: #e74c3c;
    font-size: 15px;
}

/* Gönder butonu */
.contact-submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    background: linear-gradient(145deg, #007bff, #0095ff);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.contact-submit-btn:hover {
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    transform: translateY(-2px);
}

.contact-submit-btn:hover::before {
    left: 100%;
}

.contact-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.3);
}

/* Responsive tasarım - Paketler için ek medya sorguları */
@media (max-width: 991px) {
    .pricing-container {
        flex-wrap: wrap;
    }
    
    .pricing-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 250px;
        margin-bottom: 20px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
    
    .info-item i {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .info-item-content h4 {
        font-size: 17px;
    }
    
    .info-item-content p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .pricing-card {
        flex: 0 0 100%;
    }
    
    .pricing-container-wrapper {
        padding: 20px;
    }
    
    .contact {
        padding: 70px 0 50px;
    }
    
    .contact-info, .contact-form {
        padding: 25px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .contact-submit-btn {
        padding: 12px;
        font-size: 15px;
    }
}

/* MODERN MOBİL UYUMLULUK - KAPSAMLI RESPONSIVE TASARIM */

/* Genel Mobil Optimizasyonları */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .section-title p {
        font-size: 17px;
    }
}

/* Tablet Görünümü */
@media (max-width: 992px) {
    /* Hero Bölümü */
    .hero {
        height: 55vh;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 36px;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .hero-content .btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    /* Navigation */
    .hero-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .hero-navigation {
        padding: 0 20px;
    }
    
    /* Section Spacing */
    section {
        padding: 70px 0;
    }
    
    .section-title {
        margin-bottom: 50px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Video & Blog Sliders */
    .video-item,
    .blog-item {
        width: 300px;
    }
    
    .video-container,
    .blog-image {
        height: 180px;
    }
    
    /* Pricing Cards */
    .pricing-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pricing-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 280px;
        margin-bottom: 20px;
    }
    
    /* Contact */
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }
}

/* Mobil Görünümü - Büyük */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Hero */
    .hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .hero-content .btn {
        padding: 12px 25px;
        font-size: 15px;
        display: inline-block;
        width: auto;
        min-width: 200px;
    }
    
    /* Navigation */
    .hero-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .hero-navigation {
        padding: 0 15px;
    }
    
    .hero-dots {
        bottom: 20px;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    /* Features */
    .features {
        padding: 80px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
    }
    
    .feature-icon i {
        font-size: 28px;
    }
    
    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    /* Packages */
    .pricing-container-wrapper {
        padding: 25px 15px;
    }
    
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        flex: none;
        width: 100%;
        max-width: 350px;
        margin-bottom: 20px;
    }
    
    .pricing-card.popular {
        transform: none;
        order: -1;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    
    /* Video & Blog */
    .video-item,
    .blog-item {
        width: 280px;
    }
    
    .video-container,
    .blog-image {
        height: 160px;
    }
    
    .video-item h4,
    .blog-item h4 {
        font-size: 15px;
        padding: 12px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 20px;
    }
    
    /* Slider Navigation */
    .slider-navigation {
        margin-top: 30px;
        gap: 15px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    /* Contact */
    .contact {
        padding: 70px 0 50px;
    }
    
    .contact-info,
    .contact-form {
        padding: 25px;
    }
    
    .info-item {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .info-item i {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-right: 15px;
    }
    
    .info-item-content h4 {
        font-size: 16px;
    }
    
    .info-item-content p {
        font-size: 14px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .contact-submit-btn {
        padding: 12px;
        font-size: 15px;
    }
    
    /* Video Modal */
    .video-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .close-modal {
        top: -40px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
}

/* Mobil Görünümü - Küçük */
@media (max-width: 576px) {
    /* Container */
    .container {
        padding: 0 10px;
    }
    
    /* Hero */
    .hero {
        height: 45vh;
        min-height: 320px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-content .btn {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 180px;
        display: block;
        margin: 0 auto;
    }
    
    /* Navigation */
    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .hero-navigation {
        padding: 0 10px;
    }
    
    .hero-dots {
        bottom: 15px;
        gap: 10px;
    }
    
    .hero-dot {
        width: 8px;
        height: 8px;
    }
    
    /* Sections */
    section {
        padding: 50px 0;
    }
    
    .section-title {
        margin-bottom: 35px;
    }
    
    .section-title h2 {
        font-size: 22px;
    }
    
    .section-title p {
        font-size: 14px;
    }
    
    /* Features */
    .features {
        padding: 60px 0;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
    
    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    /* Packages */
    .pricing-container-wrapper {
        padding: 20px 10px;
    }
    
    .pricing-card {
        max-width: 100%;
    }
    
    .package-name {
        font-size: 20px;
        padding: 15px 10px;
    }
    
    .price {
        font-size: 32px;
    }
    
    .price-currency {
        font-size: 20px;
    }
    
    .features-list {
        padding: 15px 12px;
    }
    
    .pricing-card .feature-item {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .pricing-button {
        margin: 0 12px 15px;
        padding: 10px 0;
        font-size: 14px;
    }
    
    /* Video & Blog */
    .video-item,
    .blog-item {
        width: 250px;
    }
    
    .video-container,
    .blog-image {
        height: 140px;
    }
    
    .video-item h4,
    .blog-item h4 {
        font-size: 14px;
        padding: 10px;
    }
    
    .play-button {
        width: 45px;
        height: 45px;
    }
    
    .play-button i {
        font-size: 18px;
    }
    
    /* Slider Navigation */
    .slider-navigation {
        margin-top: 25px;
        gap: 12px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    /* Contact */
    .contact {
        padding: 50px 0 40px;
    }
    
    .contact-info,
    .contact-form {
        padding: 20px 15px;
    }
    
    .contact-form-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .info-item i {
        margin-right: 0;
        margin-bottom: 10px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .info-item-content h4 {
        font-size: 15px;
        margin-bottom: 5px;
    }
    
    .info-item-content p {
        font-size: 13px;
    }
    
    .social-links {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .form-group textarea {
        height: 120px;
    }
    
    .contact-submit-btn {
        padding: 10px;
        font-size: 14px;
    }
    
    /* Video Modal */
    .video-modal-content {
        width: 98%;
        margin: 10px;
    }
    
    .close-modal {
        top: -35px;
        font-size: 20px;
        width: 30px;
        height: 30px;
    }
}

/* Çok Küçük Mobil Cihazlar */
@media (max-width: 375px) {
    /* Hero */
    .hero {
        min-height: 280px;
    }
    
    .hero-content h1 {
        font-size: 20px;
    }
    
    .hero-content p {
        font-size: 13px;
    }
    
    .hero-content .btn {
        padding: 8px 16px;
        font-size: 13px;
        min-width: 160px;
    }
    
    /* Navigation */
    .hero-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    /* Sections */
    section {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 20px;
    }
    
    .section-title p {
        font-size: 13px;
    }
    
    /* Features */
    .feature-card {
        padding: 15px 10px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    .feature-card h3 {
        font-size: 16px;
    }
    
    .feature-card p {
        font-size: 12px;
    }
    
    /* Video & Blog */
    .video-item,
    .blog-item {
        width: 200px;
    }
    
    .video-container,
    .blog-image {
        height: 120px;
    }
    
    .video-item h4,
    .blog-item h4 {
        font-size: 13px;
        padding: 8px;
    }
    
    .play-button {
        width: 40px;
        height: 40px;
    }
    
    .play-button i {
        font-size: 16px;
    }
    
    /* Slider Navigation */
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    /* Contact */
    .contact-info,
    .contact-form {
        padding: 15px 10px;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}

/* Landscape Mobil Cihazlar */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 26px;
    }
    
    .hero-content p {
        font-size: 15px;
    }
    
    section {
        padding: 50px 0;
    }
}

/* Touch Optimizasyonları */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover {
        transform: none;
    }
    
    .video-item:hover,
    .blog-item:hover {
        transform: none;
    }
    
    .pricing-card:hover {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: none;
    }
    
    .contact-info:hover,
    .contact-form:hover {
        transform: none;
    }
    
    /* Touch-friendly button sizes */
    .hero-content .btn,
    .pricing-button,
    .contact-submit-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .slider-btn,
    .hero-nav-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .play-button {
        min-height: 44px;
        min-width: 44px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-bg-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .video-thumbnail,
    .blog-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-slide {
        transition: none;
    }
    
    .play-button:before {
        animation: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .feature-card {
        background: linear-gradient(145deg, #2c3e50, #34495e);
        color: #ecf0f1;
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .feature-card h3 {
        color: #ecf0f1;
    }
    
    .feature-card p {
        color: #bdc3c7;
    }
    
    .pricing-card {
        background-color: #2c3e50;
        color: #ecf0f1;
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .contact-info,
    .contact-form {
        background-color: #2c3e50;
        color: #ecf0f1;
    }
    
    .form-group input,
    .form-group textarea {
        background-color: #34495e;
        color: #ecf0f1;
        border-color: rgba(255, 255, 255, 0.2);
    }
}

/* MÜŞTERİLERİMİZ NE DİYOR BÖLÜMÜ - MOBİL UYUMLU */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23007bff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

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

.testimonials-grid-container {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-avatar {
    margin-bottom: 20px;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f8f9fa;
}

.testimonial-info h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
}

.testimonial-info p {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-info .company {
    color: #3498db;
    font-weight: 500;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #f39c12;
    margin: 0 2px;
    font-size: 16px;
}

.testimonial-text p {
    color: #34495e;
    font-style: italic;
    line-height: 1.6;
    font-size: 15px;
}

.testimonials-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-nav-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.testimonial-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.testimonial-nav-btn:active {
    transform: translateY(0);
}

/* Testimonials Responsive Design */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .testimonials {
        padding: 70px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px 15px;
        min-height: 320px;
    }
    
    .testimonial-avatar img {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-info h4 {
        font-size: 16px;
    }
    
    .testimonial-text p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .testimonial-card {
        padding: 20px 15px;
        min-height: 280px;
    }
    
    .testimonial-avatar img {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-info h4 {
        font-size: 15px;
    }
    
    .testimonial-info p {
        font-size: 13px;
    }
    
    .testimonial-text p {
        font-size: 13px;
    }
    
    .testimonials-navigation {
        margin-top: 30px;
        gap: 15px;
    }
    
    .testimonial-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .testimonials {
        padding: 50px 0;
    }
    
    .testimonial-card {
        padding: 18px 12px;
        min-height: 260px;
    }
    
    .testimonial-avatar {
        margin-bottom: 15px;
    }
    
    .testimonial-avatar img {
        width: 55px;
        height: 55px;
    }
    
    .testimonial-info h4 {
        font-size: 14px;
        margin-bottom: 3px;
    }
    
    .testimonial-info p {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .testimonial-rating {
        margin-bottom: 15px;
    }
    
    .testimonial-rating i {
        font-size: 14px;
    }
    
    .testimonial-text p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .testimonials-navigation {
        margin-top: 25px;
        gap: 12px;
    }
    
    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .testimonials {
        padding: 40px 0;
    }
    
    .testimonial-card {
        padding: 15px 10px;
        min-height: 240px;
    }
    
    .testimonial-avatar img {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-info h4 {
        font-size: 13px;
    }
    
    .testimonial-info p {
        font-size: 11px;
    }
    
    .testimonial-text p {
        font-size: 11px;
    }
    
    .testimonial-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
}

/* Touch Optimizations for Testimonials */
@media (hover: none) and (pointer: coarse) {
    .testimonial-card:hover {
        transform: none;
    }
    
    .testimonial-nav-btn {
        min-height: 44px;
        min-width: 44px;
    }
}
