/**
 * Landing Page Styles
 * Senior Movers - Landing page styles
 */

html {
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body.landing-page {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--co, #000);
  line-height: 1.6;
}

.landing-page #landing-content {
  position: relative;
}

.landing-page .page-logo {
  position: absolute;
  top: 24px;
  right: 0;
  z-index: 10;
}

.landing-page .page-logo img {
  height: 50px;
  width: auto;
}

.landing-page .hero-image {
  max-width: 700px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin-top: 32px;
  margin-bottom: 24px;
}

/* Container */
.landing-page .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.landing-page .header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid rgba(128,128,128,0.08);
  z-index: 100;
}

.landing-page .header-inner {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  padding: 16px 24px;
}

.landing-page .header-inner > * {
  display: flex;
  align-items: center;
}


.landing-page .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.landing-page .logo svg {
  width: 44px;
  height: 44px;
}
.landing-page .logo-img {
  max-width: 180px;
  height: auto;
}
.landing-page .header-social {
  display: flex;
  align-items: center;
  gap: 10px;
  position: static;
  transform: none;
}
.landing-page .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e4e6eb;
  color: var(--ho, #0D4F6E);
  font-size: 20px;
  transition: background 0.2s, color 0.2s;
}
.landing-page .social-icon:hover {
  color: #fff;
  text-decoration: none;
}
.landing-page .social-icon:hover .fa-whatsapp { color: #fff !important; }
.landing-page .social-icon:hover .fa-facebook { color: #fff !important; }
.landing-page .social-icon:hover .fa-twitter,
.landing-page .social-icon:hover .fa-x-twitter { color: #fff !important; }
.landing-page .social-icon:has(.fa-whatsapp):hover { background: #25D366; }
.landing-page .social-icon:has(.fa-facebook):hover { background: #1877F2; }
.landing-page .social-icon:has(.fa-twitter):hover { background: #1DA1F2; }
.landing-page .social-icon:has(.fa-x-twitter):hover { background: #000; }
.landing-page .phone-number {
  font-weight: 600;
  color: var(--ho, #0D4F6E);
  font-size: 16px;
}
.landing-page .header-contact {
  display: flex;
  align-items: center;
  gap: 8px;
}

.landing-page .phone-link:hover i {
  color: #25D366 !important;
}
.landing-page .header-icon-inline {
  font-size: 20px;
  margin-right: 6px;
}
.landing-page .logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ho, #0D4F6E);
}

.landing-page .nav-buttons {
  display: flex;
  gap: 8px;
}

.landing-page .btn-estimate {
  background: var(--ho, #0D4F6E);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.landing-page .btn-estimate:hover {
  background: #fff;
  color: var(--ho, #0D4F6E) !important;
}

.landing-page .header-logo {
  display: flex;
  align-items: center;
}

.landing-page .header-logo img {
  height: 60px;
  width: auto;
}

/* Buttons */
.landing-page .btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid var(--ho, #0D4F6E);
  text-decoration: none;
  display: inline-block;
}

.landing-page .btn.btn-outline {
  background: transparent;
  color: var(--ho, #0D4F6E) !important;
}

.landing-page .btn.btn-outline:hover {
  background: var(--ho, #0D4F6E);
  color: #fff !important;
}

.landing-page .btn-primary {
  background: var(--ho, #0D4F6E);
  color: #fff;
}

.landing-page .btn-primary:hover {
  background: #fff;
  color: var(--ho, #0D4F6E) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
}

.landing-page .btn-large {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.landing-page .btn-small {
  padding: 6px 12px;
  font-size: 0.75rem;
}

/* Hero Section */
.landing-page .hero {
  min-height: calc(100vh - 400px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 24px;
}

.landing-page .hero-logo {
  max-width: 350px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.landing-page .hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 16px 0;
  color: var(--co, #000);
}

.landing-page .hero h1 span {
  color: var(--ho, #0D4F6E);
}

.landing-page .hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--muted-text, #6d6d6e);
  max-width: 600px;
  margin: 0 0 28px 0;
}

.landing-page .hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Features */
.landing-page .features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 0 20px;
  margin-top: 20px;
}

.landing-page .feature {
  border-radius: 20px;
  padding: 48px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.landing-page .feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 100%);
  border-radius: 20px;
}

.landing-page .feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.landing-page .feature-services {
  background-image: url('../img/services.webp');
}

.landing-page .feature-truck {
  background-image: url('../img/truck-loading.webp');
}

.landing-page .feature-reviews {
  background-image: url('../img/reviews.webp');
}

.landing-page .feature h2 {
  margin: 0 0 12px 0;
  font-size: 1.3rem !important;
  font-weight: 600;
  color: #fff;
  background: rgba(0,0,0,0.05);
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.landing-page .feature p {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  background: rgba(0,0,0,0.05);
  padding: 6px 12px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.landing-page .feature-link {
  display: inline-block;
  margin-top: 16px;
  color: #fff;
  font-weight: 500;
  text-decoration: underline;
  background: rgba(0,0,0,0.05);
  padding: 4px 10px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.landing-page .feature-link:hover {
  color: var(--ac);
}

/* SEO Content */
.landing-page .seo-content {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 40px 24px;
  text-align: left;
}

.landing-page .seo-content h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--co, #000);
}

.landing-page .seo-content p {
  color: var(--muted-text, #6d6d6e);
  line-height: 1.7;
  margin-bottom: 16px;
}

.landing-page .seo-contact-cta {
  text-align: center;
  margin-top: 24px;
  font-size: 1.2rem;
}

.landing-page .seo-contact-link {
  color: var(--ho, #0D4F6E);
  font-weight: 600;
  text-decoration: underline;
}

/* CTA Bottom */
.landing-page .cta-bottom {
  text-align: center;
  padding: 48px 24px;
  background: linear-gradient(135deg, var(--ho, #0D4F6E), color-mix(in srgb, var(--ho, #0D4F6E) 70%, #000));
  border-radius: 20px;
  margin: 0 auto 40px;
  max-width: 800px;
}

.landing-page .cta-bottom h2 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.landing-page .cta-bottom p {
  color: #fff;
  margin-bottom: 20px;
}

.landing-page .cta-bottom .btn {
  background: #fff;
  color: var(--ho, #0D4F6E);
  font-weight: 600;
}

.landing-page .cta-bottom .btn:hover {
  background: rgba(255,255,255,0.9);
}

/* Modal */
.landing-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.landing-modal-backdrop.active {
  display: flex;
}

.landing-modal {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(-10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.landing-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}

.landing-modal-close:hover {
  color: var(--ho, #0D4F6E);
}

.landing-modal h2 {
  margin: 0 0 28px 0;
  font-size: 1.6rem;
  text-align: center;
  color: #333;
}

.landing-modal .form-group {
  margin-bottom: 20px;
}

.landing-modal .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.landing-modal .form-group input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--option, rgba(109,109,110,0.2));
  border-radius: 12px;
  font-size: 1rem;
  background: #fff;
  color: #333;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.landing-modal .form-group input:focus {
  outline: none;
  border-color: var(--ho, #0D4F6E);
  box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
}

.landing-modal .form-group input::placeholder {
  color: #999;
}

.landing-modal .checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.landing-modal .checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--ho, #0D4F6E);
}

.landing-modal .checkbox-row label {
  font-size: 0.95rem;
  color: #666;
  cursor: pointer;
}

.landing-modal .btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
}

.landing-modal-footer {
  text-align: center;
  margin-top: 24px;
  color: #666;
}

.landing-modal-footer a {
  color: var(--ho, #0D4F6E);
  text-decoration: none;
  font-weight: 600;
}

.landing-modal-footer a:hover {
  text-decoration: underline;
}

.landing-modal-footer p {
  margin: 8px 0;
}

/* Alert */
.landing-page .alert {
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 24px;
  text-align: center;
  font-weight: 500;
}

.landing-page .alert-success {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
}

.landing-page .alert-error {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}

.landing-page .alert-info {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
}

/* Footer */
.landing-footer {
  background: var(--ho, #0D4F6E);
  color: #fff;
  padding: 32px 24px;
  margin-top: 40px;
}

.landing-footer .footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.landing-footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.landing-footer .footer-nav .footer-link {
  font-size: 14px;
}

.landing-footer .footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.landing-footer .footer-link {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}

.landing-footer .footer-link i {
  color: var(--lbg, #E5F2F7);
}

.landing-footer .footer-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.landing-footer .footer-copy {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Services & Reviews Pages */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-content h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--co, #000);
}

.page-content .intro-text {
  font-size: 1.1rem;
  color: var(--muted-text, #6d6d6e);
  margin-bottom: 40px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}

.service-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--card, #fff);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.service-item:nth-child(even) {
  flex-direction: row-reverse;
}

.service-item .service-img {
  width: 200px;
  border-radius: 12px;
  flex-shrink: 0;
}

.service-item .service-icon-large {
  width: 200px;
  height: 133px;
  background: linear-gradient(135deg, var(--ho, #0D4F6E), color-mix(in srgb, var(--ho, #0D4F6E) 50%, white));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-item .service-icon-large i {
  font-size: 3rem;
  color: #fff;
}

.service-details h2 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  color: var(--co, #000);
}

.service-details p {
  margin: 0 0 12px;
  color: var(--muted-text, #6d6d6e);
}

.service-details ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted-text, #6d6d6e);
}

.service-details li {
  margin-bottom: 4px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--co, #000);
}

.badge-item i {
  font-size: 2rem;
  color: var(--ho, #0D4F6E);
}

.badge-item .badge-logo {
  height: 50px;
  width: auto;
}

.badge-item span {
  font-weight: 500;
}

/* Reviews */
.reviews-section h2 {
  text-align: center;
  margin-bottom: 24px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--card, #fff);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.review-stars {
  margin-bottom: 12px;
}

.review-stars i {
  color: #f5a623;
}

.review-text {
  font-style: italic;
  color: var(--co, #000);
  margin-bottom: 12px;
}

.review-author {
  color: var(--muted-text, #6d6d6e);
  font-weight: 500;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .landing-page .features {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}


@media (max-width: 600px) {
  .landing-page .logo-text {
    display: none;
  }

  .landing-page .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .landing-page .btn-small {
    padding: 5px 10px;
  }

  .service-item,
  .service-item:nth-child(even) {
    flex-direction: column;
  }

  .service-item .service-img,
  .service-item .service-icon-large {
    width: 100%;
    height: auto;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    font-size: 0.7rem;
  }

  .landing-page .btn-large {
    padding: 14px 32px;
  }

  .landing-page .hero {
    padding: 20px 16px;
    min-height: auto;
  }

  .landing-page .hero-logo {
    width: 80px;
    height: 80px;
  }

  .landing-modal {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .landing-page .feature {
    padding: 28px 24px;
  }

  .landing-page .page-logo {
    position: static;
    display: block;
    text-align: center;
    padding: 32px 0 16px;
  }

  .landing-page .header-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 12px 24px;
    height: auto;
  }

  /* Row 1: Logo + Login/Signup */
  .landing-page .header-logo {
    grid-row: 1;
    grid-column: 1;
    justify-self: start;
    align-self: center;
  }

  .landing-page .nav-buttons {
    grid-row: 1;
    grid-column: 2;
    justify-self: end;
    align-self: center;
  }

  /* Row 2: Phone + Social */
  .landing-page .header-contact {
    grid-row: 2;
    grid-column: 1;
    justify-self: start;
    align-self: center;
  }

  .landing-page .header-social {
    grid-row: 2;
    grid-column: 2;
    justify-self: end;
    align-self: center;
  }

  /* Row 3: Free Estimate centered */
  .landing-page .btn-estimate {
    grid-row: 3;
    grid-column: 1 / -1;
    justify-self: center;
    align-self: center;
  }

  .landing-footer .footer-contact {
    flex-direction: column;
    gap: 12px;
  }
}

/* Learn More Page */
.learn-more-content {
  padding: 60px 24px;
}
.learn-more-content h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 24px 0;
  color: var(--co, #000);
  text-align: center;
}
.learn-more-content h1 span {
  color: var(--ho, #0D4F6E);
}
.intro-text {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--muted-text, #6d6d6e);
  line-height: 1.8;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}
.service-card {
  background: var(--card, #fff);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.service-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--ho, #0D4F6E), color-mix(in srgb, var(--ho, #0D4F6E) 50%, white));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-content {
  padding: 24px;
}
.service-content h2, .service-content h3 {
  margin: 0 0 12px 0;
  font-size: 1.3rem;
  color: var(--co, #000);
}
.service-content p {
  margin: 0;
  color: var(--muted-text, #6d6d6e);
  line-height: 1.6;
}
.why-section {
  background: var(--lbg, #f5f5f5);
  padding: 60px 24px;
  margin: 0 -24px;
}
.why-section h2 {
  text-align: center;
  font-size: 2rem;
  margin: 0 0 40px 0;
  color: var(--co, #000);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.why-item {
  text-align: center;
  padding: 24px;
}
.why-item i {
  font-size: 2.5rem;
  color: var(--ho, #0D4F6E);
  margin-bottom: 16px;
}
.why-item h3 {
  margin: 0 0 8px 0;
  color: var(--co, #000);
}
.why-item p {
  margin: 0;
  color: var(--muted-text, #6d6d6e);
}
.cta-section {
  text-align: center;
  padding: 60px 24px;
}
.cta-section h2 {
  font-size: 2rem;
  margin: 0 0 16px 0;
  color: var(--co, #000);
}
.cta-section p {
  color: var(--muted-text, #6d6d6e);
  margin: 0 0 24px 0;
}

.contact-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 40px;
}

/* Contact Hero */
.contact-hero {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 48px 24px 32px;
}
.contact-hero-text {
  flex: 1;
}
.contact-hero-img {
  width: 340px;
  height: auto;
  border-radius: 16px;
  flex-shrink: 0;
}
.contact-hero h1 {
  font-size: 2.2rem;
  margin: 0 0 16px;
  color: var(--co, #000);
}
.contact-hero p {
  margin: 0 0 24px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted-text, #6d6d6e);
}
.contact-hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ho, #0D4F6E);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}
.contact-hero-phone:hover {
  opacity: 0.9;
}

/* Contact Features */
.contact-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 24px 48px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-feature {
  text-align: center;
  padding: 24px 16px;
}
.contact-feature i {
  font-size: 2rem;
  color: var(--ho, #0D4F6E);
  margin-bottom: 12px;
}
.contact-feature h2 {
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: var(--co, #000);
}
.contact-feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted-text, #6d6d6e);
  line-height: 1.5;
}

/* Contact Form Section */
.contact-form-wrap h2 {
  margin: 0 0 6px;
  font-size: 1.4rem;
  color: var(--co, #000);
}
.contact-form-wrap .form-intro {
  margin: 0 0 24px;
  color: var(--muted-text, #6d6d6e);
  font-size: 0.95rem;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  margin-top: 32px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--card, #fff);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.contact-form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form-wrap .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form-wrap .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form-wrap label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--co, #000);
}
.contact-form-wrap .required {
  color: #c53030;
  font-size: 1.1em;
}
.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
  padding: 12px 16px;
  border: 2px solid var(--border, #e2e2e2);
  border-radius: 10px;
  font-size: 0.95rem;
  background: var(--lbg, #f8f9fa);
  color: var(--co, #000);
  transition: border-color 0.2s ease;
}
.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
  border-color: var(--ho, #0D4F6E);
  background: var(--card, #fff);
  outline: none;
}
.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder {
  color: #bbb;
}
.contact-form-wrap textarea {
  resize: vertical;
  min-height: 120px;
}
.consent-group {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px !important;
}
.consent-group input[type="checkbox"] {
  margin-top: 3px;
  width: auto;
}
.consent-group label {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--muted-text, #6d6d6e);
  line-height: 1.5;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-card {
  background: var(--card, #fff);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border-left: 4px solid var(--ho, #0D4F6E);
}
.info-card i {
  font-size: 1.5rem;
  color: var(--ho, #0D4F6E);
  margin-bottom: 10px;
}
.info-card h2 {
  margin: 0 0 6px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--co, #000);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-card a {
  color: var(--ho, #0D4F6E);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}
.info-card a:hover {
  text-decoration: underline;
}
.info-card p {
  margin: 0;
  color: var(--muted-text, #6d6d6e);
  font-size: 0.9rem;
  line-height: 1.6;
}
.alert-success {
  background: #f0fff4;
  color: #276749;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid #c6f6d5;
}
.alert-error {
  background: #fff5f5;
  color: #c53030;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid #fed7d7;
}

@media (max-width: 900px) {
  .contact-page {
    padding: 10px 16px 32px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap .form-row {
    grid-template-columns: 1fr;
  }
  .contact-features {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 16px 24px;
  }
  .contact-feature {
    padding: 16px 12px;
  }
  .contact-hero {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 24px 16px 20px;
  }
  .contact-hero-img {
    width: 100%;
    max-width: 340px;
  }
  .contact-hero h1 {
    font-size: 1.6rem;
  }
  .contact-hero p {
    font-size: 1rem;
  }
  .contact-hero-phone {
    font-size: 1rem;
    padding: 12px 20px;
  }
  .contact-form-wrap {
    padding: 20px 16px;
  }
  .contact-form-wrap h2 {
    font-size: 1.2rem;
  }
}

/* FAQ Page */
.faq-content {
  padding: 60px 24px;
}
.faq-content h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 40px 0;
  color: var(--co, #000);
  text-align: center;
}
.faq-content h1 span {
  color: var(--ho, #0D4F6E);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto 60px;
}
.faq-item {
  background: var(--card, #fff);
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ho, #0D4F6E);
  transition: background 0.2s;
}
.faq-question:hover {
  background: rgba(0,0,0,0.02);
}
.faq-question:focus {
  outline: none;
  box-shadow: none;
}
.faq-icon {
  width: 14px;
  height: 14px;
  position: relative;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--ho, #0D4F6E);
  transition: transform 0.3s ease;
}
.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.faq-item.open .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted-text, #6d6d6e);
  line-height: 1.6;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}

@media (max-width: 425px) {
  .landing-page .header-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .landing-page .header-logo {
    grid-row: 1;
    grid-column: 1;
    justify-self: center;
  }
  .landing-page .header-logo img {
    height: 50px;
  }
  .landing-page .nav-buttons {
    grid-row: 2;
    grid-column: 1;
    justify-self: center;
    gap: 40px;
  }
  .landing-page .header-contact {
    grid-row: 3;
    grid-column: 1;
    justify-self: center;
  }
  .landing-page .header-social {
    grid-row: 4;
    grid-column: 1;
    justify-self: center;
  }
  .landing-page .btn-estimate {
    grid-row: 5;
    grid-column: 1;
    justify-self: center;
  }
}
