/* Larry's Minneapolis Appliance Repair - Style */
:root {
  --navy: #1a2744;
  --navy-light: #243656;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #dbeafe;
  --gold: #f59e0b;
  --gold-dark: #d97706;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 6px 10px rgba(0,0,0,0.08);
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--gray-800);
  line-height: 1.7;
  background: var(--white);
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
img { max-width: 100%; height: auto; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* SVG Icons */
svg { flex-shrink: 0; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-hero {
  background: var(--gold);
  color: var(--gray-900);
  font-size: 1.3rem;
  padding: 1.1rem 2.5rem;
  box-shadow: 0 4px 14px rgba(245,158,11,0.4);
}
.btn-hero:hover { background: var(--gold-dark); color: var(--gray-900); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,158,11,0.5); }
.btn-cta {
  background: var(--white);
  color: var(--navy);
  font-size: 1.3rem;
  padding: 1rem 2.5rem;
}
.btn-cta:hover { background: var(--gray-100); color: var(--navy); }
.btn-sidebar {
  background: var(--blue);
  color: var(--white);
  width: 100%;
  display: block;
  margin-bottom: 0.5rem;
}
.btn-sidebar:hover { background: var(--blue-dark); color: var(--white); }

/* Header */
.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--gold); }
.phone-cta {
  background: var(--gold);
  color: var(--gray-900);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
}
.phone-cta:hover { background: var(--gold-dark); color: var(--gray-900); }

/* Nav */
.main-nav {
  background: rgba(255,255,255,0.05);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.75rem 0;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 0;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--gray-200);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links > li > a:hover { color: var(--gold); }

/* Dropdowns */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 220px;
  z-index: 200;
  list-style: none;
}
.dropdown-menu-wide { min-width: 200px; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--gray-700);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.15s;
}
.dropdown-menu li a:hover { background: var(--blue-light); color: var(--blue); padding-left: 1.5rem; }
.dropdown-menu li:last-child a { border-bottom: none; }

/* ============= HERO ============= */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 40%, #2d4a7a 100%);
  color: var(--white);
  padding: 4.5rem 1.5rem;
  text-align: center;
}
.hero-content { max-width: 800px; margin: 0 auto; }
.hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
}
.badge strong { color: var(--gold); }

/* Photo banner below hero */
.photo-banner {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  line-height: 0;
}
.photo-banner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}

/* Hero bg image for interior pages */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,39,68,0.9) 0%, rgba(30,58,95,0.8) 50%, rgba(26,39,68,0.88) 100%);
  pointer-events: none;
}


/* ============= TRUST BAR ============= */
.trust-bar {
  background: var(--gray-900);
  color: var(--white);
  padding: 1rem 0;
  border-bottom: 3px solid var(--gold);
}
.trust-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}
.trust-item {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-200);
}

/* ============= PAGE HERO (interior) ============= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 40%, #2d4a7a 100%);
  color: var(--white);
  padding: 3.5rem 1.5rem;
  text-align: center;
  position: relative;
}
.page-hero-image {
  overflow: hidden;
  padding: 4rem 1.5rem;
}
.page-hero-image .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-image .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,39,68,0.9) 0%, rgba(30,58,95,0.8) 50%, rgba(26,39,68,0.88) 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--blue));
}
.page-hero h1 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.page-hero .hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============= CONTENT LAYOUT ============= */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.main-content section { margin-bottom: 2.5rem; }
.main-content h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--blue-light);
}
.content-body p { margin-bottom: 1rem; }

/* Sidebar */
.sidebar { position: sticky; top: 100px; align-self: start; }
.sidebar-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  transition: box-shadow 0.2s;
}
.sidebar-card:hover { box-shadow: var(--shadow); }
.sidebar-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.sidebar-card p { font-size: 0.9rem; color: var(--gray-600); }

/* ============= HOME SECTIONS ============= */
.intro-section, .why-larry, .brands-section, .areas-section, .services-grid {
  padding: 3.5rem 0;
}
.intro-section { border-bottom: 1px solid var(--gray-200); }
/* Intro with image */
.intro-with-image {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}
.intro-with-image h2 { text-align: left; }
.intro-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Oven feature banner */
.oven-feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 3rem 0;
  height: 300px;
}
.oven-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.oven-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,39,68,0.85) 0%, rgba(37,99,235,0.7) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}
.oven-feature-overlay h2 {
  color: var(--white);
  font-size: 2rem;
  text-align: center;
}
.services-grid { background: var(--gray-50); margin: 0 -1.5rem; padding: 3.5rem 1.5rem; border-radius: 0; }
.intro-section h2, .brands-section h2, .areas-section h2, .services-grid h2 {
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Why Larry section */
.why-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}
.why-text h2 {
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

/* ============= CARD GRID ============= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.25s;
  display: block;
  color: var(--gray-800);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
  transform: translateY(-4px);
  color: var(--gray-800);
}
.service-card .card-icon {
  color: var(--blue);
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
}
.service-card h3 { color: var(--navy); margin-bottom: 0.75rem; font-size: 1.2rem; }
.service-card p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 1rem; }
.card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  transition: color 0.2s;
}
.service-card:hover .card-link { color: var(--blue-dark); }

/* Brand tags */
.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.brand-tag {
  background: var(--white);
  border: 2px solid var(--gray-200);
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-700);
  transition: all 0.2s;
}
.brand-tag:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Areas grid */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.area-link {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.2s;
}
.area-link:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue);
}

/* Problems list */
.problems-list { display: grid; gap: 1.25rem; }
.problem-item {
  background: var(--gray-50);
  border-left: 4px solid var(--blue);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.problem-item h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.5rem; }
.problem-item p { font-size: 0.95rem; color: var(--gray-600); margin: 0; }

/* Tips */
.tips-list { padding-left: 1.25rem; }
.tips-list li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Nearby areas */
.nearby-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.nearby-list li a {
  display: block;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
}
.nearby-list li a:hover { background: var(--blue-light); border-color: var(--blue); }

/* Review sidebar card */
.sidebar-review { background: #fffbeb; border-color: #f59e0b; }
.sidebar-review h3 { color: #b45309; }
.btn-sidebar-concern {
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  margin-top: 0.25rem;
}
.btn-sidebar-concern:hover { background: var(--gray-200); color: var(--gray-800); }

/* Review prompt section */
.review-prompt {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.review-heading {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.review-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.review-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  text-decoration: none;
}
.review-happy {
  background: #16a34a;
  color: var(--white);
}
.review-happy:hover { background: #15803d; color: var(--white); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(22,163,74,0.3); }
.review-concern {
  background: var(--white);
  color: var(--gray-700);
  border: 2px solid var(--gray-300);
}
.review-concern:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-2px); }
.review-emoji { font-size: 1.5rem; }
.review-note {
  font-size: 0.85rem;
  color: var(--gray-600);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .review-buttons { flex-direction: column; align-items: center; }
  .review-btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.cta-banner h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.cta-banner p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 1.5rem; }

/* Footer */
.site-footer { background: var(--gray-900); color: var(--gray-300); padding-top: 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-col h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--blue);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul li a { color: var(--gray-300); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col p { font-size: 0.9rem; line-height: 1.8; }
.footer-col p a { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}
.pw-brand { margin-top: 0.75rem; font-size: 0.85rem; }
.pw-brand a { color: var(--gold); font-weight: 600; }
.pw-logo { height: 18px; width: 18px; vertical-align: middle; margin: 0 2px; }

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-with-image { grid-template-columns: 1fr; }
  .intro-with-image h2 { text-align: center; }
  .why-grid { grid-template-columns: 1fr; }
  .why-text h2 { text-align: center; }
  .oven-feature { height: 250px; }
  .oven-feature-overlay h2 { font-size: 1.5rem; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
  }
  .nav-links.open { display: flex; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    background: var(--gray-800);
    display: none;
  }
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu { display: block; }
  .dropdown-menu li a { color: var(--gray-200); border-bottom-color: rgba(255,255,255,0.1); }
  .dropdown-menu li a:hover { background: rgba(255,255,255,0.1); color: var(--gold); padding-left: 1.5rem; }

  .hero { padding: 3rem 1.5rem; }
  .hero h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-badges { flex-direction: column; align-items: center; }
  .photo-banner img { height: 250px; }

  .trust-bar .container { flex-direction: column; align-items: center; gap: 0.75rem; }
  .trust-item { font-size: 0.85rem; }

  .page-hero h1 { font-size: 1.5rem; }

  .sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }

  .stat-card { padding: 1rem; }
  .stat-number { font-size: 2rem; }
  .why-stats { grid-template-columns: repeat(4, 1fr); }

  .services-grid { margin: 0 -1.5rem; padding: 2.5rem 1.5rem; }
}

@media (max-width: 480px) {
  .why-stats { grid-template-columns: 1fr 1fr; }
  .header-top { flex-direction: column; gap: 0.5rem; text-align: center; }
}
