/* ===================================
   Hefner Bill Plumbing Service
   Dark Industrial Copper Aesthetic
   =================================== */

:root {
  --font-display: 'Teko', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --dark: #141414;
  --dark-mid: #1c1c1c;
  --dark-surface: #242424;
  --copper: #c8853e;
  --copper-light: #dba164;
  --copper-dark: #a06a2e;
  --cream: #f5f0e8;
  --cream-soft: #ece6da;
  --white: #ffffff;
  --steel: #6b6b6b;
  --steel-light: #9e9e9e;
  --steel-lighter: #c4c4c4;
  --section-alt: #f8f5f0;
  --section-dark: #1a1a1a;
  --overlay: rgba(20, 20, 20, 0.7);
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.18);
  --radius: 6px;
  --transition: 300ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 150ms ease;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--copper);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--copper-dark); }
a:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--copper);
  color: var(--white);
  font-weight: 700;
  border-radius: var(--radius);
}
.skip-link:focus {
  top: 1rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 2px solid var(--copper);
  transition: background var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--cream);
}
.logo:hover { color: var(--copper-light); }
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--copper);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  letter-spacing: 0.05em;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
.logo-text small {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--copper-light);
  font-weight: 500;
}

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--cream);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--copper-light);
  background: rgba(200, 133, 62, 0.1);
}
.nav-cta {
  background: var(--copper) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.25rem !important;
}
.nav-cta:hover {
  background: var(--copper-dark) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  margin: 5px auto;
  transition: transform var(--transition), opacity var(--transition-fast);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
  text-decoration: none;
  line-height: 1.2;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}
.btn--primary:hover {
  background: var(--copper-dark);
  border-color: var(--copper-dark);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn--outline:hover {
  background: var(--cream);
  color: var(--dark);
}
.btn--dark {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}
.btn--dark:hover {
  background: var(--dark-surface);
  border-color: var(--dark-surface);
  color: var(--copper-light);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,20,20,0.88) 0%, rgba(20,20,20,0.6) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 133, 62, 0.2);
  border: 1px solid var(--copper);
  color: var(--copper-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--copper-light);
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.hero h1 span {
  color: var(--copper-light);
}
.hero-desc {
  font-size: 1.15rem;
  color: var(--steel-lighter);
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200, 133, 62, 0.3);
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--copper-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--steel-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--copper);
  padding: 1rem 0;
  overflow: hidden;
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
  flex-shrink: 0;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}
.section--dark {
  background: var(--section-dark);
  color: var(--cream);
}
.section--alt {
  background: var(--section-alt);
}
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--copper);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--dark);
}
.section-title--light {
  color: var(--cream);
}
.copper-line {
  width: 60px;
  height: 3px;
  background: var(--copper);
  border: none;
  margin-bottom: 2rem;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card {
  background: var(--dark-surface);
  border: 1px solid rgba(200, 133, 62, 0.15);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.service-card:hover {
  border-color: var(--copper);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 133, 62, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--copper-light);
}
.service-card h3 {
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--steel-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== SERVICES DETAIL ===== */
.services-detail {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-detail-card {
  background: var(--white);
  border: 1px solid var(--cream-soft);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.service-detail-card:hover {
  border-color: var(--copper);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.service-detail-card h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.service-detail-card p {
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.7;
}
.section-image {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ===== ABOUT GRID ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  box-shadow: var(--shadow);
}
.about-text p {
  color: var(--steel);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.highlight-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.highlight-icon {
  width: 36px;
  height: 36px;
  background: rgba(200, 133, 62, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--copper);
}
.highlight-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}
.highlight-item span {
  font-size: 0.8rem;
  color: var(--steel);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--cream-soft);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition-fast);
}
.section--alt .testimonial-card {
  background: var(--white);
}
.testimonial-card:hover {
  border-color: var(--copper);
  box-shadow: var(--shadow);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--copper);
  opacity: 0.25;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
}
.testimonial-card blockquote {
  font-style: italic;
  color: var(--steel);
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-top: 1rem;
}
.testimonial-attribution {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--copper);
  padding: 3.5rem 0;
  text-align: center;
}
.cta-inner h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.cta-inner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.cta-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  border: 2px solid var(--white);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.cta-phone:hover {
  background: var(--white);
  color: var(--copper);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--dark);
  padding: 7rem 0 3rem;
  text-align: center;
  border-bottom: 3px solid var(--copper);
}
.page-header .section-label {
  color: var(--copper-light);
}
.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.page-header p {
  color: var(--steel-lighter);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 133, 62, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--copper);
}
.contact-info-item h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
  color: var(--dark);
}
.contact-info-item a,
.contact-info-item p {
  color: var(--steel);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Contact Form */
.contact-form {
  background: var(--section-alt);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--cream-soft);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--cream-soft);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(200, 133, 62, 0.15);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1.1rem;
  padding: 1rem;
}

/* Form Status */
.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: none;
}
.form-status.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.form-status.error {
  display: block;
  background: #fce4ec;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* Map */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-container iframe {
  display: block;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: var(--steel-light);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200, 133, 62, 0.2);
}
.footer-brand .logo {
  margin-bottom: 1rem;
}
.footer-brand p {
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-heading {
  font-size: 1rem;
  color: var(--copper-light);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer-links li {
  margin-bottom: 0.6rem;
}
.footer-links a {
  color: var(--steel-light);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}
.footer-links a:hover {
  color: var(--copper-light);
}
.footer-links li {
  color: var(--steel);
  font-size: 0.9rem;
}
.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: var(--steel);
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-fill-mode: both;
}
.reveal--d1 { animation-delay: 0.1s; }
.reveal--d2 { animation-delay: 0.2s; }
.reveal--d3 { animation-delay: 0.3s; }
.reveal--d4 { animation-delay: 0.4s; }

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.services-grid .scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.services-grid .scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.services-grid .scroll-reveal:nth-child(4) { transition-delay: 0.15s; }
.services-grid .scroll-reveal:nth-child(5) { transition-delay: 0.25s; }
.services-grid .scroll-reveal:nth-child(6) { transition-delay: 0.3s; }

.testimonials-grid .scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.testimonials-grid .scroll-reveal:nth-child(4) { transition-delay: 0.3s; }

.services-detail .scroll-reveal:nth-child(2) { transition-delay: 0.05s; }
.services-detail .scroll-reveal:nth-child(3) { transition-delay: 0.1s; }
.services-detail .scroll-reveal:nth-child(4) { transition-delay: 0.15s; }
.services-detail .scroll-reveal:nth-child(5) { transition-delay: 0.2s; }
.services-detail .scroll-reveal:nth-child(6) { transition-delay: 0.25s; }
.services-detail .scroll-reveal:nth-child(7) { transition-delay: 0.3s; }
.services-detail .scroll-reveal:nth-child(8) { transition-delay: 0.35s; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .scroll-reveal {
    opacity: 1;
    transform: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-stats {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--dark);
    border-top: 1px solid rgba(200, 133, 62, 0.2);
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  .main-nav.open {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav a {
    padding: 0.75rem 1rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(200,133,62,0.08);
  }
  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
    border-radius: var(--radius) !important;
  }

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

  .hero {
    min-height: 100vh;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
  .hero-stats {
    flex-direction: column;
    gap: 1.25rem;
  }

  .section {
    padding: 3.5rem 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-highlights {
    grid-template-columns: 1fr;
  }
  .trust-items {
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 1rem;
    scrollbar-width: none;
  }
  .trust-items::-webkit-scrollbar { display: none; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 1rem; }
  .container { padding: 0 1rem; }
  .hero-content { padding: 3rem 1rem; }
  .logo-text { font-size: 1.25rem; }
  .contact-form { padding: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}
