/* ============================================
   Hibachi At Home Maine - Main Stylesheet
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Lato:wght@300;400;700&family=Dancing+Script:wght@600;700&display=swap');

/* CSS Variables */
:root {
    --primary: #1a1a1a;
    --accent: #E85D04;
    --gold: #F4A261;
    --bg: #FDF8F0;
    --text: #2D2D2D;
    --white: #ffffff;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
    --border: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --transition: all 0.3s ease;
    --radius: 8px;
    --radius-lg: 16px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Lato', sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Typography */
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; line-height: 1.3; color: var(--primary); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
p { margin-bottom: 1rem; }
.accent-text { font-family: 'Dancing Script', cursive; color: var(--accent); font-size: 1.4em; }

/* Buttons */
.btn { display: inline-block; padding: 0.85rem 2rem; border-radius: 50px; font-weight: 700; font-size: 1rem; transition: var(--transition); text-align: center; letter-spacing: 0.5px; }
.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 4px 15px rgba(232,93,4,0.3); }
.btn-primary:hover { background: #c74d03; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,93,4,0.4); }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--accent); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #e8912f; transform: translateY(-2px); }
.btn-dark { background: var(--primary); color: var(--white); }
.btn-dark:hover { background: #333; transform: translateY(-2px); }

/* Section */
.section { padding: 5rem 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--primary); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .accent-text { display: block; margin-bottom: 0.5rem; font-size: 1.1rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--gray); max-width: 650px; margin: 0 auto; font-size: 1.1rem; }
.divider { width: 60px; height: 4px; background: var(--accent); margin: 1rem auto; border-radius: 2px; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar { background: var(--primary); color: rgba(255,255,255,0.85); font-size: 0.85rem; padding: 0.5rem 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--gold); }
.top-bar-contact { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.top-bar-contact span { display: flex; align-items: center; gap: 0.3rem; }
.top-bar-right { font-style: italic; color: var(--gold); }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar { background: var(--white); box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 0.75rem; padding-bottom: 0.75rem; }
.nav-logo a { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo-icon { width: 45px; height: 45px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.3rem; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--primary); line-height: 1.2; }
.nav-logo-text span { display: block; font-size: 0.75rem; font-family: 'Lato', sans-serif; color: var(--gray); font-weight: 400; }
.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-link { padding: 0.5rem 0.75rem; color: var(--text); font-weight: 600; font-size: 0.9rem; border-radius: var(--radius); transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--accent); background: rgba(232,93,4,0.08); }
.nav-cta { background: var(--accent); color: var(--white) !important; padding: 0.6rem 1.25rem !important; border-radius: 50px !important; }
.nav-cta:hover { background: #c74d03 !important; color: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; }
.hamburger span { width: 25px; height: 2px; background: var(--primary); transition: var(--transition); display: block; }

/* ============================================
   HERO
   ============================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,26,0.8) 0%, rgba(26,26,26,0.5) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 750px; color: var(--white); padding: 2rem 0; }
.hero-badge { display: inline-block; background: var(--accent); color: var(--white); padding: 0.4rem 1.2rem; border-radius: 50px; font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero h1 span { color: var(--gold); }
.hero-sub { font-size: 1.25rem; color: rgba(255,255,255,0.9); margin-bottom: 2rem; max-width: 550px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Flame particles */
#flame-canvas { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar { background: var(--accent); color: var(--white); padding: 1.5rem 0; }
.trust-items { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; }
.trust-item { display: flex; align-items: center; gap: 0.75rem; }
.trust-item i { font-size: 1.5rem; color: var(--gold); }
.trust-item strong { font-size: 1.1rem; display: block; }
.trust-item span { font-size: 0.85rem; opacity: 0.9; }

/* ============================================
   CARDS
   ============================================ */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 1.75rem; }
.card-icon { width: 60px; height: 60px; background: rgba(232,93,4,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.card-icon i { font-size: 1.5rem; color: var(--accent); }
.card h3 { margin-bottom: 0.75rem; }
.card p { color: var(--gray); margin: 0; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.step { text-align: center; padding: 2rem 1.5rem; }
.step-number { width: 70px; height: 70px; background: var(--accent); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: 800; font-family: 'Playfair Display', serif; margin: 0 auto 1.25rem; box-shadow: 0 4px 15px rgba(232,93,4,0.3); }
.step h3 { margin-bottom: 0.75rem; color: var(--primary); }
.step p { color: var(--gray); font-size: 0.95rem; margin: 0; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonial { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); border-left: 4px solid var(--accent); }
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-text { font-style: italic; color: var(--gray); margin-bottom: 1.25rem; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 48px; height: 48px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1.1rem; }
.testimonial-name { font-weight: 700; color: var(--primary); }
.testimonial-location { font-size: 0.85rem; color: var(--gray); }

/* ============================================
   SERVICE AREA TEASER
   ============================================ */
.cities-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 2rem 0; }
.city-tag { background: rgba(232,93,4,0.1); color: var(--accent); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.9rem; font-weight: 600; border: 1px solid rgba(232,93,4,0.2); transition: var(--transition); }
.city-tag:hover { background: var(--accent); color: var(--white); }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; cursor: pointer; font-weight: 700; font-size: 1.05rem; color: var(--primary); gap: 1rem; }
.faq-question:hover { color: var(--accent); }
.faq-icon { width: 28px; height: 28px; background: var(--accent); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); font-size: 0.9rem; }
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--primary); }
.faq-answer { display: none; padding-bottom: 1.25rem; color: var(--gray); line-height: 1.8; }
.faq-item.active .faq-answer { display: block; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner { background: linear-gradient(135deg, var(--accent) 0%, #c74d03 100%); color: var(--white); text-align: center; padding: 5rem 0; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 2rem; font-size: 1.1rem; }
.cta-banner .btn-outline { border-color: var(--white); }

/* ============================================
   FOOTER
   ============================================ */
footer { background: var(--primary); color: rgba(255,255,255,0.8); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo-text { color: var(--white); }
.footer-tagline { color: rgba(255,255,255,0.6); margin: 1rem 0 1.5rem; font-size: 0.95rem; line-height: 1.7; }
.social-links { display: flex; gap: 0.75rem; }
.social-link { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.8); transition: var(--transition); }
.social-link:hover { background: var(--accent); color: var(--white); }
.footer-section h4 { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.9rem; }
.footer-contact-item i { color: var(--accent); margin-top: 0.2rem; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.8); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--gold); }
.footer-partner { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-partner a { color: var(--gold); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero { background: linear-gradient(135deg, var(--primary) 0%, #2d2d2d 100%); color: var(--white); padding: 5rem 0 3rem; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.25rem; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================
   GALLERY
   ============================================ */
.gallery-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.filter-btn { padding: 0.5rem 1.5rem; border: 2px solid var(--border); border-radius: 50px; font-weight: 600; font-size: 0.9rem; color: var(--gray); transition: var(--transition); background: var(--white); }
.filter-btn:hover, .filter-btn.active { border-color: var(--accent); color: var(--accent); background: rgba(232,93,4,0.05); }
.gallery-grid { columns: 3; column-gap: 1rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* ============================================
   MENU
   ============================================ */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-bottom: 4rem; }
.package-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); text-align: center; border: 2px solid var(--border); transition: var(--transition); position: relative; overflow: hidden; }
.package-card.featured { border-color: var(--accent); }
.package-card.featured::before { content: 'Most Popular'; position: absolute; top: 1rem; right: -1.5rem; background: var(--accent); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 2rem; transform: rotate(45deg); }
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.package-icon { font-size: 3rem; margin-bottom: 1rem; }
.package-name { font-size: 1.5rem; color: var(--primary); margin-bottom: 0.5rem; }
.package-price { color: var(--accent); font-size: 1.75rem; font-weight: 800; margin-bottom: 1.25rem; }
.package-price span { font-size: 1rem; color: var(--gray); font-weight: 400; }
.package-includes { text-align: left; margin-bottom: 2rem; }
.package-includes li { padding: 0.4rem 0; color: var(--gray); font-size: 0.95rem; border-bottom: 1px dashed var(--border); display: flex; align-items: center; gap: 0.5rem; }
.package-includes li:last-child { border: none; }
.package-includes li i { color: var(--accent); }
.proteins-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.protein-card { text-align: center; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.protein-card:hover { transform: translateY(-5px); }
.protein-card img { width: 100%; height: 160px; object-fit: cover; }
.protein-card h4 { padding: 1rem; color: var(--primary); margin: 0; font-size: 1rem; }
.sides-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.side-item { display: flex; align-items: center; gap: 1rem; background: var(--white); padding: 1.25rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.side-item i { font-size: 1.5rem; color: var(--accent); flex-shrink: 0; }
.side-item h4 { color: var(--primary); margin: 0; font-size: 1rem; }
.side-item p { margin: 0; font-size: 0.85rem; color: var(--gray); }

/* ============================================
   SERVICE AREA
   ============================================ */
.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); margin-bottom: 3rem; }
.map-container iframe { width: 100%; height: 450px; border: none; display: block; }
.cities-full-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.city-card { background: var(--white); padding: 1.25rem 1.5rem; border-radius: var(--radius); box-shadow: var(--shadow); border-left: 3px solid var(--accent); transition: var(--transition); }
.city-card:hover { transform: translateX(5px); border-left-color: var(--gold); }
.city-card h4 { color: var(--primary); margin-bottom: 0.25rem; font-size: 1rem; }
.city-card p { color: var(--gray); font-size: 0.85rem; margin: 0; }

/* ============================================
   BLOG
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.blog-card-img { width: 100%; height: 230px; object-fit: cover; }
.blog-card-body { padding: 1.75rem; }
.blog-meta { display: flex; gap: 1rem; margin-bottom: 0.75rem; font-size: 0.85rem; color: var(--gray); flex-wrap: wrap; }
.blog-meta .category { background: var(--accent); color: var(--white); padding: 0.2rem 0.75rem; border-radius: 50px; font-weight: 700; }
.blog-card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.blog-card h3 a { color: var(--primary); }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 1.25rem; }
.read-more { color: var(--accent); font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 0.4rem; }
.read-more:hover { gap: 0.7rem; }

/* Blog Post */
.blog-post { max-width: 820px; margin: 0 auto; }
.blog-post-header { margin-bottom: 2rem; }
.blog-post-featured { width: 100%; height: 450px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 2rem; }
.blog-post-meta { display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.9rem; color: var(--gray); margin-bottom: 1rem; align-items: center; }
.blog-post-meta .category { background: var(--accent); color: var(--white); padding: 0.25rem 0.85rem; border-radius: 50px; font-weight: 700; }
.blog-post-content h2 { margin: 2rem 0 1rem; font-size: 1.6rem; }
.blog-post-content h3 { margin: 1.5rem 0 0.75rem; font-size: 1.3rem; color: var(--accent); }
.blog-post-content p { margin-bottom: 1.25rem; line-height: 1.9; }
.blog-post-content ul, .blog-post-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.blog-post-content ul { list-style: disc; }
.blog-post-content ol { list-style: decimal; }
.blog-post-content li { margin-bottom: 0.5rem; color: var(--text); line-height: 1.7; }
.blog-post-content a { color: var(--accent); }
.blog-post-cta { background: rgba(232,93,4,0.07); border: 1px solid rgba(232,93,4,0.2); border-radius: var(--radius-lg); padding: 2rem; margin: 2.5rem 0; text-align: center; }
.blog-post-cta h3 { margin-bottom: 0.75rem; }
.share-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 2rem; }
.share-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; color: var(--white); }
.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0a66c2; }
.share-btn.email-share { background: var(--gray); }
.related-posts { background: var(--light-gray); padding: 2rem; border-radius: var(--radius-lg); margin-top: 3rem; }
.related-posts h3 { margin-bottom: 1.25rem; }
.related-list { display: flex; flex-direction: column; gap: 0.75rem; }
.related-item { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.95rem; }
.related-item i { color: var(--accent); margin-top: 0.2rem; flex-shrink: 0; }
.related-item a { color: var(--primary); font-weight: 600; }
.related-item a:hover { color: var(--accent); }

/* ============================================
   CONTACT / BOOKING FORMS
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info { background: var(--primary); color: var(--white); padding: 2.5rem; border-radius: var(--radius-lg); }
.contact-info h2 { color: var(--white); margin-bottom: 0.5rem; }
.contact-info p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.contact-info-item .icon { width: 44px; height: 44px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-info-item h4 { color: var(--white); margin-bottom: 0.25rem; font-size: 0.95rem; }
.contact-info-item a { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.contact-info-item a:hover { color: var(--gold); }
.form-card { background: var(--white); padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.form-card h2 { margin-bottom: 0.5rem; }
.form-card p { color: var(--gray); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--primary); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.85rem 1rem; border: 2px solid var(--border); border-radius: var(--radius); font-family: 'Lato', sans-serif; font-size: 1rem; color: var(--text); transition: var(--transition); background: var(--bg); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); background: var(--white); box-shadow: 0 0 0 3px rgba(232,93,4,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.honeypot { display: none !important; }
.form-submit { width: 100%; padding: 1rem; font-size: 1.1rem; font-weight: 700; }

/* Comparison Table */
.comparison-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.comparison-table th { background: var(--accent); color: var(--white); padding: 1rem 1.5rem; text-align: left; font-family: 'Playfair Display', serif; font-size: 1rem; }
.comparison-table td { padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); }
.comparison-table tr:nth-child(even) td { background: rgba(232,93,4,0.03); }
.comparison-table .check { color: #16a34a; }
.comparison-table .cross { color: #dc2626; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; }
.stat-item { padding: 2rem; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

/* 404 Page */
.error-page { min-height: 80vh; display: flex; align-items: center; text-align: center; }
.error-code { font-family: 'Playfair Display', serif; font-size: 8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.error-page h2 { margin: 1rem 0; }
.error-page p { color: var(--gray); margin-bottom: 2rem; }

/* ============================================
   AOS animations overrides
   ============================================ */
[data-aos] { opacity: 0; transition-property: opacity, transform; }
[data-aos].aos-animate { opacity: 1; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info { order: 2; }
    .form-card { order: 1; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .hamburger { display: flex; }
    .nav-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--primary); flex-direction: column; justify-content: center; align-items: center; gap: 1rem; z-index: 9999; }
    .nav-menu.active { display: flex; }
    .nav-menu .nav-link { color: var(--white); font-size: 1.2rem; padding: 0.75rem 2rem; }
    .nav-menu .nav-cta { background: var(--accent) !important; }
    .nav-close { position: absolute; top: 1.5rem; right: 1.5rem; color: var(--white); font-size: 2rem; cursor: pointer; }
    .gallery-grid { columns: 2; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .comparison-table { font-size: 0.85rem; }
    .comparison-table th, .comparison-table td { padding: 0.75rem 1rem; }
    .blog-post-featured { height: 280px; }
}

@media (max-width: 480px) {
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .gallery-grid { columns: 1; }
    .packages-grid { grid-template-columns: 1fr; }
    .trust-items { flex-direction: column; align-items: center; text-align: center; }
    .error-code { font-size: 5rem; }
}
