/* VPS Server Page Styles
------------------------------------*/

/* VPS 페이지 전용 스타일 */
.hero-section {
    background: linear-gradient(135deg, #1e3932 0%, #2d5a4a 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/s/i/home/bg/vps_bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.8em;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content h2 {
    font-size: 1.2em;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.6;
}

/* Promotional Banners Container */
.promotional-banners {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px auto 50px;
    max-width: 1200px;
    flex-wrap: wrap;
}

/* Free Trial Banner */
.free-trial-banner {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 25px 30px;
    backdrop-filter: blur(10px);
    text-align: center;
    flex: 1;
    min-width: 350px;
    max-width: 500px;
}

.trial-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    animation: pulse 2s infinite;
}

.trial-badge i {
    margin-right: 8px;
    font-size: 1.2em;
}

.trial-text {
    font-weight: 700;
}

.trial-description {
    color: rgba(255,255,255,0.9);
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Payment Options Banner */
.payment-options-banner {
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 20px 30px;
    backdrop-filter: blur(10px);
    text-align: center;
    flex: 1;
    min-width: 350px;
    max-width: 500px;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1em;
    margin-bottom: 12px;
    box-shadow: 0 3px 12px rgba(52, 152, 219, 0.3);
}

.payment-badge i {
    margin-right: 6px;
    font-size: 1.1em;
}

.payment-text {
    font-weight: 700;
}

.payment-description {
    color: rgba(255,255,255,0.9);
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 30px 0 50px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    background: rgba(255,255,255,0.08);
    padding: 25px 20px;
    border-radius: 8px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hero-feature:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.hero-feature i {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 15px;
    display: block;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-feature h3 {
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 10px;
    color: white;
}

.hero-feature p {
    font-size: 0.9em;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

/* VPS 패키지 스타일 */
.vps-packages {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Section Headers */
.section-title {
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 2.2em;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 50px;
    font-size: 16px;
}

.highlight-text {
    color: #27ae60;
    font-weight: 600;
}

/* Package Grid */
.package-row {
    margin-bottom: 30px;
}

.package-region {
    color: #27ae60;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.package-region i {
    margin-right: 5px;
}

/* Price Styling */
.monthly-price {
    font-size: 0.7em;
    font-weight: 700;
    color: #1e3932;
}

.monthly-price span {
    font-size: 0.8em;
    vertical-align: baseline;
    color: #7f8c8d;
}

.annual-price {
    font-size: 0.84em;
    color: #4CAF50;
    font-weight: 600;
    margin-top: 5px;
}

.annual-price span {
    font-size: 0.8em;
    vertical-align: baseline;
}

.discount-note {
    font-size: 0.504em;
    color: #f39c12;
    margin-top: 1px;
}

/* Original and Discounted Price */
.original-price {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 0.8em;
    margin-right: 8px;
}

.discounted-price {
    color: #27ae60;
    font-weight: 700;
}

/* Free Trial Note */
.free-trial-note {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.9em;
    font-weight: 600;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.2);
}

.free-trial-note i {
    margin-right: 6px;
    font-size: 0.9em;
}

/* FAQ Styling */
.faq-title {
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-size: 2.2em;
    font-weight: 600;
}

.vps-package {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: none;
    margin-bottom: 30px;
    border: 2px solid transparent;
}

.vps-package:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.vps-package.featured {
    border-color: #1e3932;
    position: relative;
}

.vps-package.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e3932;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.package-name {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.package-price {
    font-size: 36px;
    font-weight: 700;
    color: #1e3932;
    margin-bottom: 30px;
}

.package-price sup {
    font-size: 18px;
    color: #7f8c8d;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f4;
    color: #555;
    font-size: 16px;
    text-align: center;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-button {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease;
    border: 2px solid #2c3e50;
}

.package-button:hover {
    background: #34495e;
    color: white;
    text-decoration: none;
}

.vps-package.featured .package-button {
    background: #1e3932;
    border-color: #1e3932;
}

.vps-package.featured .package-button:hover {
    background: #2d5a4a;
}

/* Service Block */
.service-block {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.service-block .icon-custom {
    color: #1e3932 !important;
    border: 2px solid #1e3932 !important;
    background: transparent !important;
    width: 60px;
    height: 60px;
    line-height: 56px;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 24px !important;
    transition: all 0.3s ease;
}

.service-block:hover .icon-custom {
    background: #1e3932 !important;
    color: white !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 57, 50, 0.3);
}

.service-block .heading-md {
    color: #2c3e50;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.service-block p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 0.95em;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2em;
    }
    
    .promotional-banners {
        flex-direction: column;
        gap: 20px;
        margin: 30px auto 40px;
        padding: 0 20px;
    }
    
    .free-trial-banner,
    .payment-options-banner {
        padding: 20px 25px;
        min-width: auto;
        max-width: 100%;
    }
    
    .trial-badge {
        font-size: 1em;
        padding: 10px 20px;
    }
    
    .trial-description {
        font-size: 1em;
    }
    
    .payment-badge {
        font-size: 0.9em;
        padding: 8px 16px;
    }
    
    .payment-description {
        font-size: 0.9em;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .hero-feature {
        max-width: 280px;
    }
    
    .vps-package {
        padding: 30px 20px;
    }
    
    .package-price {
        font-size: 28px;
    }
}

/* VPS FAQ */
.vps-faq {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-top: 60px;
}

.faq-container {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ecf0f1;
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-question {
    color: #1e3932;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.faq-question i {
    color: #27ae60;
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
}

.faq-answer {
    color: #7f8c8d;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    padding-left: 30px;
}

@media (max-width: 768px) {
    .vps-faq {
        padding: 40px 0;
    }
    
    .faq-container {
        padding: 25px 20px;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    .faq-answer {
        font-size: 14px;
        padding-left: 25px;
    }
}
