/* ===== MenuDisplays.com — Main Stylesheet ===== */
/* Brand: #00d4ff (cyan accent), #1a1a2e (dark navy), #ffffff (white) */

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

:root {
  --primary: #00d4ff;
  --primary-dark: #00a8cc;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --dark3: #0f3460;
  --text: #333;
  --text-light: #666;
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --border: #e0e6ed;
  --success: #28a745;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.65; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
.section-header p { font-size: 18px; color: var(--text-light); max-width: 640px; margin: 0 auto; }
.section-tag { display: inline-block; background: rgba(0,212,255,0.1); color: var(--primary-dark); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 6px 14px; border-radius: 20px; margin-bottom: 14px; }
.gradient-text { background: linear-gradient(135deg, #00d4ff, #0080ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.2s ease; border: 2px solid transparent; }
.btn-primary { background: var(--primary); color: var(--dark); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,212,255,0.35); }
.btn-secondary { background: var(--dark); color: white; }
.btn-secondary:hover { background: var(--dark3); transform: translateY(-2px); }
.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-lg { padding: 16px 36px; font-size: 17px; border-radius: 10px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-full { width: 100%; }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0; transition: all 0.3s ease; }
.header.scrolled { background: rgba(26,26,46,0.97); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { text-decoration: none; }
.logo-text { font-size: 22px; font-weight: 900; color: white; }
.logo-accent { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; font-weight: 500; padding: 8px 12px; border-radius: 6px; transition: all 0.2s; }
.nav-links a:hover { color: white; background: rgba(255,255,255,0.1); }
.nav-cta { background: var(--primary) !important; color: var(--dark) !important; font-weight: 700 !important; padding: 10px 18px !important; }
.nav-cta:hover { background: var(--primary-dark) !important; }
.nav-toggle { display: none; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 60%, #1a3a6e 100%); }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(0,212,255,0.15) 0%, transparent 60%); }
.hero-content { position: relative; z-index: 1; padding: 120px 0 60px; max-width: 800px; }
.hero-badge { display: inline-block; background: rgba(0,212,255,0.15); border: 1px solid rgba(0,212,255,0.3); color: var(--primary); font-size: 14px; font-weight: 600; padding: 8px 18px; border-radius: 30px; margin-bottom: 24px; }
.hero-title { font-size: clamp(36px, 6vw, 72px); font-weight: 900; color: white; line-height: 1.1; margin-bottom: 24px; }
.hero-subtitle { font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,0.75); max-width: 620px; margin-bottom: 40px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 32px; font-weight: 900; color: var(--primary); line-height: 1; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--dark); padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.trust-bar .container { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-label { color: rgba(255,255,255,0.5); font-size: 13px; white-space: nowrap; }
.trust-cities { display: flex; gap: 16px; flex-wrap: wrap; }
.trust-cities span { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500; }
.trust-cities span::after { content: "•"; margin-left: 16px; color: rgba(255,255,255,0.2); }
.trust-cities span:last-child::after { display: none; }

/* ===== PRODUCTS ===== */
.products { background: var(--bg-soft); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s ease; position: relative; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card.featured { border: 2px solid var(--primary); }
.product-badge { position: absolute; top: 16px; right: 16px; background: var(--primary); color: var(--dark); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; z-index: 2; }
.product-icon { font-size: 32px; padding: 20px 20px 0; }
.product-img-placeholder { height: 180px; margin: 16px 20px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.led-lb { background: linear-gradient(135deg, #1a1a2e, #0f3460); }
.led-lb::after { content: "💡"; font-size: 64px; }
.dig-menu { background: linear-gradient(135deg, #0f3460, #1a3a6e); }
.dig-menu::after { content: "📺"; font-size: 64px; }
.drivethru { background: linear-gradient(135deg, #162040, #1a1a2e); }
.drivethru::after { content: "🚗"; font-size: 64px; }
.product-body { padding: 0 20px 24px; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.product-body p { font-size: 15px; color: var(--text-light); margin-bottom: 16px; flex: 1; }
.product-features { list-style: none; margin-bottom: 20px; display: flex; flex-direction: column; gap: 6px; }
.product-features li { font-size: 14px; color: var(--text); }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: var(--bg-soft); border-radius: var(--radius); padding: 28px; text-align: center; border: 1px solid var(--border); transition: all 0.2s; }
.why-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.why-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.why-card h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ===== INDUSTRIES ===== */
.industries { background: var(--bg-soft); }
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.industry-card { background: white; border-radius: var(--radius); padding: 28px 24px; text-align: center; box-shadow: var(--shadow); transition: all 0.2s; border: 1px solid transparent; }
.industry-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.industry-emoji { font-size: 40px; display: block; margin-bottom: 12px; }
.industry-card h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.industry-card p { font-size: 14px; color: var(--text-light); }

/* ===== PROCESS ===== */
.process-steps { display: flex; align-items: flex-start; gap: 8px; }
.step { flex: 1; text-align: center; padding: 24px 16px; }
.step-num { font-size: 48px; font-weight: 900; color: var(--primary); opacity: 0.8; line-height: 1; margin-bottom: 12px; }
.step h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--text-light); }
.step-arrow { font-size: 28px; color: var(--primary); padding-top: 36px; flex-shrink: 0; opacity: 0.5; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--dark); }
.testimonials .section-header h2, .testimonials .section-tag { color: white; }
.testimonials .section-tag { background: rgba(255,255,255,0.1); color: var(--primary); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 28px; }
.stars { color: #ffc107; font-size: 18px; margin-bottom: 14px; }
.testimonial-card p { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; flex-direction: column; gap: 2px; }
.testimonial-author strong { color: var(--primary); font-size: 15px; }
.testimonial-author span { color: rgba(255,255,255,0.5); font-size: 13px; }

/* ===== SERVICE AREA ===== */
.area-counties { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.county-card { background: var(--bg-soft); border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); }
.county-card h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.county-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ===== CTA BAND ===== */
.cta-band { background: linear-gradient(135deg, var(--dark3), var(--dark)); padding: 72px 0; text-align: center; }
.cta-band h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: white; margin-bottom: 16px; }
.cta-band p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 36px; }

/* ===== CONTACT ===== */
.contact { background: var(--bg-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-info .section-tag { margin-bottom: 14px; display: block; }
.contact-info h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--dark); margin-bottom: 18px; line-height: 1.2; }
.contact-info p { font-size: 16px; color: var(--text-light); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { font-size: 22px; flex-shrink: 0; }
.contact-item div { display: flex; flex-direction: column; gap: 4px; }
.contact-item strong { font-size: 14px; font-weight: 700; color: var(--dark); }
.contact-item a, .contact-item span { font-size: 15px; color: var(--text-light); text-decoration: none; }
.contact-item a:hover { color: var(--primary); }
.contact-form-wrap { background: white; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-lg); }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 15px;
  font-family: var(--font); color: var(--text); transition: border 0.2s; background: white; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 12px; }
.checkbox-label { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text); cursor: pointer; }
.form-note { font-size: 12px; color: var(--text-light); text-align: center; }
.form-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; border-radius: 8px; padding: 14px 18px; font-size: 15px; text-align: center; }

/* ===== ABOUT ===== */
.about { background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content .section-tag { display: block; margin-bottom: 14px; }
.about-content h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--dark); margin-bottom: 20px; }
.about-content p { font-size: 16px; color: var(--text-light); margin-bottom: 18px; }
.about-highlights { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; border-top: 1px solid var(--border); padding-top: 24px; }
.highlight { display: flex; flex-direction: column; gap: 2px; }
.highlight strong { font-size: 16px; font-weight: 700; color: var(--dark); }
.highlight span { font-size: 14px; color: var(--text-light); }
.about-img-placeholder { background: linear-gradient(135deg, var(--dark), var(--dark3)); border-radius: var(--radius); height: 360px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.about-img-placeholder span { color: var(--primary); font-size: 22px; font-weight: 700; }
.about-img-placeholder p { color: rgba(255,255,255,0.6); font-size: 15px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand .logo-text { font-size: 20px; font-weight: 900; color: white; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.footer-links h5, .footer-contact h5 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact p { color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact a:hover { color: var(--primary); }

/* ===== CHAT WIDGET ===== */
.chat-bubble { position: fixed; bottom: 28px; right: 28px; background: var(--primary); color: var(--dark); padding: 14px 22px; border-radius: 50px; font-weight: 700; font-size: 15px; cursor: pointer; box-shadow: 0 6px 24px rgba(0,212,255,0.4); display: flex; align-items: center; gap: 8px; z-index: 999; transition: all 0.2s; }
.chat-bubble:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,212,255,0.5); }
.chat-widget { position: fixed; bottom: 90px; right: 28px; width: 320px; background: white; border-radius: var(--radius); box-shadow: var(--shadow-lg); z-index: 999; overflow: hidden; }
.chat-header { background: var(--dark); color: white; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 15px; }
.chat-close { background: none; border: none; color: white; font-size: 18px; cursor: pointer; }
.chat-body { padding: 20px; }
.chat-body p { font-size: 14px; color: var(--text); margin-bottom: 10px; }
.chat-footer { padding: 0 20px 20px; display: flex; gap: 10px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .area-counties { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps { flex-wrap: wrap; }
  .step-arrow { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--dark); flex-direction: column; padding: 20px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-content { padding: 100px 0 50px; }
  .hero-stats { gap: 24px; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .area-counties { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .chat-widget { right: 16px; width: calc(100vw - 32px); }
  .chat-bubble { right: 16px; bottom: 16px; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
}
