/*
Theme Name: agni-sk
Theme URI: https://agni.sk/
Author: AGNI ELEKTRIK
Author URI: https://agni.sk
Description: Profesionálna one-page téma pre AGNI ELEKTRIK – elektrikár Bratislava.
Version: 2.2.1
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: agni-sk
Tags: one-page, business, custom-logo, custom-menu, responsive-layout
*/

/* =============================================
   CSS VARIABLES – Design System (matches Lovable HSL tokens)
   ============================================= */
:root {
  --primary:        hsl(45, 100%, 51%);
  --primary-dark:   hsl(45, 100%, 44%);
  --primary-fg:     hsl(0, 0%, 10%);
  --primary-bg-15:  hsla(45, 100%, 51%, 0.15);
  --primary-bg-10:  hsla(45, 100%, 51%, 0.10);
  --primary-bg-05:  hsla(45, 100%, 51%, 0.05);

  --secondary:      hsl(0, 0%, 20%);
  --secondary-fg:   hsl(0, 0%, 98%);

  --bg:             hsl(0, 0%, 100%);
  --bg-muted:       hsl(40, 20%, 96%);
  --bg-dark:        hsl(0, 0%, 18%);

  --text:           hsl(0, 0%, 15%);
  --text-muted:     hsl(0, 0%, 40%);
  --text-light:     hsl(0, 0%, 60%);

  --border:         hsl(0, 0%, 88%);
  --card-bg:        hsl(0, 0%, 98%);

  --emergency:      hsl(0, 72%, 51%);
  --emergency-bg:   hsla(0, 72%, 51%, 0.05);
  --emergency-fg:   hsl(0, 0%, 100%);

  --radius:         0.5rem;
  --radius-lg:      0.75rem;
  --radius-xl:      1rem;

  --shadow-sm:      0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:      0 20px 50px rgba(0,0,0,0.20);

  --font:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition:     0.2s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }
svg { stroke-linecap: round; stroke-linejoin: round; }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5 {
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); }
h3 { font-size: 1.125rem; font-weight: 700; }
p  { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.screen-reader-text {
  position: absolute !important;
  clip: rect(1px,1px,1px,1px);
  width: 1px; height: 1px;
  overflow: hidden;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .container { max-width: 640px;  } }
@media (min-width: 768px)  { .container { max-width: 768px;  } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }
@media (min-width: 1536px) { .container { max-width: 1400px; } }

section { padding: 4rem 0; }
@media (min-width: 768px) { section { padding: 6rem 0; } }

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto 3rem;
}
/* Services section subtitle is wider in Lovable (max-w-2xl = 42rem) */
.services-section .section-subtitle { max-width: 42rem; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  line-height: 1;
  font-family: inherit;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
}
.btn-primary:hover {
  filter: brightness(1.1);
  color: var(--primary-fg);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background: var(--secondary);
  color: var(--secondary-fg);
  border-bottom: 1px solid rgba(250,250,250,0.1);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.site-branding .brand-link {
  color: var(--secondary-fg);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.brand-icon { color: var(--primary); display: inline-flex; }
.brand-text {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--primary-fg);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: filter var(--transition);
}
.header-phone:hover { filter: brightness(1.1); color: var(--primary-fg); }
@media (min-width: 640px) { .header-phone { display: inline-flex; } }

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--secondary);
  color: var(--secondary-fg);
  padding: 4rem 0;
}
@media (min-width: 768px) { .hero { padding: 6rem 0; } }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (min-width: 1280px) {
  .hero-inner { gap: 4rem; }
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: #fff;
  font-weight: 900;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  margin: 0 0 1.5rem;
}
.hero h1 span {
  display: block;
  color: var(--primary);
  margin-top: 0.5rem;
}

.hero-desc {
  color: rgba(250,250,250,0.8);
  font-size: 1.125rem;
  max-width: 42rem;
  margin-bottom: 2rem;
  line-height: 1.625;
}
@media (min-width: 768px) { .hero-desc { font-size: 1.25rem; } }

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: rgba(250,250,250,0.08);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  justify-content: center;
}
@media (min-width: 1024px) { .hero-trust { justify-content: flex-start; } }
.hero-trust-item {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary-fg);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-trust-item::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}

.hero-image { display: none; }
@media (min-width: 1024px) { .hero-image { display: block; } }
.hero-image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* =============================================
   SERVICES
   ============================================= */
.services-section { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: hsla(45, 100%, 51%, 0.4);
  box-shadow: var(--shadow-md);
}
.service-card.highlight {
  background: var(--emergency-bg);
  border-color: var(--emergency);
}
.service-card.featured {
  background: var(--primary-bg-05);
  border-color: var(--primary);
}

.service-card .service-icon {
  color: var(--primary);
  margin-bottom: 1rem;
  display: inline-flex;
}
.service-card.highlight .service-icon { color: var(--emergency); }
.service-card h3 {
  color: var(--text);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.service-card.highlight h3 { color: var(--emergency); }
.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.service-badge {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}
.service-badge-highlight {
  color: var(--emergency);
}
.service-badge-featured {
  background: var(--primary);
  color: var(--primary-fg);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
}

/* =============================================
   WHY US
   ============================================= */
.why-us { background: var(--bg-muted); }
.why-us-intro {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}
.why-us-intro p {
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(5, 1fr); } }

.feature-item {
  text-align: center;
  padding: 1.5rem;
}
.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-bg-15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
}
.feature-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.feature-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.625;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works { background: var(--bg); }
.how-title { margin-bottom: 3rem; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step-item { text-align: center; }
.step-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary-fg);
}
.step-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.step-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.steps-cta { text-align: center; margin-top: 3rem; }

/* =============================================
   FOR WHOM
   ============================================= */
.forwhom { background: var(--bg-muted); }
.forwhom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .forwhom-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .forwhom-grid { grid-template-columns: repeat(4, 1fr); } }

.forwhom-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
}
.forwhom-card.highlight {
  background: var(--emergency-bg);
  border-color: var(--emergency);
}
.forwhom-icon {
  color: var(--primary);
  display: inline-flex;
  margin-bottom: 1rem;
}
.forwhom-card.highlight .forwhom-icon { color: var(--emergency); }
.forwhom-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.forwhom-card.highlight h3 { color: var(--emergency); }
.forwhom-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* =============================================
   LOCATION
   ============================================= */
.location { background: var(--bg); }
.location-inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.location-icon {
  color: var(--primary);
  display: inline-flex;
  margin-bottom: 1.5rem;
}
.location h2 { margin-bottom: 1.5rem; }
.location p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.location strong { color: var(--text); }
.location em { font-style: italic; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--bg-muted); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(4, 1fr); } }

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}
.testimonial-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.testimonial-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.testimonial-author strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 700;
}
.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =============================================
   GALLERY (custom carousel)
   ============================================= */
.gallery-section { background: var(--bg); }
.gallery-carousel {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
}
.gallery-viewport {
  overflow: hidden;
}
.gallery-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s ease;
  will-change: transform;
}
.gallery-slide {
  flex: 0 0 100%;
  min-width: 0;
}
@media (min-width: 768px) { .gallery-slide { flex: 0 0 calc(50% - 0.5rem); } }
@media (min-width: 1024px) { .gallery-slide { flex: 0 0 calc(33.333% - 0.667rem); } }

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-muted);
  padding: 0;
  cursor: pointer;
  font: inherit;
}
.gallery-item img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-zoom {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--text);
}
.gallery-item:hover .gallery-zoom { opacity: 1; }

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  transition: all var(--transition);
}
.gallery-arrow:hover { background: var(--primary); color: var(--primary-fg); border-color: var(--primary); }
.gallery-prev { left: -22px; }
.gallery-next { right: -22px; }
@media (min-width: 768px) { .gallery-arrow { display: inline-flex; } }

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}
.gallery-lightbox[aria-hidden="false"] { display: flex; }
.gallery-lightbox .lb-image {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lb-close, .lb-arrow {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all var(--transition);
}
.lb-close { top: 1rem; right: 1rem; font-size: 1.75rem; line-height: 1; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-arrow:hover { background: var(--primary); }

/* =============================================
   CONTACT
   ============================================= */
.contact-section {
  background: var(--secondary);
  color: var(--secondary-fg);
}
.contact-section .section-title { color: #fff; }
.contact-section .section-subtitle { color: rgba(250,250,250,0.7); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; } }

.contact-info-col { display: flex; flex-direction: column; gap: 2rem; }

.contact-phone-big {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--primary);
  color: var(--primary-fg);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: filter var(--transition);
}
.contact-phone-big:hover { filter: brightness(1.1); color: var(--primary-fg); }
.cpb-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  opacity: 0.8;
}
.cpb-number { font-size: 1.5rem; font-weight: 900; }

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(250,250,250,0.2);
  border-radius: var(--radius-xl);
}
.contact-info-icon { color: var(--primary); flex-shrink: 0; display: inline-flex; }
.cii-label { font-size: 0.875rem; color: rgba(250,250,250,0.6); }
.cii-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--secondary-fg);
  display: inline-block;
  transition: color var(--transition);
}
a.cii-value:hover { color: var(--primary); }

/* Fluent Forms styling – dark contact section */
.contact-form-col .fluentform { color: var(--secondary-fg); }
.contact-form-col .ff-el-group { margin-bottom: 1rem; }
.contact-form-col .ff-el-input--label label {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: rgba(250,250,250,0.8) !important;
  margin-bottom: 0.375rem !important;
  display: block !important;
}
.contact-form-col .ff-el-input--label label .ff-el-is-required {
  color: var(--primary);
  margin-left: 0.25rem;
}
.contact-form-col .ff-el-form-control {
  background: rgba(250,250,250,0.1) !important;
  border: 1px solid rgba(250,250,250,0.2) !important;
  color: var(--secondary-fg) !important;
  padding: 0.75rem 1rem !important;
  border-radius: var(--radius) !important;
  font-size: 0.95rem !important;
  font-family: inherit !important;
  outline: none !important;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100% !important;
  box-shadow: none !important;
}
.contact-form-col .ff-el-form-control::placeholder { color: rgba(250,250,250,0.4) !important; }
.contact-form-col .ff-el-form-control:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 2px var(--primary-bg-15) !important;
}
.contact-form-col textarea.ff-el-form-control { resize: vertical; min-height: 120px; }
.contact-form-col .ff-btn-submit,
.contact-form-col .ff-el-group button[type="submit"],
.contact-form-col button.ff-btn {
  width: 100% !important;
  background: var(--primary) !important;
  color: var(--primary-fg) !important;
  border: none !important;
  padding: 1rem 2rem !important;
  border-radius: var(--radius) !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  cursor: pointer;
  transition: filter var(--transition);
  margin-top: 0.5rem !important;
}
.contact-form-col .ff-btn-submit:hover,
.contact-form-col button.ff-btn:hover { filter: brightness(1.1); }
.contact-form-col .ff-message-success {
  background: rgba(34,197,94,0.15) !important;
  border: 1px solid rgba(34,197,94,0.3) !important;
  color: #4ade80 !important;
  padding: 1rem !important;
  border-radius: var(--radius) !important;
}
.contact-form-col .ff-el-is-error .text-danger { color: #f87171 !important; font-size: 0.85rem; margin-top: 0.25rem; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--bg-dark);
  color: rgba(250,250,250,0.95);
  padding: 2rem 0;
  text-align: center;
}
.footer-brand {
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
}
.footer-tagline {
  font-size: 0.875rem;
  opacity: 0.6;
  margin: 0 0 1rem;
}
.footer-cert-link {
  margin: 0 0 1rem;
}
.footer-cert-link a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}
.footer-cert-link a:hover { text-decoration: underline; }
.footer-copy {
  font-size: 0.75rem;
  opacity: 0.4;
  margin: 0;
}

/* =============================================
   STICKY CALL (mobile only)
   ============================================= */
.sticky-call {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--primary-fg);
  padding: 0.875rem 1.25rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-md);
  font-weight: 700;
  text-decoration: none;
  transition: filter var(--transition);
}
.sticky-call:hover { filter: brightness(1.1); color: var(--primary-fg); }
@media (min-width: 768px) { .sticky-call { display: none; } }

/* =============================================
   WORDPRESS FORM MESSAGES
   ============================================= */
.wp-form-message {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin-top: 0.75rem;
  font-size: 0.9rem;
}
.wp-form-message.success {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
}
.wp-form-message.error {
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
}

/* Hide WP admin bar adjustment for our hero */
.admin-bar .site-header { /* nothing needed; sticky handled by admin bar */ }
