/* Global responsive base */
* , *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
img, video, iframe { max-width: 100%; height: auto; }
body { line-height: 1.5; }

/* Responsive navbar */
.menu-toggle {
    display: none;
    background: none;
    border: 2px solid #ffb347;
    color: #ffb347;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 1rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .navbar { padding: 0.5rem 1rem; }
    .menu-toggle { display: inline-flex; align-items: center; }
    .nav-links, .navbar-links {
        position: absolute;
        top: 64px;
        right: 0;
        left: 0;
        background: rgba(17,17,17,0.98);
        backdrop-filter: saturate(120%) blur(4px);
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 10px 12px;
        border-top: 1px solid #222;
    }
    .nav-links.open, .navbar-links.open { display: flex; }
    .nav-links li a, .navbar-links a { padding: 12px; width: 100%; }
}

/* Fluid typography for hero/sections */
.welcome-title { font-size: clamp(1.6rem, 4.5vw, 3rem); }
.wifi-features-title,
.business-wireless-title,
.home-wireless-title,
.always-lit-title,
.get-connected-title,
.tnc-title,
.get-in-touch-title { font-size: clamp(1.4rem, 3.8vw, 2.3rem); }

/* Scroll button responsiveness */
@media (max-width: 768px) {
    .scroll-down-btn {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        padding: 0.9rem 2.2rem;
        font-size: 1rem;
    }
}

/* Cards/grid should wrap on small screens */
.package-cards { flex-wrap: wrap; }
@media (max-width: 900px) {
    .package-cards { justify-content: center; }
}
/* Get in Touch Section Styles */
.get-in-touch-section {
    background: #111;
    color: #fff;
    padding: 60px 0 60px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.get-in-touch-wrapper {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    background: rgba(0,0,0,0.97);
    border-radius: 16px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.4);
    padding: 48px 32px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}
.get-in-touch-form-block,
.get-in-touch-info-block {
    flex: 1 1 340px;
    min-width: 300px;
    max-width: 400px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.get-in-touch-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffb300;
    align-self: flex-start;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
    background: #222;
    color: #fff;
    resize: none;
    width: 100%;
    box-sizing: border-box;
}
.contact-form button {
    background: #ffb300;
    color: #111;
    border: none;
    border-radius: 6px;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}
.contact-form button:hover {
    background: #fff;
    color: #111;
}
.get-in-touch-info-block {
    gap: 32px;
}
.contact-block h3,
.address-block h3 {
    color: #ffb300;
    margin-bottom: 8px;
}
.contact-block p,
.address-block p {
    margin: 0 0 6px 0;
    color: #fff;
}
.map-container {
    margin-top: 8px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.25);
    position: relative;
    min-height: 180px;
}
.map-container svg {
    pointer-events: none;
}
@media (max-width: 900px) {
    .get-in-touch-wrapper {
        flex-direction: column;
        gap: 32px;
        padding: 24px 8px;
        align-items: center;
    }
    .get-in-touch-form-block,
    .get-in-touch-info-block {
        max-width: 100%;
        align-items: stretch;
    }
}
.get-in-touch-section {
    background: #111;
    color: #fff;
    padding: 60px 0 60px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.get-in-touch-wrapper {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    background: rgba(0,0,0,0.97);
    border-radius: 16px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.4);
    padding: 48px 32px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}
.get-in-touch-form-block,
.get-in-touch-info-block {
    flex: 1 1 340px;
    min-width: 300px;
    max-width: 400px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.get-in-touch-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffb300;
    align-self: flex-start;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
    background: #222;
    color: #fff;
    resize: none;
    width: 100%;
    box-sizing: border-box;
}
.contact-form button {
    background: #ffb300;
    color: #111;
    border: none;
    border-radius: 6px;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}
.contact-form button:hover {
    background: #fff;
    color: #111;
}
.get-in-touch-info-block {
    gap: 32px;
}
.contact-block h3,
.address-block h3 {
    color: #ffb300;
    margin-bottom: 8px;
}
.contact-block p,
.address-block p {
    margin: 0 0 6px 0;
    color: #fff;
}
.map-container {
    margin-top: 8px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.25);
}
@media (max-width: 900px) {
    .get-in-touch-wrapper {
        flex-direction: column;
        gap: 32px;
        padding: 24px 8px;
        align-items: center;
    }
    .get-in-touch-form-block,
    .get-in-touch-info-block {
        max-width: 100%;
        align-items: stretch;
    }
}
/* Get in Touch Page Styles */
.get-in-touch-section {
    background: #111;
    color: #fff;
    padding: 60px 0 60px 0;
    min-height: 70vh;
}
.get-in-touch-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    background: rgba(0,0,0,0.92);
    border-radius: 16px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.4);
    padding: 40px 32px;
    flex-wrap: wrap;
}
.get-in-touch-form-block {
    flex: 1 1 320px;
    min-width: 300px;
    margin-bottom: 0;
}
.get-in-touch-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffb300;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
    background: #222;
    color: #fff;
    resize: none;
}
.contact-form button {
    background: #ffb300;
    color: #111;
    border: none;
    border-radius: 6px;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover {
    background: #fff;
    color: #111;
}
.get-in-touch-info-block {
    flex: 1 1 320px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.contact-block h3,
.address-block h3 {
    color: #ffb300;
    margin-bottom: 8px;
}
.contact-block p,
.address-block p {
    margin: 0 0 6px 0;
    color: #fff;
}
.map-container {
    margin-top: 8px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.25);
}
@media (max-width: 900px) {
    .get-in-touch-wrapper {
        flex-direction: column;
        gap: 32px;
        padding: 24px 8px;
    }
}
/* Navigation Bar for terms.html */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #111;
    padding: 0 32px;
    height: 70px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.12);
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar-logo img {
    height: 48px;
    width: auto;
    display: block;
}
.navbar-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.navbar-links li {
    display: flex;
    align-items: center;
}
.navbar-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.navbar-links a.active,
.navbar-links a:hover {
    background: #ffb300;
    color: #111;
}

/* Footer for terms.html */
.footer {
    background: #111;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: 32px 32px 16px 32px;
    border-top: 2px solid #222;
    margin-top: 48px;
}
.footer-logo img {
    height: 48px;
    width: auto;
    margin-bottom: 12px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 4px;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #ffb300;
}
.footer-contact {
    font-size: 0.98rem;
    margin-top: 8px;
}
@media (max-width: 800px) {
    .footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 12px 12px 12px;
        gap: 16px;
    }
    .navbar {
        padding: 0 10px;
    }
}
/* T's & C's Section for terms.html */
.tnc-section {
    background: #111;
    color: #fff;
    padding: 60px 0 60px 0;
}
.tnc-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 24px;
    background: rgba(0,0,0,0.92);
    border-radius: 16px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.4);
}
.tnc-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: 1px;
    text-align: center;
    color: #fff;
}
.tnc-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #fff;
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 8px;
}
.tnc-content b {
    color: #ffb300;
    font-weight: 700;
}
.tnc-content p {
    margin-bottom: 1.5em;
}
@media (max-width: 600px) {
    .tnc-wrapper {
        padding: 16px 4px;
    }
    .tnc-title {
        font-size: 1.3rem;
    }
    .tnc-content {
        font-size: 0.95rem;
        max-height: 50vh;
    }
}
/* T's & C's Section */
.tnc-section {
    background: #111;
    color: #fff;
    padding: 60px 0 60px 0;
}
.tnc-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 24px;
    background: rgba(0,0,0,0.92);
    border-radius: 16px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.4);
}
.tnc-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: 1px;
    text-align: center;
    color: #fff;
}
.tnc-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #fff;
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 8px;
}
.tnc-content b {
    color: #ffb300;
    font-weight: 700;
}
.tnc-content p {
    margin-bottom: 1.5em;
}
@media (max-width: 600px) {
    .tnc-wrapper {
        padding: 16px 4px;
    }
    .tnc-title {
        font-size: 1.3rem;
    }
    .tnc-content {
        font-size: 0.95rem;
        max-height: 50vh;
    }
}
/* Get in Touch Section */
.get-in-touch-section {
    background: #111;
    color: #fff;
    padding: 64px 0 64px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.get-in-touch-wrapper {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    max-width: 1100px;
    width: 100%;
    justify-content: center;
}
.get-in-touch-form-block {
    flex: 1 1 50%;
    background: #181828;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 2px 16px rgba(255,42,104,0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 320px;
    max-width: 420px;
}
.get-in-touch-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffb347;
    margin-bottom: 1.5rem;
}
.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1.5px solid #ffb347;
    background: #222;
    color: #fff;
    font-size: 1rem;
    resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff2a68;
}
.contact-form button {
    background: linear-gradient(90deg, #ff2a68 0%, #ffb347 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.contact-form button:hover {
    background: linear-gradient(90deg, #ffb347 0%, #ff2a68 100%);
    color: #111;
}
.get-in-touch-info-block {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    min-width: 280px;
    max-width: 340px;
}
.contact-block, .address-block {
    background: #181828;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 16px rgba(255,42,104,0.08);
    margin-bottom: 1.2rem;
}
.contact-block h3, .address-block h3 {
    color: #ffb347;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
}
.contact-block p, .address-block p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}
.map-container {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 0.7rem;
    box-shadow: 0 2px 12px rgba(26,76,124,0.10);
}
.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    background: url('https://cdn-icons-png.flaticon.com/512/684/684908.png') center center/contain no-repeat;
    transform: translate(-50%, -100%);
    z-index: 2;
    pointer-events: none;
}
@media (max-width: 900px) {
    .get-in-touch-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .get-in-touch-form-block, .get-in-touch-info-block {
        max-width: 100%;
        min-width: unset;
    }
}
/* WiFi Features Section */
.wifi-features-section {
    background: #fff;
    padding: 64px 0 64px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wifi-features-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #1a4c7c;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    text-align: center;
}
.wifi-features-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2.2rem;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
}
/* WiFi Feature Block - Company Theme */
.wifi-feature-block {
    background: #fff;
    border: 2px solid #ffb347;
    border-radius: 16px;
    width: 260px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 18px 24px 18px;
    box-shadow: 0 2px 12px rgba(255,42,104,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 1.5rem;
}
.wifi-feature-block:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(255,42,104,0.10);
    border-color: #ff2a68;
}
.wifi-feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff2a68;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-align: center;
}
.wifi-feature-desc {
    color: #1a4c7c;
    font-size: 1rem;
    text-align: center;
}
@media (max-width: 900px) {
    .wifi-features-blocks {
        flex-direction: column;
        align-items: center;
    }
    .wifi-feature-block {
        width: 100%;
        min-width: unset;
        max-width: 100%;
    }
}
/* CUSTOMER RELATIONSHIPS Section */
.customer-relationships-section {
    width: 100%;
    background: #111;
    padding: 0;
    margin: 0;
}
.customer-diagonal-wrapper {
    display: flex;
    min-height: 420px;
    position: relative;
    background: #111;
}
.customer-diagonal-image {
    flex: 1 1 45%;
        background: url('customer-diagonal.jpeg') center center/cover no-repeat;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    min-height: 320px;
    filter: brightness(0.7) contrast(1.1);
}
.customer-diagonal-content {
    flex: 1 1 55%;
    background: #181828;
    padding: 48px 40px 48px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: -8px 0 32px rgba(26,76,124,0.10);
}
.customer-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffb347;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}
.customer-diagonal-content p {
    color: #fff;
    font-size: 1.08rem;
    margin-bottom: 1.1rem;
    line-height: 1.7;
}
@media (max-width: 900px) {
    .customer-diagonal-wrapper {
        flex-direction: column;
    }
    .customer-diagonal-image {
        clip-path: none;
        min-height: 180px;
    }
    .customer-diagonal-content {
        padding: 32px 18px;
    }
}
/* Cart Icon in Navbar */
.cart-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    height: 100%;
    transition: background 0.2s;
}
.cart-icon-link svg {
    display: block;
    margin: 0;
    vertical-align: middle;
}
.cart-icon-link:hover {
    background: rgba(26, 76, 124, 0.08);
    border-radius: 8px;
}
/* Business Wireless Packages Section */
.business-wireless-section {
    background: #111;
    padding: 60px 0 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 60vh;
}
.business-wireless-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a4c7c;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-align: center;
}
.business-wireless-title .highlight-gold {
    color: #ffb347;
}
.business-wireless-sub {
    color: #bbb;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    text-align: center;
}
.business-package-cards {
    display: flex;
    flex-direction: row;
    gap: 2.2rem;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin-top: 1.5rem;
}
.business-package-card {
    background: #f8f8f8;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    width: 400px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 18px 0 18px;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.business-package-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(255,42,104,0.10);
}
.business-package-speed {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a4c7c;
    margin-bottom: 1.2rem;
    margin-top: 0.5rem;
}
.business-package-price {
    font-size: 2.3rem;
    font-weight: 700;
    color: #ff2a68;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, #ff2a68 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.business-package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #444;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    text-align: center;
}
.business-package-features li {
    margin-bottom: 0.4rem;
}
@media (max-width: 900px) {
    .business-package-cards {
        flex-direction: column;
        align-items: center;
    }
    .business-package-card {
        width: 100%;
        min-width: unset;
        max-width: 100%;
    }
}
.business-btn {
    background: linear-gradient(90deg, #ff2a68 0%, #ffb347 100%);
    color: #fff !important;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    box-shadow: 0 2px 8px rgba(255,42,104,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    border: none;
    outline: none;
    margin-left: 0.5rem;
}
.business-btn:hover {
    background: linear-gradient(90deg, #ffb347 0%, #ff2a68 100%);
    color: #111 !important;
    box-shadow: 0 4px 16px rgba(255,42,104,0.18);
}
/* Footer Styles */
.site-footer {
    background: #181828;
    color: #fff;
    padding: 40px 0 0 0;
    margin-top: 60px;
    font-size: 1rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    flex-wrap: wrap;
}
.footer-logo img {
    width: 70px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 0 20px 4px rgba(255, 0, 128, 0.2);
}
.footer-links h4, .footer-contact h4 {
    margin-bottom: 10px;
    color: #ffb347;
    font-size: 1.1rem;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links ul li {
    margin-bottom: 8px;
}
.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links ul li a:hover {
    color: #ffb347;
}
.footer-contact p {
    margin: 0 0 8px 0;
    color: #ccc;
    font-size: 0.98rem;
}
.footer-bottom {
    text-align: center;
    color: #bbb;
    font-size: 0.95rem;
    margin-top: 32px;
    padding: 16px 0 8px 0;
    border-top: 1px solid #333;
}
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-logo img {
        margin-bottom: 18px;
    }
    .footer-links, .footer-contact {
        margin-bottom: 24px;
    }
}
/* Home Wireless Packages Section */
.home-wireless-section {
    background: #111;
    padding: 60px 0 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 60vh;
}
.home-wireless-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a4c7c;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-align: center;
}
.home-wireless-title .highlight-gold {
    color: #ffb347;
}
.home-wireless-sub {
    color: #bbb;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    text-align: center;
}
.home-package-cards {
    display: flex;
    flex-direction: row;
    gap: 2.2rem;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    margin-top: 1.5rem;
}
.home-package-card {
    background: #f8f8f8;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    width: 320px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 18px 0 18px;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.home-package-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(255,42,104,0.10);
}
.home-package-speed {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a4c7c;
    margin-bottom: 1.2rem;
    margin-top: 0.5rem;
}
.home-package-price {
    font-size: 2.3rem;
    font-weight: 700;
    color: #ff2a68;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, #ff2a68 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.home-package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #444;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    text-align: center;
}
.home-package-features li {
    margin-bottom: 0.4rem;
}
/* Sparkline Animation */
.sparkline-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 0 32px 0;
}
.sparkline {
    display: block;
    width: 400px;
    height: 30px;
    margin: 0 auto;
}
@media (max-width: 1100px) {
    .home-package-cards {
        flex-direction: column;
        align-items: center;
    }
    .home-package-card {
        width: 100%;
        min-width: unset;
        max-width: 100%;
    }
}
/* Always Lit Wireless Fibre Section */
.always-lit-section {
    background: #111;
    padding: 60px 0 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 60vh;
}
.always-lit-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a4c7c;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-align: center;
}
.always-lit-title .highlight-gold {
    color: #ffb347;
}
.always-lit-sub {
    color: #bbb;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    text-align: center;
}
.always-lit-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 2.5rem;
    width: 100%;
    max-width: 1100px;
    margin-top: 1.5rem;
}
.always-lit-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    object-fit: contain;
}
.always-lit-card {
    background: #fff;
    border: 2px solid #1a4c7c;
    border-radius: 12px;
    min-width: 340px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    padding: 32px 24px 24px 24px;
}
.always-lit-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: #1a4c7c;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 0 12px 0 12px;
    letter-spacing: 1px;
    transform: translateY(-100%) translateX(0%);
}
.always-lit-speed {
    font-size: 2rem;
    font-weight: 700;
    color: #1a4c7c;
    margin: 2.5rem 0 1.2rem 0;
}
.always-lit-price {
    font-size: 2.3rem;
    font-weight: 700;
    color: #ffb347;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, #ffb347 0%, #ff2a68 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.always-lit-features {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #444;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.always-lit-features li {
    margin-bottom: 0.4rem;
}
@media (max-width: 900px) {
    .always-lit-content {
        flex-direction: column;
        align-items: center;
    }
    .always-lit-image img, .always-lit-card {
        width: 100%;
        min-width: unset;
        max-width: 100%;
    }
}
/* Mobile layout for Get Connected cards */
@media (max-width: 768px) {
    .package-card {
        width: 100%;
        max-width: 480px;
    }
}
/* Get Connected Section */
.get-connected-section {
    background: #f8f8f8;
    padding: 60px 0 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}
.get-connected-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #1a4c7c;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.highlight-gold {
    color: #ffb347;
}
.get-connected-sub {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}
/* Get Connected Section - Updated Visuals */
.get-connected-section {
    background: #111;
    padding: 60px 0 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    border-top: 8px solid #ffb347;
    border-image: linear-gradient(90deg, #ff2a68 0%, #ffb347 100%) 1;
}
.get-connected-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    display: block; /* avoid flex gaps between words on mobile */
}
.highlight-gold {
    color: #ffb347;
}
.get-connected-sub {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}
.package-cards {
    display: flex;
    gap: 2.2rem;
    justify-content: center;
    flex-wrap: wrap; /* allow wrapping to prevent side scroll */
    width: 100%;
    max-width: 1200px;
}
.package-card {
    background: #f8f8f8;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    width: 260px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 18px 0 18px;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.package-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(255,42,104,0.10);
}
.package-speed {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a4c7c;
    margin-bottom: 1.2rem;
    margin-top: 0.5rem;
}
.package-price {
    font-size: 2.3rem;
    font-weight: 700;
    color: #ff2a68;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, #ff2a68 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* text-fill-color removed for compatibility */
}
.currency {
    font-size: 1.2rem;
    vertical-align: super;
}
.per {
    font-size: 1.1rem;
    color: #888;
}
.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #444;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}
.package-features li {
    margin-bottom: 0.4rem;
}
.best-seller {
    border: 2.5px solid #ff2a68;
    box-shadow: 0 4px 24px rgba(255,42,104,0.10);
    background: #fff0fa;
}
 .best-seller-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff2a68;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 0 10px 0 10px;
    letter-spacing: 1px;
    transform: translateY(-100%) translateX(0%);
}
/* removed stray transform/curly brace */
/* About Section Styles */
.about-section {
    background: #fff;
    padding: 0 0 0 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    scroll-snap-align: start;
    animation: fadeInUp 1.2s cubic-bezier(.23,1.01,.32,1) both;
}
.about-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    max-width: 1200px;
    margin: 60px 0 0 0;
    gap: 40px;
}
.about-left {
    flex: 2;
    min-width: 340px;
}
.about-bar {
    display: inline-block;
    width: 6px;
    height: 32px;
    background: linear-gradient(90deg, #ff2a68 0%, #ffb347 100%);
    border-radius: 4px;
    margin-right: 12px;
    vertical-align: middle;
}
.about-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
}
.about-sub {
    color: #888;
    font-size: 1.05rem;
    margin-bottom: 18px;
}
.about-highlight {
    color: #ff2a68;
    font-weight: 600;
}
.about-highlight2 {
    color: #ff2a68;
    font-weight: 600;
    text-decoration: underline;
}
.about-mission {
    background: linear-gradient(90deg, #ff2a68 10%, #ffb347 90%);
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(255,42,104,0.04);
    max-width: 600px;
}
.mission-title {
    color: #ff2a68;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 1.05rem;
}
.mission-text {
    color: #333;
    font-size: 1rem;
}
.about-right {
    flex: 1.2;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
}
.pillars-title {
    color: #888;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    align-self: flex-end;
}
.pillar {
    width: 260px;
    border-radius: 14px;
    padding: 22px 0 12px 0;
    margin-bottom: 8px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    background: #181828;
    color: #fff;
    transition: transform 0.3s cubic-bezier(.23,1.01,.32,1), box-shadow 0.3s;
}
.pillar-main {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.pillar-fast .pillar-main {
    color: #00e6e6;
}
.pillar-seamless .pillar-main {
    color: #ff2a68;
}
.pillar-scalable .pillar-main {
    color: #ffb347;
}
.pillar-desc {
    color: #ccc;
    font-size: 1rem;
}
.about-footer {
    width: 100%;
    text-align: left;
    color: #bbb;
    font-size: 0.85rem;
    margin: 40px 0 0 12px;
    letter-spacing: 1px;
}
@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .about-right {
        align-items: flex-start;
    }
    .pillar {
        width: 100%;
        min-width: 180px;
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Scroll Down Button */
.scroll-down-btn {
    position: absolute;
    bottom: 17px;
    right: 100px;
    padding: 1.5rem 5rem;
    font-size: 1.7rem;
    font-weight: 700;
    border: none;
    border-radius: 36px;
    background: linear-gradient(90deg, #ff2a68 0%, #ffb347 100%);
    color: #fff;
    box-shadow: 0 6px 32px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    z-index: 10;
    letter-spacing: 1.5px;
}
.scroll-down-btn:hover {
    transform: translateY(4px) scale(1.06);
    background: linear-gradient(90deg, #ffb347 0%, #ff2a68 100%);
    color: #111;
}
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    height: 100%;
    overflow-x: hidden;
}

#loader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.logo-spin {
    width: 100px;
    height: 100px;
    animation: spin 1.5s linear infinite;
    border-radius: 20px;
    box-shadow: 0 0 40px 10px rgba(255, 0, 128, 0.3);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

header {
    width: 100%;
    background: rgba(17, 17, 17, 0.95);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    box-shadow: 0 0 20px 4px rgba(255, 0, 128, 0.2);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.nav-links li a:hover {
    background: linear-gradient(90deg, #ff2a68 0%, #ffb347 100%);
    color: #111;
}

.landing {
    min-height: 100vh;
    background: url('background.jpeg') no-repeat center center/cover, linear-gradient(120deg, #ff2a68 0%, #ffb347 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(17,17,17,0.5);
    z-index: 1;
}

.landing-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Color scheme and more styles will be updated after extracting from the document */

/* Ensure mobile navbar is hidden by default and only shown when open
   Place at end to override earlier global .nav-links display */
@media (max-width: 768px) {
    .navbar { position: relative; }
    .nav-links, .navbar-links {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 1001;
        background: rgba(17,17,17,0.98);
        backdrop-filter: saturate(120%) blur(4px);
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 10px 12px;
        border-top: 1px solid #222;
        text-align: left;
    }
    .nav-links.open, .navbar-links.open { display: flex; }
    .nav-links li, .navbar-links li { display: block; }
    .nav-links li a, .navbar-links a { display: block; padding: 12px 16px; width: 100%; }
    .menu-toggle { display: inline-flex; align-items: center; }

    /* Show full hero image on phones (avoid cropping) */
    .landing {
        /* Replace gradient with solid black behind image to avoid colored gaps */
        background: #000 url('background.jpeg') no-repeat center center / contain;
        min-height: 85vh;
    }
}

/* Compact scroll-down button on mobile for better ergonomics */
@media (max-width: 768px) {
    .scroll-down-btn {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: 20px;
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
        border-radius: 22px;
        letter-spacing: 0.8px;
    }
    /* Ensure diagonal image background isn't cropped on phones */
    .customer-diagonal-image {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
}
