/* ========================================
   Scott Wallpaper Installers — Design Tokens
   ======================================== */
:root {
  --primary-bg: #1a1a2e;
  --secondary-bg: #0f0f1a;
  --light-bg: #f5f5f0;
  --text-light: #f0ece2;
  --text-dark: #1a1a2e;
  --accent: #b8860b;
  --accent-hover: #d4a017;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Courier New', monospace;
  --gold-border: 2px solid #b8860b;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.svg-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  fill: currentColor;
  flex-shrink: 0;
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
  background: var(--secondary-bg);
  color: var(--text-light);
  padding: 8px 0;
  font-size: 0.85rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: var(--accent); }
.top-bar a:hover { color: var(--accent-hover); }
.top-bar .svg-icon { margin-right: 6px; }

/* ========================================
   Header
   ======================================== */
.site-header {
  background: var(--primary-bg);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: var(--gold-border);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  white-space: nowrap;
}
.logo span { color: var(--accent); }
.logo:hover { color: var(--text-light); }

.main-nav {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}
.main-nav a:hover { color: var(--accent); }

.header-cta {
  background: var(--accent) !important;
  color: var(--primary-bg) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
}
.header-cta:hover {
  background: var(--accent-hover) !important;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.mobile-menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  background: linear-gradient(rgba(15, 15, 26, 0.75), rgba(15, 15, 26, 0.75)), url('../images/hero-bg.webp') center/cover no-repeat;
  color: var(--text-light);
  padding: 80px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.hero-content { flex: 1; max-width: 550px; }
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-content h1 span { color: var(--accent); }
.hero-content h2 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 24px;
  opacity: 0.9;
}

.trust-badges {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.trust-badge {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-badge .svg-icon { color: var(--accent); }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}
.stat-item .stat-number {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-item .stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Hero Form */
.hero-form {
  flex: 0 0 420px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(184, 134, 11, 0.3);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

/* ========================================
   Contact Form (shared)
   ======================================== */
.contact-form .form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-form .form-group { flex: 1; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(184, 134, 11, 0.4);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(240, 236, 226, 0.5);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}
.form-submit { margin-top: 12px; }
.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: var(--primary-bg);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.submit-btn:hover { background: var(--accent-hover); }

.form-error {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 4px;
}

/* Light background form variant */
.section-light .contact-form input,
.section-light .contact-form textarea,
.contact-page .contact-form input,
.contact-page .contact-form textarea {
  background: #fff;
  color: var(--text-dark);
  border-color: #ccc;
}
.section-light .contact-form input::placeholder,
.section-light .contact-form textarea::placeholder,
.contact-page .contact-form input::placeholder,
.contact-page .contact-form textarea::placeholder {
  color: #999;
}
.section-light .contact-form input:focus,
.section-light .contact-form textarea:focus,
.contact-page .contact-form input:focus,
.contact-page .contact-form textarea:focus {
  border-color: var(--accent);
}

/* ========================================
   Sections
   ======================================== */
.section-dark {
  background: var(--primary-bg);
  color: var(--text-light);
  padding: 80px 0;
}
.section-light {
  background: var(--light-bg);
  color: var(--text-dark);
  padding: 80px 0;
}
.section-secondary {
  background: var(--secondary-bg);
  color: var(--text-light);
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 50px;
}
.title-underline {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 12px auto 40px;
  border-radius: 2px;
}

/* ========================================
   B2B Block
   ======================================== */
.b2b-block .container {
  display: flex;
  gap: 50px;
  align-items: center;
}
.b2b-content { flex: 1; }
.b2b-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 20px;
}
.b2b-content p { margin-bottom: 24px; line-height: 1.7; }
.b2b-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.b2b-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.b2b-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}
.b2b-image { flex: 0 0 45%; }
.b2b-image img { border-radius: 12px; }

/* ========================================
   Services Grid
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.service-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.service-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

/* ========================================
   Gallery
   ======================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 10px 24px;
  border: var(--gold-border);
  background: transparent;
  color: var(--text-light);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  color: var(--primary-bg);
  border-color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item { border-radius: 8px; overflow: hidden; }
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ========================================
   Before/After Slider
   ======================================== */
.ba-section {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
}
.ba-wrapper { text-align: center; }
.ba-slider {
  position: relative;
  width: 400px;
  height: 280px;
  overflow: hidden;
  border-radius: 10px;
  cursor: ew-resize;
  border: var(--gold-border);
}
.ba-before, .ba-after {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}
.ba-before img, .ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--accent);
  cursor: ew-resize;
  z-index: 10;
  transform: translateX(-50%);
}
.ba-handle::after {
  content: '◀▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent);
  color: var(--primary-bg);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: -2px;
}
.ba-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   Process Steps
   ======================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.process-step { padding: 20px; }
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary-bg);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* ========================================
   FAQ Accordion
   ======================================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(184, 134, 11, 0.3);
}
.faq-question {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 500;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-question::after {
  content: '−';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
}
.faq-answer p {
  padding-bottom: 20px;
  line-height: 1.7;
  opacity: 0.85;
}

/* Light background FAQ */
.section-light .faq-item { border-bottom-color: #ddd; }
.section-light .faq-question::after { color: var(--accent); }

/* ========================================
   Reviews / TrustIndex
   ======================================== */
.reviews-section { padding: 60px 0; }

/* ========================================
   SEO Content Block
   ======================================== */
.seo-content {
  padding: 60px 0;
  background: var(--light-bg);
}
.seo-content p {
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.8;
  font-size: 0.95rem;
  color: #444;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background: var(--secondary-bg);
  color: var(--text-light);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--accent);
}
.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.8;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li .svg-icon { margin-right: 6px; color: var(--accent); }
.footer-col ul a {
  color: var(--text-light);
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer-col ul a:hover { color: var(--accent); opacity: 1; }

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(184, 134, 11, 0.2);
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ========================================
   Sticky Quote Button + Modal
   ======================================== */
.sticky-quote-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: var(--primary-bg);
  padding: 14px 24px;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  z-index: 90;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sticky-quote-btn:hover { background: var(--accent-hover); transform: translateY(-2px); }
.sticky-quote-btn.hidden { opacity: 0; pointer-events: none; }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: var(--primary-bg);
  border: var(--gold-border);
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.8rem;
  cursor: pointer;
}
.modal-content h3 {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

/* ========================================
   Page Header (inner pages)
   ======================================== */
.page-header {
  background: linear-gradient(rgba(15, 15, 26, 0.8), rgba(15, 15, 26, 0.8)), url('../images/hero-bg.webp') center/cover no-repeat;
  color: var(--text-light);
  padding: 60px 0;
  text-align: center;
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.page-header p {
  font-size: 1.05rem;
  opacity: 0.85;
}

/* ========================================
   About Page
   ======================================== */
.about-owner {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  padding: 60px 0;
}
.about-owner img {
  width: 300px;
  border-radius: 12px;
  flex-shrink: 0;
}
.about-owner-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.about-owner-text p {
  line-height: 1.8;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.value-card {
  padding: 30px 20px;
}
.value-icon {
  font-size: 0;
  margin-bottom: 16px;
  color: var(--accent);
}
.value-icon .svg-icon {
  width: 2.4rem;
  height: 2.4rem;
}
.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.6;
}

.stats-bar {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  padding: 40px 0;
  text-align: center;
}
.stats-bar .stat-item { font-size: 1rem; }
.stats-bar .stat-item .svg-icon {
  margin-right: 6px;
  color: var(--accent);
}
.stats-bar .stat-number {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-page .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 60px 20px;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.contact-info p {
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.contact-info .svg-icon { margin-right: 6px; color: var(--accent); }
.contact-info a { color: var(--accent); }
.contact-map {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}
.contact-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* ========================================
   Service Pages
   ======================================== */
.service-detail {
  padding: 60px 0;
}
.service-detail .container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.service-text { flex: 1; }
.service-text h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.service-text p {
  line-height: 1.8;
  margin-bottom: 16px;
}
.service-text ul {
  margin: 16px 0 24px 20px;
}
.service-text li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.service-image {
  flex: 0 0 45%;
}
.service-image img {
  border-radius: 12px;
}

/* Service Cards (hub page) */
.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 60px 0;
}
.service-link-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform var(--transition);
  background: #fff;
}
.service-link-card:hover { transform: translateY(-4px); }
.service-link-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.service-link-card-body {
  padding: 24px;
}
.service-link-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.service-link-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 16px;
}

/* ========================================
   Service Areas
   ======================================== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.area-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform var(--transition);
}
.area-card:hover { transform: translateY(-4px); }
.area-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.area-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 16px;
}

/* ========================================
   CTA Block
   ======================================== */
.cta-block {
  background: var(--primary-bg);
  color: var(--text-light);
  padding: 60px 0;
  text-align: center;
}
.cta-block h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 16px;
}
.cta-block p {
  margin-bottom: 24px;
  opacity: 0.85;
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-bg);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--primary-bg);
}
.btn-outline {
  display: inline-block;
  border: var(--gold-border);
  color: var(--accent);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--primary-bg);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 992px) {
  .hero .container { flex-direction: column; }
  .hero-form { flex: auto; width: 100%; max-width: 500px; }
  .b2b-block .container { flex-direction: column; }
  .b2b-image { flex: auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail .container { flex-direction: column; }
  .service-image { flex: auto; }
  .contact-page .container { grid-template-columns: 1fr; }
  .about-owner { flex-direction: column; align-items: center; text-align: center; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .mobile-menu-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-bg);
    flex-direction: column;
    padding: 20px;
    border-top: var(--gold-border);
    gap: 16px;
  }
  .main-nav.active { display: flex; }

  .hero-content h1 { font-size: 2rem; }
  .hero { padding: 50px 0; min-height: auto; }
  .hero-stats { gap: 24px; }
  .stat-item .stat-number { font-size: 1.8rem; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .ba-section { flex-direction: column; align-items: center; }
  .ba-slider { width: 100%; max-width: 400px; }
  .footer-grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .stats-bar { gap: 30px; }
  .contact-form .form-row { flex-direction: column; }

  .top-bar .container { flex-direction: column; gap: 4px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.6rem; }
  .section-title { font-size: 1.6rem; }
  .page-header h1 { font-size: 1.8rem; }
  .hero-form { padding: 20px; }
}

