/* Soho Internet Specific Styles */

/* Banner */
.soho-banner {
    background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1600&q=80') center right/cover no-repeat;
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
}

.soho-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(245,245,245,1) 40%, rgba(245,245,245,0.4) 100%);
}

/* Intro Section */
.soho-intro {
    background: #fff;
    padding: 70px 0;
}

.intro-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.intro-wrapper.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 28px;
    color: #111;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.badge-list span {
    display: inline-block;
    background: #f1f5f9;
    color: #0f172a;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.highlight-box {
    background: #fff5f8;
    border-left: 4px solid #e6007e;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 0 8px 8px 0;
    color: #333;
    line-height: 1.5;
}

.small-desc {
    font-size: 13px !important;
    color: #888 !important;
}

/* Features */
.soho-features {
    background: #f8f9fa;
    padding: 70px 0;
}

/* Quick Pricing */
.soho-quick-pricing {
    background: #fff;
    padding: 70px 0;
}

/* Safe Payment */
.soho-safe-payment {
    background: #f8f9fa;
    padding: 70px 0;
}

.network-diagram {
    margin-top: 50px;
    text-align: center;
}

.diagram-box {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 30px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    gap: 20px;
}

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

.node img,
.node .diagram-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.node span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.lines {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 150px;
    position: relative;
}

.line {
    height: 3px;
    background: #ddd;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-line {
    background: #4ade80; /* Green for active */
}

.backup-line {
    background: #e6007e; /* Pink for LTE */
    border-top: 2px dashed #fff; /* Make it look dashed somewhat */
}

.line span {
    position: absolute;
    top: -20px;
    font-size: 12px;
    color: #666;
    background: #fff;
    padding: 0 5px;
}

.backup-line span {
    top: auto;
    bottom: -20px;
    color: #e6007e;
}

.diagram-caption {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}

/* Wireless */
.soho-wireless {
    background: #fff;
    padding: 70px 0;
    border-top: 1px solid #eee;
}

.soho-wireless .promo-box {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    background: #fdfdfd;
}

.soho-wireless .promo-box ul {
    margin: 0;
    padding-left: 20px;
    color: #444;
}

.soho-wireless .promo-box li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* Recommend */
.soho-recommend {
    background: #f8f9fa;
    padding: 70px 0;
}

.recommend-grid.double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

/* Benefits */
.soho-benefits {
    background: #fff;
    padding: 70px 0;
}

.half-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
}

/* Detail Pricing */
.soho-detail-pricing {
    background: #f8f9fa;
    padding: 70px 0;
}

.sub-title {
    font-size: 18px;
    color: #111;
    margin-bottom: 15px;
    font-weight: 700;
    border-left: 3px solid #e6007e;
    padding-left: 10px;
}

.text-left {
    text-align: left !important;
    padding: 15px 20px !important;
    line-height: 1.6;
}

.mb-5 {
    margin-bottom: 50px;
}
