/* Base */

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

:root {
  --primary: #0059b3;
  --primary-light: #e5f1ff;
  --primary-dark: #003a73;
  --accent: #e53935;
  --bg-light: #f5f7fb;
  --text-main: #1f2733;
  --text-muted: #6b7280;
  --border-subtle: #e2e8f0;
  --radius-lg: 1rem;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.12);
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* Layout */

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* Top bar */

.top-bar {
  background: var(--primary-dark);
  color: #ffffff;
  font-size: 0.9rem;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0;
  gap: 1rem;
}

.top-bar-location {
  opacity: 0.9;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-bar-phone-label {
  opacity: 0.75;
}

.top-bar-phone {
  font-weight: 600;
}

/* Header */

.site-header {
  border-bottom: 1px solid var(--border-subtle);
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 1rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-primary {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.15rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  font-weight: 600;
  white-space: nowrap;
}

/* Buttons */

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease,
    color 0.12s ease, border-color 0.12s ease;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #ffffff;
  color: var(--primary-dark);
  border: 1px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary-light);
}

.btn-outline {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn-outline:hover {
  background: #ffffff;
  color: var(--primary-dark);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Hero */

.hero {
  background: radial-gradient(circle at top left, var(--primary-light), #ffffff);
  padding: 3rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.hero-content h1 {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 1.25rem;
}

.hero-benefits {
  margin-bottom: 1.5rem;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
  font-size: 0.98rem;
}

.hero-benefits li::before {
  content: "✔";
  font-size: 0.75rem;
  color: var(--primary);
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid var(--primary-light);
  width: 1.2rem;
  height: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.badge {
  border-radius: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  min-width: 150px;
}

.badge-title {
  font-weight: 700;
  display: block;
  font-size: 0.9rem;
}

.badge-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hero Card / Form */

.hero-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
}

.hero-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.4rem;
}

.hero-card p {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
}

.hero-form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  margin-top: 0.3rem;
  padding: 0.6rem 0.65rem;
  border-radius: 0.6rem;
  border: 1px solid var(--border-subtle);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0, 89, 179, 0.12);
}

.hero-form textarea {
  resize: vertical;
}

.hero-form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* Services */

.services {
  padding: 3.25rem 0 2.75rem;
  background: #ffffff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.25rem 1.25rem 1.1rem;
  background: #ffffff;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-soft);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}

.service-card ul li {
  font-size: 0.85rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

/* Why Us */

.why-us {
  padding: 3.25rem 0;
  background: linear-gradient(135deg, var(--primary-dark), #002649);
  color: #ffffff;
}

.section-header-light h2,
.section-header-light p {
  color: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.why-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1.3rem 1.3rem 1.1rem;
  background: rgba(0, 0, 0, 0.08);
}

.why-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.why-card p {
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}

.why-card ul li {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  position: relative;
  padding-left: 1rem;
}

.why-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ffffff;
  opacity: 0.7;
}

/* Specials */

.specials {
  padding: 3.25rem 0;
  background: var(--bg-light);
  position: relative;
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.special-card {
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  padding: 1.4rem 1.4rem 1.15rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

.special-card::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  opacity: 0.9;
}

.special-tag {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(229, 57, 53, 0.08);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.special-card h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.special-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0.15rem 0 0.4rem;
}

.special-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.special-card ul li {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.btn-offer {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  border: none;
  box-shadow: var(--shadow-soft);
}

.btn-offer:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* Service Area */

/* Service Area */

.service-area {
  padding: 3.25rem 0;
  background: #f8fafc;
}

.service-area-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

/* Accordion */

.service-area-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.area-item {
  border-radius: 0.9rem;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  padding: 0.35rem 0.9rem 0.1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.area-item-active {
  border-color: var(--primary);
  box-shadow: var(--shadow-soft);
  background: #ffffff;
}

.area-header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.55rem 0;
  gap: 0.45rem;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.area-icon {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  flex-shrink: 0;
}

.area-title {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-main);
}

.area-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  padding-bottom: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease, margin-top 0.2s ease, padding-bottom 0.2s ease;
}

.area-item-active .area-body {
  max-height: 900px;
  opacity: 1;
  margin-top: 0.2rem;
  padding-bottom: 0.75rem;
}

.area-body p {
  margin: 0 0 0.7rem;
}

.area-body p:last-child {
  margin-bottom: 0;
}

/* Map */

.service-area-map {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.map-frame {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
  border: 1px solid var(--border-subtle);
  background: #ffffff;
}

.map-frame iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

.service-area-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive tweaks */

@media (max-width: 960px) {
  .service-area-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .map-frame iframe {
    height: 240px;
  }
}

@media (max-width: 720px) {
  .map-frame iframe {
    height: 210px;
  }
}

/* Reviews */

.reviews {
  padding: 3.25rem 0;
  background: #ffffff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.review-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.25rem 1.25rem 1.1rem;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.review-stars {
  color: #f59e0b;
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.review-author {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Extras */

.extras {
  padding: 3rem 0 3.25rem;
  background: #0f172a;
  color: #ffffff;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.extras-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1.4rem 1.4rem 1.1rem;
  background: rgba(15, 23, 42, 0.7);
}

.extras-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.extras-card p {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 0.75rem;
}

.extras-card ul li {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.newsletter-form input {
  flex: 1 1 160px;
  padding: 0.6rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #020617;
  color: #e5e7eb;
}

/* Footer */

.site-footer {
  background: #020617;
  color: #e5e7eb;
  padding-top: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.footer-column h3,
.footer-column h4 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.footer-column p {
  font-size: 0.9rem;
  color: #cbd5f5;
}

.footer-column ul li {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.footer-column a {
  color: #e5e7eb;
  opacity: 0.9;
}

.footer-column a:hover {
  opacity: 1;
}

.footer-phone,
.footer-email {
  margin: 0.4rem 0;
}

.footer-bottom {
  padding: 0.9rem 0 1.3rem;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  }

  .service-grid,
  .why-grid,
  .specials-grid,
  .reviews-grid,
  .extras-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-area-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .main-nav {
    display: none; /* simple mobile approach; replace with menu button if needed */
  }

  .header-inner {
    align-items: center;
  }

  .map-frame iframe {
    height: 240px;
  }
}

@media (max-width: 720px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .service-grid,
  .why-grid,
  .specials-grid,
  .reviews-grid,
  .extras-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .header-cta {
    margin-left: auto;
  }

  .map-frame iframe {
    height: 210px;
  }
}

/* Special Cards Layout Fix */
.special-card {
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  padding: 2.8rem 2.4rem 2.4rem; /* More top padding */
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

.special-card::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  opacity: 0.9;
}

/* FIXED TAG — now pushes content down, no overlapping */
.special-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  margin-bottom: 2rem;     /* pushes title down */
  border-radius: 999px;
  background: rgba(229, 57, 53, 0.12);
  color: #d32f2f;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Title reset (make sure spacing is correct) */
.special-title,
.special-card h3 {
  margin-top: 0;   /* prevents double spacing */
}

/* Hero image */

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  max-height: 550px;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

/* Contact Section */

.contact {
  padding: 3.25rem 0;
  background: #ffffff;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-content {
  font-size: 0.95rem;
  color: var(--text-main);
}

.contact-details p {
  margin: 0 0 0.4rem;
}

.contact-details a {
  color: var(--primary);
  font-weight: 600;
}

.contact-bullets {
  margin-top: 1rem;
}

.contact-bullets li {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: var(--text-muted);
}

/* reuse hero-card for the form card look */
.contact-card {
  /* .hero-card styles already apply; this is just here if you want tweaks later */
}

/* Responsive tweak */
@media (max-width: 960px) {
  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}
