:root {
    --red: #e8192c;
    --orange: #f5a623;
    --teal: #00b4a6;
    --dark: #1a1a2e;
    --light-bg: #f9f9fb;
}
html, body {
    overflow-x: hidden;
    max-width: 100%;
}
* {
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: #fff;
    color: #333;
    margin: 0;
}

/* NAVBAR */
.navbar {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
    padding: 12px 0;
}

.navbar-brand img {
    height: 44px;
}

.nav-link {
    font-weight: 600;
    color: #444 !important;
    font-size: .92rem;
}

.nav-link:hover {
    color: var(--red) !important;
}

.btn-check-av {
    background: var(--red);
    color: #fff;
    border-radius: 50px;
    padding: 9px 22px;
    font-weight: 700;
    font-size: .9rem;
    border: none;
}

.btn-check-av:hover {
    background: #c0121f;
    color: #fff;
}

/* HERO */
.hero {
    top: 40px;
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(20, 10, 10, .72) 0%, rgba(180, 30, 30, .55) 100%),
        url('../images/hero-bg.png') center/cover no-repeat;
    padding: 80px 0 60px;
    overflow: hidden !important;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #fff;
}

.hero-sub {
    color: rgba(255, 255, 255, .88);
    font-size: 1rem;
}

.hero-underline {
    display: inline-block;
    width: 80px;
    height: 3px;
    background: var(--orange);
    border-radius: 4px;
    margin-top: -6px;
    margin-bottom: 14px;
}

.hero-card {
    position: relative;
    background: rgba(255, 255, 255, .97);
    border-radius: 18px;
    padding: 28px 28px 22px;
    max-width: 520px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .18);
}

.hero-card input {
    border: 1.5px solid #ddd;
    border-radius: 10px;
    padding: 13px 16px;
    font-size: .95rem;
    width: 100%;
    margin-bottom: 12px;
    outline: none;
    transition: border .2s;
}

.hero-card input:focus {
    border-color: var(--red);
}

.address::placeholder {
    font-size: 18px;
}

/* Hero service type tabs (replaces radio buttons) */
.hero-service-tabs {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-service-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-tabs-wrap {
    display: inline-flex;
    background: #f0f0f0;
    border-radius: 50px;
    padding: 5px;
   
}

.hero-tab-btn {
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    background: transparent;
    color: #666;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.hero-tab-btn:hover {
    color: #333;
}

.hero-tab-btn.active {
    background: #fff;
    color: var(--red);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.btn-check-addr {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 10px;
    width: 100%;
    padding: 13px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s;
}

.btn-check-addr:hover {
    background: #c0121f;
}

.btn-check-addr.is-loading {
    pointer-events: none;
    opacity: 0.9;
}

.btn-check-addr .hero-btn-loader {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: hero-btn-spin 0.65s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes hero-btn-spin {
    to {
        transform: rotate(360deg);
    }
}

.hero-badges {
    display: flex;
    gap: 18px;
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-badges span {
    font-size: .83rem;
    color: #555;
    font-weight: 600;
}

.hero-badges span i {
    color: var(--teal);
    margin-right: 4px;
}

/* STEPS */
.steps-section {
    margin-top: 20px;
    padding: 70px 0 60px;
}

.section-pill {
    display: inline-block;
    background: #fff0f0;
    color: var(--red);
    font-weight: 700;
    font-size: .82rem;
    border-radius: 50px;
    padding: 4px 16px;
    margin-bottom: 12px;
    border: 1.5px solid #ffd0d0;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: #111;
}

.section-sub {
    color: #777;
    font-size: .95rem;
}

.step-col {
    position: relative;
}

.step-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 24px 30px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
    position: relative;
    transition: transform .2s, box-shadow .2s;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .11);
}

.step-num {
    position: absolute;
    top: -16px;
    left: 20px;
    width: 32px;
    height: 32px;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: .9rem;
    z-index: 1;
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.step-arrow i {
    color: #555;
    font-size: .75rem;
}

.step-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.6rem;
}

.step-icon-wrap.red {
    background: #fff0f0;
    color: var(--red);
}

.step-icon-wrap.orange {
    background: #fff8ec;
    color: var(--orange);
}

.step-icon-wrap.green {
    background: #edfaf6;
    color: #22c48a;
}

.step-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.step-desc {
    color: #888;
    font-size: .88rem;
}

@media(max-width:767px) {
    .step-arrow {
        display: none;
    }
}

/* PRICING */
.pricing-section {
    padding: 80px 0 70px;
    background: linear-gradient(160deg, #fff8f8 0%, #f0fdfc 100%);
}

.pricing-section .min-h-200 {
    min-height: 200px;
}

/* Plans result page (qualification) */
.plans-result-section {
    padding: 60px 0 80px;
    background: linear-gradient(160deg, #fff8f8 0%, #f0fdfc 100%);
}

.plans-result-address {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 8px;
}

.plans-result-type-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 700;
    background: var(--teal);
    color: #fff;
}

.plans-no-products {
    text-align: center;
    padding: 48px 24px;
    margin: 24px 0;
    background: #fff;
    border: 2px solid #fecaca;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.plans-no-products-icon {
    font-size: 4rem;
    color: var(--red);
    margin-bottom: 16px;
}

.plans-no-products-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 12px;
}

.plans-no-products-message {
    font-size: 1.05rem;
    color: #4b5563;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.5;
}

.packages-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.85);
    z-index: 10;
    border-radius: 10px;
}

.packages-loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e5e7eb;
    border-top-color: var(--teal, #0d9488);
    border-radius: 50%;
    animation: packages-spin 0.8s linear infinite;
}

.packages-loading-text {
    font-size: 0.95rem;
    color: #6b7280;
}

@keyframes packages-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Keep product cards in a horizontal grid; do not show in a single vertical column */
.packages-row--no-vertical .col-6 {
    min-width: 0;
}

.packages-row.packages-row--no-vertical {
    display: flex;
    flex-wrap: wrap;
}

.pricing-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.pricing-toggle {
    background: #f0f0f0;
    border-radius: 50px;
    padding: 5px;
    display: flex;
    gap: 4px;
}

.toggle-btn {
    padding: 9px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .9rem;
    border: none;
    cursor: pointer;
    background: transparent;
    color: #888;
    transition: all .2s;
}

.toggle-btn.active {
    background: #fff;
    color: #111;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
}

/* Products carousel – 4 per slide */
.products-carousel-wrapper {
    position: relative;
    padding: 0 52px;
    max-width: 100%;
}

.products-carousel-viewport {
    overflow: hidden;
    width: 100%;
    padding-top: 22px;
    /* room for plan badges that sit above cards (top: -14px) */
}

.products-carousel-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    transition: transform 0.35s ease-out;
    margin: 0;
}

.products-carousel-track .products-carousel-slide {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    min-width: 0;
    align-items: stretch;
}

.products-carousel-track .products-carousel-slide>[class*="col-"] {
    flex: 0 0 calc((100% - 3rem) / 4);
    max-width: calc((100% - 3rem) / 4);
}

@media (max-width: 991px) {
    .products-carousel-track .products-carousel-slide>[class*="col-"] {
        flex: 0 0 calc((100% - 1rem) / 2);
        max-width: calc((100% - 1rem) / 2);
    }
}

@media (max-width: 767px) {
    .products-carousel-wrapper {
        padding: 0 44px;
    }

    .products-carousel-track {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }

    /* Do not force slide width with !important — plans.blade.php / index set each slide to
       (100/totalSlides)% of the track; translateX(%) depends on that matching the track width. */
    .products-carousel-track .products-carousel-slide {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        min-width: 0;
        box-sizing: border-box;
    }

    .products-carousel-track .products-carousel-slide>[class*="col-"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        width: 100% !important;
        align-self: flex-start;
    }

    /* Avoid stretched cards: flex:1 on features + Bootstrap h-100 left a huge empty band */
    .plan-card {
        height: auto !important;
        min-height: 0;
    }

    .plan-features {
        flex: 0 0 auto;
    }

    /* Plans page footer: Checkout first (full width), Check another address below */
    .plans-btn {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100%;
        max-width: 100%;
        gap: 0.75rem !important;
        justify-content: center !important;
    }

    .plans-btn form {
        order: 1;
        width: 100%;
        margin: 0;
    }

    .plans-btn form .btn-gives,
    .plans-btn #plansCheckoutBtn {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }

    .plans-btn > a.checkout-btn {
        order: 2;
        width: 100% !important;
        box-sizing: border-box;
    }

    /* Checkout page: Place order first (full width), Back to plans below */
    .checkout-form-actions {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.75rem;
    }

    .checkout-form-actions .checkout-submit-btn {
        order: 1;
        margin-left: 0 !important;
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }

    .checkout-form-actions > .btn-gives-outline {
        order: 2;
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
        margin: 0 !important;
    }
}

.products-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background .2s, color .2s, box-shadow .2s;
}

.products-carousel-btn:hover:not(.disabled) {
    background: var(--teal, #0d9488);
    color: #fff;
    box-shadow: 0 6px 20px rgba(13, 148, 136, .4);
}

.products-carousel-btn.disabled {
    opacity: .5;
    cursor: not-allowed;
}

.products-carousel-btn--prev {
    left: 0;
}

.products-carousel-btn--next {
    right: 0;
}

.plan-card {
    background: #fff;
    border-radius: 10px;
    padding: 32px 24px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
    position: relative;
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .13);
}

.plan-card.featured {
    background: linear-gradient(180deg, #FFFBFB 0%, #EFFEFF 100%);
    color: #000;
    box-shadow: 0 12px 40px rgba(0, 180, 166, .35);
    transform: scale(1.04);
    z-index: 2;
}

.plan-card.featured:hover {
    transform: scale(1.04) translateY(-5px);
}

.plan-card.plan-card--selected {
    border: 2px solid var(--teal, #0d9488);
    box-shadow: 0 12px 40px rgba(13, 148, 136, .35);
    background: linear-gradient(180deg, #f0fdfc 0%, #fff 100%);
}

.plan-card.plan-card--selected .btn-select.btn-select--selected {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
    cursor: default;
}

.checkout-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .12);
    padding: 16px 24px;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.checkout-bar.is-visible {
    display: flex;
}

.checkout-bar .btn-checkout {
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background .2s;
}

.checkout-bar .btn-checkout:hover {
    background: #c0121f;
}

.checkout-page-section {
    padding: 60px 0 80px;
    background: linear-gradient(160deg, #fff8f8 0%, #f0fdfc 100%);
}

.checkout-section {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    border: 1px solid #e5e7eb;
    height: 100%;
}

.checkout-section-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--red);
}

.checkout-section--summary .checkout-product-card {
    box-shadow: none;
    border: none;
    padding: 0;
}

.checkout-product-summary {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.checkout-summary-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.checkout-product-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    border: 1px solid #e5e7eb;
}

.checkout-product-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 4px;
}

.checkout-product-type {
    font-size: .9rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.checkout-product-address {
    font-size: .95rem;
    color: #4b5563;
    margin-bottom: 8px;
}

.checkout-product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--red);
}

.checkout-form {
    max-width: 100%;
    margin: 0;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
}

.checkout-section--form .checkout-form {
    max-width: 100%;
}

.checkout-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 16px;
}

.checkout-form-section {
    margin-bottom: 28px;
}

.checkout-form-section:last-of-type {
    margin-bottom: 0;
}

.checkout-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.checkout-form-actions .checkout-submit-btn {
    margin-left: auto;
}

.checkout-submit-btn.is-loading {
    pointer-events: none;
    opacity: 0.9;
}

.checkout-submit-btn .checkout-btn-loader {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: hero-btn-spin 0.65s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

.checkout-payment-section {
    margin-top: 0.5rem;
}

.checkout-payment-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.checkout-payment-type-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.checkout-payment-type-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.checkout-payment-type-option input {
    width: auto;
}

.checkout-card-element {
    padding: 12px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
}

.checkout-card-error {
    display: block;
    font-size: 0.875rem;
    color: #dc3545;
    margin-top: 0.5rem;
}

.checkout-stripe-test-mode {
    margin-top: 1rem;
    padding: 1rem;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #856404;
    text-align: left;
}

.checkout-stripe-test-mode strong {
    display: block;
    margin-bottom: 0.35rem;
}

.checkout-test-cards {
    margin: 0.5rem 0 0 1rem;
    padding-left: 1rem;
}

.checkout-field-hint {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.35rem;
}

.checkout-field-optional {
    font-weight: 400;
    color: #6b7280;
    font-size: 0.9em;
}

/* Service activation tabs (ASAP | Select date) */
.checkout-activation-tabs {
    display: flex;
    position: relative;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
    gap: 0;
}

.checkout-activation-tab-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    margin: 0;
}

.checkout-activation-tab {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #6b7280;
    background: #f3f4f6;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.checkout-activation-tab:hover {
    color: #374151;
    background: #e5e7eb;
}

.checkout-activation-tab-input:first-of-type:checked ~ .checkout-activation-tab:nth-child(3),
.checkout-activation-tab-input:nth-of-type(2):checked ~ .checkout-activation-tab:nth-child(4) {
    color:  #fff;
    background: #e8192c;
   
}

.checkout-activation-panel {
    margin-top: 0.5rem;
}

/* Checkout resource tables (NTD / Copper Pairs, same as qualification) */
.checkout-resource-section .checkout-section-title {
    margin-bottom: 12px;
}

.checkout-table-card {
    padding: 0;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
}

.checkout-resource-table {
    width: 100%;
    border-collapse: collapse;
}

.checkout-resource-table th,
.checkout-resource-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.checkout-resource-table th {
    font-weight: 600;
    color: var(--red);
    font-size: 0.9rem;
    background: #fafafa;
}

.checkout-resource-table tbody tr:last-child td {
    border-bottom: none;
}

.checkout-resource-table tbody tr:hover {
    background: #f9fafb;
}

.checkout-port-status {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
}

.checkout-port-used {
    background: #fff3cd;
    color: #856404;
}

.checkout-port-available {
    background: #d4edda;
    color: #155724;
}

/* Checkout AVC verification modal */
.checkout-avc-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.checkout-avc-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.checkout-avc-modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    padding: 1.5rem 2rem;
    min-width: 320px;
    max-width: 100%;
}

.checkout-avc-modal-title {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    color: #1a1a1a;
}

.checkout-avc-modal-hint {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.checkout-avc-modal-body {
    margin-bottom: 1.25rem;
}

.checkout-avc-input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    font-size: 1rem;
    border: 1px solid #0d9488;
    border-radius: 8px;
    box-sizing: border-box;
}

.checkout-avc-error {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #dc2626;
}

.checkout-avc-modal-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.checkout-avc-modal-actions .btn-gives,
.checkout-avc-modal-actions .btn-gives-outline {
    padding: 0.5rem 1.25rem;
}

/* Checkout toaster (AVC success message) */
.checkout-toaster-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}
.checkout-toast {
    padding: 0.75rem 1.1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    animation: checkout-toast-in 0.3s ease;
    pointer-events: auto;
    max-width: 360px;
}
.checkout-toast-success {
    background: #d4edda;
    color: #155724;
    border: 1.5px solid #c3e6cb;
}
.checkout-toast-out {
    animation: checkout-toast-out 0.3s ease forwards;
}
@keyframes checkout-toast-in {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes checkout-toast-out {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

.checkout-copper-hint {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 12px;
}

.checkout-datetime-wrap {
    position: relative;
}

.checkout-datetime-wrap .contact-input {
    padding-right: 2.5rem;
}

.checkout-datetime-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

.checkout-thank-you-icon {
    font-size: 4rem;
    color: var(--teal);
}

.checkout-thank-you-message {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 18px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 800;
    white-space: nowrap;
}

.badge-red {
    background: var(--red);
    color: #fff;
}

.badge-teal {
    background: var(--teal);
    color: #fff;
}

.badge-orange {
    background: var(--orange);
    color: #fff;
}

.plan-name {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.plan-tier {
    font-size: .82rem;
    opacity: .65;
    font-weight: 600;
    margin-bottom: 16px;
}

.plan-price {
    font-family: 'Inter', sans-serif;
}

.plan-price .dollar {
    font-size: 1.3rem;
    font-weight: 700;
    vertical-align: top;
    margin-top: 10px;
    display: inline-block;
}

.plan-price .amount {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
}

.plan-price .mo {
    font-size: .85rem;
    font-weight: 600;
    opacity: .7;
}

.plan-saving {
    background: var(--teal);
    color: #fff;
    border-radius: 8px;
    padding: 7px 14px;
    font-size: .82rem;
    font-weight: 700;
    text-align: center;
    margin: 14px 0;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 14px 0 22px;
    flex: 1;
    color: #000;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    padding: 5px 0;
}

.plan-features li i {
    font-size: .85rem;
    width: 16px;
    flex-shrink: 0;
}

.feat-icon-teal {
    color: var(--teal);
}

.feat-icon-red {
    color: var(--red);
}

.feat-icon-orange {
    color: var(--orange);
}

.plan-card.featured .plan-features li i {
    color: #000;
}

.plan-card.featured .plan-features li {
    color: #000;
}

.plan-card.featured .plan-tier {
    color: rgba(0, 0, 0, .5);
}

.btn-select {
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    border: 2px solid;
    transition: all .2s;
}

.btn-select-red {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

.btn-select-red:hover {
    background: #c0121f;
    border-color: #c0121f;
}

.btn-select-outline {
    background: transparent;
    color: #111;
    border-color: #ddd;
}

.btn-select-outline:hover {
    background: #f5f5f5;
}

.btn-select-teal {
    background: #0EAAB6;
    color: #fff;
    border-color: #0EAAB6;
}

.btn-select-teal:hover {
    background: #0990a0;
}

.pricing-note {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    border-radius: 14px;
    padding: 16px 24px;
    margin-top: 36px;
    border: 1.5px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pricing-note i {
    color: var(--teal);
    font-size: 1.1rem;
}

.pricing-note span {
    font-size: .88rem;
    color: #555;
    font-weight: 500;
}

.pricing-note a {
    color: var(--red);
    font-weight: 700;
    text-decoration: none;
}

.pricing-note a:hover {
    text-decoration: underline;
}

.plan-fttp-note {
    font-size: .72rem;
    color: #aaa;
    text-align: center;
    margin-top: 8px;
}

.annual-badge {
    background: #e8fff8;
    color: var(--teal);
    font-size: .7rem;
    font-weight: 700;
    border-radius: 50px;
    padding: 2px 8px;
    margin-left: 6px;
    vertical-align: middle;
    border: 1px solid #b2f0e8;
}

@media(max-width:991px) {
    .plan-card.featured {
        transform: scale(1);
    }

    .plan-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media(max-width:575px) {
    .hero {
        padding: 60px 0 50px;
        width: 95%;
        overflow: hidden !important;
    }
}

/* GIVES BACK */
.gives-back-section {
    padding: 80px 0 60px;
}

.section-label {
    font-size: .78rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.gives-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #111;
    line-height: 1.2;
}

.gives-desc {
    color: #666;
    font-size: .95rem;
    line-height: 1.7;
    margin-top: 14px;
}

.gives-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.gives-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .95rem;
}

.gives-feature-icon.red-bg {
    background: #fff0f0;
    color: var(--red);
}

.gives-feature-icon.green-bg {
    background: #edfaf6;
    color: #22c48a;
}

.gives-feature-icon.teal-bg {
    background: #e0faf8;
    color: var(--teal);
}

.gives-feature-text h6 {
    font-weight: 700;
    font-size: .92rem;
    margin: 0 0 3px;
}

.gives-feature-text p {
    font-size: .83rem;
    color: #777;
    margin: 0;
}

.btn-gives {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: .92rem;
    cursor: pointer;
    transition: background .2s;
    text-decoration: none;
}

.btn-gives:hover {
    background: #c0121f;
}

.btn-gives-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--red);
    border: 2px solid var(--red);
    border-radius: 50px;
    padding: 10px 26px;
    font-weight: 700;
    font-size: .92rem;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.btn-gives-outline:hover {
    background: var(--red);
    color: #fff;
}

.gives-img-card {
    height: 418px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
}

.gives-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gives-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 106, 79, .6), rgba(64, 145, 108, .4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.gives-img-overlay i {
    font-size: 4rem;
    color: rgba(255, 255, 255, .3);
}

.gives-location-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: white;
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 95%;
}

.gives-location-icon {
    width: 36px;
    height: 36px;
    background: var(--red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .85rem;
}

.gives-location-text .loc-title {
    font-size: 24px;
    font-weight: 700;
    color: #111;
}

.gives-location-text .loc-sub {
    font-size: 14px;
    color: #888;
}

.gives-members-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--teal);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 180, 166, .35);
}

.gives-members-badge .mem-num {
    font-size: .95rem;
    font-weight: 900;
    line-height: 1;
}

.gives-members-badge .mem-label {
    font-size: .5rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.gives-stat-row {
    position: absolute;
    top: -16px;
    left: -20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .09);
    width: 100%;
    max-width: 230px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
}

.gives-stat-icon {
    width: 44px;
    height: 44px;
    background: #fff0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.gives-stat-num {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--red);
}

.gives-stat-label {
    font-size: .78rem;
    color: #888;
    font-weight: 600;
}

/* SYDNEY */
.sydney-section {
    padding: 80px 0;
    background: #fff;
}

.section-pill-blue {
    display: inline-block;
    background: #e8f4fd;
    color: #1a7fc4;
    font-weight: 700;
    font-size: .82rem;
    border-radius: 50px;
    padding: 4px 16px;
    margin-bottom: 12px;
    border: 1.5px solid #b8dcf5;
}

.sydney-map-card {
    border-radius: 20px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
}

.sydney-map-inner {
    height: 380px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #93c5fd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sydney-map-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sydney-wide-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sydney-wide-badge .badge-icon {
    width: 36px;
    height: 36px;
    background: var(--red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9rem;
}

.sydney-wide-badge .badge-text {
    font-size: .8rem;
    font-weight: 700;
    color: white;
}

.sydney-wide-badge .badge-sub {
    font-size: .72rem;
    color: #888;
}

.coverage-header {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.coverage-lists {
    display: flex;
    background-color: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    padding: 10px 20px;
    gap: 10px;
    align-items: center;
    justify-items: center;
    width: 100%;
}

.sydney-list-name {
    margin-top: 0px;
    margin-bottom: 0px;
}

.bg-whit {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.hot-note {
    background: linear-gradient(135deg, #FFFFFF 28.82%, #FFEAEB 100%);
    border-radius: 12px;
    padding: 14px 16px;
    margin-top: 16px;
    border: 1.5px solid rgb(233, 232, 229);
    font-size: .83rem;
    color: #555;
}

.hot-note strong {
    color: var(--orange);
}

.hot-note-input {
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 9px 14px;
    font-size: .85rem;
    outline: none;
    flex: 1;
    min-width: 180px;
}

.btn-hot {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
}

.btn-hot:hover {
    background: #c0121f;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: #f9f9fb;
}

.section-pill-teal {
    display: inline-block;
    background: #e0faf8;
    color: var(--teal);
    font-weight: 700;
    font-size: .82rem;
    border-radius: 50px;
    padding: 4px 16px;
    margin-bottom: 12px;
    border: 1.5px solid #b2f0e8;
}

.accordion-item {
    border: 1.5px solid #eee !important;
    border-radius: 14px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    font-size: .93rem;
    color: #222;
    background: #fff;
    padding: 18px 20px;
}

.accordion-button:not(.collapsed) {
    color: var(--red);
    background: #fff8f8;
    box-shadow: none;
}

.accordion-body {
    font-size: .88rem;
    color: #666;
    line-height: 1.7;
    background: #fff;
}

.faq-first-answer {
    background: #fff8f8;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: .87rem;
    color: #555;
    border-left: 3px solid var(--red);
}

/* CTA */
.cta-section {
    padding: 60px 0;
}

.cta-box {
    background: linear-gradient(135deg, #e8192c 0%, #c0121f 100%);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 10px;
}

.cta-sub {
    font-size: .95rem;
    opacity: .85;
    margin-bottom: 28px;
}

.btn-cta-white {
    background: #fff;
    color: var(--red);
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: .92rem;
    cursor: pointer;
    transition: all .2s;
}

.btn-cta-white:hover {
    background: #f5f5f5;
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: .92rem;
    cursor: pointer;
    transition: all .2s;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff;
}

/* CONTACT FORM SECTION */
.contact-section {
    padding: 90px 0 80px;
    background: linear-gradient(160deg, #f9f9fb 0%, #f0fdfc 100%);
}

.contact-info-card {
    background: linear-gradient(145deg, #1a0a0e 0%, #2c0a12 50%, #1a1a2e 100%);
    border-radius: 20px;
    padding: 40px 34px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(232, 25, 44, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(0, 180, 166, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 8px;
}

.contact-info-sub {
    font-size: .88rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.6;
    margin-bottom: 32px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}

.contact-detail-icon.red-icon {
    background: rgba(232, 25, 44, 0.2);
    color: #ff6b7a;
    border: 1px solid rgba(232, 25, 44, 0.3);
}

.contact-detail-icon.teal-icon {
    background: rgba(0, 180, 166, 0.15);
    color: var(--teal);
    border: 1px solid rgba(0, 180, 166, 0.25);
}

.contact-detail-icon.orange-icon {
    background: rgba(245, 166, 35, 0.15);
    color: var(--orange);
    border: 1px solid rgba(245, 166, 35, 0.25);
}

.contact-detail-label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 3px;
}

.contact-detail-value {
    font-size: .9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
}

.contact-hours-box {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    padding: 18px 20px;
    margin-top: 28px;
    position: relative;
    z-index: 1;
}

.contact-hours-title {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--teal);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.contact-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .83rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.contact-hours-row:last-child {
    border-bottom: none;
}

.contact-hours-day {
    color: rgba(255, 255, 255, .55);
}

.contact-hours-time {
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
}

.contact-hours-row .status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c48a;
    display: inline-block;
    margin-right: 5px;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 44px 40px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .09);
    height: 100%;
}

.contact-form-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #111;
    margin-bottom: 4px;
}

.contact-form-sub {
    font-size: .87rem;
    color: #888;
    margin-bottom: 28px;
}

.form-field-group {
    margin-bottom: 18px;
}

.form-field-label {
    font-size: .8rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 7px;
    display: block;
}

.form-field-label span {
    color: var(--red);
}

.contact-input,
.contact-select,
.contact-textarea {
    width: 100%;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: .9rem;
    font-family: 'Inter', sans-serif;
    color: #333;

    outline: none;
    transition: border-color .2s, background .2s, box-shadow .2s;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
    border-color: var(--red);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(232, 25, 44, .08);
}

.contact-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}

.contact-textarea {
    resize: vertical;
    min-height: 110px;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #bbb;
}

/* Error states for form fields */
.contact-input-error,
.contact-select-error {
    border-color: #dc3545 !important;
    background: #fff5f5 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

.contact-input-error:focus,
.contact-select-error:focus {
    border-color: #dc3545 !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15) !important;
}

.checkout-field-error {
    display: none;
    font-size: 0.8125rem;
    color: #dc3545;
    margin-top: 6px;
    line-height: 1.4;
}

.checkout-field-error:not(:empty) {
    display: block;
}

.form-input-icon-wrap {
    position: relative;
}

.form-input-icon-wrap .contact-input {
    padding-left: 42px;
}

.form-input-icon-wrap .field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    font-size: .85rem;
    pointer-events: none;
    transition: color .2s;
}

.form-input-icon-wrap:focus-within .field-icon {
    color: var(--red);
}

.contact-reason-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.reason-option {
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: .82rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
    background: #fafafa;
}

.reason-option:hover {
    border-color: var(--red);
    background: #fff8f8;
    color: var(--red);
}

.reason-option.selected {
    border-color: var(--red);
    background: #fff0f0;
    color: var(--red);
}

.reason-option i {
    font-size: .85rem;
    width: 14px;
}

.contact-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .78rem;
    color: #888;
    margin-bottom: 20px;
}

.contact-privacy input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--red);
    flex-shrink: 0;
}

.contact-privacy a {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
}

.btn-submit-contact {
    background: linear-gradient(135deg, var(--red) 0%, #c0121f 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    width: 100%;
    padding: 15px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(232, 25, 44, .3);
}

.btn-submit-contact:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(232, 25, 44, .4);
}

.btn-submit-contact:active {
    transform: translateY(0);
}

.form-success-overlay {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    gap: 16px;
}

.form-success-overlay.visible {
    display: flex;
}

.success-icon-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #edfaf6;
    border: 2px solid #22c48a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #22c48a;
}

.success-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: #111;
}

.success-sub {
    font-size: .88rem;
    color: #888;
    max-width: 280px;
}

@media(max-width: 767px) {
    .contact-form-card {
        padding: 30px 22px;
    }

    .contact-reason-grid {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
.site-footer {
    background: linear-gradient(180deg, #101828 0%, #030712 100%);
    color: #ccc;
    padding: 60px 0 0;
}

.footer-brand img {
    height: 48px;
}

.footer-tagline {
    font-size: .85rem;
    color: #aaa;
    line-height: 1.7;
    margin: 14px 0 20px;
}

.footer-badge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 22px;
}

.footer-badge {
    background: #161828;
    border: 1px solid #2a2d3e;
    border-radius: 10px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-wrap: nowrap;
}

.footer-badge-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
}

.footer-badge-icon.blue-icon {
    background: #1e3a5f;
    color: #60a5fa;
}

.footer-badge-icon.orange-icon {
    background: #3d2a0d;
    color: var(--orange);
}

.footer-badge-icon.teal-icon {
    background: #0d2e2b;
    color: var(--teal);
}

.footer-badge-label {
    font-size: .75rem;
    font-weight: 700;
    color: #ddd;
    line-height: 1;
}

.footer-badge-sub {
    font-size: .67rem;
    color: #888;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    background: #161828;
    border: 1px solid #2a2d3e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: .85rem;
    text-decoration: none;
    transition: all .2s;
}

.footer-social-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.footer-heading {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
}
.quick-link .footer-links{
    width: fit-content;
    margin: 0 auto;
    
}

.quick-link .footer-links li{
    text-align: left; 
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: .875rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s;
}

.footer-links a i {
    color: var(--red);
    font-size: .8rem;
    width: 14px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    background: #1e1f30;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: .85rem;
    flex-shrink: 0;
}

.footer-contact-label {
    font-size: .7rem;
    color: #888;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.footer-contact-value {
    font-size: .88rem;
    color: #ddd;
    font-weight: 600;
}

.footer-newsletter {
    background: linear-gradient(135deg, rgba(251, 44, 54, 0.1) 0%, rgba(255, 32, 86, 0.1) 100%);
    border: 1px solid #2a2d3e;
    border-radius: 14px;
    padding: 18px 20px;
    margin-top: 14px;
    width: 100%;
}

.footer-newsletter-title {
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-newsletter-title i {
    color: var(--red);
}

.footer-newsletter-sub {
    font-size: .78rem;
    color: #888;
    margin-bottom: 14px;
}

.footer-newsletter-message {
    font-size: .78rem;
}

.footer-newsletter-message--success {
    color: var(--teal, #14b8a6);
}

.footer-newsletter-message--error {
    color: var(--red, #fb2c36);
}

.footer-email-row {
    display: flex;
    gap: 8px;
}

.footer-email-input {
    flex: 1;
    background: #0d0f1a;
    border: 1px solid #2a2d3e;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: .83rem;
    color: #ddd;
    outline: none;
    width: 100%;

}

.footer-email-input::placeholder {
    color: #555;
}

.footer-email-input:focus {
    border-color: var(--teal);
}

.footer-email-btn {
    width: 40px;
    height: 40px;
    background: var(--red);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: .85rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s;
}

.footer-email-btn:hover {
    background: #c0121f;
}

.footer-bottom {
    background: #080a14;
    margin-top: 50px;
    padding: 18px 0;
    border-top: 1px solid #1e2030;
}

.footer-bottom-text {
    font-size: .8rem;
    color: #666;
}

.footer-bottom-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-size: .8rem;
    color: #666;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #aaa;
}

.footer-bottom-made {
    font-size: .8rem;
    color: #555;
}

.footer-bottom-made i {
    color: var(--red);
}

.footer-divider {
    border-color: #1e2030;
}

@media(max-width:767px) {
    .footer-badge-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}



@media (min-width:319px) and (max-width:560px) {
    body{
        overflow-x: hidden !important;
    }
    .gives-back-section {
        padding: 80px 0 0;
    }

    .sydney-section {
        padding: 30px 0 0;
    }

    .pricing-note {
        width: 80% !important;
    }

    .nbn {
        position: absolute !important;
        right: 0px !important;
    }

    .sydney-list-name {
        width: 50% !important;
    }

    .footer-badge img {
        width: 30px !important;
    }

    .footer-badge-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;

    }

    .hero-card {
        width: 90%;

    }
    .hero{
        padding: 20px !important;
    }
    .heroServiceType{
        font-size: 10px !important;
    }
    .hero-tab-btn{
        padding: 10px 8px !important;
    }

    .nbn-cover {
        right: 0px !important;
    }

    input::placeholder {
        font-size: 10px !important;
    }

    .check-avail{
        display: flex !important;
        justify-content:center !important ;
        margin: auto !important;
    }
    .quick-link .footer-links{
        width: auto !important;
        padding-left: 0 !important;
    }
    .quick-link h6{
        text-align: left !important;
    }
    .hero-tabs-wrap{
        width: 100% !important;
        justify-content: space-between !important;
    }

    .hero-tab-btn{
        padding: 10px 20px !important;
        font-size: 13px !important;
    }

    .hero-badges{
        gap: 4px !important;
    }
}




.products-carousel-slide {
    display: flex;
    flex-direction: row;
    /* always row, never column */
    flex-wrap: nowrap;
    min-width: 100%;
}

.products-carousel-col {
    flex: 0 0 50%;
    /* 2 cards on mobile */
    max-width: 50%;
    padding: 0 8px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .products-carousel-col {
        flex: 0 0 25%;
        /* 4 cards on desktop */
        max-width: 25%;
    }




}

@media (min-width:760px) and (max-width:1010px) {
    .footer-tablet {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}




.checkout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; /* space between icon and text */
    padding: 0.6rem 1.2rem; /* top/bottom & left/right */
    background: transparent;
    border: 1px solid #dc2626;
    color: #dc2626;
    font-weight: 600;
    border-radius: 9999px; /* pill shape */
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.checkout-btn i {
    font-size: 1rem;
}

/* Hover effect */
.checkout-btn:hover {
    background-color: #e8192c;
    color: #ffffff;
    border-color: #e8192c;
    box-shadow: 0 4px 12px rgba(220,38,38,0.3);
}

/* ─── Policy / Legal pages (Disclaimer, Privacy, Refund, Terms) ─── */
.policy-page-hero {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(180, 30, 30, 0.65) 100%);
    color: #fff;
    padding: 48px 24px 40px;
    text-align: center;
}
.policy-page-hero .policy-page-brand {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 8px;
    font-weight: 600;
}
.policy-page-hero h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 8px;
    line-height: 1.2;
}
.policy-page-hero .policy-page-updated {
    font-size: 0.875rem;
    opacity: 0.85;
    font-weight: 400;
}
.policy-page-main {
    max-width: 820px;
    margin: 0 auto;
    padding: 48px 24px 72px;
    background: #fff;
}
.policy-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}
.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.policy-section .section-number {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 6px;
}
.policy-section h2,
.policy-page-main h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: #111;
    margin-bottom: 12px;
    line-height: 1.3;
}
.policy-section p,
.policy-page-main p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
}
.policy-section p:last-child,
.policy-page-main p:last-child {
    margin-bottom: 0;
}
.policy-section ul,
.policy-page-main ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}
.policy-section ul li,
.policy-page-main ul li {
    position: relative;
    padding-left: 22px;
    color: #444;
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.6;
}
.policy-section ul li::before,
.policy-page-main ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    opacity: 0.8;
}
.policy-section a,
.policy-page-main a {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}
.policy-section a:hover,
.policy-page-main a:hover {
    color: #c0121f;
}
.policy-page-main .highlight-box {
    background: #fff5f5;
    border-left: 4px solid var(--red);
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    margin-top: 16px;
}
.policy-page-main .highlight-box p {
    margin: 0;
    font-size: 0.9375rem;
}
.policy-page-main .contact-card {
    background: var(--light-bg);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 12px;
}
.policy-page-main .contact-card p {
    margin-bottom: 6px;
    font-size: 0.9375rem;
}
.policy-page-main .contact-card p strong {
    color: #111;
    font-weight: 600;
}
.policy-page-footer-bar {
    background: var(--dark);
    color: rgba(255,255,255,0.85);
    text-align: center;
    padding: 24px 20px;
    font-size: 0.875rem;
}
.policy-page-footer-bar strong {
    color: #fff;
    font-weight: 600;
}
.policy-page-footer-bar a {
    color: rgba(255,255,255,0.9);
    text-decoration: underline;
}
.policy-page-footer-bar a:hover {
    color: #fff;
}
@media (max-width: 600px) {
    .policy-page-hero { padding: 36px 20px 32px; }
    .policy-page-main { padding: 36px 20px 56px; }
}