/* === BASIC FAST STYLES / RESET === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --bg-softer: #eef1f7;
  --border: #dde3f0;
  --text-main: #1f2933;
  --text-muted: #6b7280;
  --accent: #2563eb;
  --accent-soft: #e0edff;
  --accent-2: #10b981;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* === HEADER === */
header {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  background: var(--accent-soft);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  font-size: .95rem;
}

nav a {
  color: var(--text-muted);
  padding: .25rem .1rem;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .2s ease;
}

nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: .5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: #fff;
  background: var(--accent);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
}

/* === FULL-WIDTH PROMO HERO (WHOLE BANNER SLIDES) === */
.promo-hero {
  width: 100%;
  background: #101012;
  color: #f9fafb;
  padding: 2.5rem 0 3rem;
  overflow: hidden;
  position: relative;
}

.promo-hero-track {
  width: 100%;
  display: flex;
}

.promo-slides {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease;
}

.promo-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 0 5%;
  min-height: 320px;
  box-sizing: border-box;
}

.promo-text h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: .6rem;
}

.promo-text p {
  font-size: .97rem;
  color: #d1d5db;
  max-width: 460px;
}

.promo-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
}

/* promo controls + dots */
.promo-controls {
  position: absolute;
  right: 5%;
  bottom: 18px;
  display: flex;
  gap: 6px;
}

.promo-arrow {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: none;
  background: #f9fafb;
  color: #111827;
  cursor: pointer;
  font-size: 1rem;
}

.promo-dots {
  position: absolute;
  left: 5%;
  bottom: 20px;
  display: flex;
  gap: 6px;
}

.promo-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid #f9fafb;
  background: transparent;
  cursor: pointer;
}

.promo-dots button.active {
  background: #f9fafb;
}


/* === TOP HERO SLIDER SECTION (image-only banner) === */
.top-banner {
  width: 100%;
  background: #0d0d0d;
  color: #fff;
  padding: 2.5rem 0 3.5rem;
}

.top-banner-inner {
  width: 90%;
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.2fr);
  gap: 2rem;
  align-items: center;
}

.top-banner-text .tb-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
}

.tb-title {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  margin: .6rem 0;
  font-weight: 700;
}

.tb-desc {
  font-size: 1rem;
  color: #d1d5db;
  max-width: 400px;
  margin-bottom: 1.3rem;
}

.tb-btn {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
}

/* Slider */
.top-banner-slider {
  position: relative;
  height: 360px;
  overflow: hidden;
  border-radius: 18px;
}

.tb-slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.tb-slide {
  flex: 0 0 100%;
  height: 100%;
}

.tb-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

/* Arrows */
.tb-arrow {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-size: 1rem;
  z-index: 3;
}

.tb-prev { right: 55px; }

/* Dots */
.tb-dots {
  position: absolute;
  bottom: 15px;
  left: 20px;
  display: flex;
  gap: 6px;
}

.tb-dots button {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 1px solid #fff;
  background: transparent;
  cursor: pointer;
}

.tb-dots button.active {
  background: #fff;
}

/* === HERO === */
.hero {
  background: radial-gradient(circle at top left,#fff 0,transparent 55%),
             radial-gradient(circle at top right,#fff 0,transparent 55%);
  padding: 3rem 0 2rem;
  
}
/* Full-width hero wrapper */
.hero-full {
  width: 100%;
  padding-left: 3rem;
  padding-right: 3rem;
  max-width: 1600px; /* optional, prevents stretching on ultra-wide monitors */
  margin: 0 auto;
}


.hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  gap: 2rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .2rem .75rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: .75rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-2);
}

.hero h1 {
  font-size: clamp(2rem,3vw,2.6rem);
  margin-bottom: .75rem;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero p {
  color: var(--text-muted);
  font-size: .98rem;
  max-width: 480px;
  margin-bottom: 1.25rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.btn-primary {
  padding: .6rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  box-shadow: 0 6px 14px rgba(37,99,235,.25);
}

.btn-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--accent);
  font-size: .9rem;
  font-weight: 500;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: .75rem;
}

.hero-meta strong {
  color: var(--text-main);
}

/* === HERO CARD / OFFER SLIDER === */
.hero-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 14px 35px rgba(15,23,42,.12);
  border: 1px solid var(--border);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .75rem;
}

.hero-card-badge {
  padding: .25rem .6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 600;
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  min-height: 180px;      /* safe minimum */
  height: auto !important; /* allow full text */
  padding-bottom: 2.2rem; /* space for dots */
}


.slide-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform .6s ease-in-out;
}

/* Fix small CP Wireless offer slider */
.slide {
  flex: 0 0 100%;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr !important;   /* ← Make full width */
  gap: .75rem;
  align-items: flex-start;
}
.slide-text p {
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}


.slide-text h3 {
  font-size: 1rem;
  margin-bottom: .4rem;
}

.slide-text p {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: .45rem;
}

.pill {
  display: inline-block;
  padding: .15rem .6rem;
  border-radius: 999px;
  background: var(--bg-softer);
  border: 1px solid var(--border);
  font-size: .75rem;
  color: var(--text-muted);
}

.slide-image-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 32px;
  background: linear-gradient(135deg,#2563eb,#10b981);
  position: relative;
  overflow: hidden;
}

.slide-image-placeholder::before,
.slide-image-placeholder::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  filter: blur(1px);
}

.slide-image-placeholder::before {
  width: 80px;
  height: 80px;
  top: -18px;
  right: -12px;
}

.slide-image-placeholder::after {
  width: 90px;
  height: 90px;
  bottom: -22px;
  left: -10px;
}

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .4rem;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: var(--border);
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--accent);
  width: 16px;
}

/* === SECTION / PRODUCTS / PRODUCT SLIDER === */
.section {
  padding: 2.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.section-header h2 {
  font-size: 1.4rem;
  margin-bottom: .35rem;
}

.section-header p {
  font-size: .9rem;
  color: var(--text-muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 1.25rem;
  border: 1px solid var(--border);
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: .4rem;
}

.service-card p {
  font-size: .88rem;
  color: var(--text-muted);
}

/* Product slider */
.product-slider {
  padding: 2rem 0;
}

.product-slider h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.product-slider p {
  text-align: center;
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 1.5rem;
}

.product-slider-wrapper {
  overflow: hidden;
  position: relative;
}

.product-track {
  display: flex;
  gap: 1rem;
  transition: transform .4s ease;
}

.product-card {
  min-width: 230px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 18px rgba(15,23,42,.06);
}

.product-card h3 {
  font-size: 1rem;
  margin-top: .6rem;
  margin-bottom: .2rem;
}

.product-card p {
  font-size: .85rem;
  color: var(--text-muted);
}

.product-nav {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: .8rem;
}

.product-nav button {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: .25rem .7rem;
  font-size: .8rem;
  cursor: pointer;
}

/* === CONTACT & MAP === */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1.2fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-card {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.contact-card p {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: .9rem;
}

form label {
  display: block;
  font-size: .8rem;
  margin-bottom: .2rem;
  color: var(--text-muted);
}

form input,
form textarea {
  width: 100%;
  padding: .55rem .6rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: .9rem;
  outline: none;
  background: #fff;
}

form textarea {
  min-height: 110px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: .75rem;
}

.form-footer {
  margin-top: .8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  justify-content: space-between;
}

.form-note {
  font-size: .75rem;
  color: var(--text-muted);
  max-width: 260px;
}

.form-success {
  margin-top: .6rem;
  font-size: .8rem;
  color: var(--accent-2);
  display: none;
}

.map-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-soft);
}

.map-header {
  padding: .8rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-header .label {
  font-weight: 600;
}

.map-header .status {
  font-size: .78rem;
  color: var(--accent-2);
  background: #ecfdf5;
  padding: .2rem .55rem;
  border-radius: 999px;
}

.map-wrapper {
  width: 100%;
  min-height: 260px;
  background: #d1d5db;
}

.map-wrapper iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 260px;
}

/* === ADDRESS + WORKING HOURS LAYOUT === */
.address-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #eef2ff;
  font-size: .9rem;
}

.address-left {
  width: 55%;
}

.hours-right {
  width: 38%;
  text-align: left;
  min-width: 260px;
}

.hours-title {
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-align: center;
  font-size: 1rem;
}

.hours-list .row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 0.9rem;
  padding: 2px 0;
}

.hours-list .row span:first-child {
  width: 48%;
  text-align: right;
  padding-right: 10px;
}

.hours-list .row span:last-child {
  width: 55%;
  text-align: left;
}

/* Keep times on one line only on larger screens */
@media (min-width: 601px) {
  .hours-list .row span:last-child {
    white-space: nowrap;
  }
}


/* === FOOTER === */
footer {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0 1.75rem;
  margin-top: 2rem;
  font-size: .8rem;
  color: var(--text-muted);
  background: #f9fafb;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .hero {
    padding-top: 2.5rem;
  }
  .promo-slide {
    grid-template-columns: minmax(0,1fr);
    padding: 0 1.25rem;
  }
  .promo-image {
    order: -1;
  }
  .promo-controls {
    right: 1.25rem;
  }
  .promo-dots {
    left: 1.25rem;
  }
  .top-banner-inner {
    grid-template-columns: 1fr;
  }
  .top-banner-slider {
    height: 300px;
  }
}
@media (max-width: 700px) {

  /* Put nav and button together in one row */
  .nav-row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;  /* prevent button dropping */
  }

  nav ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
  }

  .nav-cta {
    flex-shrink: 0;
    white-space: nowrap;
    padding: .45rem 1rem;
    font-size: .85rem;
  }

  /* Logo stays at top */
  header .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: .5rem;
  }
}




@media (max-width: 500px) {
  .form-row {
    grid-template-columns: minmax(0,1fr);
  }
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Make selected sections full-screen width */
.section-full {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.section-full .container {
  width: 100%;
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 600px) {
  .product-track {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.2rem;
  }

  .product-card {
    min-width: 100% !important;
    max-width: 100% !important;
  }

  .product-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
/* === ADDRESS + HOURS — MOBILE FIX === */
@media (max-width: 600px) {
  .address-wrapper {
    flex-direction: column;       /* stack instead of side-by-side */
    align-items: flex-start;
    gap: 0.75rem;
  }

  .address-left,
  .hours-right {
    width: 100%;
    min-width: 0;
  }

  .hours-title {
    text-align: left;
    margin-bottom: 0.3rem;
  }

  .hours-list .row {
    justify-content: flex-start;
  }

  .hours-list .row span:first-child {
    width: auto;
    text-align: left;
    padding-right: 6px;
  }

  .hours-list .row span:last-child {
    width: auto;          /* let it expand naturally */
  }
}
/* === MOBILE NAV: MENU + BUTTON ON SAME LINE === */
@media (max-width: 700px) {

  /* Keeps logo on top */
  header .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: .4rem;
    padding: .7rem 0;
  }

  /* Wrap menu + button into one row */
  .nav-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap; /* allows wrapping into 2 lines */
    max-width: 100%;
  }

  nav ul {
    display: flex;
    gap: .7rem;        /* smaller spacing */
    flex-wrap: wrap;   /* allow menu to shrink */
  }

  nav ul li a {
    font-size: .85rem;  /* slightly smaller text */
    white-space: nowrap;
  }

  .nav-cta {
    padding: .45rem 1.1rem;
    font-size: .82rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
}
@media (max-width: 600px) {
  .slider {
    height: auto !important;
    min-height: 200px;
  }

  .slide {
    grid-template-columns: 1fr !important;
  }

  .slide-text p {
    font-size: 0.9rem;
    line-height: 1.35;
  }
}





///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 



/* services.css
   Uses the same design tokens as the home page and is scoped
   so it won't affect index.html
*/

/* === BUTTONS (service page) === */
.services-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.1s ease;
  text-align: center;
}

/* Use same blue accent as home page */
.services-page .btn-primary {
  background-color: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.25);
}

.services-page .btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
}

.services-page .btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border-color: var(--border);
}

.services-page .btn-outline:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.services-page .btn-link {
  padding: 0;
  border-radius: 0;
  border: none;
  font-weight: 600;
  color: var(--accent);
  background: transparent;
}

.services-page .btn-link:hover {
  text-decoration: underline;
}

/* === HERO SECTION (service page hero) === */
/* Use a different class name so we don't touch home .hero */
.services-page .service-hero {
  padding: 3rem 0 2.5rem;
  background: linear-gradient(135deg, #f9fafb 0%, #eef2ff 40%, #ffffff 100%);
}

.services-page .service-hero-inner {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.services-page .service-hero-text h1 {
  font-size: clamp(1.9rem, 2.8vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.services-page .service-hero-text p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 36rem;
}

.services-page .service-hero-bullets {
  margin-bottom: 1.3rem;
  list-style: none;
  padding: 0;
}

.services-page .service-hero-bullets li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.95rem;
  color: #374151;
  margin-bottom: 0.35rem;
}

.services-page .service-hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background-color: var(--text-main);
}

.services-page .service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.services-page .service-hero-image {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}

/* === SERVICES GRID === */
.services-page .services-section {
  padding: 2.5rem 0;
}

/* re-use your .section + .section-header base from home;
   only adjust container + grid here */
.services-page .services-section .container {
  width: 100%;
  max-width: 1600px;      /* use much more of the screen */
  margin: 0 auto;
  padding: 0 2.5rem;      /* nice padding left/right */
}


.services-page .services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

/* Card look matches your theme: radius, border, subtle shadow */
.services-page .services-grid .service-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: 1.25rem;
  padding: 1.3rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.services-page .service-image img {
  border-radius: 1rem;
  height: 100%;
  object-fit: cover;
}

.services-page .service-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.services-page .service-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.services-page .service-list {
  margin-bottom: 0.6rem;
  list-style: none;
  padding: 0;
}

.services-page .service-list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.25rem;
}

.services-page .service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #9ca3af;
}

/* === OPTIONAL: LOCATIONS SECTION ON SERVICE PAGE === */
/* Only if you re-use that block from your template */
.services-page .locations-section {
  padding: 2.5rem 0 3rem;
  background-color: #f9fafb;
}

.services-page .locations-inner {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.services-page .locations-section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.services-page .locations-section p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.services-page .locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.services-page .location-card {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: #ffffff;
  font-size: 0.92rem;
}

.services-page .location-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.services-page .contact-cta {
  padding: 1.4rem;
  border-radius: 1.25rem;
  background: #111827;
  color: #f9fafb;
}

.services-page .contact-cta h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.services-page .contact-cta p {
  font-size: 0.93rem;
  margin-bottom: 0.8rem;
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .services-page .service-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-page .service-hero-image {
    max-width: 420px;
    margin: 1rem auto 0;
  }

  .services-page .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-page .services-grid .service-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-page .locations-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-page .locations-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .services-page .service-hero {
    padding-top: 2.25rem;
  }
}
.locations-inner {
  align-items: end !important;   /* Move right-side box down */
}
