/* ============================================
   HIGH TRAFFIC HOSTING MODERN - SABAHOST
   Cyan Theme (#06b6d4)
   ============================================ */

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

.ht-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #164e63 0%, #134e4a 50%, #0c1a1a 100%);
    z-index: 0;
}

.ht-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(6, 182, 212, 0.4), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(6, 182, 212, 0.3), transparent),
        radial-gradient(2px 2px at 50px 160px, rgba(6, 182, 212, 0.4), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(6, 182, 212, 0.3), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(6, 182, 212, 0.4), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: particles-float 20s linear infinite;
    z-index: 1;
}

@keyframes particles-float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-200px); }
}

.ht-hero-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
    z-index: 1;
}

.ht-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ht-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(8, 145, 178, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 50px;
    color: #22d3ee;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.ht-badge svg {
    fill: #06b6d4;
}

.ht-hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 24px;
}

.ht-hero-text h1 .text-gradient {
    background: linear-gradient(135deg, #06b6d4, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.ht-hero-desc strong {
    color: #06b6d4;
}

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

.ht-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
}

.ht-feature-item i {
    color: #06b6d4;
}

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

.btn-ht-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-ht-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.4);
    color: #fff;
}

.btn-ht-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid rgba(6, 182, 212, 0.5);
    color: #22d3ee;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-ht-secondary:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: #06b6d4;
    color: #22d3ee;
}

/* Hero Visual */
.ht-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ht-server-illustration {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ht-traffic-meter {
    position: relative;
}

.meter-circle {
    position: relative;
    width: 220px;
    height: 220px;
}

.meter-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.meter-bg {
    fill: none;
    stroke: rgba(6, 182, 212, 0.2);
    stroke-width: 8;
}

.meter-fill {
    fill: none;
    stroke: url(#gradient);
    stroke: #06b6d4;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 70;
    animation: meter-animate 2s ease-out forwards;
}

@keyframes meter-animate {
    from { stroke-dashoffset: 283; }
    to { stroke-dashoffset: 70; }
}

.meter-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.meter-value .value {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #06b6d4;
}

.meter-value .label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.ht-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(22, 78, 99, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.ht-floating-card.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.ht-floating-card.card-2 {
    bottom: 10%;
    left: -20px;
    animation-delay: 1.5s;
}

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

.card-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border-radius: 8px;
}

.card-icon.cyan {
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
}

.card-icon i {
    color: #fff;
    font-size: 16px;
}

/* ============================================
   WHY SECTION (White Background)
   ============================================ */
.ht-why-section {
    padding: 100px 0;
    background: #fff;
}

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

.ht-section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
}

.ht-section-header p {
    font-size: 18px;
    color: #6b7280;
}

.ht-section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(8, 145, 178, 0.05));
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 50px;
    color: #0891b2;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.ht-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ht-why-card {
    padding: 32px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.ht-why-card:hover {
    transform: translateY(-5px);
    border-color: #06b6d4;
    box-shadow: 0 15px 30px rgba(6, 182, 212, 0.1);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(8, 145, 178, 0.08));
    border-radius: 16px;
}

.why-icon svg {
    width: 32px;
    height: 32px;
    stroke: #06b6d4;
}

.ht-why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.ht-why-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* ============================================
   CTA BANNER
   ============================================ */
.ht-cta-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.ht-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.ht-cta-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.ht-cta-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.ht-cta-banner .btn-ht-primary {
    background: #fff;
    color: #0891b2;
}

.ht-cta-banner .btn-ht-primary:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FEATURES SECTION (Light Gray)
   ============================================ */
.ht-features-section {
    padding: 100px 0;
    background: #f9fafb;
}

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

.ht-feature-card {
    padding: 32px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.ht-feature-card:hover {
    transform: translateY(-5px);
    border-color: #06b6d4;
    box-shadow: 0 15px 30px rgba(6, 182, 212, 0.1);
}

.ht-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(8, 145, 178, 0.08));
    border-radius: 16px;
}

.ht-feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: #06b6d4;
}

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

.ht-feature-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* ============================================
   USE CASES SECTION (White)
   ============================================ */
.ht-usecases-section {
    padding: 100px 0;
    background: #fff;
}

.ht-usecases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ht-usecase-card {
    padding: 32px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.ht-usecase-card:hover {
    transform: translateY(-5px);
    border-color: #06b6d4;
    box-shadow: 0 15px 30px rgba(6, 182, 212, 0.1);
}

.ht-usecase-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border-radius: 16px;
}

.ht-usecase-icon svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.ht-usecase-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.ht-usecase-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* ============================================
   TECH SECTION (Light Gray)
   ============================================ */
.ht-tech-section {
    padding: 80px 0;
    background: #f9fafb;
}

.ht-tech-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.ht-tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s;
}

.ht-tech-item:hover {
    transform: translateY(-3px);
    border-color: #06b6d4;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.1);
}

.ht-tech-icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(8, 145, 178, 0.08));
    border-radius: 12px;
}

.ht-tech-icon-box svg {
    fill: #06b6d4;
}

.ht-tech-item span {
    color: #1f2937;
    font-size: 14px;
    font-weight: 600;
}

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

.ht-faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ht-faq-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.ht-faq-item:hover {
    border-color: #a5f3fc;
}

.ht-faq-item.active {
    border-color: #06b6d4;
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.1);
}

.ht-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.ht-faq-question:hover {
    background: #fff;
}

.ht-faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.ht-faq-question i {
    color: #06b6d4;
    transition: transform 0.3s;
}

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

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

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

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

/* ============================================
   FINAL CTA SECTION (Dark)
   ============================================ */
.ht-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #164e63 0%, #0c1a1a 100%);
}

.ht-final-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.ht-final-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border-radius: 20px;
}

.ht-final-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.ht-final-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.ht-final-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.ht-final-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   MODAL STYLES
   ============================================ */
.consult-modal {
    border-radius: 24px;
    overflow: hidden;
    border: none;
}

.modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-visual {
    background: linear-gradient(135deg, #164e63 0%, #06b6d4 100%);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.modal-avatar {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.modal-avatar i {
    font-size: 40px;
    color: #fff;
}

.modal-avatar svg {
    width: 50px;
    height: 50px;
    stroke: #fff;
    flex-shrink: 0;
}

.modal-contact p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    margin-bottom: 12px;
}

.modal-contact p i {
    color: rgba(255, 255, 255, 0.7);
}

.modal-form {
    padding: 50px 40px;
    background: #fff;
}

.modal-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: #164e63;
    margin-bottom: 24px;
}

.badge-free {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: #fff;
    font-size: 12px;
    border-radius: 20px;
    margin-right: 8px;
}

.modal-form input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.modal-form input:focus {
    outline: none;
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.time-select {
    margin-bottom: 24px;
}

.time-select > label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
}

.time-opts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.time-opts label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s;
}

.time-opts label:hover {
    background: #e5e7eb;
}

.time-opts input[type="radio"] {
    width: auto;
    margin: 0;
}

.form-btns {
    display: flex;
    gap: 12px;
}

.btn-cancel {
    flex: 1;
    padding: 14px;
    background: #f3f4f6;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancel:hover {
    background: #e5e7eb;
}

.btn-submit {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .ht-why-grid,
    .ht-usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .ht-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ht-hero-text h1 {
        font-size: 42px;
    }

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

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

    .ht-hero-visual {
        display: none;
    }

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

    .ht-cta-content {
        flex-direction: column;
        text-align: center;
    }
}

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

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

    .ht-section-header h2 {
        font-size: 28px;
    }

    .ht-features-grid,
    .ht-why-grid,
    .ht-usecases-grid {
        grid-template-columns: 1fr;
    }

    .ht-final-content h2 {
        font-size: 28px;
    }

    .modal-visual {
        display: none;
    }
}

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

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


/* ============================================
   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;
}

#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;
}

#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);
}

@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;
    }
}
