/* Base reset and typography */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background-color: #f3f4f6;
  line-height: 1.5;
}

/* Layout helpers */

.sw-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Links and buttons */

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Do not underline the logo link */
.sw-logo,
.sw-logo:hover {
  text-decoration: none;
}


.sw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease,
    border-color 0.18s ease;
}

.sw-btn-primary {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28);
}

.sw-btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #0284c7);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.45);
  transform: translateY(-1px);
  text-decoration: none;
}

.sw-btn-secondary {
  background-color: #0b1120;
  color: #e5e7eb;
  border-color: #1f2937;
}

.sw-btn-secondary:hover {
  background-color: #111827;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.45);
  transform: translateY(-1px);
  text-decoration: none;
}

/* Header and navigation */

.sw-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #020617;
  box-shadow: 0 1px 0 rgba(148, 163, 184, 0.3);
}

.sw-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.sw-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: #e5e7eb;
  letter-spacing: 0.02em;
}

.sw-logo-mark {
  font-size: 1.1rem;
}

.sw-logo-text {
  font-size: 0.98rem;
}

/* Top level nav */

.sw-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}

.sw-nav a {
  font-size: 0.92rem;
  color: #cbd5f5;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.16s ease, border-color 0.16s ease;
}

.sw-nav a:hover {
  color: #ffffff;
  border-color: #38bdf8;
}

.sw-nav a.active {
  color: #ffffff;
  border-color: #38bdf8;
}

/* Dropdown menu */

.sw-nav li {
  position: relative;
}

.has-dropdown > a::after {
  content: "▾";
  font-size: 0.7rem;
  margin-left: 0.25rem;
}

/* Always right-align dropdown so it stays in the viewport */
.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  min-width: 220px;
  background-color: #020617;
  border-radius: 0.75rem;
  padding: 0.4rem 0;
  margin-top: 0.35rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition:
    opacity 0.16s ease,
    transform 0.16s ease,
    visibility 0.16s ease;
  z-index: 60;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown li {
  width: 100%;
}

.dropdown a {
  display: block;
  width: 100%;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  color: #e5e7eb;
  border-bottom: none;
}

.dropdown a:hover {
  background-color: rgba(15, 23, 42, 0.9);
  color: #f9fafb;
}

/* Hero section */

.sw-hero {
  position: relative;
  min-height: min(80vh, 640px);
  background-image: url("/images/indiana-hero.png");
  background-size: cover;
  background-position: left center;
  color: #f9fafb;
  overflow: hidden;
}

.sw-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at left center, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.9));
}

/* Text block anchored to the right, clear of the Indiana image */

.sw-hero-inner {
  position: relative;
  z-index: 1;
  min-height: min(80vh, 640px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 3.5rem 0;
}

.sw-hero-content {
  max-width: 520px;
}

.sw-hero-content-right {
  text-align: left;
}

.sw-hero-kicker {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 0.6rem;
}

.sw-hero h1 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.sw-hero p {
  font-size: 0.98rem;
  margin: 0 0 1.1rem;
  color: #e5e7eb;
}

.sw-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.sw-hero-tagline {
  font-size: 0.85rem;
  color: #cbd5f5;
}

/* Page hero sections */

.sw-page-hero {
  background: radial-gradient(circle at top left, #0ea5e9 0, #020617 52%, #020617 100%);
  color: #e5e7eb;
  padding: 3.5rem 0 3.2rem;
}

.sw-page-hero-inner {
  max-width: 760px;
}

.sw-page-hero h1 {
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  margin: 0 0 0.85rem;
}

.sw-page-hero p {
  margin: 0 0 1.3rem;
  font-size: 0.97rem;
  color: #e5e7eb;
}

.sw-breadcrumb {
  font-size: 0.78rem;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}

.sw-breadcrumb a {
  color: #bfdbfe;
}

/* Sections */

.sw-section {
  padding: 3rem 0;
}

.sw-section-light {
  background-color: #f9fafb;
}

.sw-section-dark {
  background: radial-gradient(circle at top, #0b1120 0, #020617 48%, #020617 100%);
  color: #e5e7eb;
}

.sw-section h2 {
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

.sw-section-intro {
  max-width: 720px;
  font-size: 0.98rem;
  margin: 0 0 2rem;
  color: #4b5563;
}

.sw-section-dark .sw-section-intro {
  color: #cbd5f5;
}

/* Grids and cards */

.sw-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.sw-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.3rem 1.25rem 1.25rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  transition:
    box-shadow 0.18s ease,
    transform 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

/* Card hover effect */

.sw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  border-color: #bfdbfe;
  background-color: #f9fafb;
}

.sw-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.sw-card p {
  font-size: 0.9rem;
  margin: 0 0 0.75rem;
  color: #4b5563;
}

.sw-package-line {
  font-size: 0.86rem;
  color: #6b7280;
  margin-bottom: 0.9rem;
}

/* Dark section card variant */

.sw-section-dark .sw-card {
  background-color: #020617;
  border-color: rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.7);
}

.sw-section-dark .sw-card:hover {
  background-color: #020617;
  border-color: #38bdf8;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.9);
}

.sw-section-dark .sw-card p,
.sw-section-dark .sw-card .sw-package-line {
  color: #cbd5f5;
}

/* Package highlight */

.sw-card-package .sw-price {
  font-weight: 700;
  font-size: 1.12rem;
  margin-bottom: 0.45rem;
}

.sw-card-package .sw-price span {
  font-weight: 500;
  font-size: 0.8rem;
  color: #6b7280;
}

.sw-section-dark .sw-card-package .sw-price span {
  color: #9ca3af;
}

.sw-card-package-featured {
  border-width: 2px;
  border-color: #38bdf8;
}

/* Service layouts */

.sw-service-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: flex-start;
}

.sw-service-aside,
.sw-about-highlight {
  background-color: #f3f4f6;
  border-radius: 1rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
}

.sw-section-dark .sw-service-aside,
.sw-section-dark .sw-about-highlight {
  background-color: rgba(15, 23, 42, 0.8);
  border-color: rgba(148, 163, 184, 0.45);
}

.sw-service-aside h3,
.sw-about-highlight h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.sw-service-aside ul,
.sw-about-highlight ul {
  padding-left: 1.1rem;
  margin: 0;
  color: #4b5563;
}

.sw-section-dark .sw-service-aside ul,
.sw-section-dark .sw-about-highlight ul {
  color: #d1d5db;
}

/* About layout */

.sw-about-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 2rem;
}

/* Services detail columns */

.sw-services-detail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.sw-services-column h3,
.sw-services-column h2 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  font-size: 1rem;
}

.sw-services-column p {
  font-size: 0.9rem;
  margin: 0 0 0.6rem;
}

.sw-services-column ul {
  padding-left: 1.1rem;
  margin: 0;
  font-size: 0.88rem;
}

.sw-section-dark .sw-services-column ul {
  color: #e5e7eb;
}

/* Lists */

.sw-dot-list {
  padding-left: 1.1rem;
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.sw-dot-list li + li {
  margin-top: 0.25rem;
}

/* Steps list */

.sw-steps-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.sw-steps-list li + li {
  margin-top: 0.35rem;
}

/* Contact page */

.sw-contact {
  max-width: 520px;
}

.sw-contact-form {
  margin-top: 1rem;
}

.sw-form-field {
  margin-bottom: 0.9rem;
}

.sw-form-field label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #111827;
}

.sw-form-field input,
.sw-form-field select,
.sw-form-field textarea {
  width: 100%;
  padding: 0.55rem 0.6rem;
  border-radius: 0.6rem;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.sw-form-field input:focus,
.sw-form-field select:focus,
.sw-form-field textarea:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.6);
}

/* Contact options cards */

.sw-contact-options {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 1rem;
}

.sw-contact-options h3 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
}

/* CTA blocks */

.sw-services-cta {
  margin-top: 2.2rem;
  text-align: center;
  font-size: 0.95rem;
}

.sw-services-cta p {
  margin: 0 0 1rem;
}

/* Footer */

.sw-footer {
  background-color: #020617;
  color: #9ca3af;
  padding: 1.4rem 0;
  font-size: 0.8rem;
}

.sw-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.sw-footer-small {
  opacity: 0.8;
}

/* Responsive adjustments */

/* Ribbon banner */

.sw-ribbon {
  background: linear-gradient(90deg, #0ea5e9, #2563eb);
  color: #f9fafb;
  font-size: 0.82rem;
  padding: 0.4rem 0;
}

.sw-ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.sw-ribbon-text {
  opacity: 0.95;
}

.sw-ribbon-link {
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.7);
  text-decoration: none;
}

.sw-ribbon-link:hover {
  background-color: rgba(15, 23, 42, 0.15);
  text-decoration: none;
}

/* Countdown styling */

.sw-countdown-wrap {
  margin-top: 1.2rem;
}

.sw-countdown-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}

.sw-countdown {
  display: inline-flex;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.sw-countdown-segment {
  text-align: center;
  min-width: 3.2rem;
}

.sw-countdown-segment span {
  display: block;
  font-weight: 700;
  font-size: 1rem;
}

.sw-countdown-segment small {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

/* Floating CTA (mobile only) */

.sw-floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.45);
  text-decoration: none;
  display: none; /* hidden by default, shown via media query */
}

/* Show floating CTA only on smaller screens */

/* Bright Hero Section */
.sw-hero-bright {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 30%, #7dd3fc 100%);
  color: #0f172a;
  padding: 3.5rem 0 3rem;
  text-align: center;
}

.sw-hero-bright-inner {
  max-width: 740px;
}

.sw-hero-bright-title {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #0c4a6e;
}

.sw-hero-bright-text {
  font-size: 1rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.sw-hero-bright-highlight {
  font-size: 1rem;
  font-weight: 700;
  color: #0284c7;
  margin-top: 0.5rem;
}

.sw-hero-bright-footer {
  font-size: 0.9rem;
  color: #0369a1;
  margin-top: 1rem;
}

/* Light-style countdown variant */
.sw-countdown-light {
  background-color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(30, 41, 59, 0.2);
}


@media (max-width: 768px) {
  .sw-ribbon-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sw-floating-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}


@media (max-width: 960px) {
  .sw-header-inner {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }

  .sw-nav ul {
    gap: 1.1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .sw-hero-inner {
    justify-content: center;
    text-align: left;
    padding: 3rem 0 3.2rem;
  }
}

@media (max-width: 768px) {
  .sw-nav ul {
    width: 100%;
    justify-content: flex-start;
    gap: 1rem;
    font-size: 0.9rem;
  }

  .sw-hero {
    background-position: center top;
  }

  .sw-hero-inner {
    min-height: auto;
    padding: 2.6rem 0 2.8rem;
  }

  .sw-hero-content {
    max-width: 100%;
  }

  .sw-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .sw-service-layout,
  .sw-about-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .sw-services-detail {
    grid-template-columns: minmax(0, 1fr);
  }

  .sw-section {
    padding: 2.4rem 0;
  }
}

@media (max-width: 480px) {
  .sw-header-inner {
    align-items: flex-start;
  }

  .sw-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .sw-hero h1 {
    font-size: 1.6rem;
  }

  .sw-page-hero {
    padding: 2.4rem 0 2.6rem;
  }
}
