/* ==========================================================================
   Peoria Home Cleaning - Theme 1: Modern Cedar City Layout
   Branding: Light Blue (#0ea5e9 / #0284c7 / #e0f2fe), White (#ffffff), Light Green (#10b981 / #059669 / #a7f3d0)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary-blue: #0284c7;
  --primary-blue-light: #e0f2fe;
  --primary-blue-dark: #0369a1;
  --accent-green: #10b981;
  --accent-green-dark: #059669;
  --accent-green-light: #d1fae5;
  --accent-mint-bg: #86e1b9;
  --accent-gold: #f59e0b;
  --accent-gold-hover: #d97706;
  --highlight-yellow: #facc15;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1e293b;
  background-color: #ffffff;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, .font-heading {
  font-family: 'Outfit', sans-serif;
}

/* ==========================================================================
   LOGO PLACEHOLDER
   ========================================================================== */
.logo-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border: 2px dashed #94a3b8;
  border-radius: 0.5rem;
  background: #f8fafc;
  color: #475569;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.2s ease;
}

.logo-placeholder:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: var(--primary-blue-light);
}

.logo-placeholder svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
}

/* ==========================================================================
   4-TAB NAVIGATION WITH DIVIDERS
   ========================================================================== */
.tab-navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.75rem 0;
  position: relative;
}

.tab-nav-divider {
  flex-grow: 1;
  height: 1px;
  background-color: #e2e8f0;
}

.tab-nav-link {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #475569;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
}

.tab-nav-link:hover, .tab-nav-link.active {
  color: var(--primary-blue);
  background-color: var(--primary-blue-light);
}

.tab-nav-link.contact-highlight {
  background-color: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
}
.tab-nav-link.contact-highlight:hover {
  background-color: #d1fae5;
  color: #047857;
}

/* NAV DROPDOWN */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 220px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  z-index: 60;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  transition: all 0.15s ease;
  text-decoration: none;
}

.nav-dropdown-item:hover {
  background-color: #f0fdf4;
  color: var(--accent-green-dark);
  padding-left: 1.25rem;
}

/* ==========================================================================
   IMAGE-REFERENCED CURVED HERO CARD
   ========================================================================== */
.hero-bg-container {
  position: relative;
  background: linear-gradient(rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.35)), url('https://images.unsplash.com/photo-1513836279014-a89f7a76ae86?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  padding: 4.5rem 1rem 5.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.curved-hero-card {
  background: rgba(45, 175, 137, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 48px 0 48px 0;
  padding: 2.5rem 3.5rem;
  text-align: center;
  color: #ffffff;
  max-width: 780px;
  width: 100%;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.3);
}

.curved-hero-title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.curved-hero-phone {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--highlight-yellow);
  text-decoration: underline;
  text-underline-offset: 6px;
  letter-spacing: 0.02em;
  display: inline-block;
  margin: 0.5rem 0 1.25rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.curved-hero-phone:hover {
  transform: scale(1.03);
  color: #fef08a;
}

.btn-call-now {
  background-color: var(--accent-gold);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 2.25rem;
  border-radius: 0.375rem;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-call-now:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.5);
}

/* ==========================================================================
   IMAGE-REFERENCED CURVED FREE ESTIMATE FORM CARD
   ========================================================================== */
.curved-form-container {
  background-color: #8edec0;
  border-radius: 54px 0 54px 0;
  padding: 2.5rem 2.5rem 3rem;
  max-width: 680px;
  width: 100%;
  margin: -2.5rem auto 3.5rem;
  position: relative;
  z-index: 20;
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.15);
}

.form-header-title {
  font-size: 2rem;
  font-weight: 900;
  color: #1e293b;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.form-bonus-coupon {
  color: #dc2626;
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 1.25rem;
}

.form-required-note {
  font-size: 0.8125rem;
  font-style: italic;
  color: #475569;
  margin-bottom: 1rem;
}

.curved-form-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.375rem;
}

.curved-form-label span.req {
  color: #dc2626;
}

.curved-form-input, .curved-form-select {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 0.25rem;
  padding: 0.625rem 0.875rem;
  font-size: 0.9375rem;
  color: #1e293b;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.curved-form-input:focus, .curved-form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.2);
}

.radio-group-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.custom-radio-label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
}

.custom-radio-label input[type="radio"] {
  width: 1.125rem;
  height: 1.125rem;
  accent-color: #0284c7;
  cursor: pointer;
}

.btn-get-quote {
  background-color: var(--accent-gold);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2.5rem;
  border-radius: 0.25rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  transition: all 0.2s ease;
  float: right;
  margin-top: 0.5rem;
}

.btn-get-quote:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.5);
}

/* ==========================================================================
   MODERN CLEAN CARDS DESIGN (LIGHT BLUE / LIGHT GREEN / WHITE)
   ========================================================================== */
.modern-service-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

.modern-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(2, 132, 199, 0.1), 0 8px 10px -6px rgba(16, 185, 129, 0.1);
  border-color: #7dd3fc;
}

.modern-card-badge-blue {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.modern-card-badge-green {
  background: var(--accent-green-light);
  color: var(--accent-green-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.modern-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.modern-card-icon.blue-bg {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  color: #0284c7;
}

.modern-card-icon.green-bg {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #059669;
}

/* ==========================================================================
   2-COLUMN FOOTER WITH SERVICE AREAS & GOOGLE MAP
   ========================================================================== */
.service-area-link {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: #1e293b;
  padding: 0.25rem 0;
  transition: color 0.15s ease, padding-left 0.15s ease;
  text-decoration: none;
}

.service-area-link:hover {
  color: var(--primary-blue);
  padding-left: 0.5rem;
}

.service-area-link.active {
  font-weight: 700;
  color: var(--primary-blue);
}

.map-container-relative {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.map-btn-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  background-color: #ffffff;
  color: #1e293b;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.4rem 0.875rem;
  border-radius: 0.375rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  text-decoration: none;
  border: 1px solid #cbd5e1;
  transition: background-color 0.15s ease;
}

.map-btn-overlay:hover {
  background-color: #f8fafc;
  color: var(--primary-blue);
}
