/**
 * İlkserver - Bireysel Hosting Sayfası
 * Tüm bölümler için optimize edilmiş CSS
 */

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    overflow: hidden;
    width: 100%;
}

.hero-container {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.hero-badge i {
    color: #00d4ff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.hero-feature i {
    color: #00d4ff;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
    border-radius: 12px;
}

/* Hero Arka Plan Şekilleri */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background-color: white;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: float 15s infinite alternate ease-in-out;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 5%;
    animation: float 12s infinite alternate-reverse ease-in-out;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation: float 10s infinite alternate ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 5rem 0;
    background-color: #f8fafc;
    position: relative;
    width: 100%;
}

.features-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1f36;
    line-height: 1.2;
}

.features-subtitle {
    font-size: 1.25rem;
    color: #6b7c93;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.feature-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    padding: 2rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e6ebf1;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-color: rgba(122, 115, 255, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(122, 115, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a73ff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 1rem;
}

.feature-description {
    color: #6b7c93;
    font-size: 0.875rem;
    line-height: 1.6;
    flex: 1;
}

/* ===== PAKET LİSTELEME BÖLÜMÜ ===== */
.pricing-section {
    padding: 5rem 0;
    background-color: #f8fafc;
    position: relative;
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1f36;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: #6b7c93;
    margin-bottom: 2rem;
}

/* Fiyat Değiştirme Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.pricing-toggle-text {
    font-weight: 500;
    color: #1a1f36;
    font-size: 1rem;
}

.pricing-toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.pricing-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: .4s;
    border-radius: 34px;
}

.pricing-toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.pricing-toggle-slider {
    background-color: #7a73ff;
}

input:checked+.pricing-toggle-slider:before {
    transform: translateX(30px);
}

.pricing-toggle-discount {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(50, 213, 131, 0.1);
    color: #32d583;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

/* Paket Listesi Grid */
.pricing-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-plan {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.pricing-plan.featured {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 2px solid #bfdbfe;
    z-index: 10;
}

.pricing-plan.featured:hover {
    transform: translateY(-15px);
}

.pricing-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #32d583;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 10;
    white-space: nowrap;
}

/* Paket Renk Şemaları */
.pricing-basic {
    --plan-color: #2563eb;
    --plan-light: #dbeafe;
}

.pricing-standard {
    --plan-color: #16a34a;
    --plan-light: #dcfce7;
}

.pricing-premium {
    --plan-color: #9333ea;
    --plan-light: #f3e8ff;
}

.pricing-business {
    --plan-color: #ea580c;
    --plan-light: #ffedd5;
}

/* Paket Başlık Kısmı */
.pricing-plan-header {
    padding: 2rem;
    border-bottom: 1px solid #f0f4f7;
    position: relative;
}

.pricing-plan.pricing-basic .pricing-plan-header {
    border-top: 4px solid var(--plan-color);
}

.pricing-plan.pricing-standard .pricing-plan-header {
    border-top: 4px solid var(--plan-color);
}

.pricing-plan.pricing-premium .pricing-plan-header {
    border-top: 4px solid var(--plan-color);
}

.pricing-plan.pricing-business .pricing-plan-header {
    border-top: 4px solid var(--plan-color);
}

.pricing-plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.pricing-plan.pricing-basic .pricing-plan-name {
    color: var(--plan-color);
}

.pricing-plan.pricing-standard .pricing-plan-name {
    color: var(--plan-color);
}

.pricing-plan.pricing-premium .pricing-plan-name {
    color: var(--plan-color);
}

.pricing-plan.pricing-business .pricing-plan-name {
    color: var(--plan-color);
}

.pricing-plan-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--plan-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plan-color);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.pricing-plan-description {
    color: #6b7c93;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Fiyat Kısmı */
.pricing-plan-price-container {
    margin-bottom: 1.5rem;
}

.pricing-plan-original {
    color: #6b7c93;
    text-decoration: line-through;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.25rem;
}

.pricing-plan-price {
    display: flex;
    align-items: baseline;
    font-weight: 800;
    color: #1a1f36;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pricing-plan-currency {
    font-size: 1rem;
    margin-right: 0.1rem;
    font-weight: 500;
    color: #6b7c93;
}

.pricing-plan-amount {
    font-size: 2.5rem;
}

.pricing-plan-period {
    font-size: 0.875rem;
    font-weight: 400;
    color: #6b7c93;
    margin-left: 0.25rem;
}

.pricing-plan-discount {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background-color: var(--plan-light);
    color: var(--plan-color);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.25rem;
}

/* Paket Satın Al Butonu */
.pricing-plan-button {
    width: 100%;
    background-color: white;
    color: var(--plan-color);
    border: 1px solid var(--plan-color);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-plan-button:hover {
    background-color: var(--plan-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pricing-plan-button i {
    font-size: 1.25rem;
}

/* Paket Özellikleri Kısmı */
.pricing-plan-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-plan-features {
    flex: 1;
    margin-bottom: 1.5rem;
}

.pricing-plan-feature-title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #4a5568;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.pricing-plan-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-plan-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.625rem;
    position: relative;
    padding-right: 20px;
}

.pricing-plan-feature-icon {
    margin-right: 0.5rem;
    flex-shrink: 0;
    color: #32d583;
}

.pricing-plan-feature-item span {
    font-size: 0.875rem;
    color: #4a5568;
    line-height: 1.4;
}

/* Paket Ek Vurgu Kısmı */
.plan-highlight {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--plan-light);
    border-radius: 8px;
}

.plan-highlight-title {
    font-weight: 600;
    color: var(--plan-color);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.plan-highlight-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.plan-highlight-item {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    color: #425466;
    line-height: 1.5;
}

.plan-highlight-icon {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--plan-color);
    font-size: 0.875rem;
}

/* Paket alt bilgi */
.pricing-plan-faq {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f4f7;
    font-size: 0.875rem;
    color: #6b7c93;
    text-align: center;
}

.pricing-plan-faq a {
    color: #7a73ff;
    font-weight: 500;
    text-decoration: none;
}

.pricing-plan-faq a:hover {
    text-decoration: underline;
}

/* ===== PAKET KARŞILAŞTIRMA TABLOSU ===== */
.comparison-section {
    padding: 4rem 0;
    background-color: #f8fafc;
    overflow: hidden;
}

.comparison-header {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 1rem;
}

.comparison-header p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.comparison-table-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(74, 85, 104, 0.3) transparent;
}

.comparison-table-container::-webkit-scrollbar {
    height: 6px;
}

.comparison-table-container::-webkit-scrollbar-track {
    background: transparent;
}

.comparison-table-container::-webkit-scrollbar-thumb {
    background-color: rgba(74, 85, 104, 0.3);
    border-radius: 6px;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    font-size: 0.95rem;
}

.comparison-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #2d3748;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 2px solid #e2e8f0;
}

.comparison-table th:first-child {
    width: 240px;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-category td {
    background-color: #f1f5f9;
    font-weight: 600;
    color: #1a202c;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    padding: 0.75rem 1.5rem;
}

.comparison-check {
    color: #10b981;
    width: 20px;
    height: 20px;
    display: inline-block;
}

.comparison-x {
    color: #ef4444;
    width: 20px;
    height: 20px;
    display: inline-block;
}

/* Paket başlıkları için renkler */
.comparison-table th:nth-child(2) {
    background-color: rgba(59, 130, 246, 0.05);
    border-bottom: 2px solid #3b82f6;
}

.comparison-table th:nth-child(3) {
    background-color: rgba(16, 185, 129, 0.05);
    border-bottom: 2px solid #10b981;
}

.comparison-table th:nth-child(4) {
    background-color: rgba(139, 92, 246, 0.05);
    border-bottom: 2px solid #8b5cf6;
}

.comparison-table th:nth-child(5) {
    background-color: rgba(249, 115, 22, 0.05);
    border-bottom: 2px solid #f97316;
}

/* Satır hover efekti */
.comparison-table tr:not(.comparison-category):hover td {
    background-color: rgba(243, 244, 246, 0.5);
}

/* Satın al butonları */
.mini-buy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.mini-buy-button i {
    margin-right: 0.5rem;
    width: 16px;
    height: 16px;
}

.başlangıç-button {
    background-color: #3b82f6;
    color: white;
}

.başlangıç-button:hover {
    background-color: #2563eb;
    transform: translateY(-1px);
}

.temel-button {
    background-color: #10b981;
    color: white;
}

.temel-button:hover {
    background-color: #059669;
    transform: translateY(-1px);
}

.standart-button {
    background-color: #8b5cf6;
    color: white;
}

.standart-button:hover {
    background-color: #7c3aed;
    transform: translateY(-1px);
}

.ekonomik-button {
    background-color: #f97316;
    color: white;
}

.ekonomik-button:hover {
    background-color: #ea580c;
    transform: translateY(-1px);
}

/* Mobil uyumluluk için ek stiller */
@media (max-width: 991px) {
    .comparison-table th:first-child {
        width: 180px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 767px) {
    .comparison-section {
        padding: 3rem 0;
    }
    
    .comparison-header h2 {
        font-size: 2rem;
    }
    
    .comparison-header p {
        font-size: 1rem;
    }
    
    .comparison-table {
        width: 650px;
    }
    
    .comparison-table-container {
        padding: 0 1rem;
        margin-bottom: 1rem;
    }
    
    .comparison-table-container::after {
        content: "← Kaydırın →";
        display: block;
        text-align: center;
        padding: 0.5rem;
        color: #4a5568;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .comparison-section {
        padding: 2rem 0;
    }
    
    .comparison-header h2 {
        font-size: 1.75rem;
    }
}

.comparison-cta {
    text-align: center;
    margin-top: 2rem;
}

.comparison-cta p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #4a5568;
}

/* Özellik vurgulama */
.comparison-table tr:not(.comparison-category) td:nth-child(2) {
    background-color: rgba(59, 130, 246, 0.02);
}

.comparison-table tr:not(.comparison-category) td:nth-child(3) {
    background-color: rgba(16, 185, 129, 0.02);
}

.comparison-table tr:not(.comparison-category) td:nth-child(4) {
    background-color: rgba(139, 92, 246, 0.02);
}

.comparison-table tr:not(.comparison-category) td:nth-child(5) {
    background-color: rgba(249, 115, 22, 0.02);
}

/* Özellik tooltip */
.comparison-feature-tooltip {
    position: relative;
    display: inline-block;
    margin-left: 0.5rem;
    cursor: help;
}

.comparison-feature-tooltip i {
    color: #94a3b8;
    width: 16px;
    height: 16px;
}

.comparison-feature-tooltip .tooltip-content {
    visibility: hidden;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background-color: #334155;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 0.5rem;
    font-size: 0.75rem;
    line-height: 1.4;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s;
}

.comparison-feature-tooltip .tooltip-content::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #334155 transparent transparent transparent;
}

.comparison-feature-tooltip:hover .tooltip-content {
    visibility: visible;
    opacity: 1;
}

/* Satın alma bölümü vurgulama */
.comparison-table tr.comparison-category:last-of-type td {
    background-color: #f1f5f9;
    font-weight: 600;
    color: #1a202c;
}

.comparison-table tr:nth-last-child(-n+5) td {
    background-color: rgba(248, 250, 252, 0.5);
}

/* Fiyat vurgulama */
.comparison-table tr:nth-last-child(-n+4):not(:last-child) td:not(:first-child) {
    font-weight: 600;
    color: #1a202c;
}

/* İndirim vurgulama */
.comparison-table tr:nth-last-child(3) td:not(:first-child) {
    color: #ef4444;
    font-weight: 600;
}

/* Kaydırma göstergesi */
@media (max-width: 767px) {
    .scroll-indicator {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 1rem;
        color: #4a5568;
        font-size: 0.875rem;
        animation: fadeInOut 1.5s infinite;
    }
    
    .scroll-indicator i {
        margin: 0 0.5rem;
    }
    
    @keyframes fadeInOut {
        0%, 100% { opacity: 0.5; }
        50% { opacity: 1; }
    }
}

/* Masaüstü görünümünde kaydırma göstergesini gizle */
@media (min-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

/* ===== TECHNICAL SECTION ===== */
.technical-section {
    padding: 5rem 0;
    background-color: #f8fafc;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.technical-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.technical-section .technical-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1f36;
    line-height: 1.2;
}

.technical-subtitle {
    font-size: 1.25rem;
    color: #6b7c93;
    line-height: 1.6;
}

.technical-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.technical-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    padding: 2rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #e6ebf1;
    position: relative;
}

.technical-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-color: rgba(122, 115, 255, 0.3);
}

.technical-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eff6ff;
    color: #2563eb;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.technical-card .technical-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1f36;
    margin: 0 0 1rem 0;
}

.technical-description {
    color: #6b7c93;
    font-size: 0.875rem;
    line-height: 1.6;
    flex: 1;
}

/* Özel Teknik Kart Renkleri */
.technical-card:nth-child(1) .technical-icon {
    background-color: #eff6ff;
    color: #2563eb;
}

.technical-card:nth-child(2) .technical-icon {
    background-color: #f0fdf4;
    color: #16a34a;
}

.technical-card:nth-child(3) .technical-icon {
    background-color: #faf5ff;
    color: #9333ea;
}

.technical-card:nth-child(4) .technical-icon {
    background-color: #fff7ed;
    color: #ea580c;
}

/* Arka Plan Şekilleri */
.technical-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.technical-shape {
    position: absolute;
    opacity: 0.05;
    z-index: -1;
}

.technical-shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #2563eb;
    top: -150px;
    right: 10%;
}

.technical-shape-2 {
    width: 200px;
    height: 200px;
    border-radius: 40%;
    background-color: #9333ea;
    bottom: -100px;
    left: 5%;
    transform: rotate(45deg);
}

/* Technical Features */
.technical-features {
    margin-top: 1rem;
    width: 100%;
    text-align: left;
}

.technical-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #425466;
    line-height: 1.5;
}

.technical-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-top: 0.125rem;
    color: #32d583;
    flex-shrink: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cta-container {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cta-content {
    max-width: 600px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
}

.cta-button:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.cta-button-secondary {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.cta-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
    border-radius: 12px;
}

/* Arka Plan Şekilleri */
.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background-color: white;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 5rem 0;
    background-color: white;
}

.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion {
    margin-top: 1rem;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #e6ebf1;
    border-radius: 12px;
    overflow: hidden;
    background-color: white;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #bfdbfe;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.accordion-item.active {
    border-color: #93c5fd;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: #f9fafb;
}

.accordion-title {
    font-weight: 600;
    font-size: 1.125rem;
    color: #1a1f36;
    flex: 1;
}

.accordion-icon {
    color: #7a73ff;
    transition: transform 0.3s ease;
    font-size: 1.25rem;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-bottom 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.accordion-text {
    color: #6b7c93;
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* WHMCS Entegrasyonu Stilleri */
.button-loader {
    animation: spin 1s linear infinite;
}

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

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

.added-to-cart {
    background-color: #32d583;
    border-color: #32d583;
}

/* Bildirim Stilleri */
.whmcs-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 450px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
    padding: 15px;
    z-index: 1050;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.whmcs-notification.visible {
    transform: translateX(0);
    opacity: 1;
}

.whmcs-notification.closing {
    transform: translateX(120%);
    opacity: 0;
}

.whmcs-notification .notification-icon {
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whmcs-notification.success .notification-icon {
    color: #32d583;
}

.whmcs-notification.error .notification-icon {
    color: #ef4444;
}

.whmcs-notification.info .notification-icon {
    color: #3b82f6;
}

.whmcs-notification .notification-content {
    flex: 1;
    color: #1a1f36;
    font-size: 0.9rem;
    line-height: 1.5;
}

.whmcs-notification .notification-close {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whmcs-notification .notification-close:hover {
    color: #6b7280;
}

/* Temayı Korumak İçin Buton Override */
.hero-buttons .button,
.cta-buttons .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1;
}

.hero-buttons .button i,
.cta-buttons .button i {
    display: inline-flex;
    font-size: 1.25rem;
}

.hero-buttons .button:hover,
.cta-buttons .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.hero-buttons .button-secondary,
.cta-buttons .button-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.hero-buttons .button-secondary:hover,
.hero-buttons .button-secondary:focus {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary) !important;
    transform: translateY(-2px);
}

.button.button-secondary.features-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary) !important;
}

.button.button-secondary.features-button:hover svg {
    color: var(--primary) !important;
    opacity: 1 !important;
}

.button.button-secondary.features-button:hover span {
    color: var(--primary) !important;
    opacity: 1 !important;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {

    .pricing-plans-grid,
    .technical-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1.5rem;
    }
}

@media (max-width: 1024px) {

    .hero-title,
    .cta-title {
        font-size: 2.75rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .hero-container,
    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content,
    .cta-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons,
    .cta-buttons {
        justify-content: center;
    }

    .hero-image,
    .cta-image {
        margin-top: 2rem;
        justify-content: center;
    }

    .hero-image img,
    .cta-image img {
        max-width: 80%;
    }

    .features-grid,
    .technical-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .pricing-plans-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .pricing-toggle {
        flex-direction: column;
        gap: 1rem;
    }

    .comparison-table-container {
        margin: 0 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .comparison-table {
        width: 100%;
        min-width: 700px;
    }

    .hero-title,
    .cta-title {
        font-size: 2.25rem;
    }

    .hero-description,
    .cta-description {
        font-size: 1rem;
    }

    .features-title,
    .technical-section .technical-title {
        font-size: 2rem;
    }

    .features-subtitle,
    .technical-subtitle {
        font-size: 1rem;
    }

    .pricing-plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-plan {
        padding: 1.25rem;
    }
    
    .pricing-popular-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
    }
    
    .pricing-plan-price-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pricing-plan-original {
        margin-bottom: 0.5rem;
    }
    
    .tooltip-icon .tooltip-content {
        width: 180px;
        transform: translateX(-70%);
    }

    /* Paket detayları ve özellikleri için ekstra görünürlük düzenlemeleri */
    .pricing-plan-body {
        display: block !important;
        padding: 1rem;
    }

    .pricing-plan-features {
        margin-top: 1rem;
    }

    .shared-features {
        padding: 0.5rem;
    }

    .pricing-plan-feature-list {
        padding: 0;
    }

    .pricing-plan-feature-item {
        margin-bottom: 0.5rem;
        padding-right: 30px;
    }
}

@media (max-width: 480px) {

    .hero-section,
    .features-section,
    .cta-section,
    .technical-section {
        padding: 3rem 0;
    }

    .hero-title,
    .cta-title {
        font-size: 1.875rem;
    }

    .hero-description {
        font-size: 0.875rem;
    }

    .hero-badge,
    .hero-feature {
        font-size: 0.75rem;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .button,
    .hero-buttons a,
    .cta-buttons .button,
    .cta-buttons a {
        width: 100%;
    }

    .feature-card,
    .technical-card {
        padding: 1.5rem;
    }

    .feature-icon,
    .technical-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .feature-title,
    .technical-card .technical-title {
        font-size: 1.125rem;
    }

    .pricing-title,
    .features-title,
    .testimonials-title,
    .technical-section .technical-title {
        font-size: 1.75rem;
    }

    .pricing-subtitle,
    .features-subtitle,
    .testimonials-subtitle,
    .technical-subtitle {
        font-size: 1rem;
    }

    .pricing-plan-header,
    .pricing-plan-body {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    /* Mobil bildirim stilleri */
    .whmcs-notification {
        min-width: auto;
        max-width: 90%;
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(-20px);
    }

    .whmcs-notification.visible {
        transform: translateX(-50%) translateY(0);
    }

    .whmcs-notification.closing {
        transform: translateX(-50%) translateY(-20px);
    }

    .pricing-plan-header {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-plan-name {
        margin-bottom: 0.5rem;
    }
    
    .pricing-plan-price-container {
        align-items: center;
    }
    
    .pricing-plan-price {
        font-size: 1.5rem;
    }
    
    .pricing-plan-button {
        width: 100%;
    }
    
    .tooltip-icon .tooltip-content {
        width: 160px;
        transform: translateX(-50%);
        left: 0;
    }
    
    .tooltip-icon .tooltip-content::after {
        left: 50%;
    }

    /* En küçük ekranlarda paket içeriği görünürlüğü için ek düzenlemeler */
    .pricing-plan-body {
        padding: 0.75rem;
    }

    .pricing-plan-feature-title {
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    .pricing-plan-feature-item span {
        font-size: 0.8rem;
    }
}

/* Kurumsal Hosting Yönlendirme Stili */
.corporate-redirect-section {
    padding: 3rem 0;
    background-color: #f9fafb;
}

.corporate-redirect-box {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.1), 0 8px 10px -6px rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.corporate-redirect-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    background-size: 20px 20px;
    opacity: 0.15;
}

.corporate-redirect-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.corporate-redirect-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.corporate-redirect-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.corporate-redirect-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: white;
    color: #1e40af;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 2px solid white;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.corporate-redirect-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #1e40af !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.corporate-redirect-button span {
    color: inherit;
}

.corporate-redirect-button:hover span {
    color: #1e40af !important;
    opacity: 1 !important;
}

.corporate-redirect-button svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .corporate-redirect-box {
        padding: 2rem;
    }
    
    .corporate-redirect-title {
        font-size: 1.5rem;
    }
    
    .corporate-redirect-description {
        font-size: 1rem;
    }
}

/* ===== GÜVENLİK ÖZELLİKLERİ ===== */
.security-features-container {
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(14, 30, 54, 0.03) 0%, rgba(72, 120, 222, 0.07) 100%);
  border-radius: 12px;
  border: 1px solid rgba(72, 120, 222, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.security-features-container:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.security-features-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.security-features-title .security-icon {
  color: var(--primary);
  margin-right: 8px;
  width: 20px;
  height: 20px;
}

.security-features-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.security-feature-item {
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  border: 1px solid rgba(72, 120, 222, 0.08);
  position: relative;
}

.security-feature-item:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}

.security-feature-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.security-feature-info .feature-icon {
  color: var(--primary);
  width: 16px;
  height: 16px;
}

.feature-tooltip {
  position: absolute;
  top: 10px;
  right: 10px;
}

.feature-tooltip .tooltip-icon {
  color: var(--text-muted);
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.feature-tooltip .tooltip-content {
  position: absolute;
  width: 200px;
  background-color: white;
  border-radius: 6px;
  padding: 8px 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 12px;
  z-index: 10;
  top: 100%;
  right: 0;
  margin-top: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.feature-tooltip:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
}

/* ===== KARŞILAŞTIRMA TABLOSU ===== */
.comparison-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.comparison-feature-item {
  font-size: 13px;
  padding: 6px 8px;
  background-color: rgba(245, 247, 250, 0.9);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.comparison-feature-icon {
  color: var(--primary);
  width: 14px;
  height: 14px;
}

.comparison-check-all {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.comparison-check-text {
  font-size: 12px;
  text-align: center;
  margin-top: 5px;
  color: var(--text-secondary);
}

/* ===== RESPONSIVE DÜZENLEMELER ===== */
@media (max-width: 1200px) {
  .security-features-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .security-features-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .comparison-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .comparison-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .security-features-list {
    grid-template-columns: 1fr;
  }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 5rem 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.testimonials-grid {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e6ebf1;
    position: relative;
    transform: translateX(0);
    opacity: 0;
}

.testimonial-card.active {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-color: rgba(122, 115, 255, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #64748b;
    flex-shrink: 0;
}

.testimonial-avatar svg {
    width: 24px;
    height: 24px;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-position {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0.25rem 0 0 0;
}

.testimonial-rating {
    display: flex;
    margin-bottom: 1rem;
}

.testimonial-star {
    color: #f59e0b;
    margin-right: 0.25rem;
    width: 18px;
    height: 18px;
}

.testimonial-star svg {
    width: 18px;
    height: 18px;
}

.testimonial-content {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.5rem;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: auto;
}

.testimonial-date {
    display: flex;
    align-items: center;
}

.testimonial-date svg {
    width: 14px;
    height: 14px;
    margin-right: 0.5rem;
}

.testimonial-verify {
    display: flex;
    align-items: center;
    color: #10b981;
}

.testimonial-verify svg {
    width: 14px;
    height: 14px;
    margin-right: 0.5rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-control {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
}

.testimonial-control:hover {
    background-color: #2563eb;
    color: white;
    border-color: #2563eb;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.testimonial-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicator.active {
    background-color: #2563eb;
    transform: scale(1.2);
}

/* Slider animasyonu */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
}

.fade-in {
    animation: fadeIn 0.5s forwards;
}

.fade-out {
    animation: fadeOut 0.5s forwards;
}

/* Otomatik slider için */
@keyframes testimonialSlide {
    0%, 25% { transform: translateX(0); }
    33%, 58% { transform: translateX(-100%); }
    66%, 91% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}

.testimonials-grid.auto-slide {
    display: flex;
    transition: transform 0.5s ease;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}