/* --- CSS Variables --- */
:root {
    /* Brand Colors */
    --color-primary: #0F4C3A;
    /* Deep Forest Green */
    --color-secondary: #C5A059;
    /* Metallic Gold */
    --color-dark: #121212;
    /* Rich Dark Charcoal / Off-Black */
    --color-light: #F8F9FA;
    /* Off-White / Cream */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray: #4A4A4A;
    --color-light-gray: #A0A0A0;

    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #DFBE74 0%, #C5A059 50%, #9E7D3F 100%);
    --dark-gradient: linear-gradient(180deg, rgba(18, 18, 18, 0) 0%, rgba(18, 18, 18, 0.9) 100%);
    --primary-gradient: linear-gradient(135deg, #0F4C3A 0%, #072B20 100%);

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Global --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent; /* Remove tap flash on mobile */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    /* Safe area insets for notched iPhones */
    padding-left: max(2rem, env(safe-area-inset-left));
    padding-right: max(2rem, env(safe-area-inset-right));
}

.section {
    padding: 8rem 0;
    /* Increased padding */
}

.bg-light {
    background: linear-gradient(160deg, #F8F9FA 0%, #EDEEF1 55%, #F5F6F8 100%);
}

.bg-white {
    background: linear-gradient(160deg, #FFFFFF 0%, #F4F5F7 55%, #FAFAFA 100%);
}

.bg-dark {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.bg-primary {
    background: linear-gradient(135deg, #0F4C3A 0%, #0a3328 40%, #062419 100%);
}

.bg-black {
    background: linear-gradient(160deg, #060606 0%, #141414 50%, #080808 100%);
}

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

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

.text-light-gray {
    color: var(--color-light-gray);
}

.gold-text {
    color: var(--color-secondary);
}

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: none;
    /* prevent parent text-shadow bleeding into gradient text */
}

.divider {
    height: 3px;
    width: 60px;
    background: var(--gold-gradient);
    margin: 1.5rem auto;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    border-radius: 2px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: transform var(--transition-normal);
    transform-origin: right;
    transform: scaleX(0);
}

.btn:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

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

.btn-pill {
    border-radius: 50px;
}

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

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

.btn-outline:hover {
    color: var(--color-dark);
    border-color: var(--color-white);
}

.btn-outline::before {
    background: var(--color-white);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
    color: var(--color-white);
}

.btn-secondary::before {
    background: var(--color-primary);
}

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

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

.btn-light::before {
    background: var(--color-secondary);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.65rem 0;
    z-index: 100;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.65rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

/* Logo image default — pages can override */
.logo {
    gap: 0.6rem;
}

.logo img {
    height: 52px;
    width: 52px;
    object-fit: cover;
    border-radius: 8px;
    transition: border-radius 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.5s ease;
}

/* Brand name next to logo — gold gradient on all pages */
.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #DFBE74 0%, #C5A059 50%, #9E7D3F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

/* Left-align navbar logo area */
.nav-container {
    padding-left: 0.5rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 2px;
}

.logo-accent {
    color: var(--color-secondary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.mobile-menu-btn {
    display: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-dark);
    z-index: 1000;
    padding: 3rem 2rem;
    transition: right var(--transition-normal);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
    right: 0;
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.mobile-nav-links a {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('assets/Textiles_and_pottery_with_logo_BG_1.jpeg');
    /* Premium Handicraft background */
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Transparent at top so image stays original; gentle dark only at the bottom where text sits */
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 55%,
        rgba(0, 0, 0, 0.45) 80%,
        rgba(0, 0, 0, 0.62) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 2.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35), 0 1px 4px rgba(0, 0, 0, 0.25);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Helper: used on homepage to anchor CTA near bottom of hero */
.hero-cta-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 7vh;
    max-width: 100%;
}

.hero-cta-bottom {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

/* --- Page Header (inner pages) --- */
.page-header {
    padding: 10rem 0 4rem;
}

/* --- Categories Section --- */
.section-header {
    margin-bottom: 4rem;
}

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

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.category-card {
    display: block;
    background: var(--color-white);
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-normal);
    will-change: transform;
}

.category-card:hover {
    transform: translateY(-10px);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    border-radius: 20px 20px 0 0;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    will-change: transform;
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-gradient);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.category-card:hover .card-overlay {
    opacity: 1;
}

.view-btn {
    color: var(--color-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--color-secondary);
    padding-bottom: 5px;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.category-card:hover .view-btn {
    transform: translateY(0);
}

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.card-title {
    font-size: 1.2rem;
    color: var(--color-dark);
}

/* --- Why Us Section --- */
.why-us-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: center;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-us-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--color-secondary);
    transition: all var(--transition-normal);
}

.why-us-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(10px);
}

.why-icon {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-top: 0.2rem;
}

.why-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.why-content p {
    color: var(--color-light-gray);
    font-size: 0.95rem;
}

/* --- How It Works --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin: 0 auto 1.5rem;
}

/* --- FAQ Accordion --- */
.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-dark);
    font-family: var(--font-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-secondary);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--color-secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--color-gray);
    padding: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-secondary);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.feature-desc {
    color: var(--color-light-gray);
    font-size: 0.95rem;
}

/* --- CTA Section --- */
.cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* --- Footer --- */
.footer {
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-desc {
    color: var(--color-light-gray);
    margin: 1.5rem 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--color-secondary);
    color: var(--color-dark);
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--color-light-gray);
}

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

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-light-gray);
    margin-bottom: 1rem;
}

.contact-list li i {
    color: var(--color-secondary);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-light-gray);
    font-size: 0.9rem;
}

/* --- Animations --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */

/* ── Tablet (992px) ── */
@media (max-width: 992px) {
    .section {
        padding: 5rem 0;
    }

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

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

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

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

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

    .why-us-image {
        order: -1;
    }

    .why-us-image img {
        max-height: 420px;
        width: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    /* Page header on inner pages */
    .page-header {
        padding: 7rem 0 3rem !important;
    }

    .page-title {
        font-size: 2.8rem !important;
    }

    /* Hero CTA wrap */
    .hero-cta-wrap {
        padding-bottom: 5vh;
    }

    /* About page grid */
    .about-content-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    .about-content-grid img {
        max-height: 400px;
        width: 100%;
        object-fit: cover;
    }
}

/* ── Mobile (768px) ── */
@media (max-width: 768px) {
    .container {
        padding: 0 1.2rem;
    }

    .section {
        padding: 4rem 0;
    }

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

    .section-title {
        font-size: 1.9rem;
        word-break: break-word;
    }

    .section-desc {
        font-size: 1rem;
    }

    /* Navbar */
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile nav — full-width slide in */
    .mobile-nav {
        width: 100%;
        max-width: 320px;
    }

    .mobile-nav-links a {
        font-size: 1.3rem;
        padding: 0.4rem 0;
        display: block;
        min-height: 44px;
        line-height: 44px;
    }

    /* Hero */
    .hero {
        min-height: 100svh;
        background-attachment: scroll; /* Prevent parallax issues on iOS */
    }

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

    .hero-subtitle {
        font-size: 1.05rem;
        padding: 0 0.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 0 !important;
        padding: 1.5rem 1rem 2rem;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hero-cta-wrap {
        padding-bottom: 4vh;
    }

    /* Page header (About, Contact, Sourcing, Categories) */
    .page-header {
        padding: 6rem 0 2.5rem !important;
    }

    .page-title {
        font-size: 2.2rem !important;
        word-break: break-word;
        padding: 0 1rem;
    }

    /* About content grid — stack on mobile */
    .about-content-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .about-content-grid img {
        max-height: 300px;
        width: 100%;
        object-fit: cover;
        border-radius: 4px;
    }

    /* Stats row in About */
    .about-stats-row {
        flex-wrap: wrap;
        gap: 1rem !important;
    }

    /* Inline two-column form grids — stack on mobile */
    .form-row-2col {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    /* Contact form padding */
    .contact-form {
        padding: 1.8rem !important;
        border-radius: 4px !important;
    }

    .form-control {
        font-size: 16px !important; /* Prevents iOS auto-zoom on input focus */
    }

    /* CTA section */
    .cta-title {
        font-size: 1.9rem !important;
        word-break: break-word;
    }

    .cta-desc {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    /* Why Us */
    .why-us-split {
        gap: 2rem;
    }

    .why-us-item {
        padding: 1rem;
        gap: 1rem;
    }

    .why-us-image img {
        border-radius: 12px !important;
        max-height: 280px;
        width: 100%;
        object-fit: cover;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.8rem;
    }

    /* Category grid */
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-img-wrapper {
        aspect-ratio: 16/10; /* Wider aspect on mobile for landscape feel */
    }

    /* Process grid */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .process-step {
        padding: 1.5rem;
    }

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

    .footer-desc {
        max-width: 100%;
    }

    .footer-links ul li a,
    .contact-list li {
        min-height: 36px;
        line-height: 1.6;
    }

    /* FAQ */
    .faq-question {
        font-size: 1rem;
        padding: 1.2rem 0;
    }

    /* Divider */
    .divider {
        margin: 1rem auto;
    }

    /* Social links — bigger touch targets */
    .social-links a {
        width: 46px;
        height: 46px;
    }
}

/* ── Small Mobile (480px) ── */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

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

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

    .hero-subtitle {
        font-size: 0.98rem;
        letter-spacing: 0;
    }

    .page-title {
        font-size: 1.8rem !important;
    }

    .page-header {
        padding: 5rem 0 2rem !important;
    }

    .btn {
        padding: 0.85rem 1.8rem;
        font-size: 0.85rem;
    }

    .cta-title {
        font-size: 1.6rem !important;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .logo img {
        height: 42px;
        width: 42px;
    }

    .brand-name {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .why-icon {
        font-size: 1.5rem;
    }

    .why-content h3 {
        font-size: 1.1rem;
    }

    .contact-form {
        padding: 1.2rem !important;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .faq-container {
        margin-top: 2rem;
    }

    .footer {
        padding-top: 3rem;
    }

    .footer-grid {
        gap: 1.5rem;
    }

    .footer-heading {
        font-size: 1rem;
    }

    .contact-list li {
        font-size: 0.9rem;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    /* hp-showcase strip on very small screens */
    .hp-showcase {
        height: 75vh !important;
        min-height: 480px !important;
    }

    .hp-hero-card {
        width: 230px !important;
    }

    .hp-strip-item {
        width: 130px !important;
        height: 150px !important;
    }

    /* cat-showcase strip on very small screens */
    .cat-showcase {
        height: 75vh !important;
        min-height: 480px !important;
    }

    .cat-hero-card {
        width: 230px !important;
    }

    .cat-strip-item {
        width: 130px !important;
        height: 150px !important;
    }
}

/* ── Touch / Pointer improvements (all sizes) ── */
@media (hover: none) and (pointer: coarse) {
    /* On touch devices, show card overlays by default since there's no hover */
    .card-overlay {
        opacity: 0.6;
    }

    .view-btn {
        transform: translateY(0);
    }

    .hp-hero-card:hover .hp-card-overlay,
    .cat-hero-card:hover .cat-card-overlay {
        opacity: 1;
    }

    .hp-hero-card:hover .hp-view-label,
    .cat-hero-card:hover .cat-view-label {
        transform: translateY(0);
    }

    /* Disable translateX hover that feels odd on touch */
    .why-us-item:hover {
        transform: none;
    }

    .feature-card:hover {
        transform: none;
    }
}

/* ── Print / A11y ── */
@media (prefers-reduced-motion: reduce) {
    .fade-in-up {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .hp-strip-track,
    .cat-strip-track {
        animation: none !important;
    }

    .card-img,
    .hp-card-img-wrap img,
    .cat-card-img-wrap img {
        transition: none !important;
    }
}
