/* JG Electrical Service - Professional electrical website */
:root {
  --bg: #0f1419;
  --surface: #1a222c;
  --surface2: #232d3a;
  --text: #e8ecf0;
  --text-muted: #8b9aaa;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --border: #2d3a47;
  --radius: 10px;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-head: 'Outfit', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 20, 25, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.logo-icon svg {
  width: 28px;
  height: 28px;
}

.logo:hover .logo-icon {
  color: var(--accent-hover);
}

.logo-text {
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.nav a:hover {
  color: var(--accent);
}

.nav-cta {
  color: var(--accent) !important;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--bg) !important;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

/* Hero */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

/* Slow electrical animation – decorative lightning bolts */
.hero-electrical-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-electrical-bg .hero-bolt {
  position: absolute;
  color: var(--accent);
  width: 48px;
  height: auto;
  opacity: 0.35;
  animation: hero-bolt-pulse 4s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.4));
}

.hero-bolt-1 {
  top: 18%;
  left: 12%;
  transform: rotate(-15deg);
  animation-delay: 0s;
}

.hero-bolt-2 {
  top: 55%;
  right: 15%;
  transform: rotate(20deg) scale(0.9);
  animation-delay: 1.3s;
}

.hero-bolt-3 {
  bottom: 20%;
  left: 18%;
  transform: rotate(10deg) scale(0.8);
  animation-delay: 2.6s;
}

@keyframes hero-bolt-pulse {
  0%, 100% { opacity: 0.28; }
  50% { opacity: 0.55; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Home – About section (stronger, card-style) */
.home-about {
  padding: 3rem 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.home-about-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.home-about-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
  border-radius: var(--radius) 0 0 var(--radius);
}

.home-about-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.home-about-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.home-about-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.home-about-icon-wrap {
  flex-shrink: 0;
}

.home-about-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.home-about-content {
  flex: 1;
  min-width: 260px;
}

.home-about-title {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.home-about-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.home-about-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.5rem;
}

.home-about-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.home-about-check {
  color: var(--accent);
  font-weight: 700;
}

.home-about-content .btn {
  margin-top: 0;
}

.hero-badge {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-ctas-center {
  justify-content: center;
  margin-bottom: 0;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.25);
}

.btn-full {
  width: 100%;
}

.hero-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-features li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 600;
}

/* Services */
.services {
  padding: 4rem 0;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.services-grid-detail {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.services-grid-detail .service-card p {
  margin-bottom: 0;
}

.services-grid-detail .service-card ul {
  display: none;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

a.service-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.service-card:hover {
  color: inherit;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

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

.service-card ul {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-card li {
  padding: 0.25rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* Home: Ready to Get Started block */
.services-cta-block {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

/* Home: title-only service boxes (same look & hover as service cards) */
.service-titles-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 2rem;
}

.service-card.service-card-title-only {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card.service-card-title-only:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.service-card-title-only .pill-check {
  color: var(--accent);
  font-weight: 600;
}

a.service-card.service-card-title-only {
  text-decoration: none;
  color: inherit;
}

a.service-card.service-card-title-only:hover {
  color: inherit;
}

.service-card-title-only .pill-arrow {
  margin-left: 0.15rem;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.services-cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.services-cta-desc {
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 2rem;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--text);
}

.pill-check {
  color: var(--accent);
  font-weight: 600;
}

.service-pill-all {
  text-decoration: none;
  background: transparent;
  border-color: var(--text);
  color: var(--text);
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.service-pill-all:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.pill-arrow {
  margin-left: 0.15rem;
}

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

.cta-cards.services-cta-bottom {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.cta-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cta-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-card-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.cta-card-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.cta-card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.cta-card-link:hover {
  text-decoration: underline;
}

/* Contact */
.contact {
  padding: 4rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2,
.contact-form-wrap h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-info > p,
.contact-form-wrap p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.contact-item a,
.contact-item address {
  color: var(--text);
  text-decoration: none;
  font-style: normal;
  line-height: 1.5;
}

.contact-item a:hover {
  color: var(--accent);
}

.owner-name {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-status {
  font-size: 0.9rem;
  min-height: 1.4em;
}

.form-status.success {
  color: #22c55e;
}

.form-status.error {
  color: #ef4444;
}

/* Footer */
.footer {
  padding: 2rem 1.25rem;
  border-top: 1px solid var(--border);
  text-align: center;
  background: var(--bg);
}

.footer-brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer-contact {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-contact a {
  color: var(--accent);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

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

/* About page */
.page-hero {
  padding: 3rem 0 3.5rem;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero-badge {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.page-hero-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.page-hero-desc {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}

.page-hero-tagline {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.75rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-hero-about .container {
  text-align: center;
}

.btn-hero-cta {
  margin-top: 1rem;
}

/* About page – highlights strip */
.about-highlights {
  padding: 1.25rem 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.about-highlights-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
}

.about-highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.about-highlight-icon {
  font-size: 1.2rem;
}

/* About page – founder & cards */
.about-founder {
  margin-top: 1.5rem !important;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem !important;
  color: var(--text) !important;
}

.about-why-cards {
  padding: 3rem 0;
  background: var(--bg);
}

.about-heading-center {
  text-align: center;
  margin-bottom: 2rem;
}

.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.about-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.about-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.about-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Services page – detail blocks */
.services-detail {
  padding: 2rem 0 4rem;
}

.services-detail-phone {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.services-detail-phone a {
  color: var(--accent);
  text-decoration: none;
}

.services-detail-phone a:hover {
  text-decoration: underline;
}

.service-detail-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.service-detail-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-detail-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.service-detail-block p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.services-cta-bottom {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.about-intro,
.about-why,
.about-mission,
.about-values {
  padding: 2.5rem 0;
}

.about-intro {
  padding-top: 3rem;
}

.about-content {
  max-width: 720px;
  margin: 0 auto;
}

.about-lead {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-heading {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.about-checklist {
  list-style: none;
  margin-bottom: 1.5rem;
}

.about-checklist li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
}

.about-checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.about-cta {
  color: var(--text) !important;
  margin-bottom: 0 !important;
}

.about-values-list {
  list-style: none;
}

.about-values-list li {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-values-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.about-values .about-content {
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

.about-contact-cta {
  padding: 3.5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.home-cta-above-footer {
  padding: 3.5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}

.home-cta-above-footer .section-sub {
  margin-bottom: 2rem;
}

/* Mobile */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 0 4rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .cta-cards {
    grid-template-columns: 1fr;
  }

  .home-about-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .home-about-content {
    text-align: center;
  }

  .home-about-points {
    justify-content: center;
  }

  .home-about-card {
    padding: 1.75rem 1.25rem;
  }

  .about-highlights-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-cards-grid {
    grid-template-columns: 1fr;
  }

  .service-pills {
    margin-bottom: 1.5rem;
  }
}
