/* ============================================
   EMPLOYMENT LAW SERVICES — SHARED STYLES
   Mobile-First, Google Ads Ready
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;1,400&display=swap');

:root {
  --blue: #1E2FD8;
  --blue-dark: #1525B0;
  --blue-deeper: #0E1880;
  --orange: #F07A00;
  --orange-light: #FF9500;
  --green: #3A8A3A;
  --green-light: #4CAF50;
  --yellow: #FFD000;
  --white: #FFFFFF;
  --off-white: #F5F6FF;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-light: #6B7280;
  --red-cta: #D42020;
  --wa-green: #25D366;
  --shadow: 0 4px 24px rgba(30,47,216,0.13);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: #fff;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== HEADER ===== */
.site-header {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  min-height: 64px;
}

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

.logo-flame svg { width: 32px; height: 40px; }

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.logo-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  background: var(--blue-dark);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.mobile-nav.open { display: block; }

.nav-section { border-bottom: 1px solid rgba(255,255,255,0.1); }

.nav-toggle {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow { font-size: 10px; transition: transform 0.3s; }
.arrow.open { transform: rotate(180deg); }

.nav-submenu {
  display: none;
  background: var(--blue-deeper);
}

.nav-submenu.open { display: block; }

.nav-submenu a {
  display: block;
  padding: 11px 24px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s, color 0.2s;
}

.nav-submenu a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.nav-cta {
  padding: 14px 16px;
}

.nav-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--wa-green);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 12px 20px;
  border-radius: var(--radius);
  width: 100%;
}

.nav-whatsapp-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1E2FD8 0%, #0E1880 50%, #1a1a2e 100%);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=800&q=80');
  background-size: cover;
  background-position: center top;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 16px 0;
}

.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 7vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero h1 span { color: var(--orange-light); }

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 24px;
  max-width: 480px;
}

.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 0;
}

/* ===== CARDS ===== */
.card {
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.card-blue { background: var(--blue); color: #fff; }
.card-orange { background: var(--orange); color: #fff; }
.card-green { background: var(--green); color: #fff; }

.card h2, .card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  font-size: 13.5px;
  padding: 3px 0;
  padding-left: 16px;
  position: relative;
  color: rgba(255,255,255,0.92);
}

.card ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
}

.card p {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

/* ===== SECTION STYLES ===== */
.section { padding: 40px 16px; }
.section-white { background: #fff; }
.section-off { background: var(--off-white); }
.section-blue { background: var(--blue); color: #fff; }
.section-dark { background: #111827; color: #fff; }

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 6vw, 36px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  line-height: 1.15;
}

.section-title.white { color: #fff; }
.section-title.orange { color: var(--orange); }

.section-sub {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.55;
}

.section-sub.white { color: rgba(255,255,255,0.8); }

.pill-title {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* ===== SERVICE SECTION ===== */
.service-block {
  background: var(--orange);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  margin-bottom: 16px;
}

.service-block h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.service-block ul {
  list-style: none;
  padding: 0;
}

.service-block ul li {
  color: #fff;
  font-size: 14px;
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.service-block ul li:last-child { border-bottom: none; }

.service-block ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-size: 12px;
  color: var(--yellow);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-deeper));
  padding: 40px 16px;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 6vw, 36px);
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  margin-bottom: 24px;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--wa-green);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  border-radius: var(--radius);
  width: 100%;
  max-width: 380px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-wa:active {
  transform: scale(0.97);
  box-shadow: 0 2px 10px rgba(37,211,102,0.25);
}

.btn-wa svg { width: 22px; height: 22px; flex-shrink: 0; }

.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: var(--radius);
  width: 100%;
  max-width: 380px;
  transition: background 0.2s;
}

.btn-orange:active { background: #d06900; }

/* ===== CONTENT PAGE HERO (sub-pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deeper) 100%);
  padding: 48px 16px 36px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.page-hero .badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(26px, 7vw, 42px);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 12px;
}

.page-hero h1 span { color: var(--orange-light); }

.page-hero p {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 20px;
}

.page-hero .hero-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===== INFO BLOCKS ===== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  border-left: 4px solid var(--blue);
  box-shadow: var(--shadow);
}

.info-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.info-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.55;
}

.info-card.orange-accent { border-left-color: var(--orange); }
.info-card.orange-accent h3 { color: var(--orange); }

.info-card.green-accent { border-left-color: var(--green); }
.info-card.green-accent h3 { color: var(--green); }

/* ===== STEPS / PROCESS ===== */
.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
  align-items: flex-start;
}

.step:last-child { border-bottom: none; }

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--blue);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ===== URGENCY STRIP ===== */
.urgency-strip {
  background: var(--red-cta);
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.urgency-strip strong { color: var(--yellow); }

/* ===== KEYWORD BLOCK (SEO) ===== */
.keyword-block {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding: 24px 16px;
}

.keyword-block p {
  font-size: 11.5px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== FLOATING WA ===== */
.float-wa {
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.float-wa-btn {
  width: 58px;
  height: 58px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: pulse-wa 2.5s infinite;
}

.float-wa-btn svg { width: 30px; height: 30px; }

.float-wa-label {
  background: var(--blue-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.3px;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); transform: scale(1); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.7); transform: scale(1.06); }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--blue-deeper);
  color: #fff;
  padding: 32px 16px 24px;
}

.footer-inner { max-width: 600px; margin: 0 auto; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-flame svg { width: 28px; height: 36px; }

.footer-brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.footer-tagline {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

.footer-contact {
  margin-bottom: 20px;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa-green);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  line-height: 1.5;
}

/* ===== WHATSAPP PAGE ===== */
.wa-page-hero {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  padding: 48px 16px 40px;
  text-align: center;
}

.wa-page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 8vw, 46px);
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.wa-page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin-bottom: 28px;
}

.wa-number-display {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.wa-number-display .number {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.wa-big-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--wa-green);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 20px 32px;
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
}

.wa-big-btn svg { width: 28px; height: 28px; }

/* ===== CITY PAGES ===== */
.city-map-placeholder {
  background: #e8eaf6;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
}

.city-map-placeholder .map-icon {
  font-size: 48px;
  margin-bottom: 8px;
}

.city-map-placeholder p {
  font-size: 13px;
  color: var(--text-light);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 600px) {
  .header-inner { padding: 10px 24px; }
  .section { padding: 56px 24px; }
  .hero-cards { flex-direction: row; }
  .hero-cards .card { flex: 1; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 56px 24px 44px; }
  .logo-main { font-size: 15px; }
}

@media (min-width: 900px) {
  .hamburger { display: none; }
  .mobile-nav {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    background: var(--blue-dark);
    border-top: none;
    padding: 0 24px;
    gap: 0;
  }
  .nav-section { border-bottom: none; position: relative; }
  .nav-toggle {
    padding: 12px 16px;
    font-size: 13px;
  }
  .nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--blue-deeper);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    border-radius: 0 0 var(--radius) var(--radius);
    z-index: 999;
  }
  .nav-cta { margin-left: auto; padding: 8px 0; }
  .nav-whatsapp-btn { width: auto; padding: 8px 16px; font-size: 13px; }
  .info-grid { grid-template-columns: 1fr 1fr 1fr; }
}
