/* ============================================================
SERVICES PAGE CSS - COMPLETE & RESPONSIVE
============================================================ */

/* ============================================================
RESET & BASE
============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8fafc;
    color: #1a1a1a;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
PAGE HEADER
============================================================ */
.page-header {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #0a0a1a 100%);
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #e41e26;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-header h1 span {
    color: #e41e26;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #e41e26;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb .current {
    color: #e41e26;
    font-weight: 600;
}

/* ============================================================
SERVICES SECTION - TAB DESIGN
============================================================ */
.services-section {
    padding: 70px 0;
}

/* ===== Tabs ===== */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    background: #ffffff;
    border: 2px solid #eef0f5;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: 0.35s;
    font-family: 'Poppins', sans-serif;
}

.tab-btn:hover {
    border-color: #e41e26;
    color: #e41e26;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.tab-btn.active {
    background: #e41e26;
    border-color: #e41e26;
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(228, 30, 38, 0.2);
}

.tab-btn i {
    font-size: 18px;
}

/* ===== Tab Content Wrapper ===== */
.tab-content-wrapper {
    background: #ffffff;
    border-radius: 30px 8px 30px 8px;
    padding: 45px 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    border-left: 5px solid #e41e26;
    min-height: 450px;
}

.tab-content {
    display: none;
    animation: fadeSlide 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
SERVICE DETAIL
============================================================ */
.service-detail {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 35px;
    align-items: start;
}

/* ===== Large Icon ===== */
.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(228, 30, 38, 0.08), rgba(228, 30, 38, 0.02));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(228, 30, 38, 0.08);
    flex-shrink: 0;
    transition: 0.4s;
}

.service-icon-large i {
    font-size: 36px;
    color: #e41e26;
    transition: 0.4s;
}

.service-detail:hover .service-icon-large {
    background: linear-gradient(135deg, #e41e26, #b3181f);
    border-color: #e41e26;
    transform: rotate(10deg) scale(1.05);
}

.service-detail:hover .service-icon-large i {
    color: #ffffff;
}

/* ===== Service Info ===== */
.service-info h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.service-info h2 span {
    color: #e41e26;
}

.service-info .service-subtitle {
    font-size: 16px;
    color: #888;
    margin-bottom: 20px;
}

/* ===== Description ===== */
.service-description p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 15px;
}

.service-list li {
    padding: 8px 0;
    font-size: 15px;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid #f5f5f5;
    line-height: 1.5;
    transition: 0.3s;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:hover {
    padding-left: 6px;
    color: #1a1a1a;
}

.service-list li i {
    color: #e41e26;
    font-size: 16px;
    margin-top: 2px;
    width: 20px;
    flex-shrink: 0;
}

.service-list.suited-list li {
    padding: 6px 0;
}

/* ===== Service Block ===== */
.service-block {
    background: #f8fafc;
    padding: 18px 22px;
    border-radius: 12px;
    margin-bottom: 15px;
    border-left: 4px solid #e41e26;
    transition: 0.3s;
}

.service-block:hover {
    background: #f0f2f8;
    transform: translateX(4px);
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.service-block h4 i {
    color: #e41e26;
    margin-right: 8px;
}

.service-block p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== Features Tags ===== */
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 25px;
}

.service-features .feature-tag {
    background: #f8fafc;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    border: 1px solid #eef0f5;
    transition: 0.3s;
}

.service-features .feature-tag:hover {
    background: #e41e26;
    color: #ffffff;
    border-color: #e41e26;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(228, 30, 38, 0.15);
}

.service-features .feature-tag i {
    color: #e41e26;
    margin-right: 6px;
}

.service-features .feature-tag:hover i {
    color: #ffffff;
}

/* ===== CTA Button ===== */
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #e41e26;
    color: #ffffff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.service-cta:hover {
    background: #b3181f;
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(228, 30, 38, 0.25);
    color: #ffffff;
}

.service-cta i {
    transition: 0.3s;
}

.service-cta:hover i {
    transform: translateX(4px);
}

/* ============================================================
PLANS SECTION (Inside Services Page)
============================================================ */
.plans-section {
    padding: 70px 0 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
}

.section-title h2 span {
    color: #e41e26;
}

.section-title p {
    font-size: 16px;
    color: #888;
    margin-top: 5px;
}

/* ============================================================
PLANS GRID
============================================================ */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ============================================================
PLAN CARD
============================================================ */
.plan-card {
    background: #ffffff;
    border-radius: 30px 8px 30px 8px;
    padding: 30px 25px 25px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    border-left: 5px solid #e41e26;
    transition: 0.4s;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

/* Popular Badge */
.plan-card .plan-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: #e41e26;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 0 0 12px 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-card.popular {
    border-left-color: #e41e26;
    border-left-width: 6px;
}

/* Plan Header */
.plan-card .plan-header {
    text-align: center;
    margin-bottom: 15px;
}

.plan-card .plan-name {
    font-size: 14px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-card .plan-speed {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

.plan-card .plan-speed span {
    font-size: 16px;
    font-weight: 500;
    color: #888;
}

.plan-card .plan-price {
    font-size: 28px;
    font-weight: 800;
    color: #e41e26;
}

.plan-card .plan-price span {
    font-size: 13px;
    font-weight: 400;
    color: #888;
}

/* Divider */
.plan-card .plan-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #e41e26, transparent);
    margin: 10px 0 15px;
}

/* Features */
.plan-card .plan-features {
    list-style: none;
    padding: 0;
    flex: 1;
}

.plan-card .plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
    border-bottom: 1px solid #f5f5f5;
}

.plan-card .plan-features li:last-child {
    border-bottom: none;
}

.plan-card .plan-features li i {
    color: #e41e26;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.plan-card .plan-features li.highlight {
    color: #1a1a1a;
    font-weight: 600;
}

.plan-card .plan-features li.highlight i {
    color: #ff6b6b;
}

/* WhatsApp Button */
.plan-card .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    padding: 12px 20px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    width: 100%;
}

.plan-card .whatsapp-btn:hover {
    background: #1da851;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.plan-card .whatsapp-btn i {
    font-size: 18px;
}

/* ============================================================
LEASED LINE CARD
============================================================ */
.plan-card.leased-card {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #0a0a1a 100%);
    border-left: 5px solid #e41e26;
    color: #ffffff;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.plan-card.leased-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.plan-card.leased-card .leased-icon {
    font-size: 50px;
    color: #e41e26;
    margin-bottom: 10px;
}

.plan-card.leased-card .leased-tag {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-card.leased-card h3 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 2px 0;
}

.plan-card.leased-card h3 span {
    color: #e41e26;
}

.plan-card.leased-card .leased-price {
    font-size: 18px;
    font-weight: 600;
    color: #ff6b6b;
    margin: 5px 0 10px;
}

.plan-card.leased-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 5px;
}

.plan-card.leased-card .whatsapp-btn {
    margin-top: 15px;
    width: 100%;
}

/* ============================================================
RESPONSIVE
============================================================ */

/* Tablet Large */
@media (max-width: 1100px) {
    .plans-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 34px;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-icon-large {
        width: 70px;
        height: 70px;
    }

    .service-icon-large i {
        font-size: 30px;
    }

    .service-info h2 {
        font-size: 26px;
    }

    .tab-content-wrapper {
        padding: 35px 30px;
        min-height: auto;
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .page-header {
        padding: 45px 0 35px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .services-section {
        padding: 50px 0;
    }

    .service-tabs {
        gap: 10px;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 13px;
        gap: 8px;
    }

    .tab-btn i {
        font-size: 15px;
    }

    .tab-content-wrapper {
        padding: 25px 20px;
        border-radius: 20px 5px 20px 5px;
        min-height: auto;
    }

    .service-info h2 {
        font-size: 22px;
    }

    .service-info .service-subtitle {
        font-size: 14px;
    }

    .service-description p {
        font-size: 14px;
    }

    .service-list li {
        font-size: 14px;
        padding: 6px 0;
    }

    .service-block {
        padding: 15px 18px;
    }

    .service-block h4 {
        font-size: 15px;
    }

    .service-block p {
        font-size: 13px;
    }

    .service-features .feature-tag {
        font-size: 12px;
        padding: 4px 14px;
    }

    .service-cta {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .breadcrumb {
        font-size: 12px;
        gap: 6px;
        flex-wrap: wrap;
    }

    .plans-section {
        padding: 50px 0 0;
    }

    .plans-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .plan-card {
        padding: 25px 18px 20px;
        border-radius: 20px 5px 20px 5px;
    }

    .plan-card .plan-speed {
        font-size: 26px;
    }

    .plan-card .plan-price {
        font-size: 24px;
    }

    .plan-card .plan-features li {
        font-size: 12px;
        padding: 5px 0;
    }

    .plan-card.leased-card h3 {
        font-size: 26px;
    }

    .section-title h2 {
        font-size: 28px;
    }
}

/* Mobile Small */
@media (max-width: 550px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .plan-card {
        padding: 25px 20px 20px;
    }

    .plan-card .plan-speed {
        font-size: 28px;
    }

    .plan-card .plan-price {
        font-size: 26px;
    }

    .plan-card .plan-features li {
        font-size: 13px;
    }

    .plan-card.leased-card {
        padding: 35px 20px;
    }

    .plan-card.leased-card h3 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .section-title h2 {
        font-size: 24px;
    }
}

/* Mobile Extra Small */
@media (max-width: 480px) {
    .service-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .tab-btn {
        justify-content: center;
        padding: 12px 16px;
        font-size: 14px;
    }

    .tab-content-wrapper {
        padding: 20px 15px;
    }

    .service-info h2 {
        font-size: 20px;
    }

    .service-icon-large {
        width: 60px;
        height: 60px;
    }

    .service-icon-large i {
        font-size: 24px;
    }

    .service-description p {
        font-size: 13px;
    }

    .service-list li {
        font-size: 13px;
        padding: 5px 0;
        gap: 10px;
    }

    .service-list li i {
        font-size: 14px;
        width: 18px;
    }

    .service-features {
        gap: 6px;
    }

    .service-features .feature-tag {
        font-size: 11px;
        padding: 4px 12px;
    }

    .service-cta {
        font-size: 13px;
        padding: 10px 16px;
    }

    .service-block {
        padding: 12px 14px;
    }

    .service-block h4 {
        font-size: 14px;
    }

    /* Plans Mobile */
    .plan-card {
        padding: 20px 16px 18px;
    }

    .plan-card .plan-speed {
        font-size: 24px;
    }

    .plan-card .plan-price {
        font-size: 22px;
    }

    .plan-card .plan-features li {
        font-size: 12px;
        padding: 4px 0;
    }

    .plan-card .whatsapp-btn {
        font-size: 13px;
        padding: 10px 16px;
    }

    .plan-card.leased-card h3 {
        font-size: 24px;
    }

    .plan-card.leased-card .leased-icon {
        font-size: 40px;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .section-title p {
        font-size: 14px;
    }
}

/* Mobile Very Small */
@media (max-width: 360px) {
    .page-header h1 {
        font-size: 20px;
    }

    .service-info h2 {
        font-size: 18px;
    }

    .tab-btn {
        font-size: 12px;
        padding: 10px 14px;
    }

    .tab-btn i {
        font-size: 13px;
    }

    .tab-content-wrapper {
        padding: 16px 12px;
    }

    .service-list li {
        font-size: 12px;
    }

    .service-features .feature-tag {
        font-size: 10px;
        padding: 3px 10px;
    }

    .plan-card {
        padding: 16px 12px 14px;
    }

    .plan-card .plan-speed {
        font-size: 22px;
    }

    .plan-card .plan-price {
        font-size: 20px;
    }

    .plan-card .plan-features li {
        font-size: 11px;
        padding: 3px 0;
    }

    .plan-card .whatsapp-btn {
        font-size: 12px;
        padding: 8px 14px;
    }

    .plan-card.leased-card h3 {
        font-size: 20px;
    }

    .plan-card.leased-card .leased-icon {
        font-size: 34px;
    }

    .section-title h2 {
        font-size: 20px;
    }
}