/* ==========================================================
   SeniorTech Networks Website V3
   File: home.css
   Purpose: Homepage Styling
========================================================== */


/* ==========================================================
   HERO BACKGROUND
========================================================== */

.hero{

    position:relative;

    background:
        radial-gradient(circle at top right,
        rgba(30,95,175,.35),
        transparent 40%),

        radial-gradient(circle at bottom left,
        rgba(255,122,0,.12),
        transparent 35%),

        linear-gradient(
            135deg,
            #071A3D 0%,
            #0D2B63 45%,
            #174C97 100%
        );

    color:var(--color-white);

}


/* ==========================================================
   BACKGROUND GLOW
========================================================== */

.hero::before{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    border-radius:50%;

    background:rgba(0,119,204,.18);

    filter:blur(120px);

    top:-120px;

    right:-120px;

    z-index:0;

}

.hero::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(255,122,0,.10);

    filter:blur(140px);

    bottom:-160px;

    left:-120px;

    z-index:0;

}


/* ==========================================================
   KEEP CONTENT ABOVE GLOWS
========================================================== */

.hero .container{

    position:relative;

    z-index:2;

}


/* ==========================================================
   HERO TYPOGRAPHY
========================================================== */

.hero h1{

    color:#ffffff;

    font-size:clamp(3rem,5vw,4.6rem);

    font-weight:800;

    line-height:1.1;

    letter-spacing:-1px;

}

.hero p{

    color:rgba(255,255,255,.86);

    font-size:1.1rem;

    max-width:620px;

}


/* ==========================================================
   HERO IMAGE
========================================================== */

.hero__image img{

    filter:
        drop-shadow(0 40px 70px rgba(0,0,0,.30));

    animation:heroFloat 6s ease-in-out infinite;

}


/* ==========================================================
   FEATURE CARDS
========================================================== */

.hero__features{

    position:relative;

    z-index:5;

}

.feature-card{

    border:1px solid rgba(255,255,255,.08);

}

.feature-card p{

    color:var(--color-text);

}


/* ==========================================================
   SUMMARY STRIP
========================================================== */

.summary-strip{

    transform:translateY(30px);

}


/* ==========================================================
   ANIMATIONS
========================================================== */

@keyframes heroFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}
/* ==========================================================
   INTERNET PLANS SECTION
========================================================== */

.plans {
    padding: 120px 0;
    background: #f5f7fb;
}


/* SECTION HEADER */

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
}


.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;

    background: rgba(255, 123, 0, 0.1);

    color: #ff7b00;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 20px;
}


.section-header h2 {
    font-size: 48px;
    line-height: 1.2;

    color: #13294b;

    margin-bottom: 18px;
}


.section-header p {
    font-size: 18px;

    color: #667085;

    line-height: 1.7;
}


/* PLANS GRID */

.plans-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;

    align-items: stretch;
}

/* FOUR PLAN LAYOUT */

.plans-grid-four {
    grid-template-columns: repeat(4, 1fr);
}

/* PLAN CARD */

.plan-card {
    position: relative;

    background: #ffffff;

    padding: 45px 35px;

    border-radius: 20px;

    border: 1px solid #e6eaf0;

    box-shadow:
        0 15px 40px
        rgba(16, 24, 40, 0.08);

    display: flex;

    flex-direction: column;
}


/* FEATURED PLAN */

.plan-featured {
    border: 2px solid #ff7b00;

    transform: translateY(-15px);

    box-shadow:
        0 25px 60px
        rgba(255, 123, 0, 0.18);
}


/* POPULAR BADGE */

.popular-badge {
    position: absolute;

    top: -17px;

    left: 50%;

    transform: translateX(-50%);

    background: #ff7b00;

    color: #ffffff;

    padding: 8px 22px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;
}


/* PLAN HEADER */

.plan-header h3 {
    font-size: 30px;

    color: #13294b;

    margin-bottom: 10px;
}


.plan-header p {
    color: #667085;

    line-height: 1.6;

    min-height: 52px;
}


/* PRICE */

.plan-price {
    margin: 30px 0;

    color: #13294b;

    display: flex;

    align-items: baseline;
}


.currency {
    font-size: 22px;

    font-weight: 600;
}


.amount {
    font-size: 58px;

    font-weight: 700;

    margin: 0 5px;
}


.period {
    color: #667085;

    font-size: 15px;
}


.custom-price {
    font-size: 42px;

    font-weight: 700;

    color: #13294b;
}


/* SPEED / DESCRIPTION */

.plan-speed {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 15px;

    background: #f5f7fb;

    border-radius: 12px;

    color: #13294b;

    font-weight: 600;

    margin-bottom: 28px;
}


.plan-speed i {
    color: #ff7b00;
}


/* FEATURES */

.plan-features {
    list-style: none;

    padding: 0;

    margin: 0 0 35px;

    flex-grow: 1;
}


.plan-features li {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 16px;

    color: #475467;
}


.plan-features i {
    color: #ff7b00;

    font-size: 14px;
}


/* PLAN BUTTON */

.btn-plan {
    width: 100%;

    justify-content: center;

    background: #13294b;

    color: #ffffff;
}


.btn-plan:hover {
    background: #ff7b00;

    color: #ffffff;
}


.plan-featured .btn-plan {
    background: #ff7b00;
}


.plan-featured .btn-plan:hover {
    background: #e66f00;
}
/* =========================================
   FOUR PLAN RESPONSIVE LAYOUT
========================================= */

/* Keep plan titles visually aligned */
.plan-header h3 {
    min-height: 72px;
}


/* TABLET */

@media (max-width: 1100px) {

    .plans-grid-four {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .plans-grid-four {
        grid-template-columns: 1fr;
    }

    .plan-card {
        padding: 35px 25px;
    }

    .plan-header h3 {
        min-height: auto;
    }

}
/* PLANS INFORMATION */

.plans-info {
    margin-top: 30px;

    display: flex;

    flex-direction: column;

    gap: 10px;
}


.plans-info p {
    margin: 0;

    color: #475467;

    font-size: 16px;

    line-height: 1.6;
}


.plans-info i {
    color: #ff7b00;

    margin-right: 8px;
}


.highlight-orange {
    color: #ff7b00;
}

/* ==========================================================
   AVAILABLE DEVICES
========================================================== */

.equipment {
    padding: 100px 0;
}

.equipment .section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.equipment-card {
    background: #ffffff;
    border: 1px solid rgba(31, 54, 82, 0.08);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(31, 54, 82, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(31, 54, 82, 0.14);
}

.equipment-image {
    height: 240px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.equipment-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.equipment-content h3 {
    font-size: 21px;
    margin-bottom: 10px;
    color: #1f3652;
}

.equipment-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #475467;
}

.equipment-availability {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #1f3652;
}

.equipment-availability i {
    color: #1f3652;
}

.btn-equipment {
    margin-top: auto;
    width: 100%;
    text-align: center;
}


/* TABLET */

@media (max-width: 1000px) {

    .equipment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .equipment {
        padding: 70px 0;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .equipment-image {
        height: 220px;
        padding: 20px;
    }

    .equipment-content {
        padding: 22px;
    }

}
/* ==========================================================
   COVERAGE SECTION
========================================================== */

.coverage {
    padding: 120px 0;
    background: #f5f7fb;
}

.coverage-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


/* ==========================================================
   COVERAGE CONTENT
========================================================== */

.coverage-content h2 {
    margin-top: 24px;
    margin-bottom: 20px;

    font-size: 48px;
    line-height: 1.15;

    color: #1d3557;
}

.coverage-content > p {
    max-width: 650px;

    margin-bottom: 35px;

    font-size: 18px;
    line-height: 1.7;

    color: #5f6f82;
}


/* ==========================================================
   COVERAGE STATUS
========================================================== */

.coverage-status {
    display: flex;
    flex-direction: column;
    gap: 24px;

    margin-bottom: 38px;
}

.coverage-status-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.coverage-status-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    font-size: 20px;
}

.coverage-status-icon.active {
    background: rgba(25, 135, 84, 0.12);
    color: #198754;
}

.coverage-status-icon.expansion {
    background: rgba(255, 127, 0, 0.12);
    color: #ff7f00;
}

.coverage-status-item h3 {
    margin-bottom: 5px;

    font-size: 18px;

    color: #1d3557;
}

.coverage-status-item p {
    margin: 0;

    font-size: 16px;

    color: #5f6f82;
}


/* ==========================================================
   COVERAGE BUTTON
========================================================== */

.coverage .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 32px;

    border-radius: 50px;

    background: #ff7f00;
    color: #ffffff;

    text-decoration: none;

    font-weight: 700;

    transition: 0.3s ease;
}

.coverage .btn-primary:hover {
    transform: translateY(-3px);

    background: #e86f00;
}


/* ==========================================================
   COVERAGE VISUAL
========================================================== */

.coverage-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.coverage-map-card {
    position: relative;

    width: 100%;
    max-width: 480px;

    padding: 70px 40px;

    text-align: center;

    border-radius: 28px;

    background: linear-gradient(
        135deg,
        #1d3557,
        #274b7a
    );

    color: #ffffff;

    overflow: hidden;

    box-shadow: 0 20px 50px rgba(29, 53, 87, 0.2);
}

.coverage-map-icon {
    width: 90px;
    height: 90px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ff7f00;

    font-size: 38px;
}

.coverage-map-card h3 {
    margin-bottom: 12px;

    font-size: 28px;

    color: #ffffff;
}

.coverage-map-card p {
    margin: 0;

    font-size: 17px;

    color: rgba(255, 255, 255, 0.75);
}


/* ==========================================================
   COVERAGE PULSE
========================================================== */

.coverage-pulse {
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.12);

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    pointer-events: none;
}

.coverage-map-card::before,
.coverage-map-card::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.08);

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    pointer-events: none;
}

.coverage-map-card::before {
    width: 430px;
    height: 430px;
}

.coverage-map-card::after {
    width: 580px;
    height: 580px;
}

/* ==========================================================
   ABOUT SECTION
========================================================== */

.about {
    padding: 120px 0;
    background: #ffffff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


/* ==========================================================
   ABOUT VISUAL
========================================================== */

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual-card {
    width: 100%;
    max-width: 480px;

    min-height: 380px;

    padding: 60px 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 28px;

    background: linear-gradient(
        135deg,
        #1d3557,
        #274b7a
    );

    box-shadow: 0 20px 50px rgba(29, 53, 87, 0.18);
}

.about-icon {
    width: 100px;
    height: 100px;

    margin-bottom: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ff7f00;
    color: #ffffff;

    font-size: 40px;
}

.about-visual-card h3 {
    margin-bottom: 12px;

    font-size: 30px;

    color: #ffffff;
}

.about-visual-card p {
    margin: 0;

    font-size: 17px;

    color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================
   ABOUT CONTENT
========================================================== */

.about-content h2 {
    margin-top: 24px;
    margin-bottom: 20px;

    font-size: 48px;
    line-height: 1.15;

    color: #1d3557;
}

.about-content p {
    max-width: 650px;

    margin-bottom: 18px;

    font-size: 18px;
    line-height: 1.7;

    color: #5f6f82;
}

.about-content .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 18px;
    padding: 16px 32px;

    border-radius: 50px;

    background: #ff7f00;
    color: #ffffff;

    text-decoration: none;

    font-weight: 700;

    transition: 0.3s ease;
}

.about-content .btn-primary:hover {
    transform: translateY(-3px);

    background: #e86f00;
}

/* ==========================================================
   CONTACT SECTION
========================================================== */

.contact {
    padding: 120px 0;
    background: #f5f7fb;
}

.contact .section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-card {
    background: #ffffff;
    border: 1px solid rgba(31, 54, 82, 0.08);

    border-radius: 20px;

    padding: 35px 25px;

    text-align: center;

    box-shadow: 0 12px 35px rgba(31, 54, 82, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px
        rgba(31, 54, 82, 0.12);
}

.contact-icon {
    width: 64px;
    height: 64px;

    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(255, 123, 0, 0.12);

    color: #ff7b00;

    font-size: 25px;
}

.contact-card h3 {
    margin-bottom: 12px;

    font-size: 20px;

    color: #1d3557;
}

.contact-card p {
    min-height: 75px;

    margin-bottom: 22px;

    font-size: 15px;
    line-height: 1.6;

    color: #5f6f82;
}

.contact-link {
    display: inline-block;

    color: #ff7b00;

    font-weight: 700;

    text-decoration: none;

    font-size: 15px;

    white-space: nowrap;
}

.contact-link:hover {
    color: #e86f00;
}


/* TABLET */

@media (max-width: 1000px) {

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .contact {
        padding: 70px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card p {
        min-height: auto;
    }

}
/* ========================================================
   FOOTER
======================================================== */

.footer {
    background: #1d3354;
    color: #ffffff;
    padding: 80px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr;
    gap: 60px;
    padding-bottom: 60px;
}


/* ========================================================
   FOOTER BRAND
======================================================== */

.footer-logo {
    width: 190px;
    height: auto;
    margin-bottom: 22px;
}

.footer-brand p {
    max-width: 360px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}


/* ========================================================
   FOOTER COLUMNS
======================================================== */

.footer-column h3 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 22px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ff7a00;
}


/* ========================================================
   FOOTER CONTACT
======================================================== */

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    white-space: nowrap;
}

.footer-contact i {
    color: #ff7a00;
    width: 18px;
}


/* ========================================================
   FOOTER COVERAGE
======================================================== */

.footer-coverage {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.coverage-status {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.coverage-status i {
    color: #ff7a00;
    margin-top: 4px;
}

.coverage-status strong {
    display: block;
    color: #ffffff;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.coverage-status span {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}


/* ========================================================
   FOOTER BOTTOM
======================================================== */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}


/* ========================================================
   FOOTER RESPONSIVE
======================================================== */

@media (max-width: 1000px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
    }

}

@media (max-width: 600px) {

    .footer {
        padding: 60px 0 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

}