/**
 * WordPress Hosting Modern Page - 2025 Design
 */

/* ============================================
   HERO SECTION
   ============================================ */
.wp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.wp-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 50%, #0a1929 100%);
    z-index: 0;
}

.wp-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

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

.wp-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.wp-hero-text {
    flex: 1;
    max-width: 600px;
}

.wp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(33, 150, 243, 0.15);
    color: #64b5f6;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
}

.wp-badge svg {
    color: #21a0d5;
}

.wp-hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.wp-hero h1 .text-gradient {
    background: linear-gradient(135deg, #21a0d5, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wp-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 28px;
}

.wp-hero-desc strong {
    color: #00d4aa;
}

.wp-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.wp-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
}

.wp-feature-item i {
    color: #00d4aa;
    font-size: 12px;
}

.wp-hero-buttons {
    display: flex;
    gap: 16px;
}

.wp-hero-buttons .btn-primary-gradient {
    background: linear-gradient(135deg, #21a0d5, #00d4aa);
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.wp-hero-buttons .btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(33, 160, 213, 0.4);
}

.wp-hero-buttons .btn-outline-light {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    transition: all 0.3s;
}

.wp-hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Visual */
.wp-hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-logo-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(33, 160, 213, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.wp-logo-main {
    position: relative;
    z-index: 2;
}

.wp-logo-main svg {
    width: 180px;
    height: 180px;
    color: #fff;
    filter: drop-shadow(0 0 30px rgba(33, 160, 213, 0.5));
}

.wp-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    font-weight: 600;
    color: #1e3a5f;
    animation: float 4s ease-in-out infinite;
}

.wp-floating-card.card-1 {
    top: 60px;
    right: -20px;
    animation-delay: 0s;
}

.wp-floating-card.card-2 {
    bottom: 80px;
    left: -30px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.wp-floating-card .card-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
}

.wp-floating-card .card-icon.green {
    background: rgba(0, 212, 170, 0.15);
    color: #00d4aa;
}

.wp-floating-card .card-icon.blue {
    background: rgba(33, 160, 213, 0.15);
    color: #21a0d5;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.wp-video-section {
    padding: 80px 0;
    background: #fff;
}

.wp-video-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #f8fafc;
    border-radius: 24px;
    padding: 50px;
}

.wp-video-content {
    flex: 1;
}

.wp-video-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 12px;
}

.wp-video-content p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 24px;
}

.wp-video-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.wp-video-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #1e3a5f;
}

.wp-video-features li i {
    color: #00d4aa;
    font-size: 12px;
}

.wp-video-player {
    flex: 1.2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
}

.video-cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 50%, #0a1929 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.4s ease;
}

.video-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 30px 30px;
}

.video-cover.hidden {
    opacity: 0;
    pointer-events: none;
}

.cover-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.play-btn {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
}

.play-btn svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    margin-left: 4px;
}

.cover-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 500;
}

.wp-video-player video,
.wp-video-player .fluid_video_wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}

@media (max-width: 991px) {
    .wp-video-wrapper {
        flex-direction: column;
        padding: 30px;
    }

    .wp-video-features {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PRICING SECTION
   ============================================ */
.wp-pricing {
    padding: 100px 0;
    background: #f8fafc;
}

.wp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.wp-price-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.wp-price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.wp-price-card.featured {
    border-color: #21a0d5;
    transform: scale(1.05);
}

.wp-price-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.wp-featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #21a0d5, #00d4aa);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
}

.wp-card-header {
    margin-bottom: 20px;
}

.wp-plan-name {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 8px;
}

.wp-plan-space {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(33, 160, 213, 0.1);
    color: #21a0d5;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
}

.wp-card-price {
    margin-bottom: 28px;
}

.wp-card-price .price-amount {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #1e3a5f;
}

.wp-card-price .price-period {
    font-size: 14px;
    color: #64748b;
}

.wp-card-price .price-period-sub {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
}

.wp-card-price .price-discount {
    display: block;
    margin-top: 8px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(33, 160, 213, 0.1));
    color: #00a67d;
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
}

.wp-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: right;
}

.wp-features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    color: #64748b;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.wp-features-list .feature-label {
    color: #64748b;
    font-weight: 500;
}

.wp-features-list .feature-value {
    font-weight: 700;
    color: #1e3a5f;
}

.wp-btn-order {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: #f1f5f9;
    color: #1e3a5f;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.wp-btn-order:hover {
    background: linear-gradient(135deg, #21a0d5, #00d4aa);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(33, 160, 213, 0.3);
}

.wp-btn-order.primary {
    background: linear-gradient(135deg, #21a0d5, #00d4aa);
    color: #fff;
}

.wp-btn-order.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(33, 160, 213, 0.3);
}

.wp-pricing-note {
    margin-top: 40px;
    color: #64748b;
}

.wp-pricing-note a {
    color: #21a0d5;
    font-weight: 600;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.wp-features-section {
    padding: 100px 0;
    background: #fff;
}

.wp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wp-feature-card {
    padding: 32px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.wp-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.wp-feature-card .feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 20px;
}

.wp-feature-card .feature-icon.blue { background: rgba(33, 160, 213, 0.12); color: #21a0d5; }
.wp-feature-card .feature-icon.purple { background: rgba(139, 92, 246, 0.12); color: #8b5cf6; }
.wp-feature-card .feature-icon.green { background: rgba(0, 212, 170, 0.12); color: #00d4aa; }
.wp-feature-card .feature-icon.orange { background: rgba(249, 115, 22, 0.12); color: #f97316; }
.wp-feature-card .feature-icon.cyan { background: rgba(6, 182, 212, 0.12); color: #06b6d4; }
.wp-feature-card .feature-icon.pink { background: rgba(236, 72, 153, 0.12); color: #ec4899; }

.wp-feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 12px;
}

.wp-feature-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

/* ============================================
   TECH STACK SECTION
   ============================================ */
.wp-tech-section {
    padding: 80px 0;
    background: #f8fafc;
}

.wp-tech-card {
    background: linear-gradient(135deg, #1e3a5f, #0f2744);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.wp-tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.wp-tech-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.wp-tech-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.wp-tech-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.wp-tech-list {
    display: flex;
    gap: 24px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tech-item img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
}

.tech-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.wp-tech-stats {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.tech-stat {
    text-align: center;
}

.tech-stat .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #00d4aa;
}

.tech-stat .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.wp-faq-section {
    padding: 100px 0;
    background: #fff;
}

.wp-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.wp-faq-item {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wp-faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    color: #1e3a5f;
}

.faq-question i {
    font-size: 12px;
    color: #21a0d5;
    transition: transform 0.3s;
}

.wp-faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.wp-faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.wp-cta-section {
    padding: 80px 0 100px;
    background: #f8fafc;
}

.wp-cta-card {
    background: linear-gradient(135deg, #21a0d5, #00d4aa);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.wp-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 35px 35px;
    pointer-events: none;
}

.wp-cta-content {
    position: relative;
    z-index: 1;
}

.wp-cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.wp-cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.wp-cta-features {
    display: flex;
    gap: 24px;
}

.wp-cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
}

.wp-cta-features i {
    font-size: 12px;
}

.wp-cta-actions {
    position: relative;
    z-index: 1;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #fff;
    color: #21a0d5;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .wp-hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .wp-hero-text {
        max-width: 100%;
    }

    .wp-hero h1 {
        font-size: 40px;
    }

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

    .wp-hero-buttons {
        justify-content: center;
    }

    .wp-hero-visual {
        width: 300px;
        height: 300px;
    }

    .wp-logo-main svg {
        width: 140px;
        height: 140px;
    }

    .wp-floating-card {
        display: none;
    }

    .wp-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .wp-price-card.featured {
        transform: none;
    }

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

    .wp-tech-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .wp-tech-list {
        justify-content: center;
    }

    .wp-faq-grid {
        grid-template-columns: 1fr;
    }

    .wp-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .wp-cta-features {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .wp-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .wp-hero h1 {
        font-size: 32px;
    }

    .wp-hero-desc {
        font-size: 16px;
    }

    .wp-features-grid {
        grid-template-columns: 1fr;
    }

    .wp-tech-stats {
        flex-direction: column;
        gap: 24px;
    }
}

/* Menu spacing */
.main-menu > li {
    margin-left: 12px !important;
}

.main-menu > li > a {
    padding: 15px 16px !important;
}

/* ============================================
   BILLING TABS
   ============================================ */
.billing-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.billing-tabs {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 5px;
    background: #fff;
    border-radius: 14px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}

.billing-tab {
    position: relative;
    z-index: 1;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    color: #1e3a5f;
    background: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.billing-tab.active {
    color: #fff;
    background: linear-gradient(135deg, #21a0d5, #00d4aa);
    box-shadow: 0 4px 15px rgba(33, 160, 213, 0.35);
}

.billing-tab:not(.active) {
    color: #1e3a5f;
    background: #f1f5f9;
}

.billing-tab:not(.active):hover {
    background: #e2e8f0;
}

.discount-badge {
    display: inline-block;
    padding: 3px 9px;
    background: rgba(255,255,255,0.25);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    animation: pulse-badge 2s ease-in-out infinite;
}

.billing-tab:not(.active) .discount-badge {
    background: linear-gradient(135deg, #00d4aa, #00a67d);
    color: #fff;
}

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

/* ============================================
   PRICE DISPLAY - ANNUAL/MONTHLY
   ============================================ */
.price-original {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.price-old {
    font-size: 20px;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: line-through;
    text-decoration-color: #21a0d5;
    text-decoration-thickness: 2px;
}

.price-save-badge {
    display: inline-block;
    padding: 3px 10px;
    background: linear-gradient(135deg, rgba(33,160,213,0.1), rgba(0,212,170,0.1));
    color: #21a0d5;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    border: 1px solid rgba(33,160,213,0.25);
}

.price-annual-total {
    margin-top: 10px;
    font-size: 13px;
    color: #64748b;
}

.price-annual-total strong {
    color: #00a67d;
    font-weight: 700;
}

.wp-price-card.featured .price-old {
    color: #94a3b8;
}

.wp-price-card.featured .price-save-badge {
    background: linear-gradient(135deg, rgba(33,160,213,0.1), rgba(0,212,170,0.1));
    color: #21a0d5;
    border-color: rgba(33,160,213,0.25);
}

.wp-price-card.featured .price-annual-total {
    color: #64748b;
}

.wp-price-card.featured .price-annual-total strong {
    color: #00a67d;
}

/* ============================================
   SEO CONTENT SECTION
   ============================================ */
#host-content-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}

#host-content-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(33, 160, 213, 0.06) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    border-radius: 50%;
}

#host-content-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.05) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    border-radius: 50%;
}

#host-content-section .container {
    position: relative;
    z-index: 2;
}

#host-content-section .content-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 12px;
}

#host-content-section .content-section-subtitle {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 0;
}

#host-content-section .content-section-header {
    margin-bottom: 50px;
}

/* Content Accordion */
#host-content-section .content-accordion {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

#host-content-section .content-accordion > .col-12,
#host-content-section .content-accordion > .col-md-6 {
    padding: 0 10px;
}

#host-content-section .accordion-item {
    background: #fff;
    border: 1px solid rgba(33, 160, 213, 0.12);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

#host-content-section .accordion-item:hover {
    border-color: rgba(33, 160, 213, 0.3);
    box-shadow: 0 8px 30px rgba(33, 160, 213, 0.08);
    transform: translateY(-2px);
}

#host-content-section .accordion-item:has(.accordion-collapse.show) {
    border-color: rgba(33, 160, 213, 0.35);
    box-shadow: 0 12px 35px rgba(33, 160, 213, 0.12);
}

#host-content-section .accordion-header {
    margin: 0;
}

#host-content-section .accordion-button {
    background: transparent;
    color: #1e3a5f;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 18px 22px 18px 60px !important;
    border: none;
    box-shadow: none;
    display: block !important;
    width: 100%;
    text-align: right !important;
    position: relative;
    transition: all 0.3s ease;
    line-height: 1.7;
}

#host-content-section .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

#host-content-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(33, 160, 213, 0.06), rgba(0, 212, 170, 0.04));
    color: #21a0d5;
}

#host-content-section .accordion-button::after {
    display: none;
}

#host-content-section .accordion-button .acc-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: linear-gradient(135deg, rgba(33, 160, 213, 0.1), rgba(0, 212, 170, 0.08));
    border: 1px solid rgba(33, 160, 213, 0.2);
    border-radius: 8px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute !important;
    left: 18px !important;
    right: auto !important;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

#host-content-section .accordion-button .acc-icon i {
    color: #21a0d5;
    font-size: 11px;
    transition: transform 0.3s ease;
}

#host-content-section .accordion-button:not(.collapsed) .acc-icon {
    background: linear-gradient(135deg, #21a0d5, #00d4aa);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(33, 160, 213, 0.3);
}

#host-content-section .accordion-button:not(.collapsed) .acc-icon i {
    transform: rotate(45deg);
    color: #fff;
}

/* Smooth Accordion Animation */
#host-content-section .accordion-collapse {
    background: transparent;
    transition: height 0.25s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.2s ease;
}

#host-content-section .accordion-collapse.collapsing {
    transition: height 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
}

#host-content-section .accordion-collapse.show .accordion-body,
#host-content-section .accordion-collapse.collapsing .accordion-body {
    animation: contentFadeIn 0.2s ease forwards;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#host-content-section .accordion-body {
    padding: 0 22px 20px 60px;
    color: #475569;
    font-size: 0.9rem;
    line-height: 2;
    text-align: right;
}

#host-content-section .accordion-body p {
    margin: 0 0 10px;
    color: #475569;
}

#host-content-section .accordion-body a {
    color: #21a0d5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

#host-content-section .accordion-body a:hover {
    color: #1a8ab8;
}

#host-content-section .accordion-body strong {
    color: #1e3a5f;
    font-weight: 700;
}

#host-content-section .accordion-body ol,
#host-content-section .accordion-body ul {
    padding-right: 20px;
    margin: 8px 0;
}

#host-content-section .accordion-body li {
    margin-bottom: 4px;
}

#host-content-section .acc-body-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(33, 160, 213, 0.08), rgba(0, 212, 170, 0.06));
    color: #21a0d5;
    border: 1px solid rgba(33, 160, 213, 0.2);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

#host-content-section .acc-body-btn:hover {
    background: linear-gradient(135deg, #21a0d5, #00d4aa);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(33, 160, 213, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    #host-content-section {
        padding: 60px 0;
    }

    #host-content-section .content-section-title {
        font-size: 1.6rem;
    }

    #host-content-section .accordion-button {
        padding: 16px 18px 16px 52px !important;
        font-size: 0.9rem;
    }

    #host-content-section .accordion-button .acc-icon {
        left: 14px !important;
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    #host-content-section .accordion-body {
        padding: 0 18px 18px 52px;
    }
}

@media (max-width: 480px) {
    #host-content-section .accordion-button {
        padding: 14px 14px 14px 48px !important;
        font-size: 0.85rem;
    }

    #host-content-section .accordion-button .acc-icon {
        left: 12px !important;
        width: 26px;
        height: 26px;
        min-width: 26px;
    }

    #host-content-section .accordion-body {
        padding: 0 14px 14px 48px;
        font-size: 0.85rem;
    }
}
