/*
 * Carnival Internet - Theme CSS
 * Adapted from style-HB.css for WordPress custom theme
 * Font: Plus Jakarta Sans (loaded via Google Fonts in functions.php)
 * Brand: #512663 purple | #FFD359 yellow | #221F20 near-black
 */

/* ─── RESET & BASE ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; min-height: 0; min-width: 0; }

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}
html.no-scroll { overflow: hidden; }

body {
    padding: 82px 0 0;
    margin: 0;
    color: #221f20;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.15;
    overflow-x: hidden;
    cursor: default;
    background: url('https://affiliate.carnivalinternet.co.uk/wp-content/uploads/2026/03/bg-body-scaled.webp') no-repeat center top;
    background-size: cover;
    background-attachment: fixed;
}
body.page-about-us { background-position: center 400px; }

h1, h2, h3, h4, h5, h6 { margin-top: 0; margin-bottom: 15px; font-weight: 700; }
h2 { font-size: 2.7rem; }
p  { margin-top: 0; margin-bottom: 15px; }
a  { text-decoration: none; background-color: transparent; }
a:focus, a:active, button:focus, button:active { outline: 0 !important; }
img { vertical-align: middle; border-style: none; max-width: 100%; }
ul, ol { margin-top: 0; margin-bottom: 1rem; }
li { list-style: none; }
button { border-radius: 0; cursor: pointer; }

/* ─── LAYOUT UTILITIES ──────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
[class*="col-"] { padding: 0 15px; width: 100%; }

@media (min-width: 576px) {
    .col-sm-6 { width: 50%; }
}
@media (min-width: 768px) {
    .col-md-2 { width: 16.666%; }
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.333%; }
    .col-md-6 { width: 50%; }
    .col-md-7 { width: 58.333%; }
    .col-md-8 { width: 66.666%; }
    .col-md-9 { width: 75%; }
    .col-md-12 { width: 100%; }
    .d-md-none { display: none !important; }
}
@media (min-width: 992px) {
    .col-lg-2 { width: 16.666%; }
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.333%; }
    .col-lg-5 { width: 41.666%; }
    .col-lg-6 { width: 50%; }
    .col-lg-7 { width: 58.333%; }
    .col-lg-8 { width: 66.666%; }
    .col-lg-9 { width: 75%; }
    .col-lg-12 { width: 100%; }
    .d-lg-none   { display: none !important; }
    .d-lg-flex   { display: flex !important; }
}
.d-none   { display: none !important; }
.d-block  { display: block !important; }
.d-flex   { display: flex !important; }
.text-center  { text-align: center; }
.text-md-end  { text-align: right; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.ms-auto  { margin-left: auto; }
.mx-auto  { margin-left: auto; margin-right: auto; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.py-5 { padding-top: 80px; padding-bottom: 80px; }
.d-none.d-lg-flex { display: none; }
@media (min-width: 992px) { .d-none.d-lg-flex { display: flex !important; } }

/* ─── SCROLLBAR (desktop) ───────────────────────────────────────────────────── */
@media (min-width: 991px) {
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: rgba(173,175,179,1); border-radius: 10px; }
    ::-webkit-scrollbar-thumb { border-radius: 10px; background: #512663; }
}

/* ─── BUTTONS ───────────────────────────────────────────────────────────────── */
.btn {
    border: none;
    font-weight: 700;
    padding: 16px 25px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    color: #512663;
    display: inline-block;
    line-height: normal;
    position: relative;
    z-index: 9;
    text-align: center;
    background: #FFD359;
    transition: all 0.3s linear;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn:hover { background: #f5c445; color: #512663; }
.btn-outline {
    background: #ffffff;
    border: 1px solid #512663;
    color: #512663;
}
.btn-outline:hover { background: #512663; color: #ffffff; }
.btn:disabled, button[disabled] { pointer-events: none; cursor: default; filter: grayscale(1); opacity: 0.65; }

/* ─── FORM CONTROLS ─────────────────────────────────────────────────────────── */
.form-control {
    display: block;
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #4d4148;
    background: #ffffff;
    border: 1px solid #E8E8E9;
    border-radius: 50px;
    transition: all 0.3s linear;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.form-control:focus { outline: 0; border-color: #512663; box-shadow: 0 0 0 3px rgba(81,38,99,0.15); }
.form-control::placeholder { color: #221f20; }

/* ─── CHECK COVERAGE (Postcode form) ────────────────────────────────────────── */
.check-coverage { position: relative; }
.check-coverage .form-control {
    border-radius: 50px;
    padding: 16px 145px 16px 20px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #E8E8E9;
    box-shadow: 0 4px 10px 1px rgba(0,0,0,0.03);
    color: #4d4148;
}
.check-coverage .btn {
    position: absolute;
    right: 6px;
    top: 6px;
    height: calc(100% - 12px);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: #FFD359;
    color: #512663;
    font-size: 14px;
}
.check-coverage .btn:hover { background: #f5c445; }
.invalid-feedback { color: #c0392b; font-size: 14px; margin-top: 8px; display: block; }
.form-control.is-invalid { border-color: #c0392b; }

/* ─── HEADER ────────────────────────────────────────────────────────────────── */
.header {
    position: fixed;
    z-index: 99999999;
    background: #512663;
    top: 0;
    width: 100%;
    transition: 0.3s linear all;
}
.header-tiny { box-shadow: 0 0 20px -4px rgba(25,23,22,0.35); }

/* ─── NAVBAR ────────────────────────────────────────────────────────────────── */
.navbar { padding: 0; }
.navbar-common .container-fluid { width: 100%; padding: 0 15px; }
.navbar-common-inner { display: flex; align-items: center; width: 100%; }

.navbar-brand { display: flex; align-items: center; padding: 15px 0; }
.navbar-brand img { height: 52px; width: auto; }

/* Desktop nav */
@media (min-width: 992px) {
    .navbar-nav {
        display: flex;
        align-items: center;
        list-style: none;
        padding: 0;
        margin: 0 0 0 auto;
    }
    .navbar-nav .nav-item { position: relative; }
    .navbar-nav .nav-link {
        display: block;
        padding: 28px 18px;
        color: #ffffff;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0.3px;
        transition: all 0.3s linear;
        white-space: nowrap;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active { color: #FFD359; }

    /* Dropdown */
    .navbar-nav .dropdown .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        position: absolute;
        left: 0;
        top: 100%;
        background: #512663;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 20px 20px -7px rgba(69,65,78,0.2);
        padding: 8px 15px;
        min-width: 210px;
        list-style: none;
        margin: 0;
        transition: opacity 0.2s ease, visibility 0.2s ease;
        z-index: 99;
    }
    .navbar-nav .dropdown:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
    }
    .navbar-nav .dropdown .dropdown-menu li a {
        display: block;
        padding: 11px 0;
        color: #ffffff;
        font-size: 13px;
        font-weight: 500;
        transition: color 0.2s;
    }
    .navbar-nav .dropdown .dropdown-menu li a:hover { color: #FFD359; }

    /* Login button in nav */
    .navbar-nav .user-profile .nav-link {
        padding: 10px 24px;
        border: 1px solid rgba(255,255,255,0.5);
        border-radius: 50px;
        color: #ffffff;
        font-size: 14px;
        margin-left: 10px;
    }
    .navbar-nav .user-profile .nav-link:hover {
        background: #FFD359;
        border-color: #FFD359;
        color: #512663;
    }
}

/* Mobile hamburger */
.navbar-toggler {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
}
.navbar-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s linear;
}
.navbar-toggler.open .navbar-icon:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggler.open .navbar-icon:nth-child(2) { opacity: 0; }
.navbar-toggler.open .navbar-icon:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav panel */
.navbar-collapse {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -100vw;
    z-index: 999999;
    background: #512663;
    transition: left 0.3s cubic-bezier(0.52, 0.18, 0.27, 0.92);
    overflow-y: auto;
}
.navbar-collapse.show { left: 0; box-shadow: 0 0 0 200px rgba(0,0,0,0.35); }
.navbar-collapse-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.navbar-collapse-header img { height: 34px; }
.navbar-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #ffffff;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}
.navbar-collapse-inner { padding: 20px; }
.navbar-collapse-inner ul { list-style: none; padding: 0; margin: 0; }
.navbar-collapse-inner ul > li > a {
    display: block;
    padding: 14px 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar-collapse-inner .more-option > ul {
    display: none;
    padding-left: 15px;
}
.navbar-collapse-inner .more-option > ul li a {
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu { padding-top: 30px; }
.mobile-menu .btn {
    display: block;
    background: #ffffff;
    color: #512663;
    text-align: center;
    border-radius: 50px;
    padding: 14px 20px;
    font-weight: 600;
}

/* ─── HERO BANNER ───────────────────────────────────────────────────────────── */
.banner {
    background: linear-gradient(135deg, #2e1a3e 0%, #512663 50%, #7b3d99 100%);
    padding: 140px 0 180px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 520px;
}
.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(20,8,35,0.75) 0%, rgba(20,8,35,0.4) 55%, rgba(0,0,0,0) 100%);
    z-index: 0;
}
.banner .container { position: relative; z-index: 1; }
.banner h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 62px;
    color: #ffffff;
    margin: 0 0 25px;
    max-width: 540px;
    text-shadow: 0 2px 3px rgba(0,0,0,0.1);
}
.banner h1 strong {
    font-size: 28px;
    display: block;
    line-height: 34px;
    color: #FFD359;
    font-weight: 600;
    margin-bottom: 12px;
}
.banner p {
    margin: 0 0 20px;
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    letter-spacing: 0.5px;
}
.banner-form { max-width: 460px; }
.banner-form label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
}
.banner-line {
    width: 102%;
    position: absolute;
    bottom: -30px;
    left: 0;
}

/* ─── BETTER BROADBAND (icon strip) ────────────────────────────────────────── */
.better-broadband {
    background: rgba(61,18,85,0.38);
    text-align: center;
}
.better-broadband h2 {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
    color: #FFD359;
    font-size: 34px;
}
.better-broadband-box {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
    .better-broadband-box { grid-template-columns: repeat(4, 1fr); gap: 50px 30px; }
}
.better-broadband-box img {
    max-width: 50px;
    height: 42px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.better-broadband-box p {
    font-size: 15px;
    margin: 0 auto;
    line-height: 22px;
    font-weight: 500;
    color: #ffffff;
    max-width: 200px;
}

/* ─── HEADINGS (section) ────────────────────────────────────────────────────── */
.heading {
    font-size: 34px;
    line-height: 44px;
    font-weight: 700;
    color: #FFD359;
    margin: 0 0 20px;
}
.sub-heading {
    max-width: 1080px;
    color: #ffffff;
    line-height: 28px;
    margin: 0 auto 40px;
    font-size: 16px;
    font-weight: 500;
}

/* ─── PACKAGE SECTION ───────────────────────────────────────────────────────── */
.package-section { background: rgba(61,18,85,0.38); }

/* Package tab controls */
.package-controls { gap: 15px; margin-bottom: 30px; }

.package-device-nav, .package-duration-nav { position: relative; z-index: 1; display: flex; }
.package-device-nav ul, .package-duration-nav ul {
    display: flex;
    padding: 8px;
    margin: 0;
    background: rgba(81,38,99,0.4);
    border-radius: 40px;
    z-index: 1;
    gap: 5px;
    list-style: none;
}
.package-device-nav ul li,
.package-duration-nav ul li {
    color: #ffffff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: normal;
    text-align: center;
    padding: 10px 20px;
    border-radius: 40px;
    transition: all 0.3s linear;
    user-select: none;
}
.package-device-nav ul li.active,
.package-duration-nav ul li.active {
    color: #512663;
    background: #FFD359;
}

/* Package cards */
.package-category { align-items: stretch; }

.package-box {
    background-color: #512663;
    border-radius: 30px;
    margin-bottom: 30px;
    padding: 20px;
    box-shadow: 0 1px 6px 0 rgba(81,38,99,0.15);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.1);
}
.package-box-img {
    position: relative;
    margin: -20px -20px 20px;
}
.package-box-img img {
    border-radius: 30px 30px 0 0;
    height: 220px;
    object-fit: cover;
    width: 100%;
    display: block;
}
.package-box-img-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 50px 20px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    border-radius: 0;
}
.package-box-img-overlay h2 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
    line-height: 1.2;
}
.package-box-img-overlay h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: #FFD359;
}
.package-box-img-overlay h3 span { font-size: 13px; color: rgba(255,255,255,0.8); }

.package-box label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    display: block;
    text-transform: uppercase;
}
.package-box label span {
    background: #FFD359;
    padding: 8px 16px;
    text-transform: none;
    color: #512663;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
}

.package-box ul {
    padding: 0;
    margin: 0 0 25px;
    list-style: none;
}
.package-box ul li {
    position: relative;
    padding: 0 0 0 28px;
    font-size: 14px;
    line-height: 22px;
    color: #ffffff;
    font-weight: 500;
}
.package-box ul li:not(:last-child) { margin-bottom: 14px; }
.package-box ul li svg {
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 3px;
}

.item_postcode_search_box { margin-top: auto; }
.package-box .check-coverage .form-control { font-size: 13px; padding: 13px 130px 13px 16px; }
.package-box .check-coverage .btn { font-size: 13px; padding: 8px 14px; }

/* Custom packages CTA */
.custom-packages-cta .package-box {
    background: linear-gradient(135deg, #2e1a3e, #512663);
    text-align: center;
    min-height: 280px;
    justify-content: center;
    align-items: center;
}
.custom-packages-cta .package-box h2 { color: #FFD359; font-size: 26px; text-transform: uppercase; }
.custom-packages-cta .package-box p { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 28px; max-width: 600px; margin: 0 auto 20px; }

/* ─── SWITCHING SECTION ─────────────────────────────────────────────────────── */
.switching-section {
    background: linear-gradient(90deg, #512663 0%, #c0396b 50%, #e8834a 100%);
    border-top: none;
}
.switching-section h3 { color: #ffffff; font-size: 22px; margin-bottom: 8px; }
.switching-section p { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 26px; margin: 0; }

/* ─── FAQ ───────────────────────────────────────────────────────────────────── */
.faq { background: rgba(41,10,65,0.40); position: relative; }
.faq .heading { color: #FFD359; }

.accordion ul { list-style: none; padding: 0; margin: 0; }
.accordion ul li { border-bottom: 1px solid rgba(255,255,255,0.12); }
.accordion ul li:last-child { border-bottom: none; }

.accordion-toggle {
    display: block;
    width: 100%;
    text-align: left;
    padding: 22px 50px 22px 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    transition: color 0.2s;
    cursor: pointer;
}
.accordion-toggle::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    transition: all 0.25s;
}
.accordion-toggle.active { color: #FFD359; }
.accordion-toggle.active::after {
    content: '−';
    background: #FFD359;
    color: #512663;
}

.accordion-content {
    display: none;
    padding: 0 0 20px;
}
.accordion-content p {
    font-size: 15px;
    line-height: 28px;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
    margin: 0;
}

.faq-more { position: relative; z-index: 1; }
.faq-more p { color: rgba(255,255,255,0.8); font-size: 15px; }

.faq-wave {
    width: 115%;
    position: relative;
    bottom: -1px;
    display: block;
    margin: 0 -7.5%;
}

/* ─── AVAILABILITY CHECK BOTTOM ─────────────────────────────────────────────── */
.availability-check-bottom { background: #512663; }
.availability-check-bottom .heading { color: #FFD359; }

/* ─── FOOTER ────────────────────────────────────────────────────────────────── */
.footer {
    background: #512663;
    color: #ffffff;
    position: relative;
}
.footer-line { width: 102%; position: absolute; top: 0; left: 0; }
.footer-top { padding: 80px 0 60px; }

.footer-content .footer-logo { display: block; margin-bottom: 15px; }
.footer-content .footer-logo img { height: 55px; width: auto; }
.footer-content p { color: #ffffff !important; font-size: 13px !important; line-height: 20px !important; margin-top: 12px; }
.footer-content p strong { font-weight: 500; display: block; font-size: 12px; margin-top: 5px; }

.footer-nav h4, .social-link h4 {
    font-weight: 700;
    margin-bottom: 22px;
    font-size: 16px;
    letter-spacing: 0.2px;
    color: #FFD359;
}
.footer-nav ul { padding: 0; margin: 0; list-style: none; }
.footer-nav ul li:not(:last-child) { margin-bottom: 12px; }
.footer-nav ul li a {
    font-size: 13px;
    line-height: 20px;
    display: block;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
}
.footer-nav ul li a:hover { color: #FFD359; }

.social-link ul { padding: 0; margin: 0; display: flex; align-items: center; gap: 16px; list-style: none; }
.social-link ul li a { display: block; transition: opacity 0.2s; }
.social-link ul li a:hover { opacity: 0.75; }
.social-link ul li a svg { display: block; }

.footer-btm {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
}
.footer-btm p {
    font-size: 11px;
    line-height: 20px;
    margin: 0 auto;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    max-width: 900px;
}
.footer-btm p strong { font-weight: 600; color: #ffffff; }

/* ─── INNER PAGES - Common Banner ───────────────────────────────────────────── */
.common-banner {
    background: linear-gradient(135deg, #2e1a3e 0%, #512663 100%);
    padding: 80px 0 60px;
    color: #ffffff;
    position: relative;
}
.common-banner h1 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}
.common-banner p {
    font-size: 16px;
    line-height: 28px;
    color: rgba(255,255,255,0.85);
    max-width: 680px;
}

/* Photo hero banner for inner pages */
.page-hero {
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    position: relative;
    background-size: cover;
    background-position: center center;
}
.page-hero h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    max-width: 580px;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
@media (max-width: 767px) {
    .page-hero { min-height: 300px; }
    .page-hero h1 { font-size: 30px; }
}

/* ─── COMMON CONTENT (inner page body text) ─────────────────────────────────── */
.common-content h2, .common-content h3 {
    color: #512663;
    margin-bottom: 15px;
}
.common-content h4 { color: #221f20; margin-bottom: 10px; }
.common-content p {
    font-size: 16px;
    line-height: 30px;
    color: #4d4148;
    font-weight: 400;
}
.common-content img { border-radius: 16px; width: 100%; height: auto; margin: 20px 0; }
.common-content ul { list-style: none; padding: 0; }
.common-content ul li {
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 12px;
    color: #4d4148;
}
.common-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #512663;
    border-radius: 50%;
}

/* ─── CONTACT FORM ──────────────────────────────────────────────────────────── */
.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #221f20;
    margin-bottom: 6px;
}
.contact-form .form-control {
    border-radius: 12px;
    margin-bottom: 18px;
    padding: 14px 18px;
}
.contact-form textarea.form-control {
    border-radius: 12px;
    min-height: 140px;
    resize: vertical;
}
.contact-address-box h5 {
    font-size: 15px;
    font-weight: 600;
    color: #221f20;
    margin-bottom: 8px;
}

/* ─── BLOG / STORIES ────────────────────────────────────────────────────────── */
.blog-grid { display: grid; gap: 30px; grid-template-columns: repeat(1,1fr); }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 992px) { .blog-grid { grid-template-columns: repeat(3,1fr); } }

.blog-box {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(81,38,99,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.blog-box:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(81,38,99,0.15); }
.blog-box img { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-box-content { padding: 20px; }
.blog-box-content h4 { font-size: 16px; font-weight: 700; color: #221f20; margin-bottom: 10px; }
.blog-box-content p { font-size: 14px; line-height: 24px; color: #4d4148; margin-bottom: 15px; }
.blog-box-content .btn { font-size: 13px; padding: 10px 20px; }

/* ─── RESPONSIVE ADJUSTMENTS ────────────────────────────────────────────────── */
@media all and (max-width: 991px) {
    body { padding-top: 65px; }
    .banner { padding: 80px 0 120px; }
    .banner h1 { font-size: 36px; line-height: 46px; }
    .banner h1 strong { font-size: 22px; }
    .heading { font-size: 26px; line-height: 36px; }
    .better-broadband h2 { font-size: 26px; }
    .package-controls { flex-direction: column; align-items: flex-start; }
    .footer-top { padding: 50px 0 40px; }
    .footer-nav, .social-link { padding-top: 30px; }
    .footer-content .footer-logo, .footer-nav, .social-link { text-align: center; }
    .social-link ul { justify-content: center; }
    .py-5 { padding-top: 50px; padding-bottom: 50px; }
}

@media all and (max-width: 767px) {
    .banner h1 { font-size: 30px; line-height: 40px; }
    .footer-btm { padding: 20px 0 30px; }
    .package-device-nav ul, .package-duration-nav ul { flex-wrap: wrap; }
    .common-banner h1 { font-size: 28px; }
    .col-lg-4.package-col { width: 100%; }
}

/* ─── UTILITIES ─────────────────────────────────────────────────────────────── */
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ─── NAV ICON BUTTONS (Contact, Help, Login) ──────────────────────────────── */
.nav-icon-item { display: flex; align-items: center; }
.navbar-nav .nav-icon-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    border-radius: 50% !important;
    border: 2px solid rgba(255,255,255,0.7) !important;
    color: rgba(255,255,255,0.9) !important;
    margin-left: 8px !important;
    padding: 0 !important;
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
    line-height: 1;
}
.navbar-nav .nav-icon-btn:hover,
.navbar-nav .nav-icon-btn:focus {
    border-color: #FFD359 !important;
    color: #FFD359 !important;
    text-decoration: none;
}
.navbar-nav .nav-icon-btn svg {
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: rgba(255,255,255,0.9);
    transition: stroke 0.2s;
}
.navbar-nav .nav-icon-btn:hover svg,
.navbar-nav .nav-icon-btn:focus svg {
    stroke: #FFD359;
}

/* ─── NAV ICON BUTTONS (Contact, Help, Login) ──────────────────────────────── */
a.nav-icon-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 50% !important;
    border: 2px solid rgba(255,255,255,0.85) !important;
    padding: 0 !important;
    margin-left: 10px !important;
    text-decoration: none !important;
    background: transparent !important;
    transition: border-color 0.2s ease !important;
    line-height: 1 !important;
    color: white !important;
}
a.nav-icon-btn:hover,
a.nav-icon-btn:focus {
    border-color: #FFD359 !important;
    background: transparent !important;
    outline: none !important;
    color: #FFD359 !important;
}
a.nav-icon-btn svg {
    display: block !important;
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
    fill: none !important;
    stroke: white !important;
    transition: stroke 0.2s ease !important;
    pointer-events: none !important;
}
a.nav-icon-btn:hover svg,
a.nav-icon-btn:focus svg {
    stroke: #FFD359 !important;
}

/* ─── EXPERIENCE PAGE — centred sections ────────────────────────────────────── */
.exp-section-alt .text-center h2,
.exp-section-alt .text-center h3,
.exp-section-alt .text-center p,
.exp-section .text-center h2,
.exp-section .text-center h3,
.exp-section .text-center p,
.exp-cta-strip h2,
.exp-cta-strip p {
    text-align: center;
}
.cashback-box h3,
.cashback-box p {
    text-align: left;
}

/* ─── EXPERIENCE PAGE — force p centring with high specificity ──────────────── */
body .exp-section-alt .col-lg-7 p,
body .exp-section-alt .col-lg-8 p,
body .exp-section-alt .col-lg-9 p,
body .exp-section-alt .col-lg-10 p,
body .exp-section .col-lg-7 p,
body .exp-section .col-lg-8 p,
body .exp-section .col-lg-9 p,
body .exp-section .col-lg-10 p {
    text-align: center;
}
body .cashback-box p,
body .cashback-box h3 {
    text-align: left !important;
}
