/* ============================================
   Package Cards - hosting.com.tr Exact Design
   Birebir aynı tasarım - İkinci Resim
============================================ */

/* Package Cards Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Package Card Base */
.package-card {
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid #e8eaed;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.package-card:hover {
    border-color: #f59e0b;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.15);
}

/* Featured Card */
.package-card.featured {
    border-color: #f59e0b;
    border-width: 2px;
    margin-top: 28px;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.15);
}

.package-card.featured::before {
    content: attr(data-featured-label);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    text-transform: none;
}

/* Card Inner Padding */
.package-card-inner {
    padding: 28px 20px 20px;
}

.package-card.featured .package-card-inner {
    padding-top: 32px;
}

/* Package Header */
.package-card .package-header {
    text-align: center;
    margin-bottom: 16px;
    position: relative;
}

/* Package Name */
.package-card .package-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
}

/* Plus sign in premium packages */
.package-card.premium .package-name span {
    color: #f59e0b;
}

/* Discount Badge - Hidden/Removed */
.package-card .discount-badge {
    display: none !important;
}

/* Pricing Section */
.package-card .package-pricing {
    text-align: center;
    margin-bottom: 16px;
}

/* Price Row - Current price and old price side by side */
.package-card .price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Old Price - Strikethrough */
.package-card .old-price {
    font-size: 18px;
    font-weight: 600;
    color: #9ca3af;
    text-decoration: line-through;
    text-decoration-color: #ef4444;
    text-decoration-thickness: 2px;
    position: relative;
}

/* Price Display */
.package-card .price-display {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
}

.package-card .price-main {
    font-size: 52px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
    letter-spacing: -2px;
}

.package-card .price-decimal {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 6px;
}

.package-card .price-currency {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-left: 4px;
    margin-top: 6px;
}

/* Price Period */
.package-card .price-period {
    font-size: 15px;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 16px;
}

/* Buy Button */
.package-card .btn-buy {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.package-card .btn-buy:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* Renewal Link */
.package-card .renewal-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.2s;
}

.package-card .renewal-link:hover {
    color: #f59e0b;
}

.package-card .renewal-link svg {
    width: 14px;
    height: 14px;
}

/* Features List */
.package-card .package-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
}

.package-card .package-features-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    padding: 7px 0;
    font-size: 13px;
    color: #4b5563;
    text-align: center;
    line-height: 1.4;
}

/* Feature Value Styles */
.package-card .feature-value {
    font-weight: 700;
    color: #1a1a2e;
}

.package-card .feature-value.highlight {
    color: #f59e0b;
}

.package-card .feature-value.unlimited {
    color: #f59e0b;
    font-weight: 700;
}

.package-card .feature-value.free {
    color: #f59e0b;
    font-weight: 600;
}

/* Feature Label */
.package-card .feature-label {
    color: #6b7280;
    font-weight: 400;
}

/* Info Icon */
.package-card .info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #9ca3af;
    font-size: 9px;
    font-weight: 700;
    cursor: help;
    flex-shrink: 0;
}

.package-card .info-icon:hover {
    background: #f59e0b;
    color: #ffffff;
}

/* SSL Lock Icon */
.package-card .ssl-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    color: #fbbf24;
    flex-shrink: 0;
}

.package-card .ssl-icon svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

/* Show More Features Button */
.package-card .show-more-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    padding: 10px;
    background: transparent;
    border: none;
    color: #f59e0b;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
    border-top: 1px solid #f0f0f0;
}

.package-card .show-more-features:hover {
    color: #d97706;
}

.package-card .show-more-features svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
}

.package-card .show-more-features.active svg {
    transform: rotate(180deg);
}

/* Extra Features Container */
.package-card .extra-features {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.package-card .extra-features.show {
    max-height: 500px;
}

.package-card .extra-features .package-features-list {
    border-top: none;
    padding-top: 0;
}

/* ============================================
   Section Styles for Packages
============================================ */
.packages-section,
.hosting-packages-section {
    padding: 60px 0;
    background: #f8fafc;
}

.packages-section .section-header,
.hosting-packages-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.packages-section .section-header h2,
.hosting-packages-section .section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.packages-section .section-header p,
.hosting-packages-section .section-header p {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Responsive Design
============================================ */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        gap: 24px;
    }
    
    .package-card .price-main {
        font-size: 46px;
    }
    
    .package-card .price-decimal {
        font-size: 20px;
    }
    
    .package-card .price-currency {
        font-size: 16px;
    }
    
    .packages-section .section-header h2,
    .hosting-packages-section .section-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .package-card-inner {
        padding: 24px 16px 16px;
    }
    
    .package-card .package-name {
        font-size: 18px;
    }
    
    .package-card .price-main {
        font-size: 40px;
    }
    
    .package-card .package-features-list li {
        font-size: 12px;
    }
}
