@import url("header.css");
@import url("footer.css");
@import url("service.css");
@import url("service-detail.css");
@import url("service-area.css");
@import url("faqs.css");
@import url("about.css");


/* --- START FILE: style.css --- */
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Barlow", sans-serif;
    color: #1c1c1e;
    background: #ffffff;
    line-height: 1.6;
    padding-top: 74px;
    transition: padding-top 0.3s ease;
}

@media (max-width: 768px) {
    body {
        padding-top: 62px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 56px;
    }
}

:root {
    --orange: #DA291C;
    /* Roto-Rooter Red */
    --orange-light: #ea2316;
    /* Bright red */
    --orange-pale: rgba(218, 41, 28, 0.08);
    --dark: #2A1768;
    /* Roto-Rooter Plumb/Navy */
    --text-primary: #212529;
    --text-muted: #6c757d;
    --text-light: #8a8a8a;
    --border: #dee2e6;
    --bg: #ffffff;
    --bg-soft: #f7f8fb;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
    SOFT CIRCLE GRID PATTERN
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.circle-pattern {
    background-color: #f7f9fc;
    background-image:
        radial-gradient(circle, rgba(42, 23, 104, 0.03) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(218, 41, 28, 0.025) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    background-position: 0 0, 16px 16px;
    animation: gridScroll 45s linear infinite;
}

@keyframes gridScroll {
    from {
        background-position: 0 0, 16px 16px;
    }

    to {
        background-position: 320px 320px, 336px 336px;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: "Barlow Condensed", sans-serif;
    line-height: 1.15;
    font-weight: 800;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
    font-size: 1.35rem;
    font-weight: 700;
}

p {
    margin: 0;
}

.container {
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad {
    padding: 36px 0;
}

.bg-dark {
    background: #1c1c1e;
    color: #ffffff;
}

.text-orange {
    color: var(--orange);
}

.badge-light {
    background: var(--orange-pale);
    color: var(--orange);
}

.section-header {
    text-align: center;
    margin: 0 auto 52px;
}

.section-header p {
    color: #555558;
    margin-top: 10px;
    font-size: 1.05rem;
}

.section-header.light h2 {
    color: #ffffff;
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.65);
}

.btn-cta {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.03em;
    padding: 11px 26px;
    border-radius: 100px;
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-cta:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 41, 28, 0.35);
}

.btn-cta.btn-large {
    font-size: 1.1rem;
    padding: 14px 34px;
}

.btn-hero {
    display: inline-block;
    background: transparent;
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 13px 32px;
    border-radius: 100px;
    border: 2px solid #fff;
    transition: all 0.25s ease;
    margin-top: 28px;
}

.btn-hero:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(218, 41, 28, 0.45);
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--orange);
    color: var(--orange);
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 11px 26px;
    border-radius: 100px;
    transition: all 0.25s ease;
    margin-top: 24px;
}

.btn-outline:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-white {
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 13px 30px;
    border-radius: 100px;
    transition: all 0.25s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: #2a2a2c;
    border-radius: 14px;
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: transform 0.25s ease;
}

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

.review-stars {
    color: #EDB900;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
}

.review-author span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}

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

/* GLOBAL MODAL STYLING */
.quote-modal-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
}

.quote-modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.quote-modal-content {
    position: relative;
    width: 100%;
    max-width: 440px;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-modal-backdrop.active .quote-modal-content {
    transform: translateY(0) scale(1);
}

.quote-modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: #a0aec0;
    transition: color 0.2s, transform 0.2s;
    z-index: 100;
}

.quote-modal-close:hover {
    color: var(--orange);
    transform: scale(1.1);
}

/* 404 error page animations */
@keyframes shine {
    0% {
        transform: translateX(-120%) rotate(14deg);
    }

    60%,
    100% {
        transform: translateX(320%) rotate(14deg);
    }
}



/* --- START FILE: header.css --- */
/* ── TOP BAR ── */
.top-bar {
    background: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 40px;
    font-size: 11px;
    letter-spacing: 0.09em;
    color: #8a8a8a;
    font-weight: 400;
    text-transform: uppercase;
}

@media (min-width: 1400px) {
    .top-bar {
        padding: 8px 60px;
    }
}

.top-bar-left {
    display: flex;
    gap: 28px;
}

.top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color 0.2s;
    cursor: default;
}

.top-bar span:hover {
    color: #ccc;
}

.top-bar svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
}

.top-bar-link {
    color: var(--orange-light);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: opacity 0.2s;
}

.top-bar-link:hover {
    opacity: 0.8;
}

.top-bar-sep {
    width: 1px;
    height: 14px;
    background: #333;
}

/* ========================================================
   SITE HEADER — FULL-WIDTH STICKY NAV
   ======================================================== */
.site-header {
    position: fixed ;
    top: 0 ;
    left: 0 ;
    width: 100% ;
    z-index: 9999 ;
    background: #ffffff ;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) ;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07) ;
    transition: box-shadow 0.25s ease, background 0.25s ease ;
}

.site-header.scrolled {
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.13) ;
    background: rgba(255, 255, 255, 0.98) ;
    backdrop-filter: blur(12px) ;
}

/* Inner capsule — acts as full-width flex row */
.header-inner-capsule {
    display: flex ;
    align-items: center ;
    justify-content: space-between ;
    width: 100% ;
    height: 72px ;
    padding: 0 ;
    position: relative ;
    overflow: visible ;
    background: transparent ;
    border-radius: 0 ;
    box-shadow: none ;
    border: none ;
}

/* ── LOGO SECTION ── */
.logo-section {
    position: relative ;
    height: 100% ;
    display: flex ;
    align-items: center ;
    padding-left: 24px ;
    padding-right: 40px ;
    min-width: 220px ;
    flex-shrink: 0 ;
    z-index: 5 ;
    background: #131422 ;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%) ;
}

.logo-dark-tip,
.logo-white-bg,
.logo-orange-slant {
    display: none ;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.logo:hover {
    opacity: 0.92;
}

.logo img {
    display: block;
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* ── DESKTOP NAV ── */
.nav-desktop {
    display: flex ;
    align-items: center ;
    gap: 2px ;
    flex: 1 ;
    justify-content: center ;
    padding: 0 24px ;
}

.nav-link {
    font-family: 'Outfit', sans-serif ;
    font-weight: 700 ;
    font-size: 12px ;
    color: #1c1c2e ;
    padding: 8px 14px ;
    border-radius: 8px ;
    transition: color 0.2s ease, background 0.2s ease ;
    background: none ;
    border: none ;
    cursor: pointer ;
    display: flex ;
    align-items: center ;
    gap: 4px ;
    white-space: nowrap ;
    text-transform: uppercase ;
    letter-spacing: 0.7px ;
    text-decoration: none ;
    position: relative ;
}

.nav-link:hover {
    color: #f26522 ;
    background: rgba(242, 101, 34, 0.06) ;
}

.nav-link.active {
    color: #f26522 ;
    background: rgba(242, 101, 34, 0.07) ;
}

.nav-link.active::after {
    content: '' ;
    position: absolute ;
    bottom: 2px ;
    left: 50% ;
    transform: translateX(-50%) ;
    width: 22px ;
    height: 2.5px ;
    background: #f26522 ;
    border-radius: 100px ;
}

/* ── SERVICES DROPDOWN ── */
.nav-dropdown {
    position: relative ;
}

.dropdown-caret {
    width: 14px ;
    height: 14px ;
    transition: transform 0.25s ease ;
    flex-shrink: 0 ;
}

.nav-dropdown:hover .dropdown-caret {
    transform: rotate(180deg) ;
}

.dropdown-menu {
    display: none ;
    position: fixed ;
    left: auto ;
    transform: none ;
    background: #ffffff ;
    border-radius: 14px ;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.18) ;
    border: 1px solid rgba(0, 0, 0, 0.07) ;
    min-width: 240px ;
    padding: 10px 0 ;
    z-index: 99999 ;
    list-style: none ;
    margin: 0 ;
    overflow: visible ;
}

.nav-dropdown:hover .dropdown-menu {
    display: block ;
}

.dropdown-menu li {
    list-style: none ;
    margin: 0 ;
    padding: 0 ;
}

.dropdown-menu li a {
    display: block ;
    padding: 10px 22px ;
    font-family: 'Outfit', sans-serif ;
    font-size: 12px ;
    font-weight: 600 ;
    color: #1c1c2e ;
    text-decoration: none ;
    text-transform: uppercase ;
    letter-spacing: 0.5px ;
    transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease ;
    border-left: 3px solid transparent ;
}

.dropdown-menu li a:hover {
    color: #f26522 ;
    background: rgba(242, 101, 34, 0.05) ;
    padding-left: 26px ;
    border-left-color: #f26522 ;
}

/* ── RIGHT SIDE WIDGETS ── */
.header-right {
    display: flex ;
    align-items: center ;
    gap: 16px ;
    padding-right: 24px ;
    flex-shrink: 0 ;
}

.header-sep {
    width: 1px ;
    height: 32px ;
    background: #e2e8f0 ;
}

/* Phone pill */
.phone-link {
    display: flex ;
    align-items: center ;
    gap: 10px ;
    background: #f4f5f9 ;
    border: 1px solid #e8ecf3 ;
    border-radius: 100px ;
    padding: 7px 18px ;
    text-decoration: none ;
    transition: background 0.2s ease, transform 0.2s ease ;
}

.phone-link:hover {
    background: #eceef7 ;
    transform: translateY(-1px) ;
}

/* Orange CTA Button */
.cta-btn {
    display: inline-flex ;
    align-items: center ;
    gap: 8px ;
    background: linear-gradient(135deg, #ff7a35 0%, #f26522 100%) ;
    color: #ffffff ;
    font-family: 'Outfit', sans-serif ;
    font-size: 11px ;
    font-weight: 800 ;
    text-transform: uppercase ;
    letter-spacing: 1px ;
    padding: 11px 22px ;
    border-radius: 10px ;
    text-decoration: none ;
    box-shadow: 0 4px 16px rgba(242, 101, 34, 0.28) ;
    border: none ;
    transition: transform 0.2s ease, box-shadow 0.2s ease ;
    white-space: nowrap ;
}

.cta-btn:hover {
    transform: translateY(-2px) ;
    box-shadow: 0 8px 24px rgba(242, 101, 34, 0.38) ;
    color: #ffffff ;
    opacity: 1 ;
}

/* ── HAMBURGER ── */
.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #1c1c2e;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Hide right decoration divs */
.header-right-decorations,
.header-right-dark-tip,
.header-right-orange-stroke,
.logo-dark-tip,
.logo-white-bg,
.logo-orange-slant {
    display: none ;
}

/* ── MOBILE DRAWER ── */
.nav-mobile {
    display: none;
    position: fixed ;
    top: 72px ;
    left: 0 ;
    width: 100% ;
    background: #ffffff ;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) ;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12) ;
    z-index: 9998 ;
    max-height: calc(100vh - 72px) ;
    overflow-y: auto ;
}

.nav-mobile.open {
    display: block ;
}

.mob-link {
    display: block;
    padding: 14px 24px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #1c1c2e;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.2s, background 0.2s;
}

.mob-link:hover,
.mob-link.active {
    color: #f26522;
    background: rgba(242, 101, 34, 0.05);
}

/* Body padding to prevent content going under fixed header */
body {
    padding-top: 72px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1023px) {
    .nav-desktop {
        display: none ;
    }

    .header-right .header-sep,
    .header-right .phone-link {
        display: none ;
    }

    .logo-section {
        clip-path: none ;
        background: #131422 ;
        min-width: 180px ;
        padding-right: 24px ;
    }
}

@media (max-width: 639px) {
    .cta-btn {
        display: none ;
    }
}


/* --- START FILE: footer.css --- */
/* ==========================================================================
   SITE FOOTER — DARK PREMIUM DESIGN
   ========================================================================== */

.site-footer {
    background: #0e0e0e;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

/* ── Orange accent top line ── */
.footer-accent-top {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #f26522 30%, #f26522 70%, transparent 100%);
    width: 100%;
}

/* ── Main footer body ── */
.footer-body {
    padding: 70px 60px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ── 4-column grid ── */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

/* ── BRAND COLUMN ── */
.footer-col--brand {
    position: relative;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 4px;
}

.footer-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-brand-line {
    width: 40px;
    height: 3px;
    background: #f26522;
    margin: 14px 0 20px;
    border-radius: 2px;
}

.footer-tagline {
    font-size: 14px;
    color: #8a9ab5;
    line-height: 1.75;
    margin: 0 0 26px;
}

/* ── SOCIAL ICONS ── */
.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a9ab5;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-social-btn svg {
    width: 16px;
    height: 16px;
}

.footer-social-btn:hover {
    background: #f26522;
    color: #ffffff;
    border-color: #f26522;
    transform: translateY(-2px);
}

/* Decorative dots watermark on brand col */
.footer-dots-watermark {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 220px;
    height: 220px;
    background-image: radial-gradient(circle, rgba(242, 101, 34, 0.25) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    border-radius: 50%;
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

/* ── COLUMN HEADINGS ── */
.footer-col-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f26522;
    margin: 0 0 6px;
}

.footer-col-line {
    width: 36px;
    height: 2.5px;
    background: #f26522;
    border-radius: 2px;
    margin-bottom: 22px;
}

/* ── NAV LISTS ── */
.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: #8a9ab5;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
    line-height: 1.4;
}

.footer-nav-list li a:hover {
    color: #ffffff;
    gap: 14px;
}

.footer-arrow {
    color: #f26522;
    font-size: 14px;
    line-height: 1;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.footer-nav-list li a:hover .footer-arrow {
    transform: translateX(2px);
}

/* ── CONTACT ITEMS ── */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(242, 101, 34, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(242, 101, 34, 0.08);
}

.footer-contact-icon svg {
    width: 17px;
    height: 17px;
    stroke: #f26522;
}

.footer-contact-label {
    display: block;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #5a6a80;
    margin-bottom: 3px;
}

.footer-contact-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

a.footer-contact-value:hover {
    color: #f26522;
}

/* ── GET FREE QUOTE CTA Button ── */
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f26522;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(242, 101, 34, 0.3);
}

.footer-cta-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-cta-btn:hover {
    background: #d4541a;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(242, 101, 34, 0.45);
    color: #ffffff;
}

/* ── BOTTOM BAR ── */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0;
    position: relative;
}

/* Orange center notch divider matching the mockup */
.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f26522, transparent);
    border-radius: 2px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 13px;
    color: #5a6a80;
    margin: 0;
    font-weight: 400;
}

.footer-copyright a {
    color: #f26522;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.footer-copyright a:hover {
    opacity: 0.8;
}

.footer-bottom-divider {
    flex: 1;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a {
    font-size: 11px;
    font-weight: 700;
    color: #5a6a80;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.footer-bottom-sep {
    color: rgba(255, 255, 255, 0.15);
    font-size: 12px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-body {
        padding: 11px 14px 4px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-tagline {
        margin: 0;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 14px;
        text-align: center;
        padding: 20px 24px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* --- START FILE: hero.css --- */
/* ── INNER HERO ── */
.inner-hero {
    position: relative;
    width: 100%;
    min-height: 520px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    background-color: #ffffff;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.inner-hero .hero-content {
    padding: 60px 48px 60px 24px;
    max-width: 640px;
    margin-left: auto;
    width: 100%;
    z-index: 2;
    animation: fadeUp 0.9s 0.15s ease both;
}

.inner-hero .hero-right {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 45%;
    height: 100%;
    overflow: hidden;
    animation: fadeIn 1.1s 0.3s ease both;
}

.inner-hero .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 9s ease;
}

.inner-hero .hero-right:hover .hero-img {
    transform: scale(1.04);
}

.inner-hero .hero-img-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.9) 15%, rgba(255, 255, 255, 0) 50%);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ── HOMEPAGE HERO ── */
.hero {
    height: auto ;
    min-height: 750px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    background-color: #ffffff;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 55%;
    z-index: 0;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right,
            #ffffff 0%,
            #ffffff 45%,
            rgba(255, 255, 255, 0.9) 50%,
            rgba(255, 255, 255, 0) 65%);
    pointer-events: none;
}

.hero-grid-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    padding: 0;
}

/* Eyebrow Badge */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid var(--orange);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.eyebrow-bar {
    display: none;
}

.eyebrow-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Title Typography */
.hero-title {
    font-size: clamp(2.4rem, 4.8vw, 3.8rem);
    line-height: 1.15;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title em {
    font-style: italic;
    font-weight: 900;
    color: var(--orange);
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

/* Description Text */
.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 540px;
}

/* Actions/CTA Button */
.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: var(--orange);
    color: white;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(218, 41, 28, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.btn-hero-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(218, 41, 28, 0.4);
    color: #ffffff;
}

.btn-hero-primary svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
}

.btn-hero-primary:hover svg {
    transform: translateX(4px);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    background: transparent;
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 15px 32px;
    border-radius: 100px;
    border: 2px solid rgba(26, 26, 26, 0.15);
    transition: all 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
}

.btn-hero-outline:hover {
    border-color: var(--orange);
    background: var(--orange-pale);
    color: var(--orange);
    transform: translateY(-2px);
}

.btn-hero-outline svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
    transition: transform 0.25s ease;
}

.btn-hero-outline:hover svg {
    transform: scale(1.1);
}

.hero-form-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

/* Form Card Styles (modal / fallback) */
.hero-quote-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 440px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-quote-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.hero-quote-card-header .form-logo {
    display:block;
    height: 38px;
    object-fit: contain;
    margin-bottom: 8px;
}

.hero-quote-card-header .form-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    margin: 6px 0 2px 0;
    text-transform: uppercase;
}

.hero-quote-card-header .form-title .accent-orange {
    color: var(--orange);
}

.hero-quote-card-header .form-subtitle {
    font-size: 13px;
    color: #6b6b6b;
    margin: 0;
}

.hero-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-form-grid .input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    height: 48px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-form-grid .input-wrap.full-width {
    grid-column: span 2;
}

.hero-form-grid .input-wrap .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-form-grid .input-wrap input,
.hero-form-grid .input-wrap select,
.hero-form-grid .input-wrap textarea {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    outline: none;
    padding-left: 42px;
    padding-right: 14px;
    font-size: 14px;
    color: #1a1a1a;
    font-family: "Barlow", sans-serif;
}

.hero-form-grid .input-wrap input::placeholder,
.hero-form-grid .input-wrap textarea::placeholder {
    color: #a0aec0;
}

.hero-form-grid .input-wrap select {
    appearance: none;
    cursor: pointer;
    padding-right: 32px;
    color: #1a1a1a;
}

.hero-form-grid .input-wrap select:invalid {
    color: #a0aec0;
}

.hero-form-grid .input-wrap .select-caret {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.hero-form-grid .input-wrap.textarea-wrap {
    height: 75px;
    align-items: flex-start;
}

.hero-form-grid .input-wrap.textarea-wrap .input-icon {
    top: 15px;
    transform: none;
}

.hero-form-grid .input-wrap.textarea-wrap textarea {
    height: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    resize: none;
}

.hero-form-grid .input-wrap:focus-within {
    border-color: var(--orange-light);
    box-shadow: 0 0 0 3px rgba(218, 41, 28, 0.12);
}

.hero-form-grid .error-msg {
    position: absolute;
    bottom: -16px;
    left: 4px;
    font-size: 10px;
    font-weight: 500;
}

.hero-submit-btn {
    grid-column: span 2;
    width: 100%;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 12px;
    box-shadow: 0 4px 12px rgba(218, 41, 28, 0.2);
}

.hero-submit-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(218, 41, 28, 0.35);
}

.hero-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.hero-quote-card-footer {
    text-align: center;
    margin-top: 20px;
}

.footer-divider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.footer-divider-container .divider-line {
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
}

.footer-divider-container .footer-logo-mini {
    height: 16px;
    opacity: 1;
    object-fit: contain;
}

.hero-quote-card-footer .footer-tagline {
    font-size: 11px;
    font-weight: 600;
    color: #718096;
    letter-spacing: 0.5px;
    margin: 0;
}

.hero-quote-card-footer .footer-tagline .orange-text {
    color: var(--orange);
}

/* ── RESPONSIVE ADAPTATIONS ── */
@media (max-width: 991px) {

    /* --- HOMEPAGE HERO --- */
    .hero {
        display: flex;
        flex-direction: column-reverse;
        padding: 40px 16px;
        background: #ffffff;
        gap: 32px;
        min-height: auto;
    }

    .hero-bg-img {
        position: relative;
        width: 100%;
        height: 320px;
        border-radius: 24px;
        overflow: hidden;
        z-index: 1;
        margin-top: 16px;
    }

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

    .hero::before {
        display: none;
    }

    .hero-grid-container {
        display: block;
        padding: 0;
        max-width: 100%;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        padding: 0;
    }

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

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

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

    .hero-empty-side {
        display: none;
    }

    /* --- INNER HERO --- */
    .inner-hero {
        display: flex;
        flex-direction: column-reverse;
        padding: 40px 16px;
        gap: 32px;
        min-height: auto;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .inner-hero .hero-right {
        position: relative;
        width: 100%;
        height: 280px;
        border-radius: 20px;
        overflow: hidden;
        order: 1;
    }

    .inner-hero .hero-content {
        padding: 0;
        text-align: center;
        order: 2;
        max-width: 100%;
    }

    .inner-hero .hero-img-overlay {
        display: none;
    }
}

/* ==========================================================================
   SLANTED SPLIT-SCREEN HERO BANNER STYLING
   ========================================================================== */
/* ==============================================
   PAGE BANNER — SLANTED SPLIT SCREEN
   ============================================== */
.creative-hero-section {
    position: relative;
    width: 100%;
    min-height: 340px;
    display: flex;
    align-items: center;
    background: #111111;
    overflow: hidden;
    z-index: 1;
}

/* Left dark panel */
.hero-left-panel {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 58%;
    background: #111111;
    z-index: 2;
    overflow: hidden;
}

/* Diagonal skew extension of dark panel */
.hero-left-panel::after {
    content: '';
    position: absolute;
    top: -10%;
    bottom: -10%;
    right: -70px;
    width: 140px;
    background: #111111;
    transform: skewX(-10deg);
    z-index: 1;
}

/* Orange diagonal accent line */
.hero-left-panel::before {
    content: '';
    position: absolute;
    top: -10%;
    bottom: -10%;
    right: -76px;
    width: 6px;
    background: #f26522;
    transform: skewX(-10deg);
    z-index: 3;
    box-shadow: 0 0 12px rgba(242, 101, 34, 0.5);
}

/* Right photo panel */
.hero-right-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 48%;
    background-size: cover;
    background-position: center top;
    z-index: 1;
}

/* Bottom curved wave transition */
.hero-bottom-curve {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 20;
    line-height: 0;
    pointer-events: none;
}

.hero-bottom-curve svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* Brand watermark in left panel */
.hero-watermark {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(-8deg);
    width: 280px;
    height: 280px;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero-watermark img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: left;
}

/* Text block */
.hero-text-content {
    position: relative;
    z-index: 10;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Pill breadcrumb nav */
.hero-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9badc0;
    backdrop-filter: blur(8px);
}

.hero-breadcrumbs a {
    color: #9badc0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hero-breadcrumbs a:hover {
    color: #ffffff;
}

.hero-breadcrumbs .crumb-separator {
    color: rgba(255, 255, 255, 0.25);
    font-size: 9px;
}

.hero-breadcrumbs .active-crumb {
    color: #f26522;
    font-weight: 800;
}

/* Title block */
.hero-title-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 14px;
}

/* Cursive "Our" script overlapping title */
.hero-cursive-title {
    font-family: 'Playball', 'Dancing Script', cursive;
    font-size: 62px;
    color: #f26522;
    line-height: 1;
    display: block;
    margin-bottom: -18px;
    margin-left: 6px;
    transform: rotate(-3deg);
    position: relative;
    z-index: 5;
    text-transform: none;
    font-weight: 400;
}

/* Bold uppercase main title e.g. "Blog" */
.creative-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 60px;
    font-weight: 900;
    color: #ffffff;
    line-height: 0.88;
    margin: 0;
    letter-spacing: -2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Orange underline accent */
.hero-title-line {
    width: 52px;
    height: 4px;
    background: #f26522;
    border-radius: 2px;
    margin-top: 14px;
    margin-bottom: 12px;
}

/* Subtitle paragraph */
.creative-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: #8fa3b8;
    line-height: 1.7;
    max-width: 420px;
    margin: 0;
}

/* Responsive adjustments for slanted hero */
@media (max-width: 991px) {
    .creative-hero-section {
        min-height: 420px ;
        padding: 60px 0 ;
    }

    .hero-left-panel {
        width: 100% ;
        height: 100% ;
        background: linear-gradient(to bottom, rgba(17, 17, 17, 0.96) 0%, rgba(17, 17, 17, 0.8) 100%) ;
        z-index: 2 ;
    }

    .hero-left-panel::after,
    .hero-left-panel::before {
        display: none ;
    }

    .hero-right-panel {
        width: 100% ;
        height: 100% ;
        z-index: 1 ;
        opacity: 0.25 ;
    }

    .hero-text-content {
        max-width: 100% ;
        text-align: center ;
        align-items: center ;
    }

    .creative-hero-title {
        font-size: 52px ;
    }

    .hero-cursive-title {
        font-size: 48px;
        margin-left: 0;
    }

    .creative-hero-subtitle {
        max-width: 500px ;
        margin-left: auto ;
        margin-right: auto ;
    }
}

.hero-container {
    position: relative ;
    z-index: 10 ;
    max-width: 1140px ;
    margin-left: auto ;
    margin-right: auto ;
    padding-top: 64px ;
    padding-bottom: 64px ;
    padding-left: 16px ;
    padding-right: 16px ;
    width: 100% ;
}

.hero-buttons {
    display: flex ;
    flex-wrap: wrap ;
    gap: 16px ;
    margin-top: 12px ;
}


/* --- START FILE: about.css --- */
/* ─ ABOUT INTRO: FULL BLEED SPLIT ─ */

.intro {
    display: grid;
    grid-template-columns: 1fr 1fr;

    position: relative;
}



.intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.intro-img:hover img {
    transform: scale(1.03);
}

.intro-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(232, 84, 10, 0.6) 0%,
            transparent 60%);
}

.intro-label {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
}

.intro-label h3 {
    font-family: "DM Serif Display", serif;
    font-size: 36px;
    color: #ffffff;
    line-height: 1.2;
}

.intro-label p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 10px;
    line-height: 1.6;
}

.intro-content {
    padding: 37px 53px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f0eee9;
}

.ic-sub {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e8540a;
    margin-bottom: 20px;
}

.ic-h {
    font-family: "DM Serif Display", serif;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.1;
    color: #111;
    margin-bottom: 28px;
}

.ic-h em {
    font-style: italic;
    color: #e8540a;
}

.ic-p {
    font-size: 16px;
    line-height: 1.9;
    color: #6b6b6b;
    margin-bottom: 18px;
    font-weight: 300;
}

.ic-quote {
    border-left: 3px solid #e8540a;
    padding-left: 24px;
    margin: 32px 0;
}

.ic-quote q {
    font-family: "DM Serif Display", serif;
    font-size: 20px;
    color: #111;
    font-style: italic;
    line-height: 1.5;
    display: block;
}

.ic-quote cite {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #e8540a;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-style: normal;
}

.ribbon-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.ribbon {
    background: #ffffff;
    border: 1px solid #e2ddd6;
    border-radius: 6px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 600;
    color: #111;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.ribbon:hover {
    background: #e8540a;
    color: #ffffff;
    border-color: #e8540a;
    transform: translateY(-2px);
}

/* ─ BIG DIAGONAL SECTION ─ */

.diag {
    position: relative;
    background: #111;
    padding: 120px 64px;
    overflow: hidden;
    clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
}

.diag::before {
    content: "HAULING";
    position: absolute;
    font-family: "DM Serif Display", serif;
    font-size: 26vw;
    color: rgba(255, 255, 255, 0.025);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    white-space: nowrap;
}

.diag-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.diag-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 70px;
    gap: 40px;
}

.diag-top h2 {
    font-family: "DM Serif Display", serif;
    font-size: clamp(42px, 5vw, 72px);
    color: #ffffff;
    line-height: 1;
}

.diag-top h2 em {
    font-style: italic;
    color: #e8540a;
}

.diag-top p {
    max-width: 380px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
}

.vgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.vc {
    background: #1c1c1c;
    padding: 44px 32px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: background 0.4s;
}

.vc:hover {
    background: #222;
}

.vc::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #e8540a;
    transition: width 0.5s ease;
}

.vc:hover::after {
    width: 100%;
}

.vc-n {
    font-family: "DM Serif Display", serif;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    bottom: -12px;
    right: 16px;
    line-height: 1;
    transition: color 0.4s;
}

.vc:hover .vc-n {
    color: rgba(232, 84, 10, 0.08);
}

.vc-ico {
    font-size: 28px;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.4s;
}

.vc:hover .vc-ico {
    transform: scale(1.15) rotate(-8deg);
}

.vc h3 {
    font-family: "DM Serif Display", serif;
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 14px;
}

.vc p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

/* ─ ANIMATIONS ─ */

@keyframes slideR {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes tick {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Scroll Reveal */

.sr,
.srl,
.srr {
    opacity: 0;
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

.sr {
    transform: translateY(50px);
}

.srl {
    transform: translateX(-50px);
}

.srr {
    transform: translateX(50px);
}

.sr.on,
.srl.on,
.srr.on {
    opacity: 1;
    transform: translate(0, 0);
}

.d1 {
    transition-delay: 0.1s;
}

.d2 {
    transition-delay: 0.2s;
}

.d3 {
    transition-delay: 0.3s;
}

.d4 {
    transition-delay: 0.4s;
}

.d5 {
    transition-delay: 0.5s;
}

/* ─ RESPONSIVE DESIGN ─ */

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

    .intro-img {
        height: 420px;
    }

    .intro-content {
        padding: 60px 40px;
    }

    .diag-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .vgrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .intro-label {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .intro-label h3 {
        font-size: 26px;
    }

    .intro-content {
        padding: 40px 24px;
    }

    .ic-h {
        font-size: 34px;
    }

    .diag {
        padding: 80px 24px;
        clip-path: none;
    }

    .diag::before {
        font-size: 40vw;
    }

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

    .vc {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .ic-p {
        font-size: 15px;
    }

    .ic-quote q {
        font-size: 18px;
    }

    .ribbon {
        font-size: 11px;
        padding: 6px 14px;
    }

    .diag-top h2 {
        font-size: 34px;
    }
}

.promise {
    position: relative;
    overflow: hidden;
}

.promise-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    filter: brightness(0.4);
}

.promise-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 64px;
}

.promise-inner {
    max-width: 660px;
}

.promise-inner h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(21px, 6vw, 57px);
    color: #ffffff;
    letter-spacing: 3px;
    line-height: 0.95;
    margin-bottom: 28px;
}

.promise-inner h2 em {
    font-style: normal;
    color: #e8540a;
}

.promise-inner p {
    font-size: 18px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 40px;
    max-width: 520px;
}

.pacts {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
   .hero-quote-card-header .form-logo {
    display:none;
}

    .promise-img {
        height: 420px;
    }

    .promise-content {
        padding: 0 24px;
    }

    .promise-inner h2 {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .promise-inner p {
        font-size: 16px;
    }
}


/* --- START FILE: about-section.css --- */
/* ── HOMEPAGE ABOUT SECTION ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 0.8fr;
    gap: 30px;
    align-items: start;
}

.about-text h2 {
    margin-bottom: 16px;
}

.about-text p {
    color: #555558;
    margin-bottom: 10px;
}

.about-image {
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0% 0% 0% 58%;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.stat-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 4px 6px 0px #f97316;
}

.stat-icon {
    margin-bottom: 8px;
}

.stat-icon svg {
    width: 56px;
    height: 46px;
    margin: 0 auto;
}

.stat-number {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #f97316;
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: black;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-text {
        grid-column: 1;
    }

    .about-image {
        grid-column: 2;
    }

    .about-stats {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .about-grid {
        display: flex;
        flex-direction: column;
        row-gap: 10px;
    }

    .about-grid .about-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}


/* --- START FILE: contact.css --- */
:root {
    --orange: #f24200;
    --orange-glow: rgba(242, 66, 0, 0.18);
    --orange-pale: rgba(242, 66, 0, 0.06);
    --dark: #1a1a18;
    --dark2: #2c2c28;
    --mid: #6a6a60;
    --soft: #9a9a90;
    --light: #f7f6f2;
    --border: #e6e4de;
    --white: #ffffff;
}

/* ══════════════════════════
   CONTACT BODY
══════════════════════════ */
.contact-body {
    max-width: 1240px;
    margin: 0 auto;
    padding: 80px 48px 100px;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 80px;
    align-items: start;
}

/* ─── FORM SIDE ─── */
.form-header {
    margin-bottom: 44px;
}

.form-label {
    font-family: "Syne", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-label::before {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--orange);
}

.form-h2 {
    font-family: "Fraunces", serif;
    font-size: 44px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.form-h2 .i {
    font-style: italic;
    font-weight: 300;
    color: var(--orange);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group.full {
    grid-column: 1 / -1;
}

/* floating label inputs */
.fl-wrap {
    position: relative;
}

.fl-input,
.fl-textarea,
.fl-select {
    width: 100%;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 22px 18px 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--dark);
    outline: none;
    transition:
        border-color 0.25s,
        box-shadow 0.25s;
    appearance: none;
}

.fl-input:focus,
.fl-textarea:focus,
.fl-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(242, 66, 0, 0.1);
}

.fl-textarea {
    min-height: 140px;
    resize: vertical;
}

.fl-select {
    cursor: pointer;
}

.fl-label {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--soft);
    pointer-events: none;
    transition:
        top 0.2s ease,
        font-size 0.2s ease,
        color 0.2s ease;
}

.fl-textarea~.fl-label {
    top: 22px;
    transform: none;
}

.fl-input:focus~.fl-label,
.fl-input:not(:placeholder-shown)~.fl-label,
.fl-textarea:focus~.fl-label,
.fl-textarea:not(:placeholder-shown)~.fl-label,
.fl-select:focus~.fl-label,
.fl-select.has-val~.fl-label {
    top: 10px;
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--orange);
    transform: none;
}

/* service type selector tabs */
.service-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.stab {
    padding: 9px 18px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    font-size: 13px;
    color: var(--mid);
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    background: var(--white);
}

.stab:hover {
    border-color: var(--orange);
    color: var(--dark);
}

.stab.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    font-weight: 500;
}

.stab-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--soft);
    margin-bottom: 12px;
}

/* submit btn */
.form-submit {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--orange);
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 17px 36px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(242, 66, 0, 0.35);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    width: 100%;
    justify-content: center;
}

.form-submit::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.13);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
}

.form-submit:hover::before {
    transform: translateX(0);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(242, 66, 0, 0.45);
}

.submit-arrow {
    display: inline-block;
    transition: transform 0.25s;
}

.form-submit:hover .submit-arrow {
    transform: translateX(5px);
}

.form-note {
    font-size: 12px;
    color: var(--soft);
    text-align: center;
    margin-top: 12px;
}

/* success state */
.success-msg {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 32px;
    background: var(--light);
    border-radius: 16px;
    border: 1.5px solid var(--border);
}

.success-msg.show {
    display: flex;
    animation: fadeUp 0.5s ease;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.success-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.success-h {
    font-family: "Fraunces", serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.success-p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.7;
}

/* ─── INFO SIDE ─── */
.info-side {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* info cards */
.info-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition:
        border-color 0.25s,
        box-shadow 0.25s,
        transform 0.25s;
}

.info-card:hover {
    border-color: rgba(242, 66, 0, 0.35);
    box-shadow: 0 12px 40px rgba(242, 66, 0, 0.09);
    transform: translateY(-3px);
}

.info-card-head {
    background: var(--dark);
    padding: 28px 28px 22px;
    position: relative;
    overflow: hidden;
}

.info-card-head::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(242, 66, 0, 0.22) 0%,
            transparent 70%);
    pointer-events: none;
}

.info-card-eyebrow {
    font-family: "Syne", sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card-eyebrow::before {
    content: "";
    width: 16px;
    height: 1.5px;
    background: var(--orange);
}

.info-card-title {
    font-family: "Fraunces", serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.info-card-title .org {
    color: var(--orange);
}

.info-card-body {
    padding: 24px 28px;
    background: var(--white);
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
}

.info-row:last-child {
    border-bottom: none;
}

.info-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--orange-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s;
}

.info-card:hover .info-icon {
    background: rgba(242, 66, 0, 0.12);
}

.info-icon svg {
    width: 15px;
    height: 15px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-text-label {
    font-size: 10.5px;
    color: var(--soft);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.info-text-val {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--dark);
}

.info-text-val a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
}

.info-text-val a:hover {
    color: var(--orange);
}

/* hours card */
.hours-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition:
        border-color 0.25s,
        box-shadow 0.25s,
        transform 0.25s;
}

.hours-card:hover {
    border-color: rgba(242, 66, 0, 0.35);
    box-shadow: 0 12px 40px rgba(242, 66, 0, 0.09);
    transform: translateY(-3px);
}

.hours-card-head {
    background: var(--orange);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hours-head-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hours-head-icon svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hours-head-title {
    font-family: "Fraunces", serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.hours-head-sub {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 2px;
}

.hours-body {
    padding: 6px 28px 20px;
    background: var(--white);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13.5px;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    color: var(--mid);
    font-weight: 400;
}

.hours-time {
    color: var(--dark);
    font-weight: 500;
}

.hours-badge {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 100px;
    background: rgba(242, 66, 0, 0.1);
    color: var(--orange);
}

/* response guarantee */
.guarantee-strip {
    border-radius: 14px;
    background: var(--dark);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.25s;
}

.guarantee-strip:hover {
    transform: translateY(-2px);
}

.guarantee-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(242, 66, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.guarantee-title {
    font-size: 14.5px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 3px;
}

.guarantee-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

/* ══════════════════════════
   MAP / LOCATION SECTION
══════════════════════════ */
.map-section {
    background: var(--light);
    padding: 90px 48px;
}

.map-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.map-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
}

.map-frame {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 360px;
    background: #ddd;
    border: 1.5px solid var(--border);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 360px;
    background: linear-gradient(135deg, #e8e6df 0%, #d8d5cc 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.map-pin-anim {
    width: 52px;
    height: 52px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-pin-anim::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(242, 66, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.map-pin-anim::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: rgba(242, 66, 0, 0.35);
    animation: pulse 2s ease-in-out 0.4s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.3;
    }
}

.pin-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--orange);
    z-index: 1;
}

.map-placeholder-text {
    font-size: 13px;
    color: var(--mid);
    letter-spacing: 0.04em;
}

.coverage-card {
    background: var(--dark);
    border-radius: 16px;
    padding: 28px;
}

.coverage-title {
    font-family: "Fraunces", serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.coverage-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin-bottom: 24px;
}

.coverage-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.coverage-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition:
        border-color 0.2s,
        color 0.2s;
}

.coverage-list li:hover {
    border-color: rgba(242, 66, 0, 0.3);
    color: #fff;
}

.coverage-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

.coverage-check {
    margin-left: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(242, 66, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverage-check svg {
    width: 10px;
    height: 10px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.postcode-input-wrap {
    margin-top: 20px;
    position: relative;
}

.postcode-input {
    width: 100%;
    padding: 13px 18px;
    padding-right: 48px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.25s;
}

.postcode-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.postcode-input:focus {
    border-color: var(--orange);
}

.postcode-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: var(--orange);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.postcode-btn:hover {
    background: #d63a00;
}

.postcode-btn svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ══════════════════════════
   FOOTER BAND
══════════════════════════ */
.footer-band {
    background: var(--orange);
    padding: 60px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-band::before {
    content: "CONTACT";
    position: absolute;
    font-family: "Fraunces", serif;
    font-size: 220px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -0.04em;
}

.footer-band-label {
    font-family: "Syne", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 14px;
}

.footer-band-h2 {
    font-family: "Fraunces", serif;
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.footer-band-h2 em {
    font-style: italic;
    font-weight: 300;
}

.footer-band-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--orange);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.footer-band-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
}

/* FOOTER */
footer {
    background: var(--dark);
    padding: 44px 48px 28px;
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 28px;
    margin-bottom: 20px;
}

.footer-logo {
    font-family: "Syne", sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #fff;
}

.footer-logo .org {
    color: var(--orange);
}

.footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-copy {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.22);
    text-align: center;
    max-width: 1240px;
    margin: 0 auto;
}

/* ══════════════════════════
   SCROLL REVEAL
══════════════════════════ */
.sr {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.sr-l {
    opacity: 0;
    transform: translateX(-28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.sr-r {
    opacity: 0;
    transform: translateX(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.sr.show,
.sr-l.show,
.sr-r.show {
    opacity: 1;
    transform: none;
}

/* KEYFRAMES */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */
@media (max-width: 1080px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-right {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
    }

    .stat-block {
        width: 50%;
        text-align: left;
    }

    .hero-bg-num {
        font-size: 180px;
    }

    .contact-body {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 60px 24px 0;
    }

    .hero-h1 {
        font-size: 52px;
    }

    .contact-body {
        padding: 60px 24px 80px;
        gap: 48px;
    }

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

    .form-group.full {
        grid-column: 1;
    }

    .map-section {
        padding: 70px 24px;
    }

    .footer-band {
        padding: 50px 24px;
    }

    .footer-band-h2 {
        font-size: 34px;
    }

    footer {
       padding: 15px 2px 3px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}


/* --- START FILE: service.css --- */
.srv-body {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 0;
    align-items: start;
    opacity: 0;
    animation: fadeUp 0.7s 0.2s ease forwards;
}

/* ═══════════════════════════════════
   LEFT — SERVICE LIST
═══════════════════════════════════ */

.srv-item {
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.srv-item.is-active {
    border-bottom-color: transparent;
}

/* sweep bg */
.srv-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, #fff7f0 0%, #fef3e8 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}

.srv-item.is-active::before,
.srv-item:hover::before {
    transform: scaleX(1);
}

.srv-item-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 64px 1fr 200px auto;
    align-items: center;
    gap: 0 24px;
    padding: 28px 32px 28px 0;
    transition: padding 0.35s ease;
}

.srv-item.is-active .srv-item-inner,
.srv-item:hover .srv-item-inner {
    padding: 28px 32px;
}

/* number */
.srv-num {
    font-family: "Syne", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #d1d5db;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.srv-item.is-active .srv-num,
.srv-item:hover .srv-num {
    color: var(--orange);
}

/* title */
/* .srv-title-wrap {
} */

.srv-title {
    font-family: "Syne", sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 800;
    color: #111111;
    letter-spacing: -0.01em;
    transition: color 0.25s ease;
    line-height: 1.2;
}

.srv-item.is-active .srv-title {
    color: #111111;
}

/* subtitle revealed on active */
.srv-subtitle {
    font-size: 0.82rem;
    font-weight: 400;
    color: #9ca3af;
    margin-top: 5px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.4s ease,
        opacity 0.35s ease,
        margin-top 0.3s ease;
    line-height: 1.55;
}

.srv-item.is-active .srv-subtitle,
.srv-item:hover .srv-subtitle {
    max-height: 60px;
    opacity: 1;
    margin-top: 6px;
}

/* tags row */
.srv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    opacity: 0;
    transform: translateX(-8px);
    transition:
        opacity 0.3s 0.05s ease,
        transform 0.3s 0.05s ease;
}

.srv-item.is-active .srv-tags,
.srv-item:hover .srv-tags {
    opacity: 1;
    transform: translateX(0);
}

.srv-tag {
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    background: var(--orange-pale);
    border: 1px solid rgba(218, 41, 28, 0.25);
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

/* arrow */
.srv-arrow-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.srv-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.srv-item.is-active .srv-arrow,
.srv-item:hover .srv-arrow {
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(45deg);
}

.srv-arrow svg {
    stroke: #9ca3af;
    transition: stroke 0.3s ease;
}

.srv-item.is-active .srv-arrow svg,
.srv-item:hover .srv-arrow svg {
    stroke: #ffffff;
}

/* mobile image revealed inside item */
.srv-item-img-mobile {
    display: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 0;
    transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 12px;
    margin: 0 32px 0 0;
}

/* ═══════════════════════════════════
   RIGHT — STICKY IMAGE PANEL
═══════════════════════════════════ */
.srv-panel {
    position: sticky;
    top: 40px;
    height: calc(100vh - 80px);
    max-height: 700px;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    background: #111111;
}

/* image stack */
.srv-panel-img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.06);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}

.srv-panel-img.is-visible {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.srv-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.72);
}

/* panel overlay */
.srv-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            transparent 80%);
    z-index: 2;
}

/* panel info */
.srv-panel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 36px;
}

.srv-panel-num {
    font-family: "Syne", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--orange);
    margin-bottom: 10px;
}

.srv-panel-name {
    font-family: "Syne", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.015em;
    line-height: 1.1;
    margin-bottom: 12px;
}

.srv-panel-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    max-width: 36ch;
    margin-bottom: 24px;
}

.srv-panel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.srv-panel-chip {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 5px 12px;
    border-radius: 999px;
}

.srv-panel-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #ffffff;
    font-family: "Syne", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.srv-panel-btn:hover {
    background: var(--orange-light);
    transform: translateX(3px);
}

/* animated info transition */
.srv-panel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    padding: 36px;
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.5s 0.2s ease,
        transform 0.5s 0.2s ease;
}

.srv-panel-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* orange side accent line */
.srv-panel-line {
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    width: 4px;
    background: linear-gradient(to bottom,
            transparent,
            var(--orange) 30%,
            var(--orange) 70%,
            transparent);
    z-index: 5;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.srv-panel-line.is-visible {
    opacity: 1;
}

/* progress dots */
.srv-panel-dots {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.srv-panel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.srv-panel-dot.is-active {
    background: var(--orange);
    transform: scale(1.4);
}

/* ═══════════════════════════════════
   BOTTOM CTA
═══════════════════════════════════ */
.srv-footer {
    margin-top: 72px;
    padding: 56px;
    background: var(--bg-soft);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    border: 1.5px solid var(--border);
    opacity: 0;
    animation: fadeUp 0.7s 0.5s ease forwards;
}

.srv-footer-left h3 {
    font-family: "Syne", sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: #111111;
    letter-spacing: -0.015em;
    margin-bottom: 6px;
}

.srv-footer-left p {
    font-size: 0.95rem;
    color: #9ca3af;
    font-weight: 400;
}

.srv-footer-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #ffffff;
    font-family: "Syne", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition:
        background 0.2s,
        transform 0.2s;
}

.btn-orange:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #111111;
    color: #ffffff;
    font-family: "Syne", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition:
        background 0.2s,
        transform 0.2s;
}

.btn-dark:hover {
    background: #333;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════
   KEYFRAMES
═══════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1200px) {
    .service {
        margin: auto 0;
    }
}

@media (max-width: 1024px) {
    .service {
        margin: auto;
    }

    .srv-body {
        grid-template-columns: 1fr;
    }

    .srv-panel {
        display: none;
    }

    .srv-item-img-mobile {
        display: block;
        margin-left: 0;
    }

    .srv-item.is-active .srv-item-img-mobile {
        height: 220px;
        margin-bottom: 20px;
        padding: 0 0 0 88px;
    }

    .srv-item-img-mobile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    .srv-item-inner {
        grid-template-columns: 56px 1fr auto;
    }

    .srv-tags {
        display: none;
    }
}

@media (max-width: 600px) {
    .srv-inner {
        padding: 0 20px;
    }

    .srv-item-inner {
        grid-template-columns: 44px 1fr auto;
        gap: 0 14px;
    }

    .srv-footer {
        padding: 32px 24px;
        flex-direction: column;
        align-items: flex-start;
    }
}


/* --- START FILE: services-list.css --- */
/* ── SERVICES LIST (INDEX PAGE REDESIGN) ── */
.jd-serv-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.jd-serv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

/* Responsive breakpoints */
@media (max-width: 992px) {
    .jd-serv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .jd-serv-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.jd-serv-card {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.jd-serv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(42, 23, 104, 0.08);
    border-color: rgba(42, 23, 104, 0.15);
}

/* Gold/Red border sweep accent */
.jd-serv-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2A1768, #DA291C);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 20;
}

.jd-serv-card:hover::after {
    transform: scaleX(1);
}

.jd-serv-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.jd-serv-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Elegant gradient from bottom of image */
.jd-serv-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.3) 60%, rgba(15, 23, 42, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    z-index: 10;
}

.jd-serv-num {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 100px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 8px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.jd-serv-title {
    color: #ffffff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.jd-serv-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
    position: relative;
}

.jd-serv-line {
    width: 32px;
    height: 3px;
    background-color: #DA291C;
    border-radius: 2px;
    margin-bottom: 20px;
    transition: width 0.3s ease;
}

.jd-serv-card:hover .jd-serv-line {
    width: 60px;
}

.jd-serv-text {
    color: #4b5563;
    font-family: 'Barlow', sans-serif;
    font-size: 15.5px;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 24px;
    font-weight: 500;
    flex-grow: 1;
}

.jd-serv-btn {
    text-decoration: none;
    color: #2A1768;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    align-self: flex-start;
    transition: color 0.3s ease;
}

.jd-serv-btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(42, 23, 104, 0.08);
    color: #2A1768;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.jd-serv-card:hover .jd-serv-btn {
    color: #DA291C;
}

.jd-serv-card:hover .jd-serv-btn span {
    background: #DA291C;
    color: #ffffff;
    transform: translateX(4px);
}

@media (max-width: 576px) {
    .jd-serv-container {
        padding: 0 16px;
        margin: 40px auto;
    }

    .jd-serv-body {
        padding: 24px 16px;
    }
}


/* --- START FILE: service-detail.css --- */
/* ── SERVICE DETAIL PAGE ── */
#service-detail {
    background: #ffffff;
}

#service-detail * {
    box-sizing: border-box;
}

#service-detail .eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
    display: inline-block;
}

#service-detail .h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

/* TWO COLUMN GRID */
#service-detail .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 992px) {
    #service-detail .about-grid {
        grid-template-columns: 7.5fr 4.5fr;
        gap: 56px;
    }
}

/* LEFT COLUMN - CONTENT */
.about-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-section-block {
    background: #ffffff;
    margin-bottom: 48px;
}

.service-section-block:last-child {
    margin-bottom: 0;
}

.section-block-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--dark);
    margin-top: 24px;
    margin-bottom: 18px;
    letter-spacing: -0.2px;
}

.section-image-wrapper {
    position: relative;
    width: 100%;
    max-height: 480px;
    border-radius: 16px;
    overflow: hidden;
    margin: 24px 0;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.section-img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-image-wrapper:hover .section-img {
    transform: scale(1.04);
}

.section-content {
    font-family: 'Barlow', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #4a4a4d;
    line-height: 1.8;
}

.section-content p {
    margin-bottom: 16px;
}

.section-content p:last-child {
    margin-bottom: 0;
}

.section-content strong {
    font-weight: 700;
    color: var(--dark);
}

.section-content ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-content ul li {
    position: relative;
    padding-left: 28px;
    font-size: 16.5px;
    line-height: 1.6;
}

.section-content ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 5px;
    width: 14px;
    height: 8px;
    border-left: 2.5px solid var(--orange);
    border-bottom: 2.5px solid var(--orange);
    transform: rotate(-45deg);
}

/* EXTRA CONTENT BLOCK */
.section-extra-content {
    margin-top: 28px;
    border-left: 4px solid var(--orange);
    background: var(--orange-pale);
    border-radius: 0 16px 16px 0;
    overflow: hidden;
}

.extra-content-inner {
    padding: 24px 28px;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    color: #444446;
}

.extra-content-inner p {
    margin-bottom: 12px;
}

.extra-content-inner p:last-child {
    margin-bottom: 0;
}

.extra-content-inner strong {
    color: var(--dark);
    font-weight: 700;
}

/* RIGHT COLUMN - SIDEBAR */
.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 992px) {
    .about-sidebar {
        position: sticky;
        top: 100px;
        z-index: 10;
    }
}

/* SIDEBAR CARD */
.sidebar-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.sc-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--dark);
    margin-bottom: 24px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.sc-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
}

/* QUICK CTA CARD */
.cta-card {
    background: var(--dark);
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.cta-card .sc-title::after {
    display: none;
}

.cta-card-badge {
    background: rgba(249, 115, 22, 0.15);
    color: var(--orange-light);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 18px;
}

.cta-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.sidebar-phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    margin-bottom: 14px;
    transition: all 0.25s ease;
}

.sidebar-phone-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.icon-phone {
    width: 18px;
    height: 18px;
    stroke: var(--orange-light);
}

.cta-card .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.icon-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.cta-card .cta-btn:hover .icon-arrow {
    transform: translateX(4px);
}

/* OTHER SERVICES LIST */
.sc-services-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sc-service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--dark);
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.sc-service-link:hover {
    background: var(--orange-pale);
    color: var(--orange);
    border-color: rgba(224, 120, 32, 0.2);
}

.sc-service-link.active {
    background: var(--orange);
    color: #ffffff;
    border-color: var(--orange);
}

.chevron-right {
    width: 16px;
    height: 16px;
    opacity: 0.6;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.sc-service-link:hover .chevron-right {
    transform: translateX(4px);
    opacity: 1;
}

.sc-service-link.active .chevron-right {
    color: #ffffff;
    opacity: 1;
    transform: translateX(2px);
}

/* TRUST BENEFITS CARD */
.sc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.sc-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.sc-icon-wrap {
    width: 34px;
    height: 34px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sc-icon-wrap svg {
    width: 18px;
    height: 18px;
}

.sc-benefit-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sc-benefit-content strong {
    font-family: 'Barlow', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--dark);
}

.sc-benefit-sub {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.45;
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    #service-detail {
        padding: 60px 0;
    }

    #service-detail .h2 {
        margin-bottom: 30px;
    }

    .about-sidebar {
        margin-top: 24px;
    }
}

/* ── MODERN SERVICE DETAIL CARDS ── */
.service-cards-list {
    display: flex;
    flex-direction: column;
    gap: 72px;
    width: 100%;
    margin-top: 20px;
}

/* Base Card Styling with Staggered Entrance Animation */
.service-detail-card {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    background: #ffffff;
    border-radius: 32px;
    padding: 48px;
    align-items: center;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
    opacity: 0;
    transform: translateY(40px);
    animation: cardEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Staggered animation delays for up to 6 cards */
.service-detail-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-detail-card:nth-child(2) {
    animation-delay: 0.25s;
}

.service-detail-card:nth-child(3) {
    animation-delay: 0.4s;
}

.service-detail-card:nth-child(4) {
    animation-delay: 0.55s;
}

.service-detail-card:nth-child(5) {
    animation-delay: 0.7s;
}

.service-detail-card:nth-child(6) {
    animation-delay: 0.85s;
}

@keyframes cardEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card hover glow and translation */
.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(var(--theme-rgb), 0.12);
    border-color: rgba(var(--theme-rgb), 0.2);
}

/* Card Glow Blobs Container (masks blur blobs inside card) */
.card-glow-container {
    position: absolute;
    inset: 0;
    border-radius: 32px;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.card-glow-blob {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    filter: blur(80px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.blob-1 {
    top: -90px;
    right: -30px;
    background: rgba(var(--theme-rgb), 0.15);
}

.blob-2 {
    bottom: -110px;
    left: -50px;
    background: rgba(var(--theme-rgb), 0.1);
}

.service-detail-card:hover .blob-1 {
    opacity: 1;
    transform: translate(-40px, 30px) scale(1.15);
}

.service-detail-card:hover .blob-2 {
    opacity: 1;
    transform: translate(40px, -30px) scale(1.15);
}

/* Content & Image Columns */
.card-content-col {
    order: 1;
    position: relative;
    z-index: 2;
}

.card-image-col {
    order: 2;
    position: relative;
    height: 100%;
    align-self: stretch;
    display: flex;
    align-items: center;
    z-index: 2;
}

.service-detail-card.layout-reversed .card-content-col {
    order: 2;
}

.service-detail-card.layout-reversed .card-image-col {
    order: 1;
}

/* Meta header */
.card-header-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.card-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    color: var(--theme-color);
    transition: text-shadow 0.4s ease, transform 0.4s ease;
}

.service-detail-card:hover .card-number {
    transform: scale(1.08) translateY(-2px);
    text-shadow: 0 4px 20px rgba(var(--theme-rgb), 0.3);
}

.card-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--theme-color);
    transition: transform 0.4s ease;
}

.service-detail-card:hover .card-eyebrow {
    transform: translateX(4px);
}

/* Card Title with sliding underline accent */
.card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.card-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: var(--theme-color);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-detail-card:hover .card-title::after {
    width: 72px;
}

.card-description {
    font-family: 'Barlow', sans-serif;
    font-size: 16.5px;
    line-height: 1.8;
    color: #4b5563;
}

.card-description p {
    margin-bottom: 14px;
}

.card-description p:last-child {
    margin-bottom: 0;
}

/* Highlighted extra content block */
.card-extra-content {
    margin-top: 24px;
    padding: 18px 22px;
    border-radius: 0 16px 16px 0;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    border-left: 4px solid var(--theme-color);
    background: var(--theme-color-light);
    box-shadow: inset 2px 0 8px rgba(var(--theme-rgb), 0.02);
}

.card-extra-content p {
    margin-bottom: 0;
}

/* Features grid & items */
.card-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
    margin-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 28px;
}

.card-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    border-radius: 14px;
    border: 1px solid transparent;
    position: relative;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Creative glassmorphic background sweep on item hover */
.card-feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(var(--theme-rgb), 0.08);
    box-shadow: 0 6px 16px rgba(var(--theme-rgb), 0.03);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.service-detail-card:hover .card-feature-item:hover {
    transform: translateY(-3px);
}

.service-detail-card:hover .card-feature-item:hover::before {
    opacity: 1;
    transform: scale(1);
}

.feature-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(var(--theme-rgb), 0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
}

.card-feature-item:hover .feature-icon-wrapper {
    transform: scale(1.15) rotate(-10deg);
    background: rgba(var(--theme-rgb), 0.15);
}

.feature-icon-svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.2;
    stroke: var(--theme-color);
}

.feature-text {
    font-family: 'Barlow', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: #374151;
}

/* Image wrappers & Zoom + Shine Sweep effects */
.card-img-wrap {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
}

/* Light sweep shine overlay */
.card-img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 2;
}

.service-detail-card:hover .card-img-wrap::after {
    animation: shineEffect 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes shineEffect {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

.card-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-detail-card:hover .card-img {
    transform: scale(1.05);
}

/* Centered Overlapping Badge Divider */
.card-badge-divider {
    position: absolute;
    z-index: 10;
    top: 50%;
}

.circle-badge {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background: var(--theme-color);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.6s ease;
    position: relative;
    cursor: pointer;
}

/* Badge breathing pulse effect */
.circle-badge::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 4px solid var(--theme-color);
    border-radius: 50%;
    opacity: 0.4;
    animation: badgePulse 2.5s infinite ease-in-out;
    z-index: -1;
}

/* Scale up & rotate on card hover */
.service-detail-card:hover .circle-badge {
    transform: scale(1.12) rotate(12deg);
    box-shadow: 0 12px 30px rgba(var(--theme-rgb), 0.3);
}

/* Extra 360 spin when hovering badge directly */
.circle-badge:hover {
    transform: scale(1.18) rotate(360deg) ;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

.circle-badge svg {
    width: 28px;
    height: 28px;
    stroke: #ffffff;
}

/* Layout specific badge alignments */
.layout-normal .card-badge-divider {
    left: 0;
    transform: translate(-50%, -50%);
}

.layout-reversed .card-badge-divider {
    right: 0;
    transform: translate(50%, -50%);
}

/* Theme Configuration Variables */

/* Orange Theme */
.theme-orange {
    --theme-color: #f26522;
    --theme-color-light: rgba(242, 101, 34, 0.04);
    --theme-rgb: 242, 101, 34;
}

/* Slate Blue Theme */
.theme-slate {
    --theme-color: #1e293b;
    --theme-color-light: rgba(30, 41, 59, 0.04);
    --theme-rgb: 30, 41, 59;
}

/* Green Theme */
.theme-green {
    --theme-color: #3b7a57;
    --theme-color-light: rgba(59, 122, 87, 0.04);
    --theme-rgb: 59, 122, 87;
}

/* Responsive adjustment rules */
@media (max-width: 991px) {
    .service-cards-list {
        gap: 56px;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 36px 24px;
        border-radius: 28px;
    }

    .card-glow-blob {
        width: 250px;
        height: 250px;
    }

    .card-content-col {
        order: 1 ;
    }

    .card-image-col {
        order: 2 ;
        align-self: auto;
    }

    .card-img-wrap,
    .card-img {
        min-height: 300px;
        border-radius: 20px;
    }

    .card-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 24px;
        padding-top: 20px;
    }

    /* Center overlapping badge on the top edge of the image column on mobile */
    .layout-normal .card-badge-divider,
    .layout-reversed .card-badge-divider {
        left: 50%;
        right: auto;
        top: 0;
        transform: translate(-50%, -50%);
    }
}

/* Extra Mobile Responsiveness for Screens Under 576px */
@media (max-width: 576px) {
    .service-detail-card {
        padding: 24px 16px;
        border-radius: 20px;
        gap: 28px;
    }

    .card-img-wrap,
    .card-img {
        min-height: 220px;
        border-radius: 16px;
    }

    .circle-badge {
        width: 56px;
        height: 56px;
        border-width: 4px;
    }

    .circle-badge svg {
        width: 22px;
        height: 22px;
    }

    .card-title {
        margin-bottom: 16px;
    }

    .card-features-grid {
        margin-top: 24px;
        padding-top: 18px;
        gap: 8px;
    }

    .card-feature-item {
        padding: 8px 12px;
        gap: 10px;
    }
}

/* --- START FILE: steps-section.css --- */
.steps-new {
    --bg: #ffffff;
    --black: #0d0d0b;
    --orange: #f55612;
    --orange2: #ff7c3e;
    --orange-pale: #fff3ee;
    --orange-soft: #ffd5b8;
    --gray: #f7f6f3;
    --border: #ece9e2;
    --muted: #9a9590;
}

/* ROW WRAP */
.steps-new .row-wrap {
    position: relative;
    opacity: 0;
    animation: stepsFadeUp 0.7s 0.3s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* CONNECTOR LINE */
.steps-new .connector-line {
    position: absolute;
    top: 44px;
    left: calc(12.5%);
    right: calc(12.5%);
    height: 2px;
    background: var(--border);
    z-index: 0;
    overflow: hidden;
}

.steps-new .connector-line:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--orange), var(--orange2));
    transform: scaleX(0);
    transform-origin: left;
    animation: stepsLineGrow 1.2s 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes stepsLineGrow {
    to {
        transform: scaleX(1);
    }
}

/* CARDS GRID */

.steps-new .steps-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* CARD */

.steps-new .steps-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
}

.steps-new .steps-card:nth-child(1) {
    animation: stepsCardIn 0.65s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.steps-new .steps-card:nth-child(2) {
    animation: stepsCardIn 0.65s 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.steps-new .steps-card:nth-child(3) {
    animation: stepsCardIn 0.65s 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.steps-new .steps-card:nth-child(4) {
    animation: stepsCardIn 0.65s 0.95s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes stepsCardIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

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

/* NODE */

.steps-new .node {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

.steps-new .steps-card:hover .node {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 0 0 10px rgba(245, 86, 18, 0.1);
}

/* BOX */

.steps-new .card-box {
    background: var(--gray);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 28px 22px 30px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}

.steps-new .card-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange2));
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.5s;
}

.steps-new .steps-card:hover .card-box {
    background: #fff;
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(245, 86, 18, 0.1);
    border-color: var(--orange-soft);
}

.steps-new .steps-card:hover .card-box:before {
    transform: scaleX(1);
}

/* ARROW */

.steps-new .card-box-arrow {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 10px solid var(--border);
}

.steps-new .steps-card:hover .card-box-arrow {
    border-bottom-color: var(--orange-soft);
}

/* ICON */

.steps-new .icon-bubble {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: var(--orange-pale);
    border: 1.5px solid var(--orange-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: 0.4s;
}

.steps-new .steps-card:hover .icon-bubble {
    background: var(--orange);
    transform: rotate(-8deg) scale(1.12);
    box-shadow: 0 8px 24px rgba(245, 86, 18, 0.25);
}

.steps-new .steps-card:hover .icon-bubble svg {
    stroke: #fff;
}

/* TEXT */

.steps-new .card-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.steps-new .steps-card:hover .card-title {
    color: var(--orange);
}

.steps-new .card-body {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.7;
}

.steps-new .card-pill {
    display: inline-block;
    margin-top: 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--orange);
    background: var(--orange-pale);
    padding: 5px 13px;
    border-radius: 100px;
    border: 1px solid var(--orange-soft);
}

.steps-new .steps-card:hover .card-pill {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

/* ANIMATION */

@keyframes stepsFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */

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

    .steps-new .connector-line {
        display: none;
    }
}

@media (max-width: 540px) {
    .steps-new .steps-cards {
        grid-template-columns: 1fr;
    }
}


/* --- START FILE: why-choose.css --- */
/* DIFFERENCE SECTION */
.diff {
    padding: 20px;
    /* background: #0f0f11; */
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

/* LEFT CONTENT */
.diff-content {
    position: relative;
    z-index: 2;
}

.section-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* FEATURES */
.diff-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.diff-item {
    display: flex;
    gap: 20px;
    padding: 15px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: 0.35s;
    backdrop-filter: blur(8px);
}

.diff-item:hover {
    transform: translateX(12px);
    border-color: rgba(255, 90, 0, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.diff-icon {
    width: 60px;
    height: 60px;
    background: #ff5a00;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.diff-content h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.diff-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* RIGHT IMAGE */
.diff-visual {
    border-radius: 36px;
    overflow: hidden;
    height: 600px;
    position: relative;
}

.diff-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.diff-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0f0f11, transparent);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .diff {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .diff-visual {
        height: 420px;
    }

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


/* --- START FILE: faqs.css --- */
/* ═══════════════════════════════
SECTION
═══════════════════════════════ */
.faq-section {
    overflow: hidden;
}

.faq-container {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: start;
}

/* ═══════════════════════════════
LEFT PANEL
═══════════════════════════════ */
.faq-left {
    position: sticky;
    top: 60px;
    opacity: 0;
    animation: slideInLeft 0.8s 0.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* image wrapper */
.faq-img-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.faq-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    filter: brightness(0.88);
}

.faq-img-wrap:hover img {
    transform: scale(1.05);
}

/* image overlay gradient */
.faq-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.55) 0%,
            transparent 55%);
    border-radius: 22px;
}

/* image bottom badge */
.faq-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-img-badge-icon {
    width: 36px;
    height: 36px;
    background: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.faq-img-badge-text strong {
    display: block;
    font-family: "Syne", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 2px;
}

.faq-img-badge-text span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
}

/* orange corner accent */
.faq-img-corner {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 80px;
    height: 80px;
    background: var(--orange);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0.9;
}

.faq-img-corner-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 1rem;
}

/* stats row under image */
.faq-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 20px;
    background: #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.faq-stat {
    background: #fafafa;
    padding: 18px 14px;
    text-align: center;
    transition: background 0.25s ease;
}

.faq-stat:hover {
    background: var(--orange-pale);
}

.faq-stat strong {
    display: block;
    font-family: "Syne", sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #111111;
    line-height: 1;
    margin-bottom: 4px;
}

.faq-stat strong span {
    color: var(--orange);
}

.faq-stat small {
    font-size: 0.7rem;
    font-weight: 500;
    color: #9ca3af;
    letter-spacing: 0.04em;
}

/* ═══════════════════════════════
RIGHT — ACCORDION
═══════════════════════════════ */
.faq-right {
    padding-top: 4px;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
    opacity: 0;
    transform: translateY(20px);
}

/* entrance animations staggered */
.faq-item:nth-child(1) {
    animation: fadeUp 0.55s 0.15s ease forwards;
}

.faq-item:nth-child(2) {
    animation: fadeUp 0.55s 0.22s ease forwards;
}

.faq-item:nth-child(3) {
    animation: fadeUp 0.55s 0.29s ease forwards;
}

.faq-item:nth-child(4) {
    animation: fadeUp 0.55s 0.36s ease forwards;
}

.faq-item:nth-child(5) {
    animation: fadeUp 0.55s 0.43s ease forwards;
}

.faq-item:nth-child(6) {
    animation: fadeUp 0.55s 0.5s ease forwards;
}

.faq-item:nth-child(7) {
    animation: fadeUp 0.55s 0.57s ease forwards;
}

.faq-item:nth-child(8) {
    animation: fadeUp 0.55s 0.64s ease forwards;
}

/* bg sweep on hover */
.faq-item {
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.faq-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff7f0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}

.faq-item:hover::before,
.faq-item.is-open::before {
    transform: scaleX(1);
}

.faq-item.is-open {
    border-bottom-color: rgba(249, 115, 22, 0.3);
}

/* question button */
.faq-btn {
    position: relative;
    z-index: 1;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 20px 28px 0;
    text-align: left;
    transition: padding 0.3s ease;
}

.faq-item.is-open .faq-btn,
.faq-item:hover .faq-btn {
    padding: 28px 20px;
}

/* number badge */
.faq-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Syne", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    color: #9ca3af;
    letter-spacing: 0.05em;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.faq-item.is-open .faq-num,
.faq-item:hover .faq-num {
    background: var(--orange);
    border-color: var(--orange);
    color: #ffffff;
}

/* question text */
.faq-q {
    flex: 1;
    font-family: "Syne", sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.35;
    letter-spacing: -0.005em;
    transition: color 0.2s ease;
}

.faq-item.is-open .faq-q {
    color: var(--orange);
}

/* icon */
.faq-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item:hover .faq-icon {
    border-color: var(--orange);
}

.faq-item.is-open .faq-icon {
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(45deg);
}

.faq-icon svg {
    transition: stroke 0.25s ease;
    stroke: #9ca3af;
}

.faq-item:hover .faq-icon svg {
    stroke: var(--orange);
}

.faq-item.is-open .faq-icon svg {
    stroke: #ffffff;
}

/* answer panel */
.faq-answer {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer-content {
    display: block;
    padding: 0 20px 28px 78px;
    opacity: 0;
    transform: translateY(-8px);
    transition:
        opacity 0.35s 0.1s ease,
        transform 0.35s 0.1s ease;
}

.faq-item.is-open .faq-answer-content {
    opacity: 1;
    transform: translateY(0);
}

.faq-answer-text p {
    font-size: 0.9rem;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 14px;
}

/* chips inside answer */
.faq-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.faq-chip {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
    background: var(--orange-pale);
    border: 1px solid rgba(218, 41, 28, 0.2);
    padding: 4px 10px;
    border-radius: 999px;
}

/* small image inside answer */
.faq-answer-img {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    flex-shrink: 0;
}

.faq-answer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.88);
    transition: transform 0.5s ease;
}

.faq-item.is-open .faq-answer-img img {
    transform: scale(1.06);
}

/* ═══════════════════════════════
CTA STRIP AT BOTTOM
═══════════════════════════════ */
.faq-cta {
    margin-top: 0;
    grid-column: 1 / -1;
    max-width: 1240px;
    margin: 64px auto 0;
    padding: 0 48px;
    opacity: 0;
    animation: fadeUp 0.7s 0.7s ease forwards;
}

.faq-cta-inner {
    background: #111111;
    border-radius: 24px;
    padding: 48px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.faq-cta-inner::before {
    content: "";
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(249, 115, 22, 0.22) 0%,
            transparent 65%);
    pointer-events: none;
}

.faq-cta-text h3 {
    font-family: "Syne", sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.015em;
    margin-bottom: 8px;
}

.faq-cta-text p {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    max-width: 44ch;
}

.faq-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #ffffff;
    font-family: "Syne", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.2s,
        box-shadow 0.2s;
    white-space: nowrap;
}

.btn-orange:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(218, 41, 28, 0.45);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #ffffff;
    font-family: "Syne", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition:
        border-color 0.2s,
        transform 0.2s;
    white-space: nowrap;
}

.btn-outline-white:hover {
    border-color: rgba(255, 255, 255, 0.65);
    transform: translateY(-2px);
}

/* ═══════════════════════════════
KEYFRAMES
═══════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-32px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ═══════════════════════════════
RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1024px) {
    .faq-container {
        grid-template-columns: 340px 1fr;
        gap: 48px;
    }

    .faq-answer-content {
        grid-template-columns: 1fr 120px;
        padding-left: 58px;
    }
}

@media (max-width: 860px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .faq-left {
        position: static;
    }

    .faq-cta {
        padding: 0 24px;
    }

    .faq-cta .btn-orange,
    .faq-cta .btn-outline-white {
        padding: 7px 18px;
        font-size: 10px;
    }
}

@media (max-width: 560px) {

    .faq-section,
    .section-pad,
    .stpes-new {
        padding: 21px 0;
    }

    .faq-container {
        padding: 0 20px;
    }

    .faq-answer-content {
        grid-template-columns: 1fr;
        padding-left: 0;
    }

    .faq-answer-img {
        display: none;
    }

    .faq-cta-inner {
        padding: 25px 17px;
    }

    .faq-cta-text h3 {
        font-size: 20px;
    }
}


/* --- START FILE: recycle.css --- */
:root {
    --forest: #1a2e1e;
    --deep: #0f1c12;
    --gold: #f97316;
    --gold-light: #f97316;
    --cream: #f5f0e8;
    --cream-dim: #d8d0c0;
    --white: #ffffff;
}



/* ── LEFT PANEL ── */
.panel-image {
    position: relative;
    overflow: hidden;
}

.panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.6) brightness(0.75);
    transform: scale(1.05);
    transition: transform 8s ease;
}

.recycle-grid-wrap:hover .panel-image img {
    transform: scale(1);
}

/* Dark gradient overlay blending into right */
.panel-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(15, 28, 18, 0.2) 0%,
            rgba(15, 28, 18, 0.6) 70%,
            rgba(15, 28, 18, 1) 100%);
}

/* Top-left corner accent line */
/* .panel-image::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 32px;
    width: 48px;
    height: 48px;
    border-top: 1.5px solid var(--gold);
    border-left: 1.5px solid var(--gold);
    z-index: 2;
    opacity: 0.8;
} */
/* Year stamp on image */
.image-stamp {
    position: absolute;
    bottom: 36px;
    left: 36px;
    z-index: 3;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: rgba(201, 168, 76, 0.7);
    text-transform: uppercase;
}

/* ── RIGHT PANEL ── */
.panel-content {
    background: var(--deep);
    padding: 8px 1px 0px 0px;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    position: relative;
    overflow: hidden;
}

/* Grain texture overlay */
/* Subtle radial glow */
/* Bottom-right corner accent */
/* .corner-accent {
    position: absolute;
    bottom: 32px;
    right: 32px;
    width: 40px;
    height: 40px;
    border-bottom: 1.5px solid rgba(201, 168, 76, 0.4);
    border-right: 1.5px solid rgba(201, 168, 76, 0.4);
} */
.content-top {
    position: relative;
    z-index: 1;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* margin-bottom: 32px; */
}

.tag-line {
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.tag-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

.headline {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.08;
    color: var(--cream);
    /* margin-bottom: 28px; */
    letter-spacing: -0.01em;
}

.headline em {
    font-style: italic;
    color: var(--gold-light);
}

.divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin-bottom: 10px;
}

.body-text {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(213, 203, 185, 0.72);
    max-width: 340px;
    letter-spacing: 0.015em;
}

/* ── STATS ── */
.stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    /* margin-top: 0px; */
}

.stat {
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.15);
    position: relative;
    overflow: hidden;

    cursor: default;
    transition:
        background 0.35s ease,
        border-color 0.35s ease;
}

.stat:hover {
    background: rgba(201, 168, 76, 0.06);
    border-color: rgba(201, 168, 76, 0.35);
}

.stat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.stat:hover::before {
    opacity: 1;
}

.stat-number {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-size: 44px;
    color: var(--gold-light);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.stat-sup {
    font-size: 22px;
    vertical-align: super;
    color: var(--gold);
}

.stat-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(213, 203, 185, 0.5);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tag {
    animation: fadeUp 0.7s 0.1s both ease-out;
}

.headline {
    animation: fadeUp 0.7s 0.25s both ease-out;
}

.divider {
    animation: fadeUp 0.7s 0.38s both ease-out;
}

.body-text {
    animation: fadeUp 0.7s 0.48s both ease-out;
}

.stats {
    animation: fadeUp 0.7s 0.62s both ease-out;
}

.panel-image img {
    animation: fadeUp 1s 0s both ease-out;
}

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
    .recycle-grid-wrap {
        grid-template-columns: 1fr;
        height: auto;
    }

    .panel-image {
        height: 260px;
    }

    .panel-content {
        padding: 48px 36px;
    }
}


/* --- START FILE: commercial.css --- */
/* ── GRID ── */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* ── BASE CARD ── */
.card {
    position: relative;
    border-radius: 16px;
    padding: 32px 26px 30px;
    overflow: hidden;
    cursor: default;
    isolation: isolate;
    opacity: 0;
}

/* Each card enters from a different direction */
.card:nth-child(1) {
    animation: fromLeft 0.75s 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.card:nth-child(2) {
    animation: fromTop 0.75s 0.52s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.card:nth-child(3) {
    animation: fromBot 0.75s 0.62s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.card:nth-child(4) {
    animation: fromRight 0.75s 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fromLeft {
    from {
        opacity: 0;
        transform: translateX(-56px) rotate(-4deg);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fromRight {
    from {
        opacity: 0;
        transform: translateX(56px) rotate(4deg);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fromTop {
    from {
        opacity: 0;
        transform: translateY(-44px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fromBot {
    from {
        opacity: 0;
        transform: translateY(44px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Colour themes */
.card:nth-child(odd) {
    background: linear-gradient(145deg, #2c2c2c 0%, #3a3a3a 60%, #1e1e1e 100%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.card:nth-child(even) {
    background: linear-gradient(145deg, #f7941d 0%, #e8820a 55%, #c96d00 100%);
    box-shadow: 0 4px 24px rgba(247, 148, 29, 0.28);
}

/* ═══════════════════════════════════════════
     CARD 1 — 3D Perspective Tilt + moving spotlight
  ═══════════════════════════════════════════ */
.card-1 {
    transform-style: preserve-3d;
    transition: box-shadow 0.4s;
    will-change: transform;
}

.card-1 .spotlight {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
            rgba(247, 148, 29, 0.25) 0%,
            transparent 55%);
    opacity: 0;
    transition: opacity 0.3s;
}

.card-1:hover .spotlight {
    opacity: 1;
}

.card-1:hover {
    box-shadow:
        0 28px 64px rgba(0, 0, 0, 0.4),
        0 6px 18px rgba(0, 0, 0, 0.14);
}

/* ═══════════════════════════════════════════
     CARD 2 — Concentric ripple rings on enter
  ═══════════════════════════════════════════ */
.card-2 {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.card-2:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 56px rgba(247, 148, 29, 0.5);
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    pointer-events: none;
}

.card-2.firing .ring:nth-child(1) {
    animation: ringPop 0.85s 0s ease-out forwards;
}

.card-2.firing .ring:nth-child(2) {
    animation: ringPop 0.85s 0.18s ease-out forwards;
}

.card-2.firing .ring:nth-child(3) {
    animation: ringPop 0.85s 0.36s ease-out forwards;
}

@keyframes ringPop {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.9;
    }

    100% {
        transform: translate(-50%, -50%) scale(9);
        opacity: 0;
    }
}

/* ═══════════════════════════════════════════
     CARD 3 — Glitch shake + chromatic scanlines
  ═══════════════════════════════════════════ */
.card-3 {
    transition: box-shadow 0.3s;
}

.card-3:hover {
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
}

/* scanline texture */
.card-3 .scanlines {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    pointer-events: none;
    z-index: 1;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 3px,
            rgba(247, 148, 29, 0.04) 3px,
            rgba(247, 148, 29, 0.04) 4px);
    opacity: 0;
    transition: opacity 0.25s;
}

.card-3:hover .scanlines {
    opacity: 1;
}

/* chromatic ghost clone */
.card-3 .chroma {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    pointer-events: none;
    background: inherit;
    opacity: 0;
    mix-blend-mode: screen;
}

.card-3.glitching {
    animation: glitchShake 0.45s ease;
}

.card-3.glitching .chroma {
    animation: chromaDrift 0.45s steps(2) forwards;
}

@keyframes glitchShake {
    0% {
        transform: translate(0, 0) skewX(0);
    }

    10% {
        transform: translate(-4px, 2px) skewX(-3deg);
    }

    20% {
        transform: translate(5px, -2px) skewX(3deg);
    }

    30% {
        transform: translate(-3px, 3px) skewX(-2deg);
    }

    40% {
        transform: translate(4px, -1px) skewX(2deg);
    }

    50% {
        transform: translate(-2px, 2px) skewX(-1deg);
    }

    65% {
        transform: translate(2px, 0) skewX(1deg);
    }

    80% {
        transform: translate(-1px, 1px) skewX(0);
    }

    100% {
        transform: none;
    }
}

@keyframes chromaDrift {

    0%,
    100% {
        opacity: 0;
        transform: none;
    }

    25% {
        opacity: 0.4;
        transform: translate(5px, 0);
        filter: hue-rotate(80deg) saturate(3);
    }

    55% {
        opacity: 0.4;
        transform: translate(-5px, 0);
        filter: hue-rotate(-80deg) saturate(3);
    }

    75% {
        opacity: 0;
    }
}

/* ═══════════════════════════════════════════
     CARD 4 — Magnetic cursor follow + particle burst
  ═══════════════════════════════════════════ */
.card-4 {
    transition:
        transform 0.12s ease,
        box-shadow 0.3s;
    will-change: transform;
}

.card-4:hover {
    box-shadow: 0 24px 56px rgba(247, 148, 29, 0.5);
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    width: var(--ps, 5px);
    height: var(--ps, 5px);
    background: rgba(255, 255, 255, 0.85);
    animation: pflyOut 0.75s ease-out forwards;
}

@keyframes pflyOut {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(var(--px, 0px), var(--py, 0px)) scale(0);
        opacity: 0;
    }
}

/* ── Shared card internals ── */
.card-num {
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: "Cormorant Garamond", serif;
    font-size: 12px;
    letter-spacing: 0.06em;
    transition: all 0.35s;
}

.card:nth-child(odd) .card-num {
    color: rgba(255, 255, 255, 0.2);
}

.card:nth-child(even) .card-num {
    color: rgba(255, 255, 255, 0.35);
}

.card:hover .card-num {
    transform: scale(1.2) translateY(-2px);
}

.card-1:hover .card-num,
.card-3:hover .card-num {
    color: var(--orange);
}

.card-2:hover .card-num,
.card-4:hover .card-num {
    color: rgba(255, 255, 255, 0.95);
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.card:nth-child(odd) .card-icon {
    background: rgba(247, 148, 29, 0.18);
}

.card:nth-child(even) .card-icon {
    background: rgba(255, 255, 255, 0.18);
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

/* Distinct icon micro-animations per card */
.card-1:hover .card-icon {
    animation: iSpin 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-2:hover .card-icon {
    animation: iBounce 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-3.glitching .card-icon {
    animation: iGlitch 0.4s steps(3);
}

.card-4:hover .card-icon {
    animation: iPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes iSpin {
    0% {
        transform: rotate(0) scale(1);
    }

    50% {
        transform: rotate(-18deg) scale(1.18);
    }

    100% {
        transform: rotate(0) scale(1);
    }
}

@keyframes iBounce {
    0% {
        transform: translateY(0);
    }

    35% {
        transform: translateY(-14px);
    }

    65% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes iGlitch {

    0%,
    100% {
        transform: none;
    }

    33% {
        transform: translate(5px, -3px) skewX(-6deg);
    }

    66% {
        transform: translate(-5px, 3px) skewX(6deg);
    }
}

@keyframes iPop {
    0% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.45);
    }

    75% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.card-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 21px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
    transition: letter-spacing 0.3s;
    position: relative;
    z-index: 2;
}

.card:hover .card-title {
    letter-spacing: 0.015em;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    position: relative;
    z-index: 2;
}

.tag {
    font-size: 9.5px;
    font-weight: 400;
    letter-spacing: 0.07em;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.card:nth-child(odd) .tag:hover {
    background: rgba(247, 148, 29, 0.25);
    border-color: rgba(247, 148, 29, 0.5);
    color: #f7941d;
}

.card:nth-child(even) .tag:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.tag.more {
    font-weight: 500;
    cursor: pointer;
}

.card:nth-child(odd) .tag.more {
    background: rgba(247, 148, 29, 0.2);
    border-color: rgba(247, 148, 29, 0.5);
    color: #f7941d;
}

.card:nth-child(even) .tag.more {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

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

@media (max-width: 560px) {
    .grid {
        grid-template-columns: 1fr;
        margin-bottom: 5px;
    }

    .wrapper {
        padding: 40px 20px 64px;
    }
}



/* --- START FILE: recycle.css --- */
/* ================================================================
   RECYCLE SECTION — JUNKDROP BRAND DESIGN
   ================================================================ */

:root {
    --recycle-navy: #131422;
    --recycle-navy-light: #1e1f32;
    --recycle-orange: #f26522;
    --recycle-green: #10b981;
    --recycle-green-light: rgba(16, 185, 129, 0.15);
    --recycle-white: #ffffff;
    --recycle-text-muted: #94a3b8;
}

.recycle-grid-wrap {
    min-height: 520px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    overflow: hidden;
    position: relative;
    border-radius: 28px;
    background: var(--recycle-navy);
    box-shadow: 0 20px 50px rgba(19, 20, 34, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── LEFT PANEL ── */
.panel-image {
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

.panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.85) brightness(0.85);
    transform: scale(1.05);
    transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.recycle-grid-wrap:hover .panel-image img {
    transform: scale(1.0);
}

.image-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(19, 20, 34, 0.2) 0%, rgba(19, 20, 34, 0.75) 75%, rgba(19, 20, 34, 1) 100%);
}

.image-stamp {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 3;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--recycle-white);
    background: rgba(19, 20, 34, 0.65);
    backdrop-filter: blur(12px);
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
}

/* Floating Eco Badge */
.eco-float-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(19, 20, 34, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 14px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.eco-badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.2);
    color: var(--recycle-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.eco-badge-title {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--recycle-white);
}

.eco-badge-sub {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--recycle-text-muted);
    margin-top: 2px;
}

/* ── RIGHT PANEL ── */
.panel-content {
    background: linear-gradient(145deg, #18192a 0%, #131422 100%);
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.content-top {
    position: relative;
    z-index: 1;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--recycle-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--recycle-green);
}

.tag-text {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--recycle-green);
}

.headline {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
    color: var(--recycle-white);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.headline em {
    font-style: normal;
    color: var(--recycle-orange);
}

.divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--recycle-orange), var(--recycle-green));
    border-radius: 2px;
    margin-bottom: 20px;
}

.body-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--recycle-text-muted);
    max-width: 460px;
    margin-bottom: 24px;
}

/* Feature Pills */
.recycle-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.recycle-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.recycle-pill i {
    color: var(--recycle-green);
    font-size: 12px;
}

.recycle-pill:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
    color: var(--recycle-white);
}

/* ── STATS ── */
.stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat {
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.stat:hover {
    background: rgba(242, 101, 34, 0.08);
    border-color: rgba(242, 101, 34, 0.35);
    transform: translateY(-4px);
}

.stat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--recycle-orange), var(--recycle-green));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.stat:hover::before {
    opacity: 1;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 38px;
    color: var(--recycle-white);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.stat-sup {
    font-size: 22px;
    vertical-align: super;
    color: var(--recycle-orange);
}

.stat-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--recycle-text-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    /* .recycle-grid-wrap {
        grid-template-columns: 1fr;
        height: auto;
    } */

    .panel-image {
        min-height: 300px;
    }

    .panel-content {
        padding: 40px 32px;
    }
}

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

    .panel-content {
        padding: 32px 20px;
    }
}



/* --- START FILE: cities.css --- */
.sa-section {
    position: relative;
    overflow: hidden;
}

.sa-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%,
            rgba(249, 115, 22, 0.18) 0%,
            transparent 65%),
        radial-gradient(ellipse 60% 40% at 20% 80%,
            rgba(249, 115, 22, 0.1) 0%,
            transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 80%,
            rgba(249, 115, 22, 0.08) 0%,
            transparent 60%),
        linear-gradient(175deg, #1e1a18 0%, #111111 40%, #0e0e0e 100%);
    z-index: 0;
}

.sa-header {
    text-align: center;
    margin-bottom: 30px;
}

.sa-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 999px;
    margin-bottom: 28px;
    box-shadow:
        0 4px 24px rgba(218, 41, 28, 0.35),
        0 0 0 1px rgba(218, 41, 28, 0.4);
    opacity: 0;
    animation: fadeUp 0.6s 0.1s ease forwards;
}

.sa-badge .badge-dot {
    width: 7px;
    height: 7px;
    background: #ffffff;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

.sa-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeUp 0.7s 0.2s ease forwards;
}

.theme-light .sa-title,
.theme-light .sa-subtitle,
.steps-new .sa-title,
.steps-new .sa-subtitle,
.service .sa-title,
.service .sa-subtitle {
    color: black;
}

.sa-title .accent {
    color: var(--orange);
    position: relative;
}

.sa-title .accent::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), transparent);
    border-radius: 2px;
    opacity: 0.6;
}

.sa-subtitle {
    margin-top: 16px;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.01em;
    opacity: 0;
    animation: fadeUp 0.7s 0.3s ease forwards;
}

.sa-footer {
    text-align: center;
    margin-top: 52px;
    opacity: 0;
    animation: fadeUp 0.7s 0.8s ease forwards;
}

.sa-footer p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 22px;
    font-weight: 300;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 14px 36px;
    border-radius: 999px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.btn-view-more::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}

.btn-view-more:hover::before {
    transform: scaleX(1);
}

.btn-view-more:hover {
    border-color: var(--orange);
    box-shadow: 0 0 30px rgba(218, 41, 28, 0.35);
}

.btn-view-more span,
.btn-view-more svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-view-more:hover svg {
    transform: translateX(5px);
}

.sa-divider {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}

.sa-divider::before,
.sa-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
}

.sa-divider span {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

/* ── CITIES LIST PAGE ── */
.cities-page {
    min-height: 100vh;
    background: #faf7f2;
    font-family: "Raleway", sans-serif;
    position: relative;
    overflow: hidden;
}

.paper-texture {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.6;
}

.content-container,
.sa-inner {
    position: relative;
    z-index: 1;
}

.content-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 20px;
}

/* Homepage City Card */
.city-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: #1a1a1a;
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.04);
    opacity: 0;
    transform: translateY(28px) scale(0.97);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease;
    animation: cardIn 0.65s 0.2s ease forwards;
}

.city-card:nth-child(1) {
    animation-delay: 0.2s;
}

.city-card:nth-child(2) {
    animation-delay: 0.3s;
}

.city-card:nth-child(3) {
    animation-delay: 0.4s;
}

.city-card:nth-child(4) {
    animation-delay: 0.5s;
}

.city-card:nth-child(5) {
    animation-delay: 0.6s;
}

.city-card:nth-child(6) {
    animation-delay: 0.7s;
}

.city-card:nth-child(7) {
    animation-delay: 0.8s;
}

.city-card:nth-child(8) {
    animation-delay: 0.9s;
}

.city-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.4s ease;
    filter: brightness(0.75) saturate(0.9);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(10, 8, 6, 0.92) 0%,
            rgba(10, 8, 6, 0.4) 45%,
            transparent 70%),
        linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
    transition: background 0.4s ease;
}

.card-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 0 2px 0 0;
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 22px 22px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.city-card .city-name {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    transition: transform 0.35s ease;
}

.city-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    background: var(--orange-pale);
    border: 1px solid rgba(218, 41, 28, 0.35);
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    backdrop-filter: blur(4px);
}

.card-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.7) rotate(-45deg);
    transition:
        opacity 0.3s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: blur(6px);
}

.card-arrow svg {
    stroke: #ffffff;
}

.city-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(249, 115, 22, 0.25),
        0 0 30px rgba(249, 115, 22, 0.08);
}

.city-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.6) saturate(1.1);
}

.city-card:hover .card-overlay {
    background:
        linear-gradient(to top,
            rgba(10, 8, 6, 0.95) 0%,
            rgba(10, 8, 6, 0.5) 50%,
            rgba(10, 8, 6, 0.15) 80%),
        linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
}

.city-card:hover .card-accent-line {
    width: 100%;
}

.city-card:hover .city-tag {
    opacity: 1;
    transform: translateY(0);
}

.city-card:hover .card-arrow {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Dedicated Cities Page City Card Overwrite */
/* Dedicated Cities Page City Card Overwrite */
.cities-page .city-card,
.sa-section .city-card {
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 4 / 3;
    background: #1a1410;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px #e8ddd0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cities-page .city-card {
    opacity: 1;
    transform: translateY(40px);
}

.cities-page .city-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.cities-page .city-card:hover,
.sa-section .city-card:hover {
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.18),
        0 0 0 1px #c9a96e ;
}

.cities-page .city-image,
.sa-section .city-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition:
        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.7s ease;
    filter: brightness(0.82) saturate(0.9);
}

.cities-page .city-card:hover .city-image,
.sa-section .city-card:hover .city-image {
    transform: scale(1.08);
    filter: brightness(0.7) saturate(1.1);
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 8, 5, 0.82) 0%,
            rgba(10, 8, 5, 0.2) 55%,
            transparent 100%);
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gold-line-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a96e, transparent);
    opacity: 1;
    transition: opacity 0.4s ease;
}

.cities-page .city-card:hover .gold-line-top,
.sa-section .city-card:hover .gold-line-top {
    opacity: 1;
}

.city-name-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 18px 16px;
    pointer-events: none;
}

.cities-page .city-name,
.sa-section .city-name {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    font-size: clamp(13px, 2vw, 17px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f5ead8;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.cities-page .city-card:hover .city-name,
.sa-section .city-card:hover .city-name {
    transform: translateY(-3px);
}

.gold-underline {
    height: 1px;
    background: #c9a96e;
    margin-top: 6px;
    width: 20px;
    transition: width 0.4s ease;
}

.city-card:hover .gold-underline {
    width: 40px;
}

.footer-accent {
    text-align: center;
    margin-top: 60px;
}

.footer-accent-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

@keyframes blink {

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

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

@keyframes cardIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* --- START FILE: blog.css --- */
/* ── BLOG PAGES (INDEX & DETAIL) ── */

.blog-main {
    padding: 80px 0;
    background: #ffffff;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.blog-grid-layout {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Left Grid (Cards) */
.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 330px), 1fr));
    gap: 30px;
}

/* Blog Card */
.blog-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    text-decoration: none;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
    border-color: rgba(224, 120, 32, 0.15);
}

.blog-card-image-wrap {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #fafafa;
}

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

.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.blog-card-date {
    display: inline-block;
    background: var(--orange-pale);
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.blog-card-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: 12px;
    transition: color 0.25s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--orange);
}

.blog-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    font-family: "Barlow", sans-serif;
}

.blog-card-more {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease;
}

.blog-card:hover .blog-card-more {
    gap: 10px;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 130px;
}

/* Sidebar Wrap & Widgets */
.blog-sidebar-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-widget {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: rgba(224, 120, 32, 0.12);
}

.about-widget {
    background: var(--dark);
    color: #ffffff;
    border-color: var(--dark);
    overflow: hidden;
    position: relative;
}

.about-widget:hover {
    border-color: var(--dark);
}

.about-widget .widget-title {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 24px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
}

.about-widget .widget-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    font-family: "Barlow", sans-serif;
}

.about-widget .widget-circle-accent {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 140px;
    height: 140px;
    background: rgba(224, 120, 32, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.widget-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

/* Recent posts list */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.recent-post-item {
    display: flex;
    gap: 14px;
    align-items: center;
    text-decoration: none;
    transition: color 0.25s ease;
}

.recent-post-img {
    width: 80px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    background: #fafafa;
    border: 1px solid var(--border);
}

.recent-post-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin: 0;
    transition: color 0.25s ease;
}

.recent-post-item:hover .recent-post-title {
    color: var(--orange);
}

.no-posts-text {
    font-size: 12px;
    color: var(--text-light);
}

/* Quote Widget Form */
.blog-sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-sidebar-form .form-field {
    position: relative;
    width: 100%;
}

.blog-sidebar-form .form-input,
.blog-sidebar-form .form-select,
.blog-sidebar-form .form-textarea {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    color: var(--dark);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.blog-sidebar-form .form-input:focus,
.blog-sidebar-form .form-select:focus,
.blog-sidebar-form .form-textarea:focus {
    border-color: var(--orange-light);
    box-shadow: 0 0 0 3px rgba(245, 147, 50, 0.12);
}

.blog-sidebar-form .form-textarea {
    min-height: 96px;
    resize: none;
}

.blog-sidebar-form .form-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23a0aec0' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px;
}

/* Date input styling */
.blog-sidebar-form .form-date-input {
    padding-top: 20px;
    padding-bottom: 8px;
}

.blog-sidebar-form .form-date-label {
    pointer-events: none;
    position: absolute;
    left: 12px;
    top: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 100px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    background-color: var(--dark);
    font-family: "Barlow", sans-serif;
    letter-spacing: 0.05em;
}

.blog-sidebar-form .form-date-label .date-icon {
    width: 12px;
    height: 12px;
}

/* Submit Button */
.blog-sidebar-form .form-submit-btn {
    width: 100%;
    height: 48px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(224, 120, 32, 0.25);
}

.blog-sidebar-form .form-submit-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(224, 120, 32, 0.4);
}

/* ARTICLE DETAIL page */
.blog-article {
    background: #ffffff;
    min-height: 500px;
}

.blog-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 16px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 32px;
    font-family: "Barlow", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-meta span:first-of-type {
    color: var(--orange);
    font-weight: 700;
}

.blog-main-img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-content {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
    font-family: "Barlow", sans-serif;
}

.blog-content p {
    margin-bottom: 24px;
}

.blog-content h2,
.blog-content h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 16px;
    line-height: 1.25;
}

.blog-content h2 {
    font-size: 28px;
}

.blog-content h3 {
    font-size: 22px;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.blog-content li {
    margin-bottom: 10px;
}

/* Related Posts Section */
.blog-related-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

.blog-related-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 36px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 330px), 1fr));
    gap: 30px;
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
}

.blog-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    background: #ffffff;
    border: 1.5px solid var(--border);
    transition: all 0.25s ease;
    cursor: pointer;
    text-decoration: none;
}

.blog-page-btn.active,
.blog-page-btn:hover:not(:disabled) {
    background: var(--orange);
    border-color: var(--orange);
    color: #ffffff;
}

.blog-page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .blog-grid-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .blog-main {
        padding: 50px 0;
    }
}

/* ==========================================================================
   CUSTOM BLOG LAYOUT & CARD STYLING (MATCHING MOCK DESIGN)
   ========================================================================== */
.blog-grid-layout {
    display: grid ;
    grid-template-columns: 2fr 1fr ;
    gap: 40px ;
    align-items: start ;
}

.blog-cards-grid {
    display: grid ;
    grid-template-columns: repeat(2, 1fr) ;
    gap: 32px ;
}

.blog-card {
    position: relative ;
    border-radius: 20px ;
    border: none ;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) ;
    overflow: hidden ;
    background: #ffffff ;
    display: flex ;
    flex-direction: column ;
    height: 100% ;
    transition: transform 0.3s, box-shadow 0.3s ;
    text-decoration: none ;
}

.blog-card:hover {
    transform: translateY(-5px) ;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) ;
}

.blog-card-image-wrap {
    position: relative ;
    height: 240px ;
    overflow: hidden ;
}

.blog-card-date-badge {
    position: absolute ;
    top: 0 ;
    left: 0 ;
    background: #f26522 ;
    color: #ffffff ;
    font-family: 'Outfit', sans-serif ;
    font-size: 11px ;
    font-weight: 800 ;
    padding: 10px 18px ;
    border-radius: 12px 0 12px 0 ;
    display: flex ;
    align-items: center ;
    gap: 6px ;
    text-transform: uppercase ;
    letter-spacing: 0.5px ;
    z-index: 2 ;
}

.blog-card-icon-circle {
    position: absolute ;
    top: -28px ;
    left: 24px ;
    width: 56px ;
    height: 56px ;
    background: #f26522 ;
    color: #ffffff ;
    border-radius: 50% ;
    border: 4px solid #ffffff ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    font-size: 18px ;
    box-shadow: 0 4px 12px rgba(242, 101, 34, 0.2) ;
    z-index: 3 ;
    transition: transform 0.3s ;
}

.blog-card:hover .blog-card-icon-circle {
    transform: scale(1.08) rotate(5deg) ;
}

.blog-card-body {
    position: relative ;
    padding: 44px 28px 28px 28px ;
    display: flex ;
    flex-direction: column ;
    flex-grow: 1 ;
}

.blog-card-title {
    font-family: 'Outfit', sans-serif ;
    font-size: 23px ;
    font-weight: 800 ;
    color: #111111 ;
    line-height: 1.25 ;
    margin-bottom: 12px ;
    transition: color 0.25s ;
}

.blog-card:hover .blog-card-title {
    color: #f26522 ;
}

.blog-card-title-line {
    width: 32px ;
    height: 2.5px ;
    background: #f26522 ;
    opacity: 0.6 ;
    margin-bottom: 16px ;
    transition: width 0.3s ;
}

.blog-card:hover .blog-card-title-line {
    width: 56px ;
    opacity: 1 ;
}

.blog-card-desc {
    font-family: 'Inter', sans-serif ;
    font-size: 14px ;
    color: #5a6a85 ;
    line-height: 1.6 ;
    margin-bottom: 24px ;
}

.blog-card-more {
    font-family: 'Outfit', sans-serif ;
    font-size: 13.5px ;
    font-weight: 700 ;
    color: #f26522 ;
    display: inline-flex ;
    align-items: center ;
    gap: 6px ;
    text-transform: uppercase ;
    margin-top: auto ;
    transition: gap 0.25s ;
}

.blog-card-more .arrow {
    transition: transform 0.25s ;
}

.blog-card:hover .blog-card-more .arrow {
    transform: translateX(6px) ;
}

.blog-card-accent-corner {
    position: absolute ;
    right: 0 ;
    bottom: 0 ;
    width: 24px ;
    height: 24px ;
    background: #f26522 ;
    clip-path: polygon(100% 0, 100% 100%, 0 100%) ;
}

/* Sidebar Widgets overrides */
.about-widget {
    background: #181818 ;
    color: #ffffff ;
    border-radius: 20px ;
    border: none ;
    padding: 28px ;
    position: relative ;
    overflow: hidden ;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) ;
}

.about-widget-header {
    display: flex ;
    align-items: center ;
    gap: 12px ;
    margin-bottom: 20px ;
}

.about-widget .icon-circle {
    width: 36px ;
    height: 36px ;
    background: #f26522 ;
    border-radius: 50% ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    color: #ffffff ;
    font-size: 14px ;
}

.about-widget .widget-title {
    color: #ffffff ;
    font-family: 'Outfit', sans-serif ;
    font-size: 18px ;
    font-weight: 800 ;
    margin: 0 ;
}

.about-widget .widget-text {
    font-family: 'Inter', sans-serif ;
    font-size: 13.5px ;
    color: #a0aec0 ;
    line-height: 1.6 ;
    z-index: 2 ;
    position: relative ;
    margin: 0 ;
}

.about-widget .about-watermark {
    position: absolute ;
    right: -25px ;
    bottom: -25px ;
    width: 120px ;
    opacity: 0.04 ;
    pointer-events: none ;
    z-index: 1 ;
}

.about-widget .about-watermark img {
    width: 100% ;
    height: auto ;
}

.recent-widget {
    background: #ffffff ;
    border-radius: 20px ;
    border: none ;
    padding: 28px ;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) ;
}

.recent-widget .widget-title {
    font-family: 'Outfit', sans-serif ;
    font-size: 18px ;
    font-weight: 800 ;
    color: #111111 ;
    margin-bottom: 20px ;
}

.recent-posts-list {
    display: flex ;
    flex-direction: column ;
    gap: 20px ;
}

.recent-post-item {
    display: flex ;
    gap: 16px ;
    align-items: flex-start ;
    text-decoration: none ;
    padding-bottom: 16px ;
    border-bottom: 1.5px solid #f1f5f9 ;
}

.recent-post-item:last-of-type {
    border-bottom: none ;
    padding-bottom: 0 ;
}

.recent-post-img {
    width: 76px ;
    height: 60px ;
    border-radius: 10px ;
    object-fit: cover ;
    border: 1px solid #e2e8f0 ;
}

.recent-post-info {
    display: flex ;
    flex-direction: column ;
    gap: 4px ;
}

.recent-post-title {
    font-family: 'Outfit', sans-serif ;
    font-size: 14.5px ;
    font-weight: 800 ;
    color: #111111 ;
    line-height: 1.35 ;
    margin: 0 ;
    transition: color 0.2s ;
}

.recent-post-item:hover .recent-post-title {
    color: #f26522 ;
}

.recent-post-date {
    font-family: 'Inter', sans-serif ;
    font-size: 11px ;
    color: #718096 ;
    display: flex ;
    align-items: center ;
    gap: 5px ;
}

.view-all-link {
    font-family: 'Outfit', sans-serif ;
    font-size: 13px ;
    font-weight: 700 ;
    color: #f26522 ;
    text-decoration: none ;
    display: inline-flex ;
    align-items: center ;
    gap: 6px ;
    margin-top: 24px ;
    text-transform: uppercase ;
    transition: gap 0.2s ;
}

.view-all-link:hover {
    color: #d63a00 ;
    gap: 10px ;
}

@media (max-width: 991px) {
    .blog-grid-layout {
        grid-template-columns: 1fr ;
        gap: 40px ;
    }

    .blog-cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 330px), 1fr)) ;
    }
}

/* ================================================================
   MOBILE RESPONSIVENESS OVERRIDES & BUGFIXES
   ================================================================ */

@media (max-width: 768px) {

    /* Section paddings - reduce massive space on mobile */
    .section-pad,
    .tms-section,
    .fqs-section,
    section[class*="section-pad"],
    section[class*="pad"] {
        padding: 26px 0;
    }

    /* General containers - fix side spacing */
    .container,
    .tms-container,
    .fqs-container {
        padding-left: 20px ;
        padding-right: 20px ;
    }

    /* Form inputs sizing & grids */
    .hero-form-grid {
        grid-template-columns: 1fr ;
        gap: 12px ;
    }

    .hero-form-grid .input-wrap {
        grid-column: span 1 ;
        height: 46px ;
    }

    .hero-form-grid .input-wrap.full-width {
        grid-column: span 1 ;
    }

    .hero-submit-btn {
        grid-column: span 1 ;
        height: 48px ;
        font-size: 13px ;
    }

    /* Responsive image scaling for unstructured content only */
    .prose img,
    .suburb-content-section img,
    .blog-content img,
    .rich-text img {
        max-width: 100% ;
        height: auto ;
    }

    /* Headings adjustments for mobile viewports */
    h1,
    .h1 {
        font-size: clamp(28px, 6vw, 36px) ;
        letter-spacing: -0.5px ;
        line-height: 1.2 ;
    }

    h2,
    .h2 {
        font-size: clamp(24px, 5vw, 30px) ;
        letter-spacing: -0.5px ;
    }
}

/* ── MOBILE HERO HOME PAGE BANNER OVERRIDES ── */
@media (max-width: 991px) {

    /* Hide all hero texts, title, buttons, badges, trust signals */
    /* .hero-content,
    .hero-homepage-content {
        display: none ;
    } */

    /* Make the hero section a container that centers the form */
    .hero,
    section.relative.min-h-\[580px\] {
        position: relative ;
        display: flex ;
        flex-direction: column ;
        align-items: center ;
        justify-content: center ;
        min-height: 520px ;
        padding: 40px 16px ;
        background: #131422 ;
        gap: 0 ;
    }

    /* Force background image to cover 100% of container */
    .hero-bg-img {
        position: absolute ;
        inset: 0 ;
        width: 100% ;
        height: 100% ;
        margin-top: 0 ;
        border-radius: 0 ;
        z-index: 1 ;
    }

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

    /* Dark premium overlay for readability of quote card */
    .hero::before,
    section.relative.min-h-\[580px\]::before {
        content: '' ;
        position: absolute ;
        inset: 0 ;
        background: rgba(19, 20, 34, 0.55) ;
        z-index: 2 ;
        display: block ;
    }

    /* Position the form wrapper centered above overlay */
    .hero-form-wrapper,
    .hero-homepage-form-wrapper {
        display:none;
        position: relative ;
        z-index: 3 ;
        width: 100% ;
        max-width: 480px ;
        margin: 0 auto ;
        padding: 0 ;
    }

    /* Ensure outer containers do not block grid layout */
    .hero-grid-container {
        display: block ;
        width: 100% ;
        z-index: 3 ;
    }
}

@media (max-width: 640px) {

    /* Spacers & utility blocks */
    .space-y-12> :not([hidden])~ :not([hidden]) {
        margin-top: 2rem ;
    }
}

.recycle-grid-wrap {
    min-height: 520px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    border-radius: 28px;
    background: #131422;
    box-shadow: 0 20px 50px rgba(19, 20, 34, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.eco-float-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    display: flex;
    align-items: center;
    background: rgba(19, 20, 34, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
}
.recycle-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
}
.card:nth-child(odd) {
    background: linear-gradient(145deg, #1d1e2e 0%, #131422 60%, #0c0d16 100%);
    border: 1px solid rgba(242, 101, 34, 0.15);
}
.card:nth-child(even) {
    background: linear-gradient(145deg, #f26522 0%, #e05413 55%, #c84407 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.card:nth-child(odd) .card-icon svg * { stroke: #f26522; }
.card:nth-child(even) .card-icon svg * { stroke: #ffffff; }


@media (max-width: 720px) {
    .recycle-grid-wrap {
        grid-template-columns: 1fr;
        height: auto;
    }
}


