/* =========================================
   CSS VARIABLES & RESET
   ========================================= */
:root {
    /* ── Brand Orange ── */
    --primary: #E68C10;
    --primary-dark: #C4780C;
    --primary-light: #FEF3E0;
    --primary-mid: #F5A623;

    /* ── Brand Green ── */
    --green: #1E4D35;
    --green-dark: #143524;
    --green-light: #E8F1EB;

    /* ── Charcoal / Dark ── */
    --dark: #1A1A1A;
    --dark-2: #24352C;
    --dark-3: #0F1A14;

    /* ── Warm Neutrals ── */
    --white: #FFFFFF;
    --off-white: #FDFAF5;
    --bg-light: #F5F7F4;
    --text-muted: #5F6B63;
    --text-body: #1F2A24;
    --border: #DCE5DF;

    /* ── Utility ── */
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(232, 147, 13, 0.08);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.16);
    --transition: 0.3s ease;
    --font: 'Outfit', sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font);
    color: var(--text-body);
    line-height: 1.7;
    background: var(--off-white);
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Guard against Antigravity / narrow pane horizontal scroll */
.container,
.nav-container,
.footer .container {
    max-width: 100%;
    min-width: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* =========================================
   UTILITIES
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background: var(--bg-light);
}

.bg-dark {
    background: var(--green-dark);
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.badge-dark {
    background: rgba(232, 147, 13, 0.12);
    color: var(--primary);
}

.badge-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.title-light {
    color: var(--white);
}

.desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto 3rem;
}

.section-header {
    margin-bottom: 3.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232, 147, 13, 0.4);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* =========================================
   HEADER / NAV
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.85rem 0;
    background: rgba(253, 250, 245, 0.98);
    border-bottom: 1px solid transparent;
    transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.header.scrolled {
    padding: 0.55rem 0;
    background: #fff;
    border-bottom-color: var(--border);
    box-shadow: 0 4px 20px rgba(30, 77, 53, 0.08);
}

.nav-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    min-height: 56px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    max-width: min(280px, 55vw);
}

.logo-img {
    height: 52px;
    width: auto;
    max-width: min(280px, 55vw);
    display: block;
    object-fit: contain;
}

.header.scrolled .logo-img {
    height: 42px;
}

.nav-menu {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    padding: 0.45rem 0.65rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--dark);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green);
    background: var(--green-light);
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 0.55rem 1.15rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    margin-left: 0.35rem;
}

.nav-cta:hover,
.nav-cta.active {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
}

.header-phone {
    flex-shrink: 0;
}

.header-phone .phone-link {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 700;
    color: var(--green);
    font-size: 0.9rem;
    flex-shrink: 0;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: var(--green-light);
    border: 1px solid rgba(30, 77, 53, 0.12);
}

.header-phone .phone-link:hover {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
}

.phone-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.header-phone .phone-link:hover .phone-icon {
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

.hamburger:hover {
    border-color: var(--primary);
}

.bar {
    width: 20px;
    height: 2.5px;
    background: var(--green);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    display: block;
    pointer-events: none;
}

.hamburger.open .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.hamburger.open .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* =========================================
   HERO
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(15, 26, 20, 0.92) 0%,
            rgba(30, 77, 53, 0.72) 48%,
            rgba(15, 26, 20, 0.22) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 5rem 1.5rem;
}

.hero-text-box {
    max-width: 650px;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 1.25rem;
}

.hero-title .accent {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2.25rem;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

.scroll-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollAnim 1.8s ease-in-out infinite;
}

@keyframes scrollAnim {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}

/* =========================================
   SERVICES
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    background: linear-gradient(145deg, #1A1A1A 0%, #2A1E0E 100%);
    border-color: transparent;
    box-shadow: 0 8px 32px rgba(232, 147, 13, 0.18);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .service-list li {
    color: var(--white);
}

.service-card.featured .service-list li::before {
    color: var(--primary);
}

.service-badge-featured {
    display: inline-block;
    background: var(--primary);
    box-shadow: 0 2px 10px rgba(232, 147, 13, 0.4);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.service-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.service-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-left: 1.1rem;
    position: relative;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.8rem;
}

.services-cta {
    padding: 2.5rem;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(232, 147, 13, 0.2);
}

.services-cta p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: var(--dark);
}

/* =========================================
   WHY US
   ========================================= */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-us-content .title {
    margin-bottom: 1rem;
}

.why-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.feature-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.feature-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/5;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.image-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 8px 32px rgba(232, 147, 13, 0.45);
}

.image-badge-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.image-badge-text {
    font-size: 0.75rem;
    opacity: 0.85;
}

/* =========================================
   SERVICE AREAS
   ========================================= */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.area-pill {
    padding: 0.6rem 1.4rem;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    transition: var(--transition);
    cursor: default;
}

.area-pill:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(232, 147, 13, 0.3);
}

/* =========================================
   CONTACT
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info .title {
    margin-bottom: 1rem;
}

.contact-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 400px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.contact-item strong {
    display: block;
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.contact-item a,
.contact-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: var(--primary);
}

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--bg-light);
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(74, 158, 92, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-alert {
    padding: 0.9rem 1.1rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
}

.form-alert.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.form-alert.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.form-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--dark-3);
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.5rem;
}

.footer-grid > * {
    min-width: 0; /* prevent long emails/links from blowing out the grid */
}

.footer-contact a,
.footer-links a,
.footer-brand p {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo-img {
    height: 56px;
    width: auto;
    max-width: 260px;
    display: block;
    opacity: 0.96;
    transition: var(--transition);
    object-fit: contain;
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 260px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-links li a:hover {
    color: var(--primary);
}

.footer-contact p,
.footer-contact a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 0.4rem;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.footer-bottom a:hover {
    color: var(--primary);
}

.footer-credits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem 0.65rem;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-credits__sep {
    opacity: 0.45;
}

/* Tech Aid Australia brand green */
.footer-credits__tech-aid {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #3ebb00 !important;
    font-weight: 600;
}

.footer-credits__tech-aid img {
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
}

.footer-credits__tech-aid strong {
    font-weight: 800;
    color: #3ebb00;
}

.footer-credits__tech-aid:hover,
.footer-credits__tech-aid:hover strong {
    color: #2f9200 !important;
}

.admin-link {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
}

.admin-link:hover {
    color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-credits {
        justify-content: flex-end;
    }
}

/* =========================================
   HAMBURGER / MOBILE NAV
   ========================================= */
/*
  In-header dropdown (not a fixed full-screen portal).
  Expands inside the fixed header — no stacking/containing-block bugs.
*/
@media (max-width: 1100px) {
    .header-phone {
        display: none !important;
    }

    .hamburger {
        display: inline-flex !important;
    }

    .logo {
        max-width: min(220px, 68vw);
    }

    .logo-img,
    .header.scrolled .logo-img {
        height: 40px;
        max-width: min(220px, 68vw);
    }

    .nav-container {
        flex-wrap: wrap;
        row-gap: 0;
    }

    .logo {
        order: 1;
        margin-right: auto;
    }

    .hamburger {
        order: 2;
    }

    .nav-menu {
        order: 3;
        flex: 0 0 100%;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        justify-content: stretch;
        transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s ease, margin 0.25s ease;
        margin: 0;
        pointer-events: none;
    }

    .nav-menu.open {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        opacity: 1;
        visibility: visible;
        margin-top: 0.75rem;
        padding-top: 0.5rem;
        border-top: 1px solid var(--border);
        pointer-events: auto;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.2rem;
        width: 100%;
        padding: 0.25rem 0 0.5rem;
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: left;
        font-size: 1.05rem;
        padding: 0.85rem 1rem;
        color: var(--dark);
        border-radius: 10px;
        white-space: normal;
    }

    .nav-link:hover,
    .nav-menu .nav-link.active {
        background: var(--green-light);
        color: var(--green);
    }

    .nav-cta {
        text-align: center !important;
        margin: 0.35rem 0 0 !important;
        width: 100%;
    }

    body.nav-open {
        overflow: hidden;
    }

    .header.nav-open-header,
    body.nav-open .header {
        background: #fff;
        border-bottom-color: var(--border);
        box-shadow: 0 12px 40px rgba(15, 26, 20, 0.12);
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-us-image {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 580px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }

    .image-badge {
        left: 0.5rem;
        bottom: -1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   HERO SLIDESHOW / VIDEO BACKGROUND
   ========================================= */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.04);
    animation: kenBurns 8s ease-in-out infinite alternate;
}

.hero-slide.active {
    opacity: 1;
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}

/* YouTube video background (optional) */
.hero-yt-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-yt-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
}

/* Slide dots */
.slide-dots {
    position: absolute;
    bottom: 5rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.slide-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.slide-dot.active {
    background: var(--primary);
    transform: scale(1.5);
}

/* Stat plus sign */
.stat-plus {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

/* Hero badge */
.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(232, 147, 13, 0.2);
    border: 1px solid rgba(232, 147, 13, 0.5);
    color: var(--primary-mid);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(8px);
}

/* =========================================
   FLOATING PARTICLES
   ========================================= */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(232, 147, 13, 0.3);
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-20px) scale(1);
        opacity: 0;
    }
}

/* =========================================
   GSAP ANIMATION INITIAL STATES
   ========================================= */
.gsap-hero-1,
.gsap-hero-2,
.gsap-hero-3,
.gsap-hero-4,
.gsap-hero-5 {
    opacity: 0;
    transform: translateY(30px);
}

/* =========================================
   GALLERY SECTION
   ========================================= */
.bg-dark-section {
    background: var(--dark-2);
}

.badge-orange {
    background: rgba(232, 147, 13, 0.2);
    color: var(--primary-mid);
    border: 1px solid rgba(232, 147, 13, 0.3);
}

.desc-light {
    color: rgba(255, 255, 255, 0.55);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-large {
    grid-column: span 2;
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(26, 18, 8, 0.85) 0%,
            transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    padding: 0.35rem 0.85rem;
    background: var(--primary);
    border-radius: 50px;
}

/* =========================================
   BLOG SECTION
   ========================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.blog-card {
    background: transparent;
    border-radius: var(--radius-lg);
    overflow: visible;
    border: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.06);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    z-index: 2;
}

.blog-body {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 1.5rem;
    margin: -3.5rem 1.25rem 1.25rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: var(--transition);
}

.blog-card:hover .blog-body {
    border-color: var(--primary-mid);
    box-shadow: var(--shadow-lg);
}

.blog-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.blog-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
    margin: 0;
}

.blog-body h3 a {
    color: inherit;
}

.blog-body h3 a:hover {
    color: var(--primary);
}

.blog-body p {
    font-size: 0.875rem;
    color: var(--text-muted);
    flex: 1;
    margin: 0;
}

.blog-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.blog-read-more {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

.blog-read-more:hover {
    color: var(--primary-dark);
}

.btn-fb-share {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #1877F2;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-fb-share:hover {
    background: #0b5cd7;
    color: var(--white);
    transform: translateY(-1px);
}

/* =========================================
   RESPONSIVE ADDITIONS
   ========================================= */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-large {
        grid-column: span 2;
    }

    .gallery-tall {
        grid-row: span 1;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Must come AFTER the 900px block so single-column wins on phones */
@media (max-width: 680px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-large {
        grid-column: span 1;
    }

    .slide-dots {
        display: none;
    }

    .footer-bottom {
        flex-direction: column !important;
        text-align: center;
        align-items: center;
    }

    .footer-credits {
        justify-content: center !important;
    }
}

/* =========================================
   BRAND GREEN BUTTONS
   ========================================= */
.btn-green {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.btn-green:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(30, 77, 53, 0.35);
}

/* =========================================
   MULTI-STEP QUOTE FORM
   ========================================= */
.step-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 0.5rem;
}

.step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
    user-select: none;
}

.step-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 0 12px rgba(232, 147, 13, 0.4);
}

.step-dot.done {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.step-line {
    flex: 1;
    max-width: 80px;
    height: 3px;
    background: var(--border);
    transition: var(--transition);
}

.step-line.done {
    background: var(--green);
}

.step-panel {
    display: none;
}

.step-panel.active {
    display: block;
    animation: stepFadeIn 0.4s ease forwards;
}

@keyframes stepFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-size: 1.35rem;
    font-weight: 750;
    color: var(--dark);
    margin-bottom: 0.35rem;
    line-height: 1.25;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.service-tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 580px) {
    .service-tiles {
        grid-template-columns: 1fr;
    }
}

.service-tile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1.15rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--bg-light);
    transition: var(--transition);
    color: var(--dark);
    user-select: none;
}

.service-tile svg {
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
}

.service-tile:hover {
    border-color: var(--primary-mid);
    background: var(--white);
}

.service-tile.selected {
    border-color: var(--green);
    background: var(--green-light);
    color: var(--green);
}

.service-tile.selected svg {
    color: var(--green);
}

/* Upload zone */
.upload-zone {
    border: 2.5px dashed var(--border);
    border-radius: var(--radius);
    padding: 2.25rem 1.5rem;
    text-align: center;
    background: var(--bg-light);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.upload-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.upload-zone:hover,
.upload-zone.drag-over {
    border-color: var(--primary);
    background: var(--white);
}

.upload-icon {
    color: var(--text-muted);
    margin-bottom: 0.2rem;
    transition: var(--transition);
}

.upload-zone:hover .upload-icon {
    color: var(--primary);
    transform: translateY(-2px);
}

.upload-zone span {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
}

.upload-zone strong {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.upload-preview {
    display: none;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.upload-preview img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Step navigation */
.step-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.75rem;
}

.btn-step-next {
    flex: 1;
    padding: 0.95rem;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-step-next:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 77, 53, 0.25);
}

.btn-step-back {
    padding: 0.95rem 1.5rem;
    background: transparent;
    border: 2.5px solid var(--border);
    color: var(--text-muted);
    border-radius: var(--radius);
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-step-back:hover {
    border-color: var(--text-muted);
    color: var(--dark);
    background: var(--bg-light);
}

#submitFinalBtn {
    background: var(--primary);
}

#submitFinalBtn:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(232, 147, 13, 0.25);
}

/* =========================================
   HERO GRID & CARD STYLING (CENTERED)
   ========================================= */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 6rem 1.5rem;
    z-index: 1;
}

.hero-text-box {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #E8930D;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    background: rgba(232, 147, 13, 0.12);
    padding: 0.45rem 1.15rem;
    border-radius: 50px;
    border: 1.5px solid rgba(232, 147, 13, 0.35);
}

.hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    justify-content: center;
}

.hero-stats {
    justify-content: center;
    margin-top: 1rem;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    text-align: left;
}

.hero-card h3 {
    font-size: 1.35rem;
    font-weight: 750;
    color: var(--dark);
    margin-bottom: 0.35rem;
}

.hero-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.hero-card .form-group {
    margin-bottom: 1rem;
}

.hero-card .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem;
    font-size: 0.95rem;
}

/* =========================================
   NEW SERVICES CARD GRID
   ========================================= */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 3.5rem;
}

@media (max-width: 900px) {
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .services-grid-new {
        grid-template-columns: 1fr;
    }
}

.service-card-new {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 1.25;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.service-card-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-new:hover img {
    transform: scale(1.08);
}

.service-overlay-new {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 65%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    transition: var(--transition);
}

.service-info-new h3 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 750;
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.service-info-new p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    line-height: 1.35;
    margin: 0;
}

.service-card-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Branded Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(232, 147, 13, 0.45) !important;
    outline-offset: 2px;
}
/* =========================================
   SEO PAGES: PRODUCTS, CAREERS, COVERAGE
   ========================================= */
.page-hero {
    padding: 8.5rem 0 3.5rem;
    background:
        radial-gradient(circle at 90% 10%, rgba(232, 147, 13, 0.16), transparent 40%),
        linear-gradient(160deg, var(--green-light) 0%, var(--off-white) 58%, #fff 100%);
    border-bottom: 1px solid var(--border);
}
.page-hero .title {
    font-size: clamp(2rem, 4vw, 2.85rem);
    margin: 0.75rem 0 1rem;
    max-width: 18ch;
    line-height: 1.15;
}
.page-hero .desc {
    max-width: 62ch;
    color: var(--text-muted);
    font-size: 1.08rem;
    margin-bottom: 1.5rem;
}
.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.breadcrumbs {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span { margin: 0 0.35rem; opacity: 0.6; }

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    border: 2px solid var(--dark);
    color: var(--dark);
    font-weight: 600;
    background: transparent;
}
.btn-outline-dark:hover {
    background: var(--dark);
    color: var(--white);
}
.btn-sm {
    padding: 0.65rem 1.1rem;
    font-size: 0.9rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
}
.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232, 147, 13, 0.35);
}
.product-card-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}
.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.55rem;
    color: var(--green);
}
.product-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
}
.product-features {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}
.product-features li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.88rem;
    color: var(--text-body);
    margin-bottom: 0.35rem;
}
.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}
.product-link {
    color: var(--primary-dark);
    font-weight: 650;
    font-size: 0.92rem;
}
.product-link:hover { color: var(--green); }

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-band .title { margin-bottom: 0.5rem; }
.cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.narrow-content {
    max-width: 760px;
}
.narrow-content .title { margin-bottom: 1rem; }
.narrow-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Coverage */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.coverage-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.2rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.coverage-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.coverage-card h3 {
    font-size: 1.05rem;
    color: var(--green);
    margin-bottom: 0.4rem;
}
.coverage-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
    line-height: 1.45;
}
.coverage-card span {
    font-size: 0.85rem;
    font-weight: 650;
    color: var(--primary-dark);
}
.also-serve {
    margin-top: 3rem;
    text-align: center;
}
.also-serve h3 {
    margin-bottom: 1.25rem;
    color: var(--green);
}
.area-pill {
    cursor: pointer;
}
a.area-pill:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.area-pill-more {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

/* Suburb pages */
.suburb-layout {
    display: grid;
    grid-template-columns: 1.5fr 0.85fr;
    gap: 2.5rem;
    align-items: start;
}
.suburb-main h2 { margin-bottom: 1rem; }
.suburb-main h3 {
    margin: 1.75rem 0 0.75rem;
    color: var(--green);
    font-size: 1.2rem;
}
.suburb-main p {
    color: var(--text-muted);
    margin-bottom: 0.9rem;
}
.check-list {
    list-style: none;
    margin: 0.5rem 0 1.25rem;
}
.check-list li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.6rem;
    color: var(--text-body);
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 800;
}
.product-mini-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}
.product-mini-grid a {
    background: var(--primary-light);
    color: var(--primary-dark);
    border: 1px solid rgba(232, 147, 13, 0.25);
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}
.product-mini-grid a:hover {
    background: var(--primary);
    color: var(--white);
}
.quote-sticky-card {
    position: sticky;
    top: 5.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}
.quote-sticky-card h3 {
    color: var(--green);
    margin-bottom: 0.5rem;
}
.quote-sticky-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.nearby-links a {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Careers */
.career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
}
.career-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    box-shadow: var(--shadow);
}
.career-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}
.career-card h3 {
    color: var(--green);
    margin-bottom: 0.55rem;
}
.career-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
}
.career-card ul {
    margin: 0 0 1.25rem;
    padding-left: 1.1rem;
    list-style: disc;
    color: var(--text-body);
    font-size: 0.9rem;
}
.career-card li { margin-bottom: 0.3rem; }
.why-careers {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
}
.why-careers-card {
    background: var(--green);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.why-careers-card h3 { margin-bottom: 0.75rem; }
.why-careers-card p { color: rgba(255,255,255,0.88); line-height: 1.7; }

/* FAQ */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.35rem 1.15rem;
    transition: var(--transition);
}
.faq-item[open] {
    background: var(--white);
    box-shadow: var(--shadow);
    border-color: rgba(232, 147, 13, 0.3);
}
.faq-item summary {
    cursor: pointer;
    font-weight: 650;
    padding: 0.95rem 0;
    list-style: none;
    color: var(--green);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    float: right;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
    color: var(--text-muted);
    padding: 0 0 1rem;
    font-size: 0.98rem;
    line-height: 1.7;
}
.faq-item a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: underline;
}

.nav-link.active {
    color: var(--primary);
}

@media (max-width: 1024px) {
    .product-grid,
    .career-grid { grid-template-columns: repeat(2, 1fr); }
    .coverage-grid { grid-template-columns: repeat(2, 1fr); }
    .suburb-layout,
    .why-careers { grid-template-columns: 1fr; }
    .quote-sticky-card { position: static; }
}
@media (max-width: 640px) {
    .product-grid,
    .career-grid,
    .coverage-grid { grid-template-columns: 1fr; }
    .page-hero { padding-top: 7rem; }
}

/* =========================================
   PRODUCT DETAIL CARDS + BLOG SYSTEM
   ========================================= */
.product-jump { padding-bottom: 0; }
.product-jump-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
.product-jump-nav a {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--green);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
}
.product-jump-nav a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.product-detail-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.product-detail-card {
    display: grid;
    grid-template-columns: 1.05fr 1.2fr;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.product-detail-card:nth-child(even) .product-detail-media { order: 2; }
.product-detail-media {
    min-height: 320px;
    background: var(--bg-light);
}
.product-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
}
.product-detail-body {
    padding: 2rem 2.1rem;
}
.product-detail-body h2 {
    color: var(--green);
    font-size: 1.55rem;
    margin-bottom: 0.5rem;
}
.product-blurb {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}
.product-body {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.75;
}
.product-body p { margin-bottom: 0.85rem; }
.product-body strong { color: var(--text-body); }
.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.35rem;
}

/* Blog */
.blog-index-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
}
.blog-index-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}
.blog-index-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232,147,13,0.35);
}
.blog-index-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-light);
}
.blog-index-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-index-card:hover .blog-index-img img { transform: scale(1.05); }
.blog-index-body {
    padding: 1.25rem 1.3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}
.blog-index-body h2 {
    font-size: 1.1rem;
    color: var(--green);
    line-height: 1.35;
}
.blog-index-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    flex: 1;
}
.blog-date {
    font-size: 0.78rem;
    font-weight: 650;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.blog-article { padding-bottom: 4rem; }
.blog-hero-img {
    width: 100%;
    max-height: 420px;
    overflow: hidden;
    background: var(--dark-2);
}
.blog-hero-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.blog-article-inner { padding-top: 2rem; }
.blog-meta-line {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin: 0.75rem 0 1.25rem;
}
.lead {
    font-size: 1.15rem;
    color: var(--text-body);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.blog-article-inner h2 {
    color: var(--green);
    font-size: 1.35rem;
    margin: 1.75rem 0 0.75rem;
}
.blog-cta-box {
    margin-top: 2.5rem;
    padding: 1.75rem;
    background: var(--green-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.blog-cta-box h2 { margin-top: 0; }
.blog-back { margin-top: 1.5rem; }
.blog-back a { color: var(--primary-dark); font-weight: 650; }

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
}

@media (max-width: 1024px) {
    .product-detail-card { grid-template-columns: 1fr; }
    .product-detail-card:nth-child(even) .product-detail-media { order: 0; }
    .blog-index-grid, .home-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .blog-index-grid, .home-blog-grid { grid-template-columns: 1fr; }
    .blog-hero-img img { height: 240px; }
    .product-detail-body { padding: 1.35rem; }
}

/* =========================================
   TECH AID BADGE (FOOTER)
   ========================================= */
.footer-powered {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .footer-powered {
        justify-content: flex-start;
    }
}

.tech-aid-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 1.15rem 0.7rem 0.7rem;
    border-radius: 999px;
    border: 1.5px solid rgba(62, 187, 0, 0.4);
    background: #white; /* fallback */
    background: #fff;
    text-decoration: none;
    color: #3ebb00;
    box-shadow: 0 4px 14px rgba(62, 187, 0, 0.12);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tech-aid-badge:hover,
.tech-aid-badge:focus-visible {
    background: rgba(62, 187, 0, 0.08);
    border-color: #3ebb00;
    box-shadow: 0 10px 28px rgba(62, 187, 0, 0.22);
    transform: translateY(-1px);
    color: #3ebb00;
}

.tech-aid-badge__mark {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
    border-radius: 50%;
}

.tech-aid-badge__text {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    line-height: 1.15;
    text-align: left;
}

.tech-aid-badge__kicker {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3ebb00;
    opacity: 0.9;
}

.tech-aid-badge__name {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #3ebb00;
}
