/* ============================================================
   SILVELA CERRAJEROS — CSS Master
   Premium, Beige Accents & SEO Optimized
   ============================================================ */

:root {
  --red: #c92a2a;
  --red-dark: #a61e1e;
  --navy: #0f172a;
  --navy-mid: #1e293b;
  --beige-light: #fdfbf7;
  --beige: #f4f1ea;
  --beige-dark: #e6dfce;
  --white: #ffffff;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --text: #1e293b;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: color 0.2s ease; }
img { max-width: 100%; display: block; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── ACCESSIBILITY: FOCUS & SKIP LINK ── */
:focus-visible { outline: 3px solid var(--navy); outline-offset: 2px; }
.skip-link { position: absolute; top: -40px; left: 0; background: var(--red); color: var(--white); padding: 8px; z-index: 10000; transition: top 0.2s; }
.skip-link:focus { top: 0; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── REUSABLE UI ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; padding: 1rem 2rem; border-radius: var(--radius); font-weight: 600; font-size: 1rem; transition: var(--transition); cursor: pointer; border: none; letter-spacing: -0.01em; }
.btn-red { background: var(--red); color: var(--white); box-shadow: 0 4px 14px rgba(201, 42, 42, 0.3); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201, 42, 42, 0.4); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-outline { border: 1px solid rgba(255,255,255,0.4); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--navy); }

.tag { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1rem; }
.tag-beige { background: var(--beige-dark); color: var(--navy); }
.tag-red { background: #fff0f0; color: var(--red); }

.section-title { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; color: var(--navy); line-height: 1.1; margin-bottom: 1rem; letter-spacing: -0.03em; }
.section-subtitle { font-size: 1.125rem; color: var(--gray-600); margin-bottom: 3rem; max-width: 700px; }

/* ── NAVBAR ── */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.05); transition: var(--transition); }
.nav-inner { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 0.5rem; font-size: 1.25rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.brand span { color: var(--gray-600); font-weight: 400; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--gray-800); transition: var(--transition); }
.nav-links a:hover { color: var(--red); }
.nav-emergency { background: var(--red); color: var(--white) !important; padding: 0.6rem 1.25rem; border-radius: var(--radius); font-weight: 600; letter-spacing: 0.02em; display: flex; align-items: center; gap: 0.5rem; transition: var(--transition); }
.nav-emergency:hover { background: var(--red-dark); }

.burger { display: none; background: none; border: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; }
.burger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: var(--transition); }

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav-links { position: absolute; top: 76px; left: 0; width: 100%; background: var(--white); flex-direction: column; padding: 2rem; border-bottom: 1px solid var(--gray-200); box-shadow: 0 10px 20px rgba(0,0,0,0.05); clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: clip-path 0.4s ease; }
  .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  .nav-links a { width: 100%; text-align: center; padding: 1rem 0; border-bottom: 1px solid var(--gray-100); }
  .nav-emergency { justify-content: center; margin-top: 1rem; }
}

/* ── HERO ── */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; padding-top: 76px; background: var(--navy); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 40%, rgba(15, 23, 42, 0.2) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 700px; color: var(--white); }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.05; margin-bottom: 1.5rem; letter-spacing: -0.03em; }
.hero p { font-size: 1.2rem; color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; font-weight: 400; line-height: 1.6; max-width: 600px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── PREMIUM SERVICES (ALTERNATING WITH BEIGE) ── */
.premium-section { padding: 6rem 0; background: var(--white); }
.premium-section h2 { text-align: center; margin-bottom: 5rem; }

.alt-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; margin-bottom: 4rem; background: var(--beige-light); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.alt-row.reverse { direction: rtl; }
.alt-row.reverse > * { direction: ltr; }

.alt-img { position: relative; height: 100%; min-height: 400px; }
.alt-img img { position: absolute; width: 100%; height: 100%; object-fit: cover; }

.alt-text { padding: 4rem; display: flex; flex-direction: column; justify-content: center; }
.alt-text.bg-beige { background: var(--beige); }

.alt-text h3 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; letter-spacing: -0.02em; line-height: 1.2; }
.alt-text p { font-size: 1.1rem; color: var(--gray-600); margin-bottom: 1.5rem; }
.alt-list { margin-bottom: 2.5rem; }
.alt-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; font-weight: 500; color: var(--gray-800); }
.alt-list li::before { content: '—'; color: var(--navy); font-weight: 700; }

@media (max-width: 900px) {
  .alt-row { grid-template-columns: 1fr; }
  .alt-img { min-height: 300px; }
  .alt-text { padding: 2.5rem; }
}

/* ── OTHER SERVICES (ARCHITECTURAL BOXES) ── */
.other-services { padding: 6rem 0; background: var(--white); }
.other-services-header { margin-bottom: 4rem; }

.arch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.arch-box { position: relative; padding: 2.5rem; background: var(--white); border: 1px solid var(--gray-200); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; }
.arch-box:hover { border-color: var(--navy); transform: translateY(-4px); box-shadow: 8px 8px 0px rgba(15, 23, 42, 0.05); }
.arch-box-num { font-family: monospace; font-size: 0.85rem; color: var(--gray-400); margin-bottom: 1.5rem; letter-spacing: 0.1em; }
.arch-box h4 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.arch-box p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; }
.arch-box-link { font-size: 0.85rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; display: inline-flex; align-items: center; gap: 0.5rem; }
.arch-box-link::after { content: '→'; transition: transform 0.3s ease; }
.arch-box:hover .arch-box-link::after { transform: translateX(4px); }

/* ── FAQs ── */
.faqs { padding: 6rem 0; background: var(--gray-50); border-top: 1px solid var(--gray-200); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--beige-dark); }
.faq-question { width: 100%; text-align: left; padding: 1.5rem 0; background: none; border: none; font-size: 1.1rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font); }
.faq-icon { font-size: 1.5rem; color: var(--gray-600); transition: transform 0.3s ease; font-weight: 300; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: var(--gray-600); }
.faq-answer p { padding-bottom: 1.5rem; line-height: 1.6; }

/* ── CONTACT / CTA FINAL ── */
.final-cta { padding: 6rem 0; background: var(--beige-light); color: var(--navy); border-top: 1px solid var(--gray-100); }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.cta-text h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.02em; color: var(--navy); }
.cta-text p { color: var(--gray-600); font-size: 1.1rem; margin-bottom: 2rem; }
.contact-info { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; padding-top: 2rem; border-top: 1px solid var(--gray-200); }
.contact-row { display: flex; align-items: flex-start; gap: 1rem; font-size: 1.05rem; }
.contact-row span.label { color: var(--gray-600); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 0.25rem; }
.contact-row span.val { color: var(--navy); font-weight: 700; }

.contact-form { background: var(--white); padding: 3rem; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid var(--gray-100); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--gray-800); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.875rem 1rem; border: 1px solid var(--gray-200); border-radius: var(--radius); font-family: var(--font); font-size: 1rem; outline: none; transition: var(--transition); background: var(--gray-50); color: var(--text); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); background: var(--white); box-shadow: 0 0 0 3px var(--gray-200); }
.form-check { display: flex !important; gap: 0.5rem; align-items: flex-start; margin-bottom: 1.5rem; }
.form-check input[type="checkbox"] { width: auto !important; margin-top: 0.2rem; flex-shrink: 0; }
.form-check label { font-size: 0.8rem; font-weight: 400; color: var(--gray-600); }

@media (max-width: 900px) {
  .cta-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form { padding: 2rem; }
}

/* ── FOOTER LEGAL ── */
.footer { background: var(--navy); padding: 4rem 0 2rem; border-top: none; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 4rem; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { color: var(--gray-200); font-size: 0.95rem; transition: var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-col p { color: var(--gray-200); font-size: 0.95rem; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.footer-legal-links { display: flex; gap: 1.5rem; }
.footer-legal-links a { color: rgba(255,255,255,0.6); }
.footer-legal-links a:hover { color: var(--white); }

/* ── REVIEWS SECTION (PEEK CAROUSEL & A11Y) ── */
.reviews-section { padding: 6rem 0; background: var(--gray-50); overflow: hidden; position: relative; }
.reviews-section .section-title { color: var(--navy); }
.google-rating { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 0.5rem; background: var(--white); padding: 0.5rem 1.25rem; border-radius: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.rating-number { font-weight: 800; color: var(--navy); }
.stars-svg { display: flex; color: #fbbc05; gap: 2px; }
.rating-text { color: var(--gray-600); font-size: 0.9rem; font-weight: 500; }

.reviews-carousel { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 3rem 0; gap: 2rem; margin-top: 1rem; }
.reviews-carousel::-webkit-scrollbar { display: none; }
.review-card { flex: 0 0 60%; min-width: 320px; max-width: 600px; scroll-snap-align: center; text-align: center; opacity: 0.3; transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); transform: scale(0.85); position: relative; }
.review-card.is-active { opacity: 1; transform: scale(1); }
.review-card-link { display: block; text-decoration: none; color: inherit; width: 100%; height: 100%; cursor: pointer; outline: none; }
.review-card-link:focus-visible { border-radius: 8px; box-shadow: 0 0 0 3px var(--red); }
.review-stars-inline { display: flex; justify-content: center; color: #fbbc05; gap: 3px; margin-bottom: 1.5rem; }
.review-card blockquote { margin: 0; position: relative; }
.review-card blockquote::before { content: '“'; position: absolute; top: -3rem; left: 50%; transform: translateX(-50%); font-size: 6rem; color: var(--gray-200); font-family: serif; z-index: -1; line-height: 1; }
.review-card p { font-size: clamp(1.1rem, 3vw, 1.5rem); line-height: 1.6; font-weight: 500; color: var(--navy); margin-bottom: 1.5rem; font-style: italic; }
.review-author { display: flex; flex-direction: column; gap: 0.25rem; align-items: center; }
.author-name { font-size: 1.1rem; color: var(--red); font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; display: inline-flex; align-items: center; gap: 0.5rem; }
.author-name::before { content: ''; width: 20px; height: 2px; background: var(--red); display: inline-block; }

/* ── COOKIE BANNER (MODERN FLOATING) ── */
.cookie-banner { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%); width: 90%; max-width: 600px; background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: var(--white); z-index: 9999; padding: 1.5rem; border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 20px 40px rgba(0,0,0,0.2); display: none; flex-direction: column; gap: 1.25rem; }
.cookie-inner { display: flex; flex-direction: column; gap: 1rem; width: 100%; }
.cookie-text { font-size: 0.9rem; color: var(--gray-200); line-height: 1.5; text-align: center; }
.cookie-text strong { font-size: 1rem; color: var(--white); display: block; margin-bottom: 0.5rem; }
.cookie-btns { display: flex; gap: 0.5rem; justify-content: center; width: 100%; flex-wrap: wrap; }
.cookie-btn { flex: 1; min-width: 120px; font-family: inherit; font-size: 0.85rem; font-weight: 600; padding: 0.75rem 1rem; border-radius: 8px; cursor: pointer; transition: all 0.2s; text-align: center; border: none; }
.cookie-btn--primary { background: var(--white); color: var(--navy); }
.cookie-btn--primary:hover { background: var(--gray-200); }
.cookie-btn--ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn--ghost:hover { background: rgba(255,255,255,0.1); }
@media (max-width: 600px) {
    .cookie-banner { bottom: 1rem; width: 95%; padding: 1rem; }
    .cookie-btns { flex-direction: column; }
    .cookie-btn { width: 100%; }
}

/* ── STORES SECTION ── */
.stores-section { padding: 6rem 0; background: var(--white); }
.stores-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.store-card { background: var(--beige-light); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; }
.store-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }

.store-img { width: 100%; height: 200px; overflow: hidden; background: var(--gray-200); position: relative; }
.store-img img, .store-img iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; border: 0; }
.store-card:hover .store-img img { transform: scale(1.06); }

.store-info { padding: 2rem; flex-grow: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.store-badge { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); background: rgba(15,23,42,0.08); padding: 0.3rem 0.75rem; border-radius: 20px; width: fit-content; margin-bottom: 0.5rem; }
.store-badge--red { color: var(--red); background: rgba(201,42,42,0.1); }
.store-info h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin: 0; line-height: 1.3; }
.store-address { font-size: 0.9rem; color: var(--gray-600); margin: 0; }
.store-hours-block { margin: 0.75rem 0; padding: 0.75rem 1rem; background: rgba(255,255,255,0.7); border-radius: 8px; border-left: 3px solid var(--navy); }
.store-hours-block p { font-size: 0.875rem; color: var(--gray-600); margin: 0; line-height: 1.6; }
.store-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: auto; padding-top: 1rem; font-size: 0.9rem; font-weight: 700; color: var(--navy); text-decoration: none; border-top: 1px solid rgba(0,0,0,0.08); transition: color 0.2s, gap 0.2s; }
.store-link:hover { color: var(--red); gap: 0.75rem; }

@media (max-width: 900px) {
  .stores-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ============================================================
   URGENCIAS.HTML - SPECIFIC STYLES
   ============================================================ */
.urgencias-page { background: var(--gray-50); padding-top: 76px; }

.u-navbar { border-bottom: 2px solid var(--red); }

.u-hero { position: relative; padding: 6rem 0; background: var(--navy); color: var(--white); text-align: center; overflow: hidden; }
.u-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; mix-blend-mode: luminosity; }
.u-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.98) 100%); }
.u-hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.u-hero h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; letter-spacing: -0.02em; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.u-hero p { font-size: 1.25rem; color: var(--gray-200); margin-bottom: 3rem; font-weight: 400; }

.u-giant-btn { display: inline-flex; flex-direction: column; align-items: center; background: var(--red); color: var(--white); padding: 1.5rem 4rem; border-radius: 12px; text-decoration: none; box-shadow: 0 10px 30px rgba(201, 42, 42, 0.3); transition: var(--transition); }
.u-giant-btn:hover { transform: translateY(-3px); background: var(--red-dark); box-shadow: 0 15px 40px rgba(201, 42, 42, 0.4); }
.u-giant-label { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.1em; opacity: 0.9; margin-bottom: 0.25rem; text-transform: uppercase; }
.u-giant-number { font-size: 3.5rem; font-weight: 800; line-height: 1; letter-spacing: -0.02em; }

.u-trust { background: var(--white); padding: 3rem 0; border-bottom: 1px solid var(--gray-200); margin-top: -3rem; position: relative; z-index: 10; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.u-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.u-trust-item h4 { font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.u-trust-item p { color: var(--gray-600); font-size: 0.95rem; }

.u-services { padding: 5rem 0; }

/* ── URGENCIAS: BOTTOM CTA BLOCK ── */
.u-trust-section { padding: 0; margin-top: -3rem; position: relative; z-index: 10; }
.u-trust-section .u-trust { border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); padding: 2rem 3rem; }

.u-bottom-cta { padding: 5rem 0; background: var(--navy); color: var(--white); }
.u-bottom-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.u-faq-col h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; margin-bottom: 2.5rem; letter-spacing: -0.02em; }
.u-faq-list { display: flex; flex-direction: column; gap: 2rem; }
.u-faq-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.u-faq-item p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.6; }

.u-call-col { position: sticky; top: 100px; }
.u-call-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 2.5rem; text-align: center; }
.u-call-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.u-call-number { display: block; font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; color: var(--white); letter-spacing: -0.03em; text-decoration: none; line-height: 1; margin-bottom: 1.5rem; transition: color 0.2s ease; }
.u-call-number:hover { color: var(--red); }
.u-call-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 1.5rem; }
.u-badge { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); padding: 0.35rem 0.75rem; border-radius: 50px; font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.u-call-note { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.5; margin-bottom: 1.5rem; }
.u-whatsapp-btn { background: #25d366; color: var(--white); border-radius: var(--radius); width: 100%; font-weight: 700; letter-spacing: 0.02em; display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: var(--transition); }
.u-whatsapp-btn:hover { background: #1ebe5d; transform: translateY(-2px); }

@media (max-width: 768px) {
  .u-bottom-cta-grid { grid-template-columns: 1fr; gap: 3rem; }
  .u-call-col { position: static; }
}

.mobile-sticky-call { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: var(--red); color: var(--white); text-align: center; padding: 1.25rem; font-weight: 700; font-size: 1.25rem; z-index: 1000; box-shadow: 0 -4px 10px rgba(0,0,0,0.1); letter-spacing: 0.02em; }
@media (max-width: 768px) {
  .mobile-sticky-call { display: block; }
  .u-trust-grid { grid-template-columns: 1fr; }
  .u-giant-btn { padding: 1.5rem 2rem; width: 100%; }
  .u-giant-number { font-size: 2.5rem; }
  
  /* Prevent sticky call button from covering chatbot */
  .chatbot-widget { bottom: 5rem; }
}

/* ── CHATBOT UI ── */
.chatbot-widget { position: fixed; bottom: 2rem; right: 2rem; z-index: 9999; font-family: var(--font); }
.chatbot-bubble { width: 60px; height: 60px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; cursor: pointer; box-shadow: 0 10px 20px rgba(15,23,42,0.2); transition: transform 0.3s ease; }
.chatbot-bubble:hover { transform: scale(1.05); }
.chatbot-window { position: absolute; bottom: 80px; right: 0; width: 350px; background: var(--white); border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.15); border: 1px solid var(--gray-200); display: none; flex-direction: column; overflow: hidden; transform-origin: bottom right; animation: chatOpen 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.chatbot-window.open { display: flex; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
@keyframes chatOpen { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
.chat-header { background: var(--navy); color: var(--white); padding: 1rem 1.25rem; display: flex; justify-content: space-between; align-items: center; }
.chat-header-info { display: flex; align-items: center; gap: 0.75rem; }
.chat-avatar { width: 36px; height: 36px; background: var(--beige); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy); font-weight: 700; }
.chat-title { font-size: 0.95rem; font-weight: 700; }
.chat-status { font-size: 0.75rem; color: #10b981; }
.chat-close { background: none; border: none; color: var(--white); font-size: 1.25rem; cursor: pointer; opacity: 0.7; }
.chat-close:hover { opacity: 1; }
.chat-body { height: 300px; padding: 1.25rem; background: var(--gray-50); overflow-y: auto; display: flex; flex-direction: column; gap: 1rem; }
.msg { max-width: 85%; padding: 0.85rem 1rem; border-radius: 8px; font-size: 0.9rem; line-height: 1.4; }
.msg-bot { background: var(--white); border: 1px solid var(--gray-200); align-self: flex-start; border-bottom-left-radius: 2px; }
.msg-user { background: var(--beige-light); border: 1px solid var(--beige-dark); align-self: flex-end; border-bottom-right-radius: 2px; }
.chat-input-area { padding: 1rem; background: var(--white); border-top: 1px solid var(--gray-200); display: flex; gap: 0.5rem; }
.chat-input { flex: 1; border: 1px solid var(--gray-200); border-radius: 20px; padding: 0.5rem 1rem; font-family: var(--font); font-size: 0.9rem; outline: none; }
.chat-input:focus { border-color: var(--navy); }
.chat-send { background: var(--navy); color: var(--white); border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.chat-send:hover { background: var(--blue); }
