/* ===========================
   BGA FLOORS — MAIN STYLESHEET
   =========================== */
:root {
  --blue: #29C5E6;
  --orange: #f47320;
  --orange-hover: #d4641c;
  --dark: #0D1B2A;
  --white: #FFFFFF;
  --bg: #F8F9FA;
  --text: #111111;
  --text2: #555555;
  --border: #E0E0E0;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --transition: 0.25s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; font-size: 16px; line-height: 1.6; color: var(--text); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }

/* TYPOGRAPHY */
.section-eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px, 5vw, 48px); font-weight: 700; line-height: 1.1; color: var(--dark); margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--text2); max-width: 580px; margin-bottom: 48px; line-height: 1.65; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; background: var(--orange); color: var(--white); font-weight: 600; font-size: 15px; padding: 14px 32px; border-radius: var(--radius); border: none; cursor: pointer; transition: var(--transition); white-space: nowrap; font-family: inherit; }
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(244,115,32,0.35); }
.btn-primary.full-width { width: 100%; }
.btn-outline-dark { display: inline-flex; align-items: center; justify-content: center; background: transparent; color: var(--dark); font-weight: 600; font-size: 15px; padding: 13px 30px; border-radius: var(--radius); border: 2px solid var(--dark); cursor: pointer; transition: var(--transition); white-space: nowrap; font-family: inherit; }
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; background: transparent; color: var(--white); font-weight: 600; font-size: 15px; padding: 13px 30px; border-radius: var(--radius); border: 2px solid rgba(255,255,255,0.5); cursor: pointer; transition: var(--transition); white-space: nowrap; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* NAVBAR */
.nav-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background var(--transition), box-shadow var(--transition); padding: 10px 0; }
.nav-header.scrolled { background: var(--dark); box-shadow: 0 2px 20px rgba(0,0,0,0.25); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-logo img { height: 50px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: var(--white); font-size: 14px; font-weight: 500; padding: 8px 12px; border-radius: 6px; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,0.12); }
.nav-links .nav-cta { background: var(--orange); color: var(--white); padding: 9px 18px; margin-left: 6px; border-radius: var(--radius); }
.nav-links .nav-cta:hover { background: var(--orange-hover); }
.nav-links .has-dropdown { position: relative; }
.nav-dropdown { position: absolute; top: 100%; left: 0; background: var(--dark); border-radius: var(--radius); padding: 8px 0; min-width: 220px; box-shadow: 0 8px 32px rgba(0,0,0,0.2); opacity: 0; visibility: hidden; transform: translateY(8px); transition: var(--transition); z-index: 50; }
.has-dropdown:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { display: block; padding: 10px 18px; font-size: 13px; border-radius: 0; color: rgba(255,255,255,0.8); }
.nav-dropdown a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.lang-toggle { display: flex; align-items: center; gap: 5px; margin-left: 12px; color: rgba(255,255,255,0.35); font-size: 12px; }
.lang-btn { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 12px; font-weight: 600; cursor: pointer; padding: 4px 6px; border-radius: 4px; transition: var(--transition); font-family: inherit; }
.lang-btn:hover, .lang-btn.active { color: var(--orange); background: rgba(255,255,255,0.08); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.nav-right-mobile { display: none; align-items: center; gap: 12px; }

/* PAGE HERO (inner pages) */
.page-hero { background: var(--dark); padding: 140px 0 70px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(41,197,230,0.08) 0%, transparent 60%); }
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 13px; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(38px, 6vw, 64px); font-weight: 800; color: var(--white); line-height: 1.05; text-transform: uppercase; margin-bottom: 16px; }
.page-hero h1 span { color: var(--orange); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 580px; line-height: 1.7; }

/* HERO (home) */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.65) 60%, rgba(13,27,42,0.4) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 120px 24px 80px; }
.hero-eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); background: rgba(41,197,230,0.12); border: 1px solid rgba(41,197,230,0.3); padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; }
.hero-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(52px, 9vw, 92px); font-weight: 800; line-height: 1.0; color: var(--white); margin-bottom: 20px; text-transform: uppercase; }
.hero-accent { color: var(--orange); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 36px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 100%); margin: 0 auto; animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0;transform:scaleY(0.5)} 50%{opacity:1;transform:scaleY(1)} }

/* TRUST BAR */
.trust-bar { background: var(--dark); padding: 18px 0; border-bottom: 2px solid var(--orange); }
.trust-items { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 500; padding: 8px 22px; border-right: 1px solid rgba(255,255,255,0.12); }
.trust-item:last-child { border-right: none; }
.trust-icon { color: var(--orange); font-weight: 700; }

/* SERVICES GRID */
.services { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 32px 28px; border: 1px solid var(--border); transition: var(--transition); display: block; color: inherit; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); border-color: var(--blue); }
.service-icon { font-size: 32px; margin-bottom: 16px; line-height: 0; }
.service-icon svg { width: 40px; height: 40px; color: var(--orange); }
.service-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card p { color: var(--text2); font-size: 14px; line-height: 1.65; margin-bottom: 16px; }
.service-link { font-size: 13px; font-weight: 600; color: var(--orange); display: flex; align-items: center; gap: 4px; }

/* ABOUT / WHY US */
.why-us { background: var(--white); }
.why-us-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-us-img img { border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.12); width: 100%; height: 520px; object-fit: cover; }
.why-us-text { font-size: 16px; color: var(--text2); margin-bottom: 28px; line-height: 1.7; }
.why-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-bottom: 32px; }
.why-list li { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--text); }
.why-check { color: var(--white); background: var(--blue); width: 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }

/* PORTFOLIO */
.portfolio { background: var(--bg); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.portfolio-card { border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow); transition: var(--transition); }
.portfolio-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.portfolio-card.single img { width: 100%; height: 260px; object-fit: cover; }
.portfolio-caption { padding: 14px 16px; font-size: 13px; font-weight: 500; color: var(--text2); }
.before-after-slider { position: relative; overflow: hidden; cursor: ew-resize; height: 260px; user-select: none; }
.ba-after, .ba-before { position: absolute; inset: 0; }
.ba-after img, .ba-before img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-handle { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 3px; height: 100%; background: var(--white); z-index: 3; pointer-events: none; }
.ba-circle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.ba-circle::before, .ba-circle::after { content: ''; display: block; width: 6px; height: 6px; border-top: 2px solid var(--dark); border-right: 2px solid var(--dark); }
.ba-circle::before { transform: rotate(-135deg); margin-right: -2px; }
.ba-circle::after { transform: rotate(45deg); margin-left: -2px; }
.portfolio-label { display: flex; justify-content: space-between; padding: 8px 16px 0; }
.label-before { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text2); }
.label-after { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); }

/* CONTACT */
.contact { background: var(--dark); }
.contact .section-eyebrow { color: var(--blue); }
.contact .section-title { color: var(--white); }
.contact > .container > p, .contact-info > p { color: rgba(255,255,255,0.7); margin-bottom: 36px; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; color: rgba(255,255,255,0.85); transition: var(--transition); }
a.contact-item:hover { color: var(--blue); }
.contact-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue); margin-bottom: 2px; }
.contact-item span { font-size: 15px; line-height: 1.5; }
.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-links a { color: rgba(255,255,255,0.6); width: 42px; height: 42px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-links a:hover { color: var(--white); border-color: var(--blue); background: rgba(41,197,230,0.1); }
.contact-form-wrap { background: var(--white); border-radius: 16px; padding: 36px 32px; }
.contact-form-wrap h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-family: inherit; font-size: 14px; color: var(--text); background: var(--white); transition: var(--transition); outline: none; appearance: none; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(41,197,230,0.12); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { text-align: center; font-size: 12px; color: var(--text2); margin-top: 12px; }

/* CALENDLY */
.calendly-wrap { background: var(--white); border-radius: 16px; overflow: hidden; margin-top: 48px; }
.calendly-inline-widget { min-height: 650px; }

/* GOOGLE MAPS */
.map-wrap { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); margin-top: 32px; }
.map-wrap iframe { display: block; width: 100%; height: 320px; border: none; }

/* FOOTER */
.footer { background: #080F18; padding: 56px 0 0; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 48px; align-items: start; padding-bottom: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong { color: rgba(255,255,255,0.4); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; display: block; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--blue); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a, .footer-contact span { color: rgba(255,255,255,0.6); font-size: 14px; }
.footer-contact a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.35); font-size: 12px; }
.footer-bottom a:hover { color: var(--blue); }

/* WHATSAPP */
.whatsapp-btn { position: fixed; bottom: 90px; right: 24px; z-index: 90; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: var(--transition); color: var(--white); }
.whatsapp-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }

/* CHATBOT */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 95; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.chat-toggle { width: 56px; height: 56px; background: var(--blue); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 16px rgba(41,197,230,0.4); transition: var(--transition); color: var(--white); }
.chat-toggle:hover { transform: scale(1.08); }
.chat-box { width: 340px; background: var(--white); border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,0.15); overflow: hidden; display: none; flex-direction: column; }
.chat-box.open { display: flex; }
.chat-header { background: var(--dark); padding: 14px 16px; display: flex; align-items: center; gap: 12px; }
.chat-header img { border-radius: 50%; }
.chat-header strong { display: block; color: var(--white); font-size: 14px; }
.chat-status { font-size: 11px; color: #4ade80; }
.chat-messages { padding: 16px; min-height: 200px; max-height: 300px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 85%; }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.chat-msg p { padding: 10px 14px; border-radius: 12px; font-size: 13px; line-height: 1.5; white-space: pre-wrap; }
.chat-msg.bot p { background: var(--bg); color: var(--text); border-bottom-left-radius: 4px; }
.chat-msg.user p { background: var(--blue); color: var(--white); border-bottom-right-radius: 4px; }
.chat-msg.typing p { color: var(--text2); font-style: italic; }
.chat-msg a.chat-link { color: var(--orange); font-weight: 600; text-decoration: underline; }
.chat-msg a.chat-book { display: inline-block; margin-top: 6px; background: var(--orange); color: #fff; font-weight: 700; font-size: 12px; padding: 7px 12px; border-radius: 8px; text-decoration: none; }
.chat-msg a.chat-book:hover { filter: brightness(0.94); }
.chat-input-area { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--border); }
.chat-input-area input { flex: 1; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 13px; outline: none; transition: var(--transition); font-family: inherit; }
.chat-input-area input:focus { border-color: var(--blue); }
#chatSend { background: var(--blue); border: none; border-radius: 8px; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--white); transition: var(--transition); flex-shrink: 0; }
#chatSend:hover { background: #1eb0cf; }

/* SERVICE PAGE */
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 64px; }
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-img { border-radius: 16px; overflow: hidden; }
.service-detail-img img { width: 100%; height: 380px; object-fit: cover; }
.service-detail-content h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 34px; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.service-detail-content p { color: var(--text2); line-height: 1.7; margin-bottom: 20px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.feature-list li::before { content: '✓'; color: var(--white); background: var(--orange); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }

/* CTA BANNER */
.cta-banner { background: var(--orange); padding: 64px 0; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.85); margin-top: 6px; }
.btn-white { display: inline-flex; align-items: center; justify-content: center; background: var(--white); color: var(--orange); font-weight: 700; font-size: 15px; padding: 14px 32px; border-radius: var(--radius); border: none; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { animation: fadeInUp 0.7s ease forwards; opacity: 0; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.35s; }
.hero-content > *:nth-child(4) { animation-delay: 0.5s; }

/* RESPONSIVE */
@media (max-width: 968px) {
  .why-us-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-us-img img { height: 320px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-grid.reverse { direction: ltr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--dark); padding: 80px 32px 32px; gap: 4px; z-index: 99; overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 20px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); border-radius: 0; }
  .nav-links .nav-cta { margin-left: 0; margin-top: 16px; text-align: center; }
  .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; background: rgba(255,255,255,0.05); box-shadow: none; padding: 0 0 0 16px; }
  .nav-dropdown a { font-size: 16px; }
  .nav-right-mobile { display: flex; }
  .lang-toggle:not(.lang-toggle-mobile) { display: none; }
  .nav-burger { display: flex; position: relative; z-index: 100; }
  .trust-item { border-right: none; width: 50%; justify-content: center; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; max-width: 320px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .why-list { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .contact-form-wrap { padding: 24px 20px; }
  .chat-box { width: calc(100vw - 48px); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ===== FAQ ===== */
.faq-container { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--blue); box-shadow: var(--shadow); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; background: none; border: none; cursor: pointer; text-align: left; font-family: 'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 700; color: var(--dark); transition: color var(--transition); }
.faq-q:hover { color: var(--orange); }
.faq-chevron { flex-shrink: 0; width: 20px; height: 20px; color: var(--orange); transition: transform 0.25s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--text2); font-size: 15px; line-height: 1.7; margin: 0; }
.faq-cta { margin-top: 48px; text-align: center; background: var(--bg); border-radius: 16px; padding: 40px 28px; }
.faq-cta h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.faq-cta p { color: var(--text2); font-size: 15px; margin-bottom: 22px; }
