/* This site was custom designed by Sitethreesixty.com and is actively managed by Sitethreesixty.com */
/* ================================
   COMPONENTS - CURLY TAIL SCREEN & WINDOW
   Consolidated shared component styles
   Sources: components/global.css, components/forms.css,
            components/newsletter.css, components/scroll-reveal.css,
            components/ab-test.css (conversion elements only)
   ================================ */

/* ========================================
   ACCESSIBILITY
   ======================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* .skip-link moved to critical.css and internal-critical.css */

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: var(--weight-bold);
  text-decoration: none;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: background-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base), color var(--transition-base);
}

.btn-primary {
  background-color: var(--button-primary-bg);
  color: var(--button-primary-text);
}

.btn-primary:hover {
  background-color: var(--button-primary-bg-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(197, 103, 15, 0.4);
  color: var(--button-primary-text);
}

.btn-primary:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 8px rgba(197, 103, 15, 0.3);
}

.btn-secondary {
  background-color: var(--color-blue);
  color: var(--color-white);
  border: none;
}

.btn-secondary:hover {
  background-color: var(--color-blue-dark);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

.btn-secondary:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-blue);
  padding: 14px 28px;
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: background-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.btn-white:hover {
  background-color: var(--color-gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-white:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  padding: 14px 28px;
  font-weight: var(--weight-semibold);
  border: 2px solid var(--color-white);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-base), color var(--transition-base);
}

.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-blue);
}

/* .btn-lg and .btn-sm moved to critical.css */

/* Mobile: Click/tap effect more prominent */
@media (max-width: 768px) {
  .btn:active {
    transform: translateY(2px) scale(0.96);
    transition: transform 0.1s ease;
  }
}

/* ========================================
   CARDS
   ======================================== */
.card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-elevated);
  transform: var(--lift-sm);
}

.card-body {
  padding: 24px;
}

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

a.card {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.card h3,
a.card p {
  color: inherit;
}

a.card:hover {
  color: inherit;
}

/* ========================================
   FORMS
   ======================================== */

/* Form Group */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--text-primary);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
}

.form-group label .required {
  color: var(--accent-primary);
}

/* Form Label */
.form-label {
  color: var(--text-primary);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  display: block;
  margin-bottom: 8px;
}

.form-label__required {
  color: var(--accent-primary);
}

/* Form Error */
.form-error {
  color: var(--color-error);
  font-size: var(--text-xs);
  margin-top: 4px;
  display: block;
  min-height: 1rem;
}

/* Invalid Field State */
.form-input.invalid,
.form-select.invalid,
.form-textarea.invalid {
  border-color: var(--color-error);
  background: rgba(255, 77, 77, 0.05);
}

/* Form Inputs */
.form-input,
.form-select,
.form-textarea {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  background: rgba(20, 40, 35, 0.3);
  color: var(--text-primary);
  font-size: var(--text-base);
  font-family: var(--font-body);
  transition: border-color var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: rgba(20, 40, 35, 0.5);
  box-shadow: 0 0 0 3px rgba(29, 209, 161, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-tertiary);
}

/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: var(--line-height-relaxed);
}

/* Select Dropdown */
.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%231dd1a1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

/* Radio Buttons */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-option {
  display: flex;
  align-items: center;
  color: var(--text-primary);
  cursor: pointer;
  gap: 8px;
}

.radio-option input[type="radio"] {
  cursor: pointer;
  width: 18px;
  height: 18px;
  accent-color: var(--accent-primary);
}

/* Checkboxes */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-option {
  display: flex;
  align-items: center;
  color: var(--text-primary);
  cursor: pointer;
  gap: 8px;
}

.checkbox-option input[type="checkbox"] {
  cursor: pointer;
  width: 18px;
  height: 18px;
  accent-color: var(--accent-primary);
}

/* Form Row (Side by Side) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Conditional Fields */
.conditional-field {
  margin-top: 12px;
  padding-left: 20px;
  border-left: 2px solid var(--accent-primary);
}

/* Form Messages */
.form-message {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  text-align: center;
  margin-top: 15px;
}

.form-message--success {
  background: rgba(29, 209, 161, 0.1);
  border: 1px solid var(--accent-primary);
  color: var(--accent-primary);
}

.form-message--error {
  background: rgba(255, 77, 77, 0.1);
  border: 1px solid var(--color-error);
  color: var(--color-error);
}

.form-message--info {
  background: rgba(41, 128, 185, 0.1);
  border: 1px solid var(--color-info-dark);
  color: var(--color-info);
}

/* Privacy Note */
.privacy-note {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 20px;
  line-height: var(--line-height-relaxed);
}

/* Form Validation States */
.form-input:invalid:not(:placeholder-shown),
.form-select:invalid,
.form-textarea:invalid:not(:placeholder-shown) {
  border-color: var(--color-error);
}

.form-input:valid:not(:placeholder-shown),
.form-select:valid,
.form-textarea:valid:not(:placeholder-shown) {
  border-color: var(--accent-primary);
}

/* Disabled State */
.form-input:disabled,
.form-select:disabled,
.form-textarea:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(20, 40, 35, 0.2);
}

/* Form Disclaimer */
.form-disclaimer {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
  margin-bottom: 0;
}

/* Form Response Note */
.form-response-note {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: 0;
}

/* Form Checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.form-checkbox label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.4;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--color-blue);
  cursor: pointer;
}

/* Form Mobile Adjustments */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .conditional-field {
    padding-left: 12px;
  }
}

/* ========================================
   NEWSLETTER
   ======================================== */

/* Shared Form Styles */
.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--color-accent);
}

.newsletter-form button[type="submit"] {
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.newsletter-form button[type="submit"]:hover {
  opacity: 0.9;
}

.newsletter-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.newsletter-privacy {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 8px;
}

.newsletter-privacy a {
  text-decoration: underline;
}

.newsletter-success {
  font-weight: 600;
  font-size: 0.95rem;
}

.newsletter-error {
  font-size: 0.85rem;
  color: #e53935;
  margin-top: 8px;
}

/* Footer Newsletter */
.footer-newsletter {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 48px;
  margin-bottom: 48px;
  text-align: center;
}

.footer-newsletter p {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.footer-newsletter > p:first-child {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 16px;
}

.footer-newsletter .newsletter-form {
  margin: 0 auto;
  justify-content: center;
}

.footer-newsletter .newsletter-form input[type="email"] {
  background: var(--color-white);
  border-color: var(--border-medium);
  color: var(--text-primary);
}

.footer-newsletter .newsletter-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.footer-newsletter .newsletter-form button {
  background: var(--color-blue);
  color: var(--color-white);
}

.footer-newsletter .newsletter-privacy {
  color: var(--text-secondary);
  opacity: 1;
}

.footer-newsletter .newsletter-privacy a {
  color: var(--color-blue);
}

.footer-newsletter .newsletter-success {
  color: var(--color-success);
}

/* Homepage Newsletter Band */
.newsletter-band {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 48px 0;
  text-align: center;
}

.newsletter-band h3 {
  font-size: 1.3rem;
  margin: 0 0 8px;
  color: var(--color-white);
}

.newsletter-band > .container > .newsletter-band-content > p:first-of-type {
  font-size: 1rem;
  margin: 0 0 24px;
  opacity: 0.9;
}

.newsletter-band-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-band .newsletter-form {
  margin: 0 auto;
  justify-content: center;
}

.newsletter-band .newsletter-form input[type="email"] {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

.newsletter-band .newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-band .newsletter-form button {
  background: var(--color-white);
  color: var(--color-accent);
}

.newsletter-band .newsletter-privacy {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-band .newsletter-privacy a {
  color: var(--color-white);
}

.newsletter-band .newsletter-success {
  color: var(--color-white);
}

/* Blog Newsletter CTA */
.blog-newsletter {
  max-width: 700px;
  margin: 48px auto;
  padding: 48px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.blog-newsletter h3 {
  font-size: 1.2rem;
  margin: 0 0 8px;
  color: var(--text-primary);
}

.blog-newsletter > p:first-of-type {
  color: var(--text-secondary);
  margin: 0 0 24px;
}

.blog-newsletter .newsletter-form {
  margin: 0 auto;
  justify-content: center;
}

.blog-newsletter .newsletter-form input[type="email"] {
  background: var(--color-white);
  border-color: var(--color-border);
  color: var(--text-primary);
}

.blog-newsletter .newsletter-form input[type="email"]::placeholder {
  color: var(--text-secondary);
}

.blog-newsletter .newsletter-form button {
  background: var(--color-accent);
  color: var(--color-white);
}

.blog-newsletter .newsletter-privacy {
  color: var(--text-secondary);
}

.blog-newsletter .newsletter-privacy a {
  color: var(--color-accent);
}

.blog-newsletter .newsletter-success {
  color: var(--color-accent);
}

/* Newsletter Responsive */
@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button[type="submit"] {
    width: 100%;
  }

  .blog-newsletter {
    padding: 24px;
  }
}

/* ========================================
   TRUST BADGES
   ======================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: var(--badge-bg);
  color: var(--badge-text);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.badge-icon {
  width: 16px;
  height: 16px;
  color: var(--badge-icon);
}

.badge-gold {
  background-color: #FEF3C7;
  color: #92400E;
}

.badge-gold .badge-icon {
  color: #F59E0B;
}

/* ========================================
   ICONS
   ======================================== */
.icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.icon-sm {
  width: 18px;
  height: 18px;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

.icon-xl {
  width: 48px;
  height: 48px;
}

.icon-orange {
  color: var(--color-orange);
}

.icon-blue {
  color: var(--color-blue);
}

.icon-text {
  color: var(--color-text);
}

/* ========================================
   FEATURE BLOCKS
   ======================================== */
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-blue-subtle);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-blue);
}

.feature-icon-orange {
  background-color: var(--color-orange-subtle);
}

.feature-icon-orange svg {
  color: var(--color-orange);
}

.feature-content h3,
.feature-content h4 {
  margin-bottom: 8px;
}

/* ========================================
   SECTION HEADERS
   .section-header moved to critical.css and internal-critical.css
   ======================================== */

.section-label {
  display: inline-block;
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.section-label-orange {
  color: var(--color-orange-accessible);
}

/* ========================================
   CTA SECTIONS
   ======================================== */

/* Base CTA section — blue background, white text, centered */
.cta-section.section-blue {
  background-color: var(--color-blue);
}

.cta-content h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CTA section mobile */
@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ========================================
   GOOGLE REVIEWS
   Base .google-reviews, .google-g moved to critical.css (above-fold on homepage).
   ======================================== */

/* ========================================
   DIVIDERS
   ======================================== */
.divider {
  height: 1px;
  background-color: var(--border-light);
  margin: 40px 0;
}

.divider-thick {
  height: 4px;
  width: 60px;
  background-color: var(--color-orange);
  border-radius: var(--radius-full);
}

/* ========================================
   IMAGE PATTERNS
   ======================================== */
.img-rounded {
  border-radius: var(--radius-lg);
}

.img-shadow {
  box-shadow: var(--shadow-lg);
}

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

/* ========================================
   STYLED LISTS
   ======================================== */
.list-check {
  list-style: none;
  padding-left: 0;
}

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.list-check li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--color-blue-subtle);
  color: var(--color-blue);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: var(--weight-bold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial {
  position: relative;
  padding-left: 24px;
}

.testimonial::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 48px;
  font-weight: var(--weight-bold);
  color: var(--color-orange-soft);
  line-height: 1;
}

.testimonial-text {
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.testimonial-author {
  font-weight: var(--weight-semibold);
  color: var(--color-text);
}

/* ========================================
   HERO SOCIAL
   ======================================== */
/* .page-header base is in internal-critical.css */

.hero-social {
  position: absolute;
  bottom: 16px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  opacity: 0.7;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.hero-social a:hover {
  opacity: 1;
  transform: scale(1.1);
}

.hero-social svg {
  width: 16px;
  height: 16px;
}

.hero-social-fb {
  background-color: #1877F2;
}

.hero-social-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Tips page: no hero section, icons flow in section-header */
.tips-advice-section .hero-social {
  position: static;
  margin-top: 20px;
}

/* ========================================
   CONVERSION ELEMENTS
   (Sticky phone, service prices, learn-more,
    response time badge, intro bar, hero location badge)
   ======================================== */

/* Sticky Phone Button */
.sticky-phone-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-sticky, 1040);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background-color: #15803D;
  color: #FFFFFF !important;
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  text-decoration: none;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 28px rgba(21, 128, 61, 0.5), var(--shadow-xl);
  opacity: 0;
  animation: fadeInButton 0.5s ease-out 0.5s forwards;
  transition: background-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.sticky-phone-btn:hover {
  background-color: #14532D;
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(21, 128, 61, 0.6), var(--shadow-2xl);
  color: #FFFFFF !important;
}

.sticky-phone-btn span {
  color: #FFFFFF !important;
}

.sticky-phone-btn:active {
  transform: scale(0.97);
}

.sticky-phone-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .sticky-phone-btn {
    display: flex;
  }
}

@media (max-width: 480px) {
  .sticky-phone-btn {
    bottom: 20px;
    right: 20px;
    padding: 14px 20px;
    font-size: var(--text-base);
  }

  .sticky-phone-btn svg {
    width: 22px;
    height: 22px;
  }
}

/* Form Trust Badges */
.form-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: var(--color-blue-subtle);
  color: var(--color-blue);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  border-radius: var(--radius-full);
}

.form-badge::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  background-color: var(--color-blue);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 9px;
  font-weight: var(--weight-bold);
}

@media (max-width: 480px) {
  .form-trust-badges {
    gap: 4px;
    flex-wrap: nowrap;
  }

  .form-badge {
    padding: 3px 5px;
    font-size: 8px;
    white-space: nowrap;
    gap: 3px;
  }

  .form-badge::before {
    width: 10px;
    height: 10px;
    font-size: 6px;
  }
}

@media (max-width: 460px) {
  .form-trust-badges {
    gap: 3px;
  }

  .form-badge {
    padding: 2px 4px;
    font-size: 7px;
    gap: 2px;
  }

  .form-badge::before {
    width: 8px;
    height: 8px;
    font-size: 5px;
  }
}

/* Form Callback Note */
.form-callback-note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-top: 12px;
  font-style: italic;
}

/* Service Price Indicators */
.service-price {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  background-color: var(--color-orange-subtle);
  color: var(--color-orange-accessible);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-md);
}

.flip-card .service-price {
  margin-top: 16px;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

/* .intro-bar, .intro-bar-content, .intro-headline, .intro-tagline
   moved to critical.css (above-fold CLS fix).
   .intro-areas kept here (below-fold on mobile). */

.intro-areas {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 768px) {
  .intro-areas {
    font-size: var(--text-sm);
  }
}

/* Hero Location Badge */
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background-color: var(--color-blue-subtle);
  color: var(--color-blue);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.hero-location svg {
  width: 16px;
  height: 16px;
}

/* Service Note */
.service-note {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-style: italic;
  margin-top: 8px;
}

/* Service List */
.service-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  text-align: left;
}

.service-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-blue);
  font-weight: var(--weight-bold);
}

/* Service Glass Note */
.service-glass-note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-style: italic;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

/* Learn More Link */
.learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-blue);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  text-decoration: none;
  margin-top: 8px;
  cursor: pointer;
}

.learn-more-link:hover {
  text-decoration: underline;
}

.learn-more-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.learn-more-link.expanded svg {
  transform: rotate(180deg);
}

/* Response Time Badge */
.response-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background-color: var(--color-orange-subtle);
  color: var(--color-orange-accessible);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  border-radius: var(--radius-full);
  margin-top: 16px;
}

.response-time-badge svg {
  width: 16px;
  height: 16px;
}

/* ========================================
   SCROLL REVEAL
   Base [data-reveal], .reveal-fade-up, .reveal-stagger
   moved to critical.css (initial opacity:0 state must be
   set before first paint to prevent CLS).
   Stagger delays + other reveal variants remain here.
   ======================================== */

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.3s; }

/* Image Reveal - Blur + Scale */
.reveal-image,
[data-reveal="image"] {
  opacity: 0;
  transform: translateY(40px) scale(1.03);
  filter: blur(6px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, filter 0.8s ease-out;
}

.reveal-image.is-visible,
[data-reveal="image"].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Scale In - Subtle grow */
.reveal-scale,
[data-reveal="scale"] {
  opacity: 0;
  transform: scale(0.95);
}

.reveal-scale.is-visible,
[data-reveal="scale"].is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Fade Only - No movement */
.reveal-fade,
[data-reveal="fade"] {
  opacity: 0;
}

.reveal-fade.is-visible,
[data-reveal="fade"].is-visible {
  opacity: 1;
}

/* Slide From Left/Right */
.reveal-left,
[data-reveal="left"] {
  opacity: 0;
  transform: translateX(-30px);
}

.reveal-right,
[data-reveal="right"] {
  opacity: 0;
  transform: translateX(30px);
}

.reveal-left.is-visible,
.reveal-right.is-visible,
[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Section Header Reveal */
.reveal-header .section-label {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-header h2 {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s ease-out 0.1s, transform 0.5s ease-out 0.1s;
}

.reveal-header > p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out 0.2s, transform 0.5s ease-out 0.2s;
}

.reveal-header.is-visible .section-label,
.reveal-header.is-visible h2,
.reveal-header.is-visible > p {
  opacity: 1;
  transform: translateY(0);
}

/* Content Block Reveal */
.reveal-content > * {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-content.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-content.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-content.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-content.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-content.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-content.is-visible > *:nth-child(6) { transition-delay: 0.4s; }

.reveal-content.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced Motion - Respect user preference */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .reveal-fade-up,
  .reveal-image,
  .reveal-scale,
  .reveal-fade,
  .reveal-left,
  .reveal-right,
  .reveal-stagger > *,
  .reveal-header .section-label,
  .reveal-header h2,
  .reveal-header > p,
  .reveal-content > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* @keyframes fadeInButton moved to critical.css */

/* This site was custom designed by Sitethreesixty.com and is actively managed by Sitethreesixty.com */
