@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
    --brand-dark: #231F20;
    /* Charcoal, High Contrast */
    --brand-light: #F6EFE2;
    /* Off-white, beige background */
    --brand-white: #ffffff;

    --c-orange: #FF4900;
    /* Orange-Red Accent */
    --c-yellow: #FFC629;
    /* Bright Sunny Yellow */
    --c-teal: #00A7E1;
    /* Cool Teal/Cyan */
    --c-purple: #C5B4E2;
    /* Soft Lavender */
    --c-burgundy: #811B48;
    /* Deep Burgundy Accent */

    --font-head: 'Oswald', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --radius-pill: 500px;
}

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

html,
body {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--brand-dark);
    background-color: var(--brand-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-weight: 500;
}

html.no-scroll,
body.no-scroll {
    overflow: hidden !important;
    height: 100vh !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5vw;
}

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

.max-w-lg {
    max-width: 800px;
    margin: 0 auto;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

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

/* Globals */
.bg-yellow {
    background-color: var(--c-yellow);
}

.bg-purple {
    background-color: var(--c-purple);
}

.bg-teal {
    background-color: var(--c-teal);
}

.bg-orange-light {
    background-color: rgba(255, 73, 0, 0.1);
    border-radius: 30px;
    padding: 30px;
}

.bg-yellow-light {
    background-color: rgba(255, 198, 41, 0.2);
    border-radius: 30px;
    padding: 30px;
}

.bg-purple-light {
    background-color: rgba(197, 180, 226, 0.3);
    border-radius: 30px;
    padding: 30px;
}

.bg-teal-light {
    background-color: rgba(0, 167, 225, 0.1);
    border-radius: 30px;
    padding: 30px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(3rem, 6vw, 4.5rem);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.body-text {
    font-size: 1.25rem;
    line-height: 1.6;
}

/* BUTTONS */
.btn-primary {
    display: inline-block;
    background-color: var(--c-orange);
    color: var(--brand-white);
    font-family: var(--font-head);
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: var(--radius-pill);
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 73, 0, 0.4);
    transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: var(--brand-dark);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-large {
    font-size: 1.4rem;
    padding: 16px 40px;
    box-shadow: 0 5px 15px rgba(255, 73, 0, 0.4);
}

.btn-primary svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    margin-top: -3px;
}

/* 
===================
1. STICKY PILL NAV
===================
*/
.pill-nav-v4 {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1300px;
    background: var(--brand-white);
    border-radius: var(--radius-pill);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    overflow: hidden;
    max-height: 75px;
    background-color: var(--brand-white);
    /* Ensure solid white background */
}

.pill-nav-v4.active {
    max-height: calc(100vh - 40px);
    height: calc(100vh - 40px);
    width: 94%;
    border-radius: 40px;
    background-color: #ffffff !important;
    /* Force solid white */
    opacity: 1 !important;
    /* Force full visibility */
    display: flex;
    flex-direction: column;
}

.brand-text {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.brand-text span {
    color: var(--c-orange);
    margin-right: 15px;
    /* Clear gap between SNACKBAR and ALI BABA */
}

.nav-logo {
    height: 45px;
    margin-left: 10px;
    display: block;
}

.nav-promo {
    background: var(--brand-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 6px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-badge {
    background: var(--c-orange);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.promo-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-dark);
}

@media (max-width: 991px) {
    .nav-promo {
        padding: 4px 10px;
        background: transparent;
        border: none;
    }

    .promo-text {
        font-size: 0.8rem;
    }

    /* Hide promo text when the menu is fully expanded/active for cleaner look */
    .pill-nav-v4.active .nav-promo {
        display: none;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn-primary) {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover:not(.btn-primary) {
    color: var(--c-orange);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--brand-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* 
===================
2. HERO SECTION
===================
*/
.hero-v4 {
    position: relative;
    padding-top: 150px;
    padding-bottom: 200px;
    /* Increased padding to prevent arch clipping text */
    min-height: 90vh;
    overflow: hidden;
    background-color: var(--brand-light);
}

/* Background Huge Text Overlay */
.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-head);
    font-size: 20vw;
    color: rgba(0, 0, 0, 0.02);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
}

.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
    gap: 5vw;
}

.hero-left {
    flex: 1;
    position: relative;
}

.starburst-badge {
    display: inline-block;
    background: var(--c-yellow);
    color: var(--brand-dark);
    font-family: var(--font-head);
    font-size: 1rem;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 5px;
    clip-path: polygon(10% 0, 100% 10%, 90% 100%, 0 90%);
    /* slight tilt polygon */
    transform: rotate(-3deg);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(4rem, 8vw, 6.5rem);
    line-height: 0.95;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--brand-dark);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.5rem);
    text-transform: none;
    font-weight: 500;
    color: var(--brand-dark);
    line-height: 1.4;
    opacity: 0.9;
}

.hero-desc {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 500px;
}

/* Hero Right: Arch Layers */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.layered-image-container {
    position: relative;
    width: 400px;
    height: 500px;
}

.bg-arch {
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    bottom: 0;
    background: var(--c-purple);
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 1;
}

.main-float-img {
    position: absolute;
    top: 10%;
    left: -20%;
    width: 120%;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

.secondary-float-img {
    position: absolute;
    bottom: -10%;
    right: -20%;
    width: 80%;
    z-index: 3;
    animation: slowHover 4s infinite alternate;
}

.floating-circle-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--c-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: var(--font-head);
    font-size: 1.5rem;
    text-transform: uppercase;
    line-height: 1.1;
    z-index: 4;
    transform: rotate(15deg);
    box-shadow: 0 10px 20px rgba(255, 73, 0, 0.4);
}

@keyframes slowHover {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-15px);
    }
}

.convex-arch-bottom {
    position: absolute;
    bottom: -1px;
    /* Overlap slightly to hide gaps */
    left: 0;
    width: 100%;
    height: 120px;
    background: var(--brand-white);
    clip-path: ellipse(60% 100% at 50% 100%);
    z-index: 20;
}

/* 
===================
3. ABOUT SECTION
===================
*/
.about-v4 {
    background: var(--brand-white);
    padding: 100px 0 160px;
    /* Significant padding at bottom for breathing room */
    position: relative;
    border-top: none;
}

.features-arches {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: -60px;
    /* Shifted up as requested */
    position: relative;
    z-index: 30;
}

.arch-box {
    width: 280px;
    border-top-left-radius: 140px;
    border-top-right-radius: 140px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.arch-box:hover {
    transform: translateY(-10px);
}

.arch-box img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--brand-white);
}

.arch-box h4 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: var(--brand-dark);
}

.wavy-divider {
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/200.svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23F6EFE2' d='M0,50 C320,100 420,0 740,50 C1060,100 1160,0 1440,50 L1440,100 L0,100 Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center bottom;
    position: absolute;
    bottom: -1px;
    /* Overlap to remove line */
    width: 100%;
}

/* 
===================
4. PILL MENU
===================
*/
.menu-v4 {
    background: var(--brand-light);
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.menu-bg-vector {
    display: none;
    /* Removed vectors as requested */
}

.menu-pill-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* Allow wrapping on small screens but keep on one line if space permits */
    gap: 12px;
    margin: 40px auto 60px;
    max-width: 100%;
}

.pill-tab {
    background: var(--brand-white);
    color: var(--brand-dark);
    font-family: var(--font-head);
    font-size: 1.1rem;
    padding: 10px 22px;
    white-space: nowrap;
    border-radius: var(--radius-pill);
    border: 2px solid var(--brand-dark);
    /* Clear border for visibility */
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    margin: 0;
    /* Ensure no offset margin is causing 'trapvorm' */
    opacity: 1 !important;
    /* Force visibility in case JS conflicts */
    transform: none !important;
    /* Prevent staggered rotation/y-offset from sticking */
}

.pill-tab.active {
    background: var(--c-orange);
    color: var(--brand-white);
    border-color: var(--c-orange);
    box-shadow: 0 8px 15px rgba(255, 73, 0, 0.3);
}

.menu-cat-content {
    display: none;
    text-align: left;
}

.menu-cat-content.active {
    display: block;
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.menu-container-v4 {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.menu-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.menu-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.m-item {
    font-size: 1.2rem;
    border-bottom: 1px dashed rgba(35, 31, 32, 0.2);
    padding-bottom: 15px;
}

.m-item strong {
    font-family: var(--font-head);
    letter-spacing: 0.5px;
    font-size: 1.4rem;
}

.m-price {
    font-family: var(--font-head);
    color: var(--c-orange);
    float: right;
    font-size: 1.5rem;
}

.m-item small {
    display: block;
    font-size: 0.95rem;
    color: #555;
    margin-top: 5px;
    font-weight: 500;
}

.m-separator {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--c-orange);
    margin: 30px 0 10px;
    text-transform: uppercase;
}

.m-item-card {
    background: var(--brand-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.m-item-card h4 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: var(--brand-dark);
}

.m-item-card p {
    flex: 1;
    font-size: 0.95rem;
    color: #555;
    margin: 10px 0;
}

.m-item-card .m-price {
    align-self: flex-start;
    float: none;
    font-size: 2rem;
}

.cat-desc-badge {
    display: inline-block;
    background: var(--brand-dark);
    color: #fff;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-family: var(--font-head);
    font-size: 1.1rem;
}

.starburst-badge.small {
    font-size: 0.9rem;
    padding: 5px 15px;
}

.inline {
    display: inline-block;
}

.cat-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}


.col-title {
    font-family: var(--font-head);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--brand-dark);
    text-transform: uppercase;
    border-bottom: 3px solid var(--brand-dark);
    padding-bottom: 5px;
    display: inline-block;
}

.col-title small {
    font-size: 1rem;
    color: #666;
    display: block;
    text-transform: none;
    font-family: var(--font-body);
}

.menu-grid-2-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* 
===================
5. SFEER / GALLERY
===================
*/
.gallery-v4 {
    background: var(--brand-white);
    padding: 100px 0;
    overflow: hidden;
}

.slider-container {
    margin-top: 50px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 60px 5vw;
    /* Increased top padding to prevent arch clipping on hover */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
    padding-bottom: 40px;
}

.arch-slide {
    scroll-snap-align: center;
    width: 350px;
    height: 450px;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.arch-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arch-slide:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
}

.arch-slide:hover img {
    /* Ensure image doesn't break overflow */
    transform: scale(1.05);
}

/* 
===================
6. REVIEWS
===================
*/
.reviews-v4 {
    padding: 100px 0 150px;
}

.review-box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.r-box {
    background: var(--brand-white);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    text-align: left;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.cir-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--c-purple);
    color: var(--brand-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-head);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(10deg);
}

.r-box .quote {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 20px;
}

.r-box .author {
    font-family: var(--font-head);
    font-size: 1.4rem;
    color: var(--c-orange);
}

/* 
===================
7. FOOTER
===================
*/
.footer-v4 {
    position: relative;
    background: var(--brand-dark);
    color: #fff;
}

.arch-top-footer {
    position: absolute;
    top: -61px;
    /* Small overlap to hide line */
    left: 0;
    width: 100%;
    height: 122px;
    background: var(--brand-dark);
    clip-path: ellipse(60% 100% at 50% 100%);
    z-index: 10;
}

.footer-content-wrap {
    padding: 100px 0 60px;
    position: relative;
    z-index: 11;
}

.footer-grid-layout {
    display: grid;
    grid-template-columns: 3fr 3fr 1fr;
    gap: 40px;
    align-items: center;
}

.f-brand h2 {
    font-family: var(--font-head);
    font-size: clamp(4rem, 8vw, 6rem);
    line-height: 0.9;
    color: var(--brand-white);
}

.f-info h4 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    color: var(--c-yellow);
    margin-bottom: 10px;
}

.f-info p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.f-vector {
    position: relative;
}

.circle-stamp {
    width: 150px;
    height: 150px;
    border: 2px dashed #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--font-head);
    transform: rotate(-15deg);
}

.circle-stamp span {
    font-size: 1.2rem;
    color: var(--c-teal);
}

.circle-stamp strong {
    font-size: 2rem;
    color: var(--c-orange);
    text-transform: uppercase;
}

/* 
===================
8. RESPONSIVE
===================
*/
@media (max-width: 1024px) {
    .hero-layout {
        flex-direction: column;
        text-align: center;
    }

    .hero-right {
        margin-top: 60px;
    }

    .cat-dual-grid {
        grid-template-columns: 1fr;
    }

    .features-arches {
        flex-wrap: wrap;
        margin-top: 20px;
        gap: 30px;
    }

    .arch-box {
        width: calc(50% - 15px);
    }

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

@media (max-width: 768px) {
    .pill-nav-v4 {
        position: fixed;
        /* Keep it fixed so it stays at the top */
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        background: var(--brand-white);
        border-radius: var(--radius-pill);
        padding: 10px 20px;
        display: flex;
        flex-direction: row;
        /* Align horizontal */
        flex-wrap: wrap;
        /* Allow wrapping for links when menu is open */
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
        max-height: 75px;
    }

    .pill-nav-v4.active {
        max-height: 100vh;
        height: auto;
        border-radius: 30px;
        align-items: center;
    }

    .nav-brand {
        display: flex;
        align-items: center;
        z-index: 1005;
    }

    .nav-links {
        display: none;
        /* Changed from display: flex to none to prevent layout shift */
        flex-direction: column;
        width: 100%;
        flex-grow: 1;
        justify-content: center;
        padding-bottom: 20px;
        gap: 35px;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .pill-nav-v4.active .nav-links {
        display: flex;
        /* Show links when active */
        opacity: 1;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        margin-top: 25px;
    }

    .mobile-toggle {
        display: flex;
        position: relative;
        z-index: 1010;
        padding: 10px;
        cursor: pointer;
    }

    .nav-links a:not(.btn-primary) {
        font-size: 2rem;
        /* Premium big text for mobile height */
        font-family: var(--font-head);
        text-align: center;
        padding: 8px 0;
    }

    .nav-links .btn-primary {
        width: 100%;
        text-align: center;
        justify-content: center;
        font-size: 1.4rem;
        padding: 16px;
    }

    .hero-v4 {
        padding-top: 230px;
        /* Increased spacing between nav and hero badge */
    }

    .layered-image-container {
        width: 300px;
        height: 380px;
    }

    .features-arches {
        margin-top: 50px;
        gap: 25px;
    }

    .arch-box {
        width: 100%;
        border-radius: 20px;
        border-top-left-radius: 100px;
        border-top-right-radius: 100px;
        margin-top: 0;
    }

    .menu-grid-2,
    .menu-grid-2-inner {
        grid-template-columns: 1fr;
    }

    .footer-grid-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .f-vector {
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }

    .hero-bg-text {
        display: none;
    }
}

/* 
===================
7. HARDLOPERS SECTION
===================
*/
.hardlopers-v4 {
    padding: 100px 0;
    background: var(--brand-white);
}

.hardlopers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.h-card {
    background: var(--brand-light);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.h-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.h-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
}

.h-card h4 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.2;
    min-height: 3.8rem;
    /* Help keep titles aligned */
    display: flex;
    align-items: center;
    justify-content: center;
}

.h-card p {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #444;
    flex-grow: 1;
}

.small-p {
    font-size: 0.95rem !important;
}

/* 
===================
8. FAQ SECTION
===================
*/
.faq-v4 {
    padding: 100px 0;
    background: var(--brand-white);
}

.faq-list {
    margin-top: 50px;
}

.faq-item {
    background: var(--brand-light);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-family: var(--font-head);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--c-orange);
    text-transform: uppercase;
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.bg-light {
    background-color: var(--brand-light) !important;
}