/* ==========================================================================
   George Ilie Plumbing & Heating - Main Stylesheet
   Mobile-first, responsive, optimized for emergency conversions
   ========================================================================== */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a4d8c;
  --navy-dark: #063a6e;
  --navy-light: #e8f1f9;
  --red: #d32f2f;
  --red-dark: #a82424;
  --red-light: #fce8e8;
  --amber: #ffc107;
  --amber-dark: #d49b00;
  --green: #2e7d32;
  --text: #1a1a1a;
  --text-soft: #555;
  --text-light: #777;
  --bg: #fff;
  --bg-soft: #f5f7fa;
  --bg-section: #fafbfc;
  --border: #e0e4e8;
  --border-light: #eef0f3;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.10);
  --radius: 8px;
  --radius-lg: 12px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--bg);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }

/* ==========================================================================
   Top Emergency Bar (sticky, always visible)
   ========================================================================== */

.emergency-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--red);
  color: #fff;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  text-align: center;
}

.emergency-bar a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
}

.pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ==========================================================================
   Header
   ========================================================================== */

header {
  background: var(--navy);
  color: #fff;
  padding: 0.9rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff !important;
  text-decoration: none !important;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

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

.logo-text small {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 2px;
}

.header-cta {
  background: var(--amber);
  color: #000 !important;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.2s;
}

.header-cta:hover { background: var(--amber-dark); }

/* Hide desktop nav on mobile */
.nav-menu { display: none; }

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 3rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath fill='%23ffffff' fill-opacity='.04' d='M30 5 C25 15, 35 15, 30 25 C25 35, 35 35, 30 45 C25 55, 35 55, 30 60'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-text { text-align: center; }

.hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 3/4;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.95);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
}

.hero-image-badge .stars { color: var(--amber); margin-right: 0.3rem; }

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 0.45rem 1.1rem;
  border-radius: 30px;
  font-size: 0.82rem;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(255,255,255,0.25);
  font-weight: 500;
}

.hero h1 {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

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

.hero-sub {
  font-size: 1.05rem;
  opacity: 0.92;
  margin-bottom: 2rem;
  line-height: 1.55;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: stretch;
  max-width: 400px;
  margin: 0 auto;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--red);
  color: #fff !important;
  padding: 1.1rem 1.5rem;
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(211,47,47,0.4);
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none !important;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211,47,47,0.5);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff !important;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.4);
  text-decoration: none !important;
  transition: background 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* ==========================================================================
   Trust Strip
   ========================================================================== */

.trust-strip {
  background: #fff;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.trust-item strong {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
}

.trust-icon {
  font-size: 1.7rem;
  margin-bottom: 0.2rem;
}

/* ==========================================================================
   Sections
   ========================================================================== */

section { padding: 3rem 0; }

section h2 {
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 0.6rem;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

section .section-intro {
  text-align: center;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto 2.2rem;
  font-size: 1.02rem;
  line-height: 1.6;
}

.section-alt { background: var(--bg-soft); }

/* ==========================================================================
   Why Section (storytelling)
   ========================================================================== */

.why-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.why-content p { margin-bottom: 1.2rem; }
.why-content p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Services Grid
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.service-card {
  background: #fff;
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: block;
  color: inherit !important;
  text-decoration: none !important;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--navy-light);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.9rem;
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.service-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0.7rem;
}

.urgent-badge {
  display: inline-block;
  background: var(--red-light);
  color: var(--red-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.service-card .arrow {
  display: inline-block;
  margin-top: 0.7rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Service card with image */
.service-card-with-image {
  padding: 0;
  overflow: hidden;
}

.service-card-with-image .service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.service-card-with-image .service-card-body { padding: 1.4rem 1.4rem 1.6rem; }
.service-card-with-image .service-icon { margin-bottom: 0.8rem; }

/* Work Gallery Section */
.work-gallery-section {
  background: linear-gradient(180deg, #fff 0%, var(--bg-section) 100%);
  padding: 3.5rem 0;
}

.gallery-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.2rem;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--navy-light);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
  padding: 1.5rem 1rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

/* Service page hero with image */
.service-hero-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.service-hero-image {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 4/3;
}

.service-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About page George image */
.about-george-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 380px;
  margin: 0 auto 2rem;
  aspect-ratio: 3/4;
}

.about-george-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Inline content image (within sections) */
.content-image {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.content-image-caption {
  background: var(--navy-light);
  color: var(--text-soft);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  text-align: center;
  font-style: italic;
}

/* ==========================================================================
   Areas Grid
   ========================================================================== */

.areas-intro {
  text-align: center;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.area-tag {
  background: #fff;
  border: 1px solid var(--border);
  padding: 0.85rem 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.2s;
  font-size: 0.92rem;
  text-decoration: none !important;
}

.area-tag:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
  max-width: 900px;
  margin: 0 auto;
}

.price-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}

.price-card:hover { transform: translateY(-3px); }

.price-card.featured {
  border-color: var(--red);
}

.price-card.featured::before {
  content: "24/7 EMERGENCY";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.price-card h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  margin: 1rem 0;
  line-height: 1;
}

.price small {
  font-size: 0.95rem;
  color: var(--text-soft);
  font-weight: 500;
}

.price-features {
  list-style: none;
  text-align: left;
  margin: 1.2rem 0 0;
}

.price-features li {
  padding: 0.45rem 0;
  color: var(--text-soft);
  font-size: 0.93rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.price-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.price-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.88rem;
  margin-top: 1.5rem;
  font-style: italic;
}

/* ==========================================================================
   How It Works (steps)
   ========================================================================== */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  max-width: 720px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.step-num {
  width: 38px;
  height: 38px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.step-content p {
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.55;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 1.3rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
  line-height: 1.4;
}

.faq-question:hover { background: var(--bg-soft); }

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--navy);
  flex-shrink: 0;
  font-weight: 400;
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner { padding: 0 1.3rem 1.2rem; }

/* ==========================================================================
   Reviews Section (placeholder for GBP)
   ========================================================================== */

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none !important;
  color: inherit !important;
  display: block;
}

.review-card:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

.review-stars {
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.review-text {
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.55;
  margin-bottom: 0.7rem;
}

.review-author {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-light);
}

.review-author strong { color: var(--text); font-weight: 600; }

.reviews-cta {
  text-align: center;
  padding: 1.2rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
  color: var(--text-soft);
  font-size: 0.95rem;
}

.reviews-cta a {
  font-weight: 700;
  color: var(--navy);
}

/* ==========================================================================
   Final CTA Section
   ========================================================================== */

.cta-section {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  text-align: center;
}

.cta-section h2 {
  color: #fff !important;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.cta-section p {
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
  opacity: 0.95;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  background: #fff;
  color: var(--red) !important;
  max-width: 400px;
  margin: 0 auto;
  font-size: 1.3rem;
}

.cta-section .btn-primary:hover {
  background: #f5f5f5;
  color: var(--red-dark) !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  background: #0a1929;
  color: #aab8c5;
  padding: 2.5rem 0 1rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 0.9rem;
  font-size: 1rem;
  font-weight: 700;
}

.footer-col a, .footer-col p {
  display: block;
  margin-bottom: 0.4rem;
  color: #aab8c5;
  font-size: 0.9rem;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid #1a2940;
  padding-top: 1.2rem;
  text-align: center;
  color: #7a8a99;
  font-size: 0.83rem;
  line-height: 1.6;
}

/* ==========================================================================
   Sticky Mobile Call Button (always visible on mobile)
   ========================================================================== */

.mobile-call {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--red);
  color: #fff !important;
  padding: 1rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  z-index: 999;
  box-shadow: 0 -4px 14px rgba(0,0,0,0.2);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.mobile-call:hover { background: var(--red-dark); }

body.has-mobile-cta { padding-bottom: 70px; }

/* ==========================================================================
   Tablet (768px+)
   ========================================================================== */

@media (min-width: 768px) {
  .hero { padding: 4rem 0 5rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 1.15rem; max-width: 640px; margin-left: auto; margin-right: auto; }
  
  .hero-cta-group { flex-direction: row; max-width: 540px; }
  .btn-primary, .btn-secondary { flex: 1; }
  
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  
  section { padding: 4rem 0; }
  section h2 { font-size: 2rem; }
  
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  
  .logo-text small { font-size: 0.75rem; }
  
  /* Hero split layout */
  .hero-content {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    text-align: left;
  }
  .hero-text { text-align: left; }
  .hero-cta-group { margin: 0; }
  .hero-sub { margin-left: 0; margin-right: 0; }
  
  /* Gallery + service pages */
  .work-gallery { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .service-hero-with-image { grid-template-columns: 1.2fr 1fr; gap: 3rem; }
  .service-hero-image { margin: 0; max-width: 100%; }
}

/* ==========================================================================
   Desktop (1024px+)
   ========================================================================== */

@media (min-width: 1024px) {
  .hero { padding: 5rem 0 6rem; }
  .hero h1 { font-size: 3rem; }
  
  section { padding: 5rem 0; }
  section h2 { font-size: 2.3rem; }
  
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  
  .work-gallery { grid-template-columns: repeat(4, 1fr); }
  
  .nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
  }
  
  .nav-menu a {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
  }
  
  .nav-menu a:hover { color: var(--amber); }
  
  /* Hide mobile sticky CTA on desktop */
  .mobile-call { display: none; }
  body.has-mobile-cta { padding-bottom: 0; }
}

/* ==========================================================================
   Service Page Specific (sub-pages)
   ========================================================================== */

.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 2.5rem 0 3rem;
  text-align: center;
}

.breadcrumb {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--amber);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.page-hero h1 {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

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

.page-hero p {
  font-size: 1rem;
  opacity: 0.92;
  max-width: 640px;
  margin: 0 auto 1.5rem;
  line-height: 1.55;
}

.page-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff !important;
  padding: 0.95rem 1.6rem;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(211,47,47,0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}

.page-hero-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.content-section {
  padding: 2.5rem 0;
}

.content-wrapper {
  max-width: 760px;
  margin: 0 auto;
}

.content-wrapper h2 {
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-weight: 700;
  text-align: left;
}

.content-wrapper h2:first-child { margin-top: 0; }

.content-wrapper h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin: 1.5rem 0 0.6rem;
  font-weight: 700;
}

.content-wrapper p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.content-wrapper ul {
  margin: 1rem 0 1.5rem 0;
  padding-left: 1.2rem;
}

.content-wrapper ul li {
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.content-wrapper strong { color: var(--navy); }

/* Problem/Symptom Boxes */

.symptom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin: 1.5rem 0;
}

.symptom-box {
  background: var(--bg-soft);
  border-left: 4px solid var(--red);
  padding: 1rem 1.2rem;
  border-radius: 4px;
}

.symptom-box strong {
  display: block;
  color: var(--red-dark);
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.symptom-box p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-soft);
}

/* Action Box (call-out within content) */

.action-box {
  background: var(--navy-light);
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.action-box .action-text {
  flex: 1;
  min-width: 200px;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}

.action-box .action-text strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  color: var(--navy-dark);
  font-weight: 700;
}

.action-box .action-btn {
  background: var(--red);
  color: #fff !important;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
  font-size: 0.95rem;
}

.action-box .action-btn:hover { background: var(--red-dark); }

/* Process Steps (numbered) */

.process-steps {
  margin: 1.5rem 0;
}

.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.process-step .num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.process-step .step-text {
  flex: 1;
}

.process-step .step-text strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.process-step .step-text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.55;
}

/* Local Areas Mini-grid (on service pages) */

.local-areas-mini {
  background: var(--bg-soft);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.local-areas-mini h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  text-align: center;
}

.local-areas-mini p {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-soft);
  margin: 0;
}

.local-areas-mini a {
  color: var(--navy);
  font-weight: 600;
}

/* Tablet+ */

@media (min-width: 768px) {
  .page-hero { padding: 3.5rem 0 4rem; }
  .page-hero h1 { font-size: 2.2rem; }
  .page-hero p { font-size: 1.1rem; }
  
  .content-section { padding: 4rem 0; }
  .content-wrapper h2 { font-size: 1.7rem; }
  
  .symptom-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 90px;       /* deasupra mobile-call pe mobile */
  right: 20px;
  z-index: 998;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 2px 6px rgba(0,0,0,0.15);
  text-decoration: none !important;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 2.4s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(37,211,102,0.55), 0 3px 8px rgba(0,0,0,0.2);
  animation: none;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}

/* Red emergency badge in corner */
.whatsapp-float::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  background: var(--red);
  border-radius: 50%;
  border: 2px solid #fff;
  animation: badge-pulse 1.5s infinite;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 2px 6px rgba(0,0,0,0.15), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 2px 6px rgba(0,0,0,0.15), 0 0 0 14px rgba(37,211,102,0); }
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* "Emergency 24/7" tooltip on desktop hover */
.whatsapp-float .wa-label {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #1a1a1a;
  color: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}

.whatsapp-float .wa-label::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 5px solid #1a1a1a;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.whatsapp-float:hover .wa-label {
  opacity: 1;
  transform: translateY(-50%) translateX(-3px);
}

/* Mobile - hide tooltip, adjust button position */
@media (max-width: 1023px) {
  .whatsapp-float .wa-label { display: none; }
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 80px;     /* deasupra butonului Call jos */
    right: 16px;
  }
  .whatsapp-float svg { width: 30px; height: 30px; }
}

/* Desktop - poziționare fără mobile-call jos */
@media (min-width: 1024px) {
  .whatsapp-float {
    bottom: 24px;
  }
}

@media print {
  .whatsapp-float { display: none; }
}

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
  .emergency-bar, .mobile-call, .header-cta { display: none; }
}
