*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand palette */
    --clr-primary: #d84315; /* deep orange-red */
    --clr-primary-dark: #b71c1c;
    --clr-primary-light: #ff7043;
    --clr-accent: #ffa726; /* warm amber */
    --clr-accent-dark: #e65100;
    --clr-green: #2e7d32;

    /* Neutrals */
    --clr-white: #ffffff;
    --clr-off-white: #fff8f6;
    --clr-text-dark: #1a1a2e;
    --clr-text-mid: #4a4a68;
    --clr-text-light: #8888a8;
    --clr-border: rgba(216, 67, 21, 0.15);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(216, 67, 21, 0.08);
    --shadow-md: 0 8px 32px rgba(216, 67, 21, 0.14);
    --shadow-lg: 0 20px 60px rgba(216, 67, 21, 0.18);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.1);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 100px;

    /* Transitions */
    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Be Vietnam Pro", sans-serif;
    background-color: var(--clr-white);
    color: var(--clr-text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* Screen-reader only utility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.custom-navbar {
    background-color: var(--clr-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--clr-primary);
}

.btn-contact {
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary-dark);
}

.nav-link:hover {
    color: var(--clr-primary-dark) !important;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #fff1ee 0%,
        #fff8f5 40%,
        #fef9f0 70%,
        #fff4ed 100%
    );
    padding: 10px 0;
    min-height: auto;
    display: flex;
}

/* --- Decorative background blobs --- */
.hero-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero-bg-blob--1 {
    width: 560px;
    height: 560px;
    top: -160px;
    left: -160px;
    background: radial-gradient(
        circle,
        rgba(216, 67, 21, 0.14) 0%,
        transparent 70%
    );
    animation: blobFloat 8s ease-in-out infinite alternate;
}

.hero-bg-blob--2 {
    width: 480px;
    height: 480px;
    bottom: -120px;
    right: -120px;
    background: radial-gradient(
        circle,
        rgba(255, 167, 38, 0.12) 0%,
        transparent 70%
    );
    animation: blobFloat 10s ease-in-out infinite alternate-reverse;
}

.hero-bg-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(
        circle,
        rgba(216, 67, 21, 0.07) 1.5px,
        transparent 1.5px
    );
    background-size: 32px 32px;
}

@keyframes blobFloat {
    from {
        transform: translate(0, 0) scale(1);
    }
    to {
        transform: translate(30px, 20px) scale(1.08);
    }
}

/* ensure children sit above blobs */
.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* --- Badge --- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(216, 67, 21, 0.08);
    border: 1px solid rgba(216, 67, 21, 0.2);
    color: var(--clr-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    width: fit-content;
}

.hero-badge__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(216, 67, 21, 0.25);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(216, 67, 21, 0.25);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(216, 67, 21, 0.1);
    }
}

/* --- Headline --- */
.hero-heading {
    font-size: clamp(2rem, 7.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--clr-text-dark);
    letter-spacing: -0.02em;
}

.hero-heading__highlight {
    background: linear-gradient(
        135deg,
        var(--clr-primary) 0%,
        var(--clr-accent) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-heading__sub {
    color: var(--clr-primary);
    position: relative;
}

.hero-heading__sub::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
    border-radius: var(--radius-pill);
    opacity: 0.5;
}

/* --- Sub-text --- */
.hero-subtext {
    font-size: 1rem;
    color: var(--clr-text-mid);
    line-height: 1.7;
    max-width: 440px;
    font-weight: 400;
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
}

.hero-widget {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--clr-border);
    overflow: hidden;
}

/* --- Tabs --- */
.hero-tabs {
    display: flex;
    background: #fff1ee;
    border-bottom: 2px solid var(--clr-border);
}

.hero-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--clr-text-mid);
    background: transparent;
    border: none;
    cursor: pointer;
    transition:
        color var(--transition),
        background var(--transition);
    position: relative;
    font-family: inherit;
    white-space: nowrap;
}

.hero-tab i {
    font-size: 0.9rem;
    transition: transform var(--transition);
}

.hero-tab:hover {
    color: var(--clr-primary);
    background: rgba(216, 67, 21, 0.04);
}

.hero-tab:hover i {
    transform: scale(1.15);
}

.hero-tab.active {
    color: var(--clr-primary);
    background: var(--clr-white);
    font-weight: 700;
}

.hero-tab.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
    border-radius: var(--radius-pill) var(--radius-pill) 0 0;
}

/* --- Panels --- */
.hero-panel {
    padding: 28px 24px 24px;
    animation: panelIn 0.32s ease;
}

.hero-panel[hidden] {
    display: none !important;
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Form --- */
.hero-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.hero-input-icon {
    position: absolute;
    left: 16px;
    font-size: 1rem;
    color: var(--clr-primary);
    pointer-events: none;
    z-index: 1;
}

.hero-input {
    width: 100%;
    padding: 14px 16px 14px 46px;
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    font-weight: 500;
    color: var(--clr-text-dark);
    background: #fafafa;
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
    outline: none;
    /* Remove number input arrows */
    -moz-appearance: textfield;
}

.hero-input::-webkit-outer-spin-button,
.hero-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.hero-input::placeholder {
    color: var(--clr-text-light);
    font-weight: 400;
    font-size: 0.9rem;
}

.hero-input:focus {
    border-color: var(--clr-primary);
    background: var(--clr-white);
    box-shadow: 0 0 0 4px rgba(216, 67, 21, 0.1);
}

.hero-input-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--clr-text-light);
    font-family: system-ui, sans-serif;
}

.hero-input-hint i {
    color: var(--clr-accent);
    font-size: 0.82rem;
    flex-shrink: 0;
}

/* --- Primary CTA Button --- */
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    background: linear-gradient(
        135deg,
        var(--clr-primary) 0%,
        var(--clr-primary-dark) 100%
    );
    color: var(--clr-white);
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        filter var(--transition);
    box-shadow: 0 4px 20px rgba(216, 67, 21, 0.35);
    letter-spacing: 0.01em;
    width: 100%;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(216, 67, 21, 0.45);
    filter: brightness(1.06);
    color: var(--clr-white);
}

.hero-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(216, 67, 21, 0.3);
}

/* --- Call Panel --- */
.hero-call-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding: 8px 0;
}

.hero-phone-display {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #fff1ee, #fff8f5);
    border: 2px solid rgba(216, 67, 21, 0.2);
    border-radius: var(--radius-md);
    padding: 16px 28px;
    width: 100%;
    justify-content: center;
}

.hero-phone-display i {
    font-size: 1.4rem;
    color: var(--clr-primary);
    animation: shake 3s ease-in-out infinite;
}

@keyframes shake {
    0%,
    90%,
    100% {
        transform: rotate(0deg);
    }
    92% {
        transform: rotate(-10deg);
    }
    94% {
        transform: rotate(10deg);
    }
    96% {
        transform: rotate(-8deg);
    }
    98% {
        transform: rotate(8deg);
    }
}

.hero-phone-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--clr-primary-dark);
    letter-spacing: 0.04em;
    text-decoration: none;
}

.hero-phone-number:hover {
    color: var(--clr-primary);
    text-decoration: underline;
}

.hero-call-note {
    font-size: 0.82rem;
    color: var(--clr-text-light);
    font-family: system-ui, sans-serif;
}

.hero-btn-call {
    width: 100%;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    border-radius: var(--radius-md);
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-sm);
    padding: 14px 20px;
    flex-wrap: wrap;
    row-gap: 12px;
}

.hero-trust__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    min-width: 110px;
}

.hero-trust__item i {
    font-size: 1.1rem;
    color: var(--clr-primary);
    flex-shrink: 0;
}

.hero-trust__item span {
    font-size: 0.75rem;
    color: var(--clr-text-mid);
    line-height: 1.35;
    font-family: system-ui, sans-serif;
}

.hero-trust__item span strong {
    display: block;
    color: var(--clr-text-dark);
    font-weight: 700;
    font-size: 0.8rem;
}

.hero-trust__divider {
    width: 1px;
    height: 32px;
    background: var(--clr-border);
    flex-shrink: 0;
    margin: 0 4px;
}

.hero-right {
    align-items: center;
    justify-content: center;
}

.hero-visual {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Center Plate --- */
.hero-plate-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-plate-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(216, 67, 21, 0.18);
    animation: spinRing 20s linear infinite;
}

.hero-plate-ring--outer {
    width: 310px;
    height: 310px;
}

.hero-plate-ring--inner {
    width: 230px;
    height: 230px;
    animation-direction: reverse;
    animation-duration: 14s;
    border-color: rgba(255, 167, 38, 0.2);
}

@keyframes spinRing {
    to {
        transform: rotate(360deg);
    }
}

.hero-plate {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff1ee, var(--clr-white));
    box-shadow:
        0 0 0 6px rgba(216, 67, 21, 0.06),
        0 12px 40px rgba(216, 67, 21, 0.18),
        inset 0 2px 6px rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: plateBounce 4s ease-in-out infinite;
    z-index: 2;
}

@keyframes plateBounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-plate__icon {
    font-size: 2.8rem;
    line-height: 1;
}

.hero-plate__icon i {
    background: linear-gradient(
        135deg,
        var(--clr-primary) 0%,
        var(--clr-accent) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-plate__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-primary);
}

/* --- Orbiting food emojis --- */
.hero-orbit {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--clr-white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 3;
    animation: orbitFloat 3.5s ease-in-out infinite;
}

.hero-orbit--pizza {
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}
.hero-orbit--biryani {
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 0.8s;
}
.hero-orbit--burger {
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.4s;
}
.hero-orbit--idli {
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 2.1s;
}

@keyframes orbitFloat {
    0%,
    100% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }
    50% {
        box-shadow: 0 8px 24px rgba(216, 67, 21, 0.2);
        transform: translateX(-50%) scale(1.1);
    }
}

.hero-orbit--biryani,
.hero-orbit--idli {
    transform: translateY(-50%);
}

@keyframes orbitFloatY {
    0%,
    100% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
        transform: translateY(-50%);
    }
    50% {
        box-shadow: 0 8px 24px rgba(216, 67, 21, 0.2);
        transform: translateY(calc(-50% - 6px)) scale(1.1);
    }
}

.hero-orbit--biryani {
    animation-name: orbitFloatY;
}
.hero-orbit--idli {
    animation-name: orbitFloatY;
    animation-delay: 2.1s;
}

/* --- Floating Stat Cards --- */
.hero-stat-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--clr-white);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 4;
    animation: cardFloat 4s ease-in-out infinite;
    min-width: 160px;
}

.hero-stat-card--top {
    top: 10px;
    right: -20px;
    animation-delay: 0.5s;
}

.hero-stat-card--bottom {
    bottom: 30px;
    left: -20px;
    animation-delay: 1.5s;
}

@keyframes cardFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.hero-stat-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(216, 67, 21, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-stat-card__icon i {
    font-size: 1.1rem;
    color: var(--clr-primary);
}

.hero-stat-card__icon--green {
    background: rgba(46, 125, 50, 0.1);
}

.hero-stat-card__icon--green i {
    color: var(--clr-green);
}

.hero-stat-card__body {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.hero-stat-card__body strong {
    font-size: 1rem;
    font-weight: 800;
    color: var(--clr-text-dark);
}

.hero-stat-card__body span {
    font-size: 0.74rem;
    color: var(--clr-text-light);
    font-family: system-ui, sans-serif;
}

/* --- IRCTC Badge --- */
.hero-irctc-badge {
    position: absolute;
    bottom: 10px;
    right: -10px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(
        135deg,
        var(--clr-primary-dark) 0%,
        var(--clr-primary) 100%
    );
    color: var(--clr-white);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    box-shadow: 0 6px 24px rgba(183, 28, 28, 0.35);
    z-index: 5;
    animation: cardFloat 5s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-irctc-badge i {
    font-size: 1.4rem;
    opacity: 0.9;
}

.hero-irctc-badge__label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    opacity: 0.8;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: system-ui, sans-serif;
}

.hero-irctc-badge strong {
    font-size: 0.82rem;
    font-weight: 700;
}

/* Offer Section */
.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--clr-text-dark);
    line-height: 1.2;
}

.offer-heading__sub {
    color: var(--clr-primary);
}

.section-desc {
    max-width: 90%;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 10px 0;
        min-height: auto;
    }

    .hero-heading {
        font-size: clamp(1.7rem, 5vw, 2.4rem);
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 10px 0;
        text-align: center;
    }

    .hero-badge {
        margin: 0 auto;
    }

    .hero-heading {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .hero-subtext {
        margin: 0 auto;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-trust__divider {
        display: none;
    }

    .hero-trust__item {
        flex-direction: column;
        text-align: center;
        gap: 4px;
        min-width: 80px;
    }

    .hero-tab {
        font-size: 0.68rem;
        padding: 12px 4px;
        gap: 4px;
    }
}

@media (max-width: 380px) {
    .hero-tabs {
        flex-direction: column;
    }

    .hero-tab.active::after {
        bottom: 0;
        top: auto;
        right: -2px;
        left: auto;
        width: 2px;
        height: 100%;
        border-radius: 0;
    }
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0 90px;
    background: linear-gradient(160deg, #fff8f6 0%, #ffffff 50%, #fff4ed 100%);
}

/* --- Decorative blobs --- */
.why-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.why-bg-blob--1 {
    width: 500px;
    height: 500px;
    top: -180px;
    right: -150px;
    background: radial-gradient(
        circle,
        rgba(216, 67, 21, 0.1) 0%,
        transparent 70%
    );
    animation: blobFloat 9s ease-in-out infinite alternate;
}

.why-bg-blob--2 {
    width: 420px;
    height: 420px;
    bottom: -140px;
    left: -100px;
    background: radial-gradient(
        circle,
        rgba(255, 167, 38, 0.1) 0%,
        transparent 70%
    );
    animation: blobFloat 11s ease-in-out infinite alternate-reverse;
}

/* keep container above blobs */
.why-section .container {
    position: relative;
    z-index: 1;
}

/* --- Section header --- */
.why-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(216, 67, 21, 0.08);
    border: 1px solid rgba(216, 67, 21, 0.18);
    color: var(--clr-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
}

.why-eyebrow i {
    font-size: 0.7rem;
}

.why-header .section-desc {
    color: var(--clr-text-mid);
    font-size: 0.97rem;
    line-height: 1.75;
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
}

/* ============================================================
   WHY CARD
   ============================================================ */
.why-card {
    position: relative;
    height: 100%;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    border: 1.5px solid rgba(216, 67, 21, 0.1);
    padding: 36px 28px 32px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

    /* layered shadow: subtle depth + warm glow */
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.05),
        0 8px 32px rgba(216, 67, 21, 0.06);

    transition:
        transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

/* Hover — lift + stronger glow */
.why-card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.07),
        0 20px 48px rgba(216, 67, 21, 0.15);
    border-color: rgba(216, 67, 21, 0.28);
}

/* Corner accent stripe */
.why-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--clr-primary) 0%,
        var(--clr-accent) 100%
    );
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover .why-card__accent {
    transform: scaleX(1);
}

/* --- Image wrapper --- */
.why-card__img-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

/* Soft radial glow behind image */
.why-card__img-glow {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(216, 67, 21, 0.12) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.why-card:hover .why-card__img-glow {
    opacity: 1;
}

.why-card__img {
    position: relative;
    z-index: 1;
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 6px 12px rgba(216, 67, 21, 0.12));
}

.why-card:hover .why-card__img {
    transform: scale(1.1) rotate(-2deg);
}

/* --- Card body --- */
.why-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.why-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    line-height: 1.35;
    margin: 0;
}

.why-card__title-em {
    font-style: italic;
    color: var(--clr-primary);
}

.why-card__desc {
    font-size: 0.875rem;
    color: var(--clr-text-mid);
    line-height: 1.7;
    margin: 0;
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
}

/* ============================================================
   WHY SECTION — RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .why-section {
        padding: 60px 0 70px;
    }
}

@media (max-width: 767.98px) {
    .why-section {
        padding: 50px 0 60px;
    }

    .why-card {
        padding: 28px 22px 24px;
    }

    /* On mobile stack images stay centred — already text-centered */
}

/* ============================================================
   FRESH FOOD SECTION — How We Ensure Freshness
   ============================================================ */
.freshfood-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0 100px;
    background: #0f172a; /* rich dark navy */
}

/* --- Decorative grid overlay --- */
.freshfood-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

/* --- Decorative blobs --- */
.freshfood-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.freshfood-bg-blob--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
    background: radial-gradient(
        circle,
        rgba(216, 67, 21, 0.2) 0%,
        transparent 70%
    );
    animation: blobFloat 10s ease-in-out infinite alternate;
}

.freshfood-bg-blob--2 {
    width: 500px;
    height: 500px;
    bottom: -160px;
    right: -120px;
    background: radial-gradient(
        circle,
        rgba(255, 167, 38, 0.14) 0%,
        transparent 70%
    );
    animation: blobFloat 12s ease-in-out infinite alternate-reverse;
}

/* Container stays above blobs */
.freshfood-section .container {
    position: relative;
    z-index: 1;
}

/* --- Section header text --- */
.freshfood-section .why-eyebrow {
    background: rgba(216, 67, 21, 0.18);
    border-color: rgba(216, 67, 21, 0.35);
    color: #ff8a65;
}

.freshfood-section .section-title {
    color: #f1f5f9;
}

.freshfood-section .offer-heading__sub {
    color: #ff7043;
}

.freshfood-subtitle {
    font-size: 0.97rem;
    color: #94a3b8;
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto;
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
}

/* ============================================================
   TIMELINE LAYOUT
   ============================================================ */
.freshfood-timeline {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 64px;
}

/* Horizontal connecting line (desktop) */
.freshfood-line {
    position: absolute;
    top: 60px; /* align with centre of icon */
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    z-index: 0;
    overflow: hidden;
}

.freshfood-line__fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(
        90deg,
        var(--clr-primary) 0%,
        var(--clr-accent) 100%
    );
    border-radius: 2px;
    animation: lineFill 2.5s ease-out 0.6s forwards;
}

@keyframes lineFill {
    to {
        width: 100%;
    }
}

/* Each step takes equal flex space */
.freshfood-step {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    z-index: 1;
}

/* ============================================================
   STEP CARD
   ============================================================ */
.freshfood-step__card {
    flex: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px 20px 28px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.freshfood-step__card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(216, 67, 21, 0.4);
    box-shadow: 0 20px 48px rgba(216, 67, 21, 0.18);
}

/* Watermark step number */
.freshfood-step__num {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.04em;
    font-family: inherit;
}

.freshfood-step__num--light {
    color: rgba(255, 255, 255, 0.12);
}

/* --- Icon --- */
.freshfood-step__icon-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.freshfood-step__icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(216, 67, 21, 0.3);
    animation: spinRing 14s linear infinite;
}

.freshfood-step__card:hover .freshfood-step__icon-ring {
    border-color: rgba(216, 67, 21, 0.65);
}

.freshfood-step__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(216, 67, 21, 0.2) 0%,
        rgba(255, 167, 38, 0.12) 100%
    );
    border: 1px solid rgba(216, 67, 21, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ff7043;
    transition:
        background 0.28s ease,
        transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.freshfood-step__card:hover .freshfood-step__icon {
    background: linear-gradient(
        135deg,
        rgba(216, 67, 21, 0.38) 0%,
        rgba(255, 167, 38, 0.24) 100%
    );
    transform: rotate(-8deg) scale(1.1);
}

.freshfood-step__icon--light {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

/* --- Body text --- */
.freshfood-step__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.freshfood-step__title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #f1f5f9;
    line-height: 1.35;
    margin: 0;
}

.freshfood-step__title--light {
    color: #ffffff;
}

.freshfood-step__desc {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.65;
    margin: 0;
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
}

.freshfood-step__desc--light {
    color: rgba(255, 255, 255, 0.75);
}

/* --- Glow on hover --- */
.freshfood-step__glow {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(216, 67, 21, 0.12) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.freshfood-step__card:hover .freshfood-step__glow {
    opacity: 1;
}

.freshfood-step__glow--light {
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
}

/* ============================================================
   HIGHLIGHTED LAST STEP
   ============================================================ */
.freshfood-step__card--highlight {
    background: linear-gradient(
        145deg,
        var(--clr-primary) 0%,
        var(--clr-primary-dark) 100%
    );
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(216, 67, 21, 0.4);
}

.freshfood-step__card--highlight:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 20px 56px rgba(216, 67, 21, 0.55);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Guarantee badge */
.freshfood-step__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.freshfood-step__badge i {
    color: #a5f3a5;
    font-size: 0.8rem;
}

/* ============================================================
   ARROW BETWEEN STEPS
   ============================================================ */
.freshfood-arrow {
    width: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(216, 67, 21, 0.4);
    font-size: 0.9rem;
    margin-top: 60px; /* align with icon centre */
    transition: color 0.25s ease;
}

.freshfood-step:hover + .freshfood-step .freshfood-arrow,
.freshfood-step:hover .freshfood-arrow {
    color: var(--clr-primary);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.freshfood-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 56px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 18px 28px;
    row-gap: 14px;
}

.freshfood-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #cbd5e1;
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
    white-space: nowrap;
}

.freshfood-trust-item i {
    font-size: 1rem;
    color: #ff7043;
    flex-shrink: 0;
}

.freshfood-trust-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199.98px) {
    .freshfood-step__title {
        font-size: 0.82rem;
    }
    .freshfood-step__card {
        padding: 28px 14px 24px;
    }
}

@media (max-width: 991.98px) {
    /* Switch to 2-column grid */
    .freshfood-section {
        padding: 70px 0 80px;
    }
    .freshfood-timeline {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .freshfood-line {
        display: none;
    }
    .freshfood-arrow {
        display: none !important;
    }
    .freshfood-step {
        flex: unset;
    }
    .freshfood-step--last {
        grid-column: 1 / -1;
    }
    .freshfood-step__card--highlight {
        flex-direction: row;
        flex-wrap: wrap;
        text-align: left;
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
    }
    .freshfood-step--last .freshfood-step__num {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .freshfood-section {
        padding: 56px 0 64px;
    }
    .freshfood-timeline {
        grid-template-columns: 1fr;
    }
    .freshfood-step--last {
        grid-column: auto;
    }
    .freshfood-step__card--highlight {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .freshfood-trust-item {
        padding: 0 10px;
        font-size: 0.78rem;
    }
    .freshfood-trust-divider {
        display: none;
    }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    background: var(--clr-off-white);
    position: relative;
    overflow: hidden;
}

.faq-section__subtitle {
    font-size: 1rem;
    color: var(--clr-text-mid);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.faq-item {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(216, 67, 21, 0.3);
}

.faq-header {
    margin-bottom: 0;
}

.faq-button {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition);
}

.faq-button__text {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-text-dark);
}

.faq-button__icon {
    color: var(--clr-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-button__arrow {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    transition: transform 0.3s ease;
}

.faq-button:not(.collapsed) {
    background: rgba(216, 67, 21, 0.03);
}

.faq-button:not(.collapsed) .faq-button__arrow {
    transform: rotate(180deg);
    color: var(--clr-primary);
}

.faq-body {
    padding: 0 24px 24px 58px;
    font-size: 0.95rem;
    color: var(--clr-text-mid);
    line-height: 1.7;
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section {
    padding: 80px 0 90px;
    background: var(--clr-white);
}

/* --- Section subtitle --- */
.blog-section__subtitle {
    font-size: 0.94rem;
    color: var(--clr-text-mid);
    line-height: 1.65;
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
    max-width: 520px;
}

/* --- "View All" link --- */
.blog-section__view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
    border-radius: var(--radius-pill);
    padding: 8px 20px;
    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.blog-section__view-all:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
    transform: translateY(-2px);
}

.blog-section__view-all i {
    transition: transform var(--transition);
    font-size: 0.8rem;
}

.blog-section__view-all:hover i {
    transform: translateX(4px);
}

/* ============================================================
   BLOG CARD
   ============================================================ */
.blog-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--clr-white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.28s ease;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.13);
}

/* ---- Thumbnail ---- */
.blog-card__thumb-link {
    display: block;
    text-decoration: none;
}

.blog-card__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 0;
}

/* Gradient background layers (one per card) */
.blog-card__thumb-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__thumb-bg {
    transform: scale(1.06);
}

.blog-card__thumb-bg--1 {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
}

.blog-card__thumb-bg--2 {
    background: linear-gradient(145deg, #0d1b2a 0%, #1b3a5c 40%, #0f5298 100%);
}

.blog-card__thumb-bg--3 {
    background: linear-gradient(145deg, #1a1200 0%, #3d2200 40%, #7c4400 100%);
}

/* Subtle radial light on the bg */
.blog-card__thumb-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(
            circle at 75% 25%,
            rgba(216, 67, 21, 0.22) 0%,
            transparent 55%
        ),
        radial-gradient(
            circle at 25% 80%,
            rgba(255, 167, 38, 0.13) 0%,
            transparent 50%
        );
}

/* ---- Single badge overlaid on the image (top-left) ---- */
.blog-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #111111;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.blog-card__badge i {
    font-size: 0.65rem;
    opacity: 0.85;
}

/* ---- Card body ---- */
.blog-card__body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

/* Date row */
.blog-card__date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--clr-text-light);
    margin: 0;
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
}

.blog-card__date i {
    color: var(--clr-primary);
    font-size: 0.78rem;
    flex-shrink: 0;
}

.blog-card__date time {
    color: var(--clr-text-light);
}

/* Title */
.blog-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    line-height: 1.45;
    margin: 0;

    /* 3-line clamp */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.blog-card__title-link:hover {
    color: var(--clr-primary);
}

/* ============================================================
   TESTIMONIAL SECTION
   ============================================================ */
.testimonial-section {
    padding: 80px 0 90px;
    background: var(--clr-white);
}

.testimonial-section__subtitle {
    font-size: 0.95rem;
    color: var(--clr-text-mid);
    max-width: 580px;
    line-height: 1.6;
    text-align: center;
}

.testimonial-card {
    padding: 10px; /* spacing for shadow */
}

.testimonial-card-wrapper {
    position: relative;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: 100%;
}

.testimonial-card:hover .testimonial-card-wrapper {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(216, 67, 21, 0.25);
}

.testimonial-quote-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2.5rem;
    color: var(--clr-primary);
    opacity: 0.08;
    pointer-events: none;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(216, 67, 21, 0.1);
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    margin: 0;
}

.testimonial-rating {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-rating i {
    color: var(--clr-accent);
    font-size: 0.75rem;
}

.testimonial-rating__label {
    font-size: 0.68rem;
    color: var(--clr-text-light);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--clr-text-mid);
    line-height: 1.7;
    margin: 0;
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
    font-style: italic;
}

/* --- Owl Carousel Dots Override --- */
.testimonials-carousel.owl-theme .owl-dots {
    margin-top: 40px !important;
}

.testimonials-carousel.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: rgba(216, 67, 21, 0.2) !important;
    transition: all var(--transition);
    border-radius: 50%;
}

.testimonials-carousel.owl-theme .owl-dots .owl-dot.active span,
.testimonials-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--clr-primary) !important;
    width: 24px;
    border-radius: var(--radius-pill);
}

/* ============================================================
   TESTIMONIAL SECTION — RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .testimonial-section {
        padding: 60px 0 70px;
    }
}
/* ============================================================
   ORDER STEPS SECTION
   ============================================================ */
.order-step-section {
    position: relative;
    background: var(--clr-white);
}

.step-card {
    position: relative;
    text-align: center;
    transition: all var(--transition);
}

.step-card__img-wrap {
    position: relative;
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: visible; /* to show the badge overlap */
    transition: transform var(--transition);
}

.step-card:hover .step-card__img-wrap {
    transform: translateY(-5px) scale(1.02);
}

.step-card__img-wrap img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
}

.step-card__badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(
        135deg,
        var(--clr-primary) 0%,
        var(--clr-accent) 100%
    );
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(216, 67, 21, 0.4);
    border: 3px solid var(--clr-white);
    z-index: 2;
}

.step-card__title {
    font-size: 1.15rem;
    font-weight: 750;
    color: var(--clr-text-dark);
    margin-bottom: 8px;
}

.step-card__desc {
    font-size: 0.88rem;
    color: var(--clr-text-mid);
    line-height: 1.6;
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
    padding: 0 10px;
}

/* --- Process Connectors (Desktop) --- */
@media (min-width: 992px) {
    .steps-row .col-md-3:not(:last-child) .step-card::after {
        content: "";
        position: absolute;
        top: 80px; /* Aligned with image centerish */
        right: -15%;
        width: 30%;
        height: 2px;
        background-image: linear-gradient(
            to right,
            var(--clr-border) 50%,
            transparent 50%
        );
        background-size: 8px 1px;
        background-repeat: repeat-x;
        z-index: 1;
    }
}

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.benefits-section {
    background: var(--clr-off-white);
    position: relative;
    overflow: hidden;
}

.benefit-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 35px 24px;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    cursor: default;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(216, 67, 21, 0.25);
}

.benefit-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--clr-white);
    transition: transform var(--transition);
}

.benefit-card:hover .benefit-card__icon {
    transform: rotate(10deg) scale(1.1);
}

/* Icon Color Variants */
.benefit-card__icon--orange {
    background: linear-gradient(135deg, #ff7043 0%, #d84315 100%);
}
.benefit-card__icon--blue {
    background: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%);
}
.benefit-card__icon--red {
    background: linear-gradient(135deg, #ef5350 0%, #c62828 100%);
}
.benefit-card__icon--green {
    background: linear-gradient(135deg, #66bb6a 0%, #2e7d32 100%);
}
.benefit-card__icon--amber {
    background: linear-gradient(135deg, #ffb74d 0%, #f57c00 100%);
}
.benefit-card__icon--teal {
    background: linear-gradient(135deg, #26a69a 0%, #00796b 100%);
}
.benefit-card__icon--indigo {
    background: linear-gradient(135deg, #5c6bc0 0%, #303f9f 100%);
}
.benefit-card__icon--purple {
    background: linear-gradient(135deg, #ab47bc 0%, #7b1fa2 100%);
}

.benefit-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    line-height: 1.4;
    margin: 0;
}

/* ============================================================
   BULK ORDER SECTION
   ============================================================ */
.bulk-order-section {
    background-color: var(--clr-off-white);
    background-image: radial-gradient(
        rgba(216, 67, 21, 0.05) 1px,
        transparent 1px
    );
    background-size: 24px 24px;
    position: relative;
    overflow: hidden;
}

.bulk-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    background: var(--clr-white);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    transition: all var(--transition);
}

.bulk-feature-item:hover {
    transform: translateX(10px);
    border-color: var(--clr-primary);
    box-shadow: var(--shadow-sm);
}

.bulk-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(
        135deg,
        var(--clr-primary-light),
        var(--clr-primary)
    );
    color: var(--clr-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.bulk-feature-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: 4px;
}

.bulk-feature-text p {
    font-size: 0.9rem;
    color: var(--clr-text-mid);
    margin: 0;
}

/* --- CTA Card --- */
.bulk-cta-card {
    background: var(--clr-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.bulk-cta-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
}

.bulk-cta-icon-pulsate {
    width: 80px;
    height: 80px;
    background: rgba(216, 67, 21, 0.1);
    color: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.bulk-cta-icon-pulsate::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(216, 67, 21, 0.2);
    animation: pulsateScale 2s infinite;
    z-index: -1;
}

@keyframes pulsateScale {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.bulk-cta-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-text-dark);
    margin-bottom: 15px;
}

.bulk-cta-body p {
    color: var(--clr-text-mid);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.bulk-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--clr-text-dark);
    color: var(--clr-white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    margin-bottom: 15px;
}

.bulk-phone-btn:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(216, 67, 21, 0.3);
}

.bulk-cta-note {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    display: block;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
    padding: 80px 0 0;
    background-color: #110e0d; /* Very deep charcoal-orange */
    color: rgba(255, 255, 255, 0.85);
}

.footer-logo-box {
    display: inline-block;
    background: var(--clr-white);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #110e0d;
    letter-spacing: -0.5px;
}

.text-primary-accent {
    color: var(--clr-primary);
}

.footer-about-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 350px;
}

.footer-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-white);
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 15px;
}

.footer-list li a {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-list li a i {
    font-size: 0.7rem;
    color: var(--clr-primary);
    transition: transform var(--transition);
}

.footer-list li a:hover {
    color: var(--clr-primary-light);
    padding-left: 5px;
}

.footer-list li a:hover i {
    transform: translateX(3px);
}

/* --- Footer Bottom --- */
.footer-bottom {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.developer-credit {
    color: var(--clr-primary-light);
    font-weight: 700;
    transition: color var(--transition);
}

.developer-credit:hover {
    color: var(--clr-white);
}

.footer-social {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 0.95rem;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(216, 67, 21, 0.3);
}

/* ============================================================
   SITE FOOTER — RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .site-footer {
        padding: 60px 0 0;
    }
    .footer-social {
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 767.98px) {
    .site-footer {
        text-align: center;
    }
    .footer-about-text {
        margin: 0 auto;
    }
    .footer-list li a {
        justify-content: center;
    }
    .footer-logo-box {
        padding: 10px 20px;
    }
}

/* Live Station */
.station-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.station-card:hover {
    border-color: var(--clr-primary);
    box-shadow: var(--shadow-sm);
}

.station-card span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--clr-primary);
    color: var(--clr-white);
    font-size: 1.2rem;
}
