/* ==========================================================================
   LẨU NHÀ - PREMIUM LANDING PAGE STYLES
   Color Theme:
   - Primary: #D85A2A (Cam đất / màu lửa)
   - Secondary: #3A2118 (Nâu nước lẩu / nâu gỗ)
   - Background: #FFF7EC (Kem nóng)
   - Accent: #E9A23B (Vàng dầu / ánh lửa)
   - Fresh Accent: #687A3A (Xanh rau 5-10%)
   ========================================================================== */

:root {
    --primary-orange: #D85A2A;
    --primary-orange-hover: #C2481D;
    --primary-dark-orange: #9E3512;
    --secondary-brown: #3A2118;
    --secondary-brown-card: #2B1710;
    --secondary-brown-dark: #1F100A;
    --bg-cream: #FFF7EC;
    --bg-warm: #FFEEDC;
    --accent-gold: #E9A23B;
    --accent-gold-bright: #F5B041;
    --fresh-green: #687A3A;
    --text-primary: #2B1710;
    --text-muted: #6E5C54;
    --text-light: #FFF7EC;
    --border-color: #F0DFC8;
    --border-dark: #4D3126;
    --shadow-sm: 0 2px 8px rgba(58, 33, 24, 0.08);
    --shadow-md: 0 8px 24px rgba(58, 33, 24, 0.14);
    --shadow-lg: 0 16px 40px rgba(216, 90, 42, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-cream);
    line-height: 1.6;
}

body {
    overflow-x: hidden;
    padding-bottom: 70px; /* Space for mobile sticky bar */
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.highlight-text {
    background: linear-gradient(120deg, #E9A23B 0%, #D85A2A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.font-accent {
    font-family: 'Playfair Display', serif;
}

/* Typography Headings */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    color: var(--secondary-brown);
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    h2 {
        font-size: 2.75rem;
    }
}

/* Section Header Shared */
.section-header {
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(216, 90, 42, 0.12);
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 12px;
}

.section-tag.green {
    background: rgba(104, 122, 58, 0.15);
    color: var(--fresh-green);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

/* Buttons System */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #C2481D 100%);
    color: #FFF;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(216, 90, 42, 0.35);
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(216, 90, 42, 0.5);
    background: linear-gradient(135deg, #E66635 0%, #A83610 100%);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #FFF;
    color: var(--secondary-brown);
    border: 2px solid var(--border-color);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-secondary:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background: rgba(216, 90, 42, 0.05);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.15rem;
}

/* Button Pulse Animation */
.btn-pulse {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(216, 90, 42, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(216, 90, 42, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(216, 90, 42, 0);
    }
}

/* Top Announcement Bar */
.announcement-bar {
    background: var(--secondary-brown);
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(233, 162, 59, 0.2);
}

.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.countdown {
    background: rgba(233, 162, 59, 0.2);
    border: 1px solid rgba(233, 162, 59, 0.5);
    padding: 4px 12px;
    border-radius: 20px;
    color: var(--accent-gold);
    font-weight: 700;
}

/* Header Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 247, 236, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

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

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

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

.logo-img-footer {
    height: 52px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    background: #FFF;
    padding: 4px;
}

.brand-name {
    font-weight: 900;
    font-size: 1.35rem;
    color: var(--primary-orange);
    letter-spacing: -0.5px;
    display: block;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--secondary-brown);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-links {
    display: none;
    gap: 28px;
}

@media (min-width: 992px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--secondary-brown);
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-phone {
    display: none;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--primary-orange);
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .btn-phone {
        display: flex;
    }
}

.btn-cta-nav {
    background: var(--primary-orange);
    color: #FFF;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-cta-nav:hover {
    background: var(--primary-orange-hover);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 60px 0 80px 0;
    background: radial-gradient(circle at top right, #FFEEDC 0%, #FFF7EC 70%);
    overflow: hidden;
}

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

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 60px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(216, 90, 42, 0.1);
    color: var(--primary-orange);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(216, 90, 42, 0.2);
}

.hero-title {
    font-size: 2.4rem;
    color: var(--secondary-brown);
    margin-bottom: 20px;
    font-weight: 900;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.4rem;
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FFF;
    border: 1px solid var(--border-color);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--secondary-brown);
    box-shadow: var(--shadow-sm);
}

.feature-tag i {
    color: var(--primary-orange);
}

.feature-tag.fresh-tag i {
    color: var(--fresh-green);
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

@media (min-width: 576px) {
    .hero-cta-group {
        flex-direction: row;
    }
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.avatars {
    display: flex;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #FFF;
    border: 2px solid #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-left: -10px;
    box-shadow: var(--shadow-sm);
}

.avatar:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.stars {
    color: var(--accent-gold);
    font-size: 0.95rem;
}

/* Hero Visual */
.hero-image-wrapper {
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid #FFF;
}

.floating-card {
    position: absolute;
    background: rgba(255, 247, 236, 0.96);
    backdrop-filter: blur(8px);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(240, 223, 200, 0.8);
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.card-broth {
    top: 20px;
    left: -15px;
}

.card-delivery {
    bottom: 20px;
    right: -15px;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: #FFF;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .problem-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.problem-card {
    background: var(--bg-warm);
    padding: 28px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-orange);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 1.15rem;
    color: var(--secondary-brown);
    margin-bottom: 10px;
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.solution-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 992px) {
    .solution-wrapper {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.solution-lead {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.solution-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.point-item {
    display: flex;
    gap: 18px;
}

.point-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-orange);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.point-item.fresh .point-icon {
    background: var(--fresh-green);
}

.point-item h4 {
    font-size: 1.1rem;
    color: var(--secondary-brown);
    margin-bottom: 6px;
}

.point-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.solution-image {
    position: relative;
}

.solution-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 3px solid #FFF;
}

.image-caption {
    margin-top: 14px;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

.image-caption i {
    color: var(--fresh-green);
}

/* Builder / Customizer Section */
.builder-section {
    padding: 90px 0;
    background: var(--secondary-brown);
    color: var(--text-light);
}

.builder-section h2 {
    color: #FFF;
}
/* Ensure banner heading stays on one line */
.banner-text h3 {
    white-space: nowrap;
    display: inline-block;
    text-align: center;
}

.builder-banner-offer {
    background: linear-gradient(135deg, rgba(216, 90, 42, 0.25) 0%, rgba(233, 162, 59, 0.2) 100%);
    border: 1px solid var(--accent-gold);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}

.builder-banner-offer i {
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.builder-banner-offer p {
    font-size: 1.1rem;
    color: #FFF;
}

.builder-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 30px;
    align-items: start;
}

.step-card {
    background: var(--secondary-brown-card);
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-dark);
    margin-bottom: 24px;
}

.step-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-orange);
    color: #FFF;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.step-title h3 {
    font-size: 1.25rem;
    color: #FFF;
}

/* Broth Options Cards */
.broth-options-grid, .set-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 576px) {
    .broth-options-grid, .set-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.broth-card, .set-card {
    position: relative;
    display: block;
    cursor: pointer;
}

.broth-card input, .set-card input {
    position: absolute;
    opacity: 0;
}

.card-thumb-wrapper {
    position: relative;
    width: 100%;
    height: 175px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 12px;
    background: #140A07;
}

.card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border: none;
    outline: none;
    transition: transform 0.3s ease;
}

.broth-card:hover .card-thumb,
.set-card:hover .card-thumb {
    transform: scale(1.06);
}

.card-thumb-wrapper .badge {
    position: absolute;
    top: 8px;
    left: 8px;
    margin-bottom: 0;
    z-index: 2;
}

.broth-content, .set-content {
    background: #1F100A;
    padding: 16px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.broth-content.has-qty,
.set-content.has-qty {
    border-color: var(--primary-orange);
    background: rgba(216, 90, 42, 0.18);
    box-shadow: 0 0 15px rgba(216, 90, 42, 0.25);
}

/* Quantity Control (+ / -) System */
.card-footer-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid var(--border-dark);
}

.qty-control {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #110704;
    border: 1px solid var(--border-dark);
    border-radius: 30px;
    padding: 3px 6px;
}

.btn-qty {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--primary-orange);
    color: #FFF;
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    user-select: none;
}

.btn-qty:hover {
    background: var(--accent-gold);
    color: #111;
    transform: scale(1.1);
}

.btn-qty:active {
    transform: scale(0.92);
}

.qty-count-badge {
    min-width: 28px;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--accent-gold);
    padding: 2px 4px;
    transition: var(--transition);
}

.qty-count-badge.has-count {
    color: #FFF;
    background: var(--primary-orange);
    border-radius: 12px;
    padding: 2px 8px;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    width: fit-content;
}

.badge.spicy { background: #D85A2A; color: #FFF; }
.badge.hot { background: #B81B1B; color: #FFF; }
.badge.mild { background: var(--fresh-green); color: #FFF; }
.badge.popular { background: var(--accent-gold); color: #111; }

.broth-content h4, .set-content h4 {
    font-size: 1.1rem;
    color: #FFF;
    margin-bottom: 6px;
}

.broth-content p {
    font-size: 0.88rem;
    color: #D2C4BC;
    margin-bottom: 12px;
}

.broth-price, .set-price {
    font-weight: 800;
    color: var(--accent-gold);
    font-size: 1.05rem;
}

.set-content ul {
    margin: 12px 0;
    font-size: 0.88rem;
    color: #E6D8CE;
}

.set-content li {
    margin-bottom: 6px;
}

.popular-ribbon {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--accent-gold);
    color: #111;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Addons Checkbox Grid */
.addons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.addon-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1F100A;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 1px solid var(--border-dark);
    font-size: 0.95rem;
    transition: var(--transition);
}

.addon-card:hover {
    border-color: var(--accent-gold);
}

.addon-card input {
    margin-right: 10px;
    accent-color: var(--primary-orange);
}

.addon-card strong {
    color: var(--accent-gold);
}

.addon-card .badge-free {
    background: var(--fresh-green);
    color: #FFF;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 800;
}

/* Builder Summary Sticky Box */
.summary-card {
    position: sticky;
    top: 90px;
    background: var(--secondary-brown-card);
    border: 1.5px solid var(--primary-orange);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.summary-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.summary-card hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: 16px 0;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #E6D8CE;
}

.summary-line strong {
    color: #FFF;
    font-weight: 700;
}

.summary-line.discount {
    color: #4ADE80;
}

.summary-line.discount strong {
    color: #4ADE80;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 20px;
}

.total-price {
    font-size: 1.7rem;
    color: var(--accent-gold);
    font-weight: 900;
}

/* Form Styles */
.order-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.88rem;
    color: #D2C4BC;
}

.form-group input {
    background: #140A06;
    border: 1px solid #3E2216;
    padding: 12px 14px;
    border-radius: 8px;
    color: #FFF;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 2px rgba(235, 94, 40, 0.2);
}

.form-note {
    font-size: 0.78rem;
    color: #D2C4BC;
    text-align: center;
    display: block;
    margin-top: 8px;
    line-height: 1.4;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #FFF;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    background: var(--bg-warm);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-color);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(216, 90, 42, 0.12);
    color: var(--primary-orange);
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.benefit-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--secondary-brown);
}

.benefit-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* Benefits Banner */
.benefits-banner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    background: var(--secondary-brown);
    color: #FFF;
    border-radius: var(--radius-lg);
    overflow: hidden;
    align-items: center;
}

@media (min-width: 992px) {
    .benefits-banner {
        grid-template-columns: 1fr 1fr;
    }
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-text {
    padding: 40px;
}

.banner-text h3 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.banner-text p {
    color: #E6D8CE;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: #FFF;
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.user-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--secondary-brown);
}

.time-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #FFF;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: var(--bg-cream);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    color: var(--secondary-brown);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #FFF;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Bottom CTA Banner */
.cta-bottom-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-brown) 0%, var(--primary-orange) 100%);
    color: #FFF;
}

.cta-bottom-section h2 {
    color: #FFF;
    margin-bottom: 16px;
}

.cta-bottom-section p {
    font-size: 1.15rem;
    margin-bottom: 36px;
    color: #FFEEDC;
}

.cta-btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 576px) {
    .cta-btns {
        flex-direction: row;
    }
}

.btn-phone-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFF;
    color: var(--primary-orange);
    font-weight: 800;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.15rem;
}

/* Footer */
.footer {
    background: var(--secondary-brown-dark);
    color: #D2C4BC;
    padding: 60px 0 20px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

.footer-col h4 {
    color: #FFF;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--secondary-brown-card);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 20px;
    font-size: 0.8rem;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #FFF;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
    display: flex;
    z-index: 999;
    padding: 10px 16px;
    gap: 12px;
}

@media (min-width: 992px) {
    .mobile-sticky-bar {
        display: none;
    }
}

.btn-mobile-call {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #FFF;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    font-weight: 800;
    border-radius: 30px;
    padding: 12px;
    font-size: 0.9rem;
}

.btn-mobile-order {
    flex: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--primary-orange);
    color: #FFF;
    font-weight: 800;
    border-radius: 30px;
    padding: 12px;
    font-size: 0.9rem;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 16, 10, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #FFF;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    max-width: 480px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-icon {
    font-size: 3.5rem;
    margin-bottom: 12px;
}

.modal-content h3 {
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.modal-detail {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 14px 0;
}

.modal-badge {
    background: var(--bg-warm);
    padding: 10px;
    border-radius: 8px;
    font-weight: 800;
    color: var(--secondary-brown);
    margin-bottom: 24px;
}
/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    /* Stack builder and summary columns vertically */
    .builder-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .builder-steps, .summary-card {
        width: 100%;
    }
    /* Hero section single column */
    .hero-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-content, .hero-visual {
        width: 100%;
    }
    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    /* CTA bottom section text size */
    .cta-bottom-section h2 {
        font-size: 1.5rem;
    }
    .cta-bottom-section p {
        font-size: 0.9rem;
    }
    /* Banner text scaling */
    .banner-text h3 {
        font-size: 1rem;
        white-space: normal;
        display: block;
        text-align: center;
    }
    .banner-text p {
        font-size: 0.85rem;
    }
    /* Navigation adjustments (simple collapse) */
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-actions {
        margin-top: 0.5rem;
        display: flex;
        justify-content: center;
        gap: 0.5rem;
    }
    /* Reduce padding on sections */
    section {
        padding: 40px 0;
    }
    /* Adjust benefit grid to single column */
    .benefits-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    /* Ensure images are fluid */
    img, video {
        max-width: 100%;
        height: auto;
    }
}
@media (max-width: 480px) {
    /* Further reduce font sizes on very small screens */
    .hero-title {
        font-size: 1.8rem;
    }
    .cta-bottom-section h2 {
        font-size: 1.25rem;
    }
    .banner-text h3 {
        font-size: 0.9rem;
    }
    .nav-links a {
        font-size: 0.9rem;
    }
}

