/* ============================================
   VDS Server Page - Premium Corporate Design
   Kurumsal ve Mükemmel Tasarım
   Version: 2.1.0 - Compact Design
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --vds-premium-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --vds-premium-primary: #0066ff;
    --vds-premium-secondary: #00d4aa;
    --vds-premium-dark: #0a1628;
    --vds-premium-gray: #64748b;
    --vds-premium-light: #f8fafc;
    --vds-premium-border: #e2e8f0;
    --vds-premium-success: #10b981;
    --vds-premium-warning: #f59e0b;
    --vds-premium-danger: #ef4444;
    --vds-premium-white: #ffffff;
}

/* ============================================
   TRUST BAR PREMIUM - Kurumsal İstatistikler
============================================ */
.vds-trust-bar-premium {
    background: var(--vds-premium-white);
    padding: 60px 0;
    border-bottom: 1px solid var(--vds-premium-border);
    margin-top: -40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-item-premium {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--vds-premium-light);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--vds-premium-border);
}

.trust-item-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.15);
    border-color: var(--vds-premium-primary);
    background: var(--vds-premium-white);
}

.trust-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--vds-premium-primary), var(--vds-premium-secondary));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.trust-content {
    flex: 1;
}

.trust-number {
    font-family: var(--vds-premium-font);
    font-size: 28px;
    font-weight: 800;
    color: var(--vds-premium-dark);
    line-height: 1.2;
    margin-bottom: 4px;
}

.trust-label {
    font-family: var(--vds-premium-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--vds-premium-gray);
    line-height: 1.4;
}

/* ============================================
   VDS PACKAGES TABLE - Compact Design (Birebir Referans)
============================================ */
.vds-table-section-compact {
    padding: 60px 0;
    background: var(--vds-premium-white);
    width: 100%;
}

.vds-table-header-compact {
    text-align: center;
    margin-bottom: 40px;
}

.vds-table-header-compact h2 {
    font-family: var(--vds-premium-font);
    font-size: 32px;
    font-weight: 700;
    color: var(--vds-premium-dark);
    margin: 0 0 12px;
}

.vds-table-header-compact p {
    font-family: var(--vds-premium-font);
    font-size: 16px;
    color: var(--vds-premium-gray);
    margin: 0;
}

/* Table Card Container */
.vds-table-card-compact {
    background: var(--vds-premium-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid var(--vds-premium-border);
}

/* Compact Table */
.vds-packages-table-compact {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--vds-premium-font);
}

.vds-packages-table-compact thead {
    background: #f8f9fa;
}

.vds-packages-table-compact thead th {
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #495057;
    border-bottom: 1px solid var(--vds-premium-border);
    white-space: nowrap;
}

.vds-packages-table-compact tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background 0.2s ease;
}

.vds-packages-table-compact tbody tr:hover {
    background: #f8f9fa;
}

.vds-packages-table-compact tbody td {
    padding: 14px 16px;
    vertical-align: middle;
    font-size: 14px;
}

/* Expand Button Column */
.col-expand {
    width: 40px;
    text-align: center;
}

.package-expand-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    transition: all 0.2s ease;
}

.package-expand-btn:hover {
    color: var(--vds-premium-primary);
}

.package-expand-btn.expanded svg {
    transform: rotate(180deg);
}

.package-expand-btn svg {
    transition: transform 0.2s ease;
}

/* Package Name Column */
.col-package-name {
    min-width: 180px;
}

.package-name-wrapper-compact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flag-icon {
    font-size: 18px;
    line-height: 1;
}

.package-name-compact {
    font-weight: 600;
    color: var(--vds-premium-dark);
    font-size: 14px;
}

/* Spec Columns */
.col-ram,
.col-cpu,
.col-disk,
.col-speed {
    min-width: 120px;
}

.spec-text-compact {
    font-size: 14px;
    color: #495057;
    font-weight: 500;
}

/* OS Column */
.col-os {
    width: 100px;
    text-align: center;
}

.os-icons-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.os-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    opacity: 0.7;
}

.os-icon svg {
    width: 20px;
    height: 20px;
}

/* Price Column */
.col-price {
    min-width: 200px;
    text-align: right;
}

.price-wrapper-compact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.old-price-compact {
    font-size: 12px;
    color: #adb5bd;
    text-decoration: line-through;
    font-weight: 500;
}

.new-price-compact {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount {
    font-size: 16px;
    font-weight: 700;
    color: var(--vds-premium-dark);
}

.price-period {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

.btn-add-cart-compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: var(--vds-premium-primary);
    color: white;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    margin-top: 4px;
}

.btn-add-cart-compact:hover {
    background: #0052cc;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
}

/* Package Details Row (Expanded) */
.package-details-row {
    display: none !important;
    background: #f8f9fa;
}

.package-details-row.expanded {
    display: table-row !important;
}

.package-details-content {
    padding: 20px 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border-top: 1px solid #e9ecef;
}

.details-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #495057;
}

.detail-item svg {
    flex-shrink: 0;
    color: #6c757d;
}

.detail-item .info-icon {
    width: 14px;
    height: 14px;
    margin-left: 4px;
    color: #adb5bd;
    cursor: help;
}

/* Annual Purchase */
.annual-purchase {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
    margin-top: 8px;
}

.annual-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--vds-premium-dark);
}

.annual-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--vds-premium-primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.annual-link:hover {
    color: #0052cc;
    text-decoration: underline;
}

.annual-link svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   FEATURES SECTION - 4 Kart Grid
============================================ */
.vds-features-section-v2 {
    padding: 100px 0;
    background: var(--vds-premium-light);
}

.section-header-v2 {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--vds-premium-primary);
    border-radius: 50px;
    font-family: var(--vds-premium-font);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.section-header-v2 h2 {
    font-family: var(--vds-premium-font);
    font-size: 42px;
    font-weight: 800;
    color: var(--vds-premium-dark);
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.section-header-v2 p {
    font-family: var(--vds-premium-font);
    font-size: 18px;
    color: var(--vds-premium-gray);
    margin: 0;
    line-height: 1.6;
}

.vds-features-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.vds-feature-card-v2 {
    background: var(--vds-premium-white);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid var(--vds-premium-border);
    transition: all 0.3s ease;
    text-align: center;
}

.vds-feature-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--vds-premium-primary);
}

.feature-icon-v2 {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vds-premium-light);
}

.feature-icon-v2 svg {
    width: 32px;
    height: 32px;
}

.feature-icon-v2.cyan {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
}

.feature-icon-v2.green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--vds-premium-success);
}

.feature-icon-v2.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.feature-icon-v2.orange {
    background: rgba(245, 158, 11, 0.1);
    color: var(--vds-premium-warning);
}

.vds-feature-card-v2 h3 {
    font-family: var(--vds-premium-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--vds-premium-dark);
    margin: 0 0 12px;
}

.vds-feature-card-v2 p {
    font-family: var(--vds-premium-font);
    font-size: 15px;
    color: var(--vds-premium-gray);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   WHY VDS SECTION
============================================ */
.why-vds-section-v2 {
    padding: 100px 0;
    background: var(--vds-premium-white);
}

.why-vds-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-vds-content-v2 {
    flex: 1;
}

.why-vds-content-v2 .section-badge-v2 {
    margin-bottom: 20px;
}

.why-vds-content-v2 h2 {
    font-family: var(--vds-premium-font);
    font-size: 42px;
    font-weight: 800;
    color: var(--vds-premium-dark);
    margin: 0 0 20px;
    letter-spacing: -0.5px;
}

.why-vds-content-v2 > p {
    font-family: var(--vds-premium-font);
    font-size: 18px;
    color: var(--vds-premium-gray);
    margin: 0 0 40px;
    line-height: 1.6;
}

.why-vds-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-item-v2 {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.why-icon-v2 {
    width: 24px;
    height: 24px;
    background: var(--vds-premium-success);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-icon-v2 svg {
    width: 14px;
    height: 14px;
    color: white;
}

.why-content-v2 h4 {
    font-family: var(--vds-premium-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--vds-premium-dark);
    margin: 0 0 8px;
}

.why-content-v2 p {
    font-family: var(--vds-premium-font);
    font-size: 16px;
    color: var(--vds-premium-gray);
    margin: 0;
    line-height: 1.6;
}

.why-vds-image-v2 {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-vds-image-v2 img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge-v2 {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--vds-premium-white);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--vds-premium-primary), var(--vds-premium-secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.badge-text {
    font-family: var(--vds-premium-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--vds-premium-dark);
    line-height: 1.4;
}

/* ============================================
   TRUST LOGOS SECTION
============================================ */
.trust-logos-section-v2 {
    padding: 80px 0;
    background: var(--vds-premium-light);
}

.trust-header-v2 {
    text-align: center;
    margin-bottom: 50px;
}

.trust-header-v2 span {
    display: block;
    font-family: var(--vds-premium-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--vds-premium-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.trust-header-v2 h3 {
    font-family: var(--vds-premium-font);
    font-size: 36px;
    font-weight: 800;
    color: var(--vds-premium-dark);
    margin: 0;
    letter-spacing: -0.5px;
}

.trust-logos-grid-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-logo-v2 {
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.trust-logo-v2:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.trust-logo-v2 img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* ============================================
   SOCIAL PROOF SECTION
============================================ */
.vds-social-proof-section {
    padding: 100px 0;
    background: var(--vds-premium-white);
}

.social-proof-header {
    text-align: center;
    margin-bottom: 60px;
}

.social-proof-header h2 {
    font-family: var(--vds-premium-font);
    font-size: 42px;
    font-weight: 800;
    color: var(--vds-premium-dark);
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.social-proof-header p {
    font-family: var(--vds-premium-font);
    font-size: 18px;
    color: var(--vds-premium-gray);
    margin: 0;
    line-height: 1.6;
}

.testimonials-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.testimonial-card-premium {
    background: var(--vds-premium-light);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--vds-premium-border);
}

.testimonial-header-premium {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vds-premium-primary), var(--vds-premium-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--vds-premium-font);
    font-size: 20px;
    font-weight: 700;
}

.testimonial-info h4 {
    font-family: var(--vds-premium-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--vds-premium-dark);
    margin: 0 0 4px;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
}

.testimonial-rating svg {
    width: 16px;
    height: 16px;
    color: #fbbf24;
}

.testimonial-text {
    font-family: var(--vds-premium-font);
    font-size: 16px;
    color: var(--vds-premium-gray);
    line-height: 1.6;
    margin: 0;
}

.trust-badges-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.trust-badge-item .badge-logo {
    height: 50px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.trust-badge-item:hover .badge-logo {
    opacity: 1;
    transform: scale(1.1);
}

.trust-badge-item .badge-text {
    font-family: var(--vds-premium-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--vds-premium-gray);
}

/* ============================================
   STICKY CTA BAR
============================================ */
.vds-sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--vds-premium-primary) 0%, var(--vds-premium-secondary) 100%);
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.vds-sticky-cta-bar.visible {
    transform: translateY(0);
}

.vds-sticky-cta-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h3 {
    font-family: var(--vds-premium-font);
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0 0 4px;
}

.cta-content p {
    font-family: var(--vds-premium-font);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.btn-sticky-cta {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: white;
    color: var(--vds-premium-primary);
    border-radius: 8px;
    font-family: var(--vds-premium-font);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-sticky-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 1200px) {
    .trust-bar-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .vds-features-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-vds-grid-v2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .package-details-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vds-table-section-compact {
        padding: 40px 0 60px;
    }
    
    .vds-table-header-compact h2 {
        font-size: 24px;
    }
    
    .trust-bar-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vds-features-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .vds-packages-table-compact {
        font-size: 12px;
    }
    
    .vds-packages-table-compact thead th,
    .vds-packages-table-compact tbody td {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .package-details-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .annual-purchase {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .col-package-name,
    .col-ram,
    .col-cpu,
    .col-disk,
    .col-speed {
        min-width: auto;
    }
    
    .price-amount {
        font-size: 14px;
    }
    
    .btn-add-cart-compact {
        padding: 6px 12px;
        font-size: 12px;
    }
}

