/* Homepage-only styles */

.weather-widget {
  position: relative;
  width: 100%;
  max-width: 340px;
  justify-self: end;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 32px;
  backdrop-filter: blur(20px);
  z-index: 2;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.hero-headline .weather-widget {
  margin-top: 8px;
}

.weather-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.weather-label::before,
.weather-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.weather-label::before { content: ''; }

.weather-temp {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
}

.weather-temp span { font-size: 2.25rem; color: var(--text-muted); }

.weather-desc {
  font-size: 1rem;
  color: var(--cyan-light);
  margin-top: 8px;
  font-weight: 500;
}

.weather-location {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.weather-meta {
  display: flex;
  gap: 24px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.weather-meta-item {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.weather-meta-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 600;
}

.stats-bar {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 40px;
  position: relative;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(13, 27, 42, 0.03) 0,
    rgba(13, 27, 42, 0.03) 1px,
    transparent 1px,
    transparent 20px
  );
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

#services { background: transparent; }
#services .section { padding: 96px 40px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.service-card:hover {
  border-color: rgba(0,184,212,0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--cyan-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  color: var(--navy);
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--cyan-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.why-feature-text h4 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.why-feature-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-visual {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.why-visual::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,212,0.08) 0%, transparent 70%);
}

.guarantee-box { text-align: center; padding: 32px; }

.guarantee-icon { font-size: 3rem; margin-bottom: 16px; }

.guarantee-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--cyan);
}

.guarantee-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

#area { background: transparent; }
#area .section { padding: 96px 40px; }

.area-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}

.cities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.city-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 500;
}

.city-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 420px;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
  box-shadow: var(--shadow-sm);
}

.faq-item:hover { border-color: rgba(0,194,212,0.35); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--cyan);
  flex-shrink: 0;
  transition: transform 0.25s;
  font-weight: 300;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.25s;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
  border-color: rgba(0,194,212,0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pricing-card--featured {
  border-color: var(--cyan);
  background: rgba(0,194,212,0.06);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-icon { font-size: 2rem; }

.pricing-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.pricing-from {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: -8px;
}

.pricing-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-features li {
  font-size: 0.875rem;
  color: var(--navy);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.testimonial-stars { color: #fbbf24; font-size: 1rem; letter-spacing: 2px; }

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #0077aa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  flex-shrink: 0;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.link-arrow:hover { color: var(--cyan-light); }

@media (max-width: 980px) {
  .hero-headline {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-headline .weather-widget {
    max-width: 420px;
    justify-self: start;
    margin-top: 0;
  }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  #services .section, #area .section { padding: 64px 20px; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .area-layout { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .weather-widget {
    padding: 32px 28px;
    border-radius: 20px;
  }

  .weather-temp { font-size: 4.5rem; }
  .weather-temp span { font-size: 2.25rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .cities-list { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer { transition: none; }
}

/* City landing pages */
.city-cta {
  margin-top: 48px;
  padding: 40px 36px;
  text-align: center;
  background: rgba(0, 194, 212, 0.06);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.city-cta h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.city-cta p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

.city-back {
  text-align: center;
  margin-top: 32px;
}

.city-back a {
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

.city-back a:hover { color: var(--cyan-light); }

.city-tag--link {
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.city-tag--link:hover {
  background: var(--cyan-dim);
  border-color: rgba(0, 194, 212, 0.35);
}

/* Section background patterns */
.section-bg {
  position: relative;
  isolation: isolate;
}

.section-bg > .section {
  position: relative;
  z-index: 1;
}

.section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.section-bg--diagonal::before {
  background-color: var(--surface);
  background-image: repeating-linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.045) 0,
    rgba(13, 27, 42, 0.045) 1px,
    transparent 1px,
    transparent 28px
  );
}

.section-bg--crosshatch::before {
  background-color: var(--surface);
  background-image:
    repeating-linear-gradient(0deg, rgba(13, 27, 42, 0.035) 0, rgba(13, 27, 42, 0.035) 1px, transparent 1px, transparent 32px),
    repeating-linear-gradient(90deg, rgba(13, 27, 42, 0.035) 0, rgba(13, 27, 42, 0.035) 1px, transparent 1px, transparent 32px);
}

.section-bg--rings::before {
  background-color: var(--surface-alt);
  background-image: radial-gradient(circle at center, rgba(13, 27, 42, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
}

.section-bg--waves::before {
  background-color: var(--surface-alt);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% 120%, rgba(13, 27, 42, 0.04) 0%, transparent 55%),
    repeating-linear-gradient(90deg, rgba(13, 27, 42, 0.03) 0, rgba(13, 27, 42, 0.03) 1px, transparent 1px, transparent 40px);
}

.section-bg--dots::before {
  background-color: var(--surface-alt);
  background-image: radial-gradient(circle, rgba(13, 27, 42, 0.07) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}

.section-bg--grid::before {
  background-color: var(--surface);
  background-image:
    linear-gradient(rgba(13, 27, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 27, 42, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.section-bg--chevron::before {
  background-color: var(--surface);
  background-image:
    linear-gradient(135deg, rgba(13, 27, 42, 0.04) 25%, transparent 25%),
    linear-gradient(225deg, rgba(13, 27, 42, 0.04) 25%, transparent 25%),
    linear-gradient(45deg, rgba(13, 27, 42, 0.04) 25%, transparent 25%),
    linear-gradient(315deg, rgba(13, 27, 42, 0.04) 25%, transparent 25%);
  background-size: 36px 36px;
  background-position: 0 0, 0 18px, 18px -18px, -18px 0;
}

.section-bg--diamond::before {
  background-color: var(--surface-alt);
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 16px,
    rgba(13, 27, 42, 0.035) 16px,
    rgba(13, 27, 42, 0.035) 17px
  );
}

.section-bg--lines::before {
  background-color: var(--surface);
  background-image: repeating-linear-gradient(
    0deg,
    rgba(13, 27, 42, 0.04) 0,
    rgba(13, 27, 42, 0.04) 1px,
    transparent 1px,
    transparent 24px
  );
}

.section-bg--vertical::before {
  background-color: var(--surface-alt);
  background-image: repeating-linear-gradient(
    90deg,
    rgba(13, 27, 42, 0.04) 0,
    rgba(13, 27, 42, 0.04) 1px,
    transparent 1px,
    transparent 36px
  );
}

