@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&family=Barlow+Condensed:wght@600;700;800&display=swap');

:root {
  --navy: #0d1b2a;
  --navy-mid: #142235;
  --blue: #1a5fa8;
  --blue-light: #2272c3;
  --red: #c0392b;
  --red-light: #e74c3c;
  --white: #ffffff;
  --off-white: #f4f6f9;
  --grey: #8a9bb0;
  --grey-light: #e8ecf1;
  --text: #1e2d3d;
  --shadow: 0 4px 24px rgba(13,27,42,0.12);
  --shadow-lg: 0 12px 48px rgba(13,27,42,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ── NAV ── */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-text {
  line-height: 1.1;
}

.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.5px;
}

.logo-name span { color: var(--red-light); }

.logo-sub {
  font-size: 0.7rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

nav {
  display: flex;
  gap: 4px;
}

nav a {
  color: #b0c4d8;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

nav a:hover, nav a.active {
  color: white;
  background: var(--blue);
}

.nav-cta {
  background: var(--red) !important;
  color: white !important;
  padding: 8px 20px !important;
}

.nav-cta:hover {
  background: var(--red-light) !important;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--red);
  color: white;
}

.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.35);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

.btn-blue {
  background: var(--blue);
  color: white;
}

.btn-blue:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,95,168,0.35);
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  min-height: 560px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0a3259 50%, var(--navy-mid) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,95,168,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,95,168,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-accent {
  position: absolute;
  right: -60px;
  top: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26,95,168,0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,95,168,0.25);
  border: 1px solid rgba(26,95,168,0.4);
  color: #7eb8f7;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #4ca3f5;
  border-radius: 50%;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 680px;
}

.hero h1 span { color: var(--red-light); }

.hero p {
  font-size: 1.05rem;
  color: #8ab0d0;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-phone {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-phone::before {
  content: '📞';
  font-size: 1rem;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--blue);
  padding: 18px 24px;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(255,255,255,0.8);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── SECTIONS ── */
.section {
  padding: 80px 24px;
}

.section-alt {
  background: var(--off-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title span { color: var(--red); }

.section-body {
  font-size: 1rem;
  color: #4a5f75;
  line-height: 1.75;
  max-width: 640px;
}

/* ── TWO-COL LAYOUT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.col-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.col-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.col-images img:first-child {
  grid-column: 1 / -1;
  height: 240px;
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--blue);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--off-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: #5a6f84;
  line-height: 1.65;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--navy-mid);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.gallery-item:hover .overlay { opacity: 1; }

.gallery-item .overlay span {
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  padding: 8px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0a3259 100%);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,95,168,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,95,168,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-band > * { position: relative; }

.cta-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
}

.cta-band p {
  color: #8ab0d0;
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .phone-big {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 28px;
  letter-spacing: 1px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-info {
  color: #6a8099;
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-info a {
  color: #4ca3f5;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #6a8099;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0a3259 100%);
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,95,168,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,95,168,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}

.page-hero p {
  color: #8ab0d0;
  font-size: 1rem;
  max-width: 500px;
}

/* ── ABOUT PAGE ── */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-block + .about-block {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid var(--grey-light);
}

.about-image-stack {
  position: relative;
}

.about-image-stack img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.about-image-stack .img-secondary {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 55%;
  border: 4px solid white;
  box-shadow: var(--shadow-lg);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.stat-box {
  background: var(--off-white);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
}

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: #5a6f84;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: var(--navy);
  border-radius: 14px;
  padding: 40px 36px;
  color: white;
}

.contact-info-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(26,95,168,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #7eb8f7;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-text {
  line-height: 1.5;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.8rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.contact-detail-text a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.contact-detail-text span {
  color: #b0c8e0;
  font-size: 0.95rem;
}

.hours-table {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hours-table h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey);
  margin-bottom: 14px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #b0c8e0;
}

.hours-row span:last-child { color: white; font-weight: 600; }

/* ── CONTACT FORM ── */
.contact-form-card {
  background: white;
  border-radius: 14px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 7px;
}

.form-group label span { color: var(--red); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-light);
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  background: white;
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1.5px solid #4caf50;
  color: #2e7d32;
  padding: 16px 20px;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}

/* ── SLIDER ── */
.slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-track img {
  min-width: 100%;
  height: 420px;
  object-fit: cover;
  flex-shrink: 0;
}

.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}

.slider-dot.active { background: white; }

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(13,27,42,0.6);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.slider-btn:hover { background: rgba(26,95,168,0.8); }
.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .two-col, .about-block, .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .two-col.reverse { direction: ltr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .about-image-stack .img-secondary { display: none; }
  .form-row { grid-template-columns: 1fr; }
  nav a { font-size: 0.8rem; padding: 7px 10px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { gap: 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  nav { display: none; }
}
