/* ============================================================
   AuthenticSamosa.com — Main Stylesheet
   ============================================================ */

/* ── CSS Variables ────────────────────────────────────────── */
:root {
    --orange:       #E8721C;
    --orange-dark:  #C45C10;
    --orange-light: #FFF0E4;
    --dark:         #1A1A1A;
    --charcoal:     #2D2D2D;
    --body-bg:      #FAFAF8;
    --card-bg:      #FFFFFF;
    --text:         #333333;
    --text-muted:   #6B7280;
    --border:       #E5E7EB;
    --success:      #16A34A;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, sans-serif;
    --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
    --shadow-md:    0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:    0 8px 32px rgba(0,0,0,.13);
    --radius:       12px;
    --radius-sm:    8px;
    --transition:   0.25s ease;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--body-bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

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

a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }

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

/* ── Bootstrap overrides ──────────────────────────────────── */
.btn-primary {
    background: var(--orange);
    border-color: var(--orange);
    font-weight: 600;
    border-radius: 50px;
    padding: .55rem 1.5rem;
}
.btn-primary:hover, .btn-primary:focus {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
}
.btn-outline-primary {
    color: var(--orange);
    border-color: var(--orange);
    border-radius: 50px;
    font-weight: 600;
}
.btn-outline-primary:hover {
    background: var(--orange);
    border-color: var(--orange);
}
.btn-light { border-radius: 50px; font-weight: 600; }
.btn-outline-light { border-radius: 50px; font-weight: 600; }

/* ── Top Bar ──────────────────────────────────────────────── */
.topbar {
    background: var(--dark);
    color: rgba(255,255,255,.75);
    font-size: .8rem;
    padding: .45rem 0;
}
.topbar a { color: rgba(255,255,255,.75); }
.topbar a:hover { color: var(--orange); }
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
}
.topbar-right { display: flex; gap: 1.25rem; }
.topbar i { margin-right: .3rem; color: var(--orange); }

/* ── Navigation ───────────────────────────────────────────── */
.main-nav {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border);
    padding: .75rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.main-nav.scrolled { box-shadow: var(--shadow-md); }

/* Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: .65rem;
    text-decoration: none;
}
.brand-icon {
    width: 44px;
    height: 44px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}
.brand-name span { color: var(--orange); }
.brand-tagline {
    font-size: .7rem;
    color: var(--text-muted);
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* Nav links */
.main-nav .nav-link {
    font-weight: 500;
    color: var(--charcoal);
    padding: .5rem .75rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active { color: var(--orange); background: var(--orange-light); }
.nav-cta { padding: .5rem 1.4rem !important; }

/* Dropdown */
.dropdown-menu {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: .5rem;
}
.dropdown-item {
    border-radius: var(--radius-sm);
    font-weight: 500;
    padding: .5rem .9rem;
    color: var(--text);
    transition: all var(--transition);
}
.dropdown-item:hover { background: var(--orange-light); color: var(--orange); }

/* Mobile toggler */
.navbar-toggler { border: none; font-size: 1.5rem; color: var(--dark); }
.navbar-toggler:focus { box-shadow: none; }

/* ── Section Styles ───────────────────────────────────────── */
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: .5rem;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto 2.5rem;
}
.section-label {
    display: inline-block;
    color: var(--orange);
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}
section { padding: 4.5rem 0; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
    padding: 5rem 0;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1585937421612-70a008356fbe?w=1600&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: .35;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,.9) 0%, rgba(26,26,26,.4) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 680px;
}
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50px;
    padding: .35rem 1rem;
    font-size: .85rem;
    color: rgba(255,255,255,.9);
    margin-bottom: 1.25rem;
    backdrop-filter: blur(8px);
}
.hero-label i { color: var(--orange); }
.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1;
}
.hero h1 span { color: var(--orange); }
.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,.82);
    margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-actions .btn-primary { font-size: 1rem; padding: .75rem 2rem; }
.hero-actions .btn-outline-light { font-size: 1rem; padding: .75rem 2rem; border-color: rgba(255,255,255,.5); }
.hero-actions .btn-outline-light:hover { background: rgba(255,255,255,.15); }

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    display: block;
}
.hero-stat .lbl {
    font-size: .8rem;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.hero-image-stack {
    position: relative;
    z-index: 2;
}
.hero-img-main {
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/5;
}
.hero-badge-fresh {
    position: absolute;
    bottom: 2rem;
    left: -1.5rem;
    background: #fff;
    border-radius: var(--radius);
    padding: .75rem 1.25rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: .6rem;
}
.hero-badge-fresh i { color: var(--orange); font-size: 1.4rem; }
.hero-badge-fresh strong { display: block; font-size: .95rem; color: var(--dark); }
.hero-badge-fresh small { color: var(--text-muted); font-size: .78rem; }

/* ── Features Strip ──────────────────────────────────────── */
.features-strip {
    background: var(--orange);
    padding: 0;
}
.features-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    border-right: 1px solid rgba(255,255,255,.2);
    color: #fff;
}
.feature-item:last-child { border-right: none; }
.feature-item i { font-size: 1.8rem; opacity: .9; flex-shrink: 0; }
.feature-item strong { display: block; font-weight: 700; font-size: 1rem; }
.feature-item span { font-size: .82rem; opacity: .85; }

/* ── Category Cards ──────────────────────────────────────── */
.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,.85) 0%, transparent 55%);
}
.category-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    color: #fff;
}
.category-card-body h3 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: .15rem;
}
.category-card-body small { font-size: .8rem; opacity: .8; }
.category-card-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9rem;
    backdrop-filter: blur(6px);
    transition: background var(--transition);
}
.category-card:hover .category-card-arrow { background: var(--orange); }

/* ── Product Cards ───────────────────────────────────────── */
.product-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.product-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-badges {
    position: absolute;
    top: .75rem;
    left: .75rem;
    display: flex;
    gap: .35rem;
    flex-wrap: wrap;
}
.badge-diet {
    font-size: .68rem;
    font-weight: 600;
    padding: .25rem .6rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.badge-diet.veg   { background: #D1FAE5; color: #065F46; }
.badge-diet.vegan { background: #A7F3D0; color: #064E3B; }
.badge-diet.halal { background: #DBEAFE; color: #1E40AF; }

.product-card-body {
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-card-cat {
    font-size: .75rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600;
    margin-bottom: .3rem;
}
.product-card-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: .35rem;
    line-height: 1.3;
}
.product-card-desc {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: auto;
    padding-bottom: .75rem;
}
.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: .75rem;
    border-top: 1px solid var(--border);
    margin-top: .5rem;
}
.product-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--orange);
    font-weight: 700;
}
.btn-view {
    background: var(--orange-light);
    color: var(--orange);
    border: none;
    border-radius: 50px;
    padding: .35rem .9rem;
    font-size: .82rem;
    font-weight: 600;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-view:hover { background: var(--orange); color: #fff; }

/* ── About Teaser ────────────────────────────────────────── */
.about-teaser-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.about-teaser-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.about-teaser-img .img-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--orange);
    color: #fff;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    text-align: center;
}
.img-badge strong { display: block; font-size: 2rem; line-height: 1; font-family: var(--font-heading); }
.img-badge span { font-size: .78rem; opacity: .9; }

.about-teaser-content { padding: 1rem 0 1rem 1.5rem; }
.check-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: .8rem;
    font-size: .95rem;
}
.check-list li i { color: var(--orange); font-size: 1rem; margin-top: .1rem; flex-shrink: 0; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-section { background: var(--orange-light); }
.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
}
.stars { color: #FBBF24; font-size: .9rem; margin-bottom: .75rem; }
.testimonial-text {
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-size: .95rem;
    line-height: 1.7;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .9rem; color: var(--dark); }
.author-loc { font-size: .78rem; color: var(--text-muted); }

/* ── CTA Strip ───────────────────────────────────────────── */
.cta-strip {
    background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
    padding: 3.5rem 0;
}
.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-strip-text h2 { color: #fff; font-size: 1.9rem; margin-bottom: .35rem; }
.cta-strip-text p  { color: rgba(255,255,255,.7); margin: 0; }
.cta-strip-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,.75);
    padding: 4rem 0 0;
}
.footer-brand { padding-right: 2rem; }
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    display: inline-block;
    margin-bottom: 1rem;
}
.footer-logo i { color: var(--orange); }
.footer-logo span { color: var(--orange); }
.footer-brand p { font-size: .9rem; line-height: 1.7; }

.social-links { display: flex; gap: .6rem; margin-top: 1.25rem; }
.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: 1rem;
    transition: all var(--transition);
}
.social-links a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

.footer-heading {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .03em;
    margin-bottom: 1.1rem;
    font-family: var(--font-body);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }

.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
    display: flex;
    gap: .65rem;
    margin-bottom: .65rem;
    font-size: .88rem;
    align-items: flex-start;
}
.footer-contact i { color: var(--orange); flex-shrink: 0; margin-top: .15rem; }
.footer-contact a { color: rgba(255,255,255,.65); }
.footer-contact a:hover { color: var(--orange); }

.opening-hours { margin-top: 1.25rem; }
.opening-hours h6 {
    font-size: .85rem;
    color: #fff;
    margin-bottom: .6rem;
    font-family: var(--font-body);
}
.opening-hours i { color: var(--orange); margin-right: .4rem; }
.opening-hours table { font-size: .83rem; }
.opening-hours td { padding: .15rem .6rem .15rem 0; color: rgba(255,255,255,.65); }
.opening-hours td:last-child { color: rgba(255,255,255,.85); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 3rem;
    padding: 1.25rem 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
}
.footer-bottom p { margin: 0; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-bottom ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 1rem; }
.footer-bottom a { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--orange); }

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
    padding: 3.5rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?w=1200&fit=crop') center/cover;
    opacity: .08;
}
.page-hero-content { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: .5rem; }
.page-hero p { color: rgba(255,255,255,.72); margin: 0; font-size: 1rem; }
.breadcrumb-item a { color: var(--orange); }
.breadcrumb-item.active { color: rgba(255,255,255,.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── Products Page Filter ─────────────────────────────────── */
.filter-bar {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    align-items: center;
}
.filter-btn {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: .45rem 1.1rem;
    font-size: .875rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}
.product-count-badge {
    background: var(--orange-light);
    color: var(--orange);
    border-radius: 50px;
    padding: .15rem .55rem;
    font-size: .72rem;
    font-weight: 700;
    margin-left: .3rem;
}
.filter-btn.active .product-count-badge {
    background: rgba(255,255,255,.25);
    color: #fff;
}

/* ── Single Product ──────────────────────────────────────── */
.product-detail-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.product-detail-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.product-detail-price {
    font-size: 2.2rem;
    color: var(--orange);
    font-family: var(--font-heading);
    font-weight: 700;
}
.diet-info {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}
.product-divider { border-color: var(--border); margin: 1.25rem 0; }

/* ── About Page ──────────────────────────────────────────── */
.value-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); }
.value-icon {
    width: 64px;
    height: 64px;
    background: var(--orange-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.6rem;
    color: var(--orange);
}
.value-card h4 { font-size: 1.05rem; margin-bottom: .4rem; }
.value-card p { font-size: .88rem; color: var(--text-muted); margin: 0; }

.team-card {
    text-align: center;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.team-card-img {
    aspect-ratio: 1;
    overflow: hidden;
}
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 1.25rem; }
.team-card-body h5 { margin-bottom: .15rem; }
.team-card-body small { color: var(--orange); font-weight: 600; font-size: .8rem; }

/* ── Contact Page ────────────────────────────────────────── */
.contact-info-card {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 2rem;
    color: #fff;
    height: 100%;
}
.contact-info-card h3 { color: #fff; }
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(232,114,28,.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-detail-label { font-size: .78rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .05em; }
.contact-detail-value { font-size: .95rem; color: rgba(255,255,255,.88); margin-top: .1rem; }
.contact-detail-value a { color: rgba(255,255,255,.88); }
.contact-detail-value a:hover { color: var(--orange); }

.contact-form-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.form-label { font-weight: 500; font-size: .9rem; color: var(--charcoal); }
.form-control, .form-select {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: .9rem;
    padding: .65rem .9rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232,114,28,.12);
    outline: none;
}
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }

/* ── Alert messages ──────────────────────────────────────── */
.alert-success {
    background: #D1FAE5;
    border-color: #A7F3D0;
    color: #065F46;
    border-radius: var(--radius-sm);
}
.alert-danger {
    background: #FEE2E2;
    border-color: #FECACA;
    color: #991B1B;
    border-radius: var(--radius-sm);
}

/* ── Legal Pages ─────────────────────────────────────────── */
.legal-content h2, .legal-content h3 { font-family: var(--font-heading); color: var(--dark); margin-top: 1.75rem; margin-bottom: .6rem; }
.legal-content h2 { font-size: 1.6rem; }
.legal-content h3 { font-size: 1.15rem; }
.legal-content p, .legal-content li { color: var(--text-muted); line-height: 1.8; }
.legal-content ul { padding-left: 1.5rem; }

/* ── Utility ─────────────────────────────────────────────── */
.bg-orange-light { background: var(--orange-light); }
.text-orange { color: var(--orange) !important; }
.fw-600 { font-weight: 600; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
    .features-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .feature-item:nth-child(2) { border-right: none; }
    .about-teaser-content { padding: 1.5rem 0 0; }
    .topbar-right { display: none; }
}

@media (max-width: 767px) {
    .features-strip-inner { grid-template-columns: 1fr 1fr; }
    .hero { min-height: 70vh; }
    .hero-stats { gap: 1.25rem; }
    .cta-strip-inner { flex-direction: column; text-align: center; }
    .cta-strip-actions { justify-content: center; }
    .hero-image-stack { display: none; }
    .hero-content { max-width: 100%; }
    section { padding: 3rem 0; }
}

@media (max-width: 575px) {
    .features-strip-inner { grid-template-columns: 1fr; }
    .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
    .feature-item:last-child { border-bottom: none; }
    .filter-bar { overflow-x: auto; flex-wrap: nowrap; padding-bottom: .5rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}
