/* ----- RESET & BASE ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a2a4a;  /* deep blue base */
  color: #f0f4ff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

.page-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1rem 1.5rem;
  width: 100%;
}

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #fff;
  position: relative;
  display: inline-block;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #dc2626;
  border-radius: 4px;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

a {
  color: #7bb3ff;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #b8d6ff;
  text-decoration: underline;
}

/* ----- HEADER / BRAND ----- */
.brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.5rem 0 0.75rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  gap: 0.75rem;
}

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

.logo-squirrel {
  background: #fff;
  color: #1e3a5f;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.6);
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 60%, #b0d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: 0.8rem;
  background: rgba(255,255,255,0.07);
  padding: 0.3rem 1rem;
  border-radius: 30px;
  color: #b8d6ff;
  border: 1px solid rgba(255,255,255,0.05);
}

/* ----- MESSAGING BLOCKS (Local first, We care, Not a number) ----- */
.messaging-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .messaging-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.message-block {
  background: rgba(13, 53, 85, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 24px;
  padding: 1.8rem 1.5rem;
  border-left: 6px solid #dc2626;
  transition: background 0.2s, transform 0.2s;
}

.message-block:hover {
  background: rgba(20, 60, 100, 0.6);
  transform: translateY(-3px);
}

.message-block h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
}

.message-block h3 i {
  color: #dc2626;
  font-size: 1.5rem;
}

.message-block p {
  color: #d0e2ff;
  margin-bottom: 0.5rem;
}

.message-block .highlight {
  color: #ffb3b3;
  font-weight: 600;
}

.badge-local {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  padding: 0.2rem 1rem;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #b8d6ff;
  border: 1px solid rgba(255,255,255,0.05);
  margin-top: 0.3rem;
}

/* ----- SERVICES SECTION ----- */
.services-section {
  margin: 2.5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin: 1.5rem 0;
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: rgba(13, 53, 85, 0.3);
  border-radius: 20px;
  padding: 1.5rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s, border-color 0.2s;
}

.service-card:hover {
  background: rgba(13, 53, 85, 0.6);
  border-color: rgba(220, 38, 38, 0.3);
}

.service-card .service-icon {
  font-size: 1.8rem;
  color: #dc2626;
  margin-bottom: 0.5rem;
}

.service-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #c8dfff;
  margin-bottom: 0.2rem;
}

.service-card small a {
  color: #ffb3b3;
}

/* ----- DIVIDER ----- */
.divider-custom {
  border: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #dc2626, #4a7db5, transparent);
  opacity: 0.3;
  margin: 1.5rem 0;
}

/* ----- PAST CLIENTS / WORK SECTION ----- */
.past-clients {
  background: rgba(13, 53, 85, 0.3);
  border-radius: 28px;
  padding: 2rem 1.8rem;
  margin: 2rem 0;
  border: 1px solid rgba(255,255,255,0.04);
}

.past-clients ul {
  list-style: none;
  padding: 0;
}

.past-clients li {
  padding: 0.6rem 0 0.6rem 1.8rem;
  position: relative;
  color: #d0e2ff;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.past-clients li:before {
  content: '▹';
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: bold;
}

/* ----- CTA BUTTON ----- */
.cta-wrapper {
  margin: 1.5rem 0 0.8rem;
  display: flex;
  justify-content: center;
}

.btn-contact {
  background: #dc2626;
  border: none;
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 1rem 3rem;
  border-radius: 60px;
  box-shadow: 0 10px 30px -8px rgba(220, 38, 38, 0.5);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(255,255,255,0.2);
  width: 100%;
  max-width: 360px;
  justify-content: center;
}

.btn-contact:hover {
  background: #b91c1c;
  transform: scale(1.02);
  box-shadow: 0 16px 40px -6px #b91c1c;
  color: white;
  text-decoration: none;
}

.btn-contact i {
  font-size: 1.8rem;
}

/* ----- SERVICES CTA (bottom) ----- */
.services-cta {
  background: rgba(220, 38, 38, 0.12);
  border-radius: 60px;
  padding: 1.2rem 1.8rem;
  text-align: center;
  margin-top: 1.5rem;
  border: 1px solid rgba(220, 38, 38, 0.15);
}

.services-cta p {
  margin-bottom: 0.5rem;
  color: #d0e2ff;
}

.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 0.4rem 1.5rem;
  border-radius: 40px;
  transition: all 0.2s;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: #dc2626;
}

/* ----- FOOTER ----- */
.footer-note {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  margin-top: 1.5rem;
  letter-spacing: 0.5px;
}

/* ----- RESPONSIVE TWEAKS ----- */
@media (max-width: 576px) {
  .brand-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .logo-text {
    font-size: 1.3rem;
  }
  .btn-contact {
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
  }
  .message-block {
    padding: 1.2rem;
  }
  .past-clients {
    padding: 1.2rem;
  }
}

@media (min-width: 992px) {
  .page-wrapper {
    padding: 1.5rem 2rem 2rem;
  }
  h2 {
    font-size: 2.4rem;
  }
}

/* ----- SLIDER SECTION (fixed) ----- */
.slider-section {
  margin: 1.5rem 0 1.8rem;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  width: 100%;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 0.5rem 0;
}

.slider-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 0;
  width: max-content;
  will-change: transform;
  animation: scrollRightToLeft 28s linear infinite;
}

.slide-item {
  flex: 0 0 auto;
  height: 200px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.2rem;
  color: white;
  position: relative;
  border-radius: 12px;
  margin-right: 8px;
  transition: filter 0.2s;
}

.slide-item:last-child {
  margin-right: 0;
}

.slide-item::after {
  content: '';
  position: absolute;
  inset: 0;  
  pointer-events: none;  
}

.slide-caption {
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 1.1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  background: rgba(0, 30, 60, 0.5);
  backdrop-filter: blur(4px);
  padding: 0.3rem 1.2rem 0.3rem 1rem;
  border-radius: 40px;
  border-left: 4px solid #dc2626;
  letter-spacing: -0.3px;
}

.slide-caption small {
  font-weight: 400;
  font-size: 0.7rem;
  opacity: 0.8;
  display: block;
  margin-top: 2px;
}

/* Pause on hover */
.slider-section:hover .slider-track {
  animation-play-state: paused;
}

/* Keyframes: right to left */
@keyframes scrollRightToLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}