/* Base tokens */

:root {
  --bg-page: #f3f4f6;
  --bg-soft: #f4f5f7;
  --bg-card: #ffffff;

  --ink: #111827;
  --muted: #6b7280;

  --accent: #0b6bcb;
  --accent-soft: #2563eb;

  --border-subtle: rgba(15, 23, 42, 0.08);

  --radius-sm: 5px;
  --radius-md: 10px;

  --shadow-soft: 0 18px 38px rgba(15, 23, 42, 0.18);
  --shadow-card: 0 14px 30px rgba(15, 23, 42, 0.08);
}

/* Reset / base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-page);
}

img {
  max-width: 100%;
  display: block;
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
}

.section {
  padding: 72px 0;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  font-size: 32px;
  line-height: 1.25;
  margin: 8px 0 14px;
  color: var(--ink);
}

.section-heading p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
}

.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  background: rgba(11, 107, 203, 0.1);
  color: var(--accent);
}

.section-label.light {
  background: rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
}

/* Typography */

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

p {
  margin: 0 0 14px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, transform 0.08s ease;
  white-space: nowrap;
}

.btn i {
  font-size: 14px;
}

.btn-lg {
  padding: 13px 24px;
  font-size: 16px;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.22);
}

.btn-primary:hover {
  background: var(--accent-soft);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-secondary {
  background: #ffffff;
  color: var(--ink);
  border-color: rgba(15, 23, 42, 0.12);
}

.btn-secondary:hover {
  background: #f9fafb;
}

.btn-outline-light {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(249, 250, 251, 0.7);
}

.btn-outline-light:hover {
  background: rgba(249, 250, 251, 0.07);
}

.btn-light {
  background: #ffffff;
  color: var(--ink);
  border-color: transparent;
}

.btn-light:hover {
  background: #f9fafb;
}

/* Links */

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* HEADER
   ============================================= */

.site-header {
  position: relative;
  z-index: 50;
}

/* Top grey bar */

.top-bar {
  background: #e5e7eb;
  color: var(--ink);
  font-size: 13px;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  gap: 10px;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar i {
  font-size: 13px;
}

.top-phone {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.top-phone:hover {
  text-decoration: underline;
}

/* White menu bar */

.nav-bar {
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

/* logo */

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 46px;
  width: auto;
}

/* main nav links */

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.main-nav a {
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--accent);
}

.main-nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* nav call to action */

.nav-cta {
  margin-left: 24px;
}

.nav-cta .btn {
  font-size: 14px;
  padding: 9px 18px;
}

/* mobile nav toggle */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #ffffff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  background: var(--ink);
}

/* HERO
   ============================================= */

.hero {
  position: relative;
  overflow: hidden;
  background: url("/assets/img/hero-bg.jpg") center center / cover no-repeat;
  color: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(15, 23, 42, 0.75), transparent 55%),
              linear-gradient(120deg, rgba(15, 23, 42, 0.9) 0%, rgba(11, 15, 25, 0.7) 40%, rgba(2, 6, 23, 0.3) 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
  padding-top: 72px;
  padding-bottom: 96px;
}

.hero-content {
  max-width: 640px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  color: #e5e7eb;
  margin-bottom: 18px;
}

.hero-kicker i {
  font-size: 12px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #ffffff;
}

.hero-text {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 22px;
  color: #e5e7eb;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-actions .btn {
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.4);
}

.hero-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  color: #d1d5db;
  align-items: center;
}

.hero-contact-line i {
  margin-right: 5px;
  font-size: 13px;
}

.hero-contact-line a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(209, 213, 219, 0.6);
}

.hero-dot {
  opacity: 0.6;
}

/* INTRO
   ============================================= */

.intro {
  background: var(--bg-soft);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.intro-gallery {
  display: grid;
  gap: 18px;
}

.intro-main-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.intro-main-img img {
  width: 100%;
  object-fit: cover;
}

.intro-sub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.intro-sub-grid img {
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.intro-text h2 {
  font-size: 30px;
  margin: 10px 0 16px;
}

.intro-text p {
  color: var(--muted);
}

.intro-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin-top: 14px;
}

.intro-item {
  font-size: 15px;
  color: var(--ink);
  position: relative;
  padding-left: 18px;
}

.intro-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.intro-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* SERVICES
   ============================================= */

.services {
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 20px 20px 22px;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: radial-gradient(circle at 0 0, #22c1c3, #0b6bcb);
  color: #ffffff;
}

.service-icon i {
  font-size: 20px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 15px;
  color: var(--muted);
}

.services-link-row {
  margin-top: 26px;
  text-align: center;
}

/* PROCESS
   ============================================= */

.process {
  background: var(--bg-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.process-text h2 {
  font-size: 28px;
  margin: 10px 0 16px;
}

.process-text p {
  color: var(--muted);
}

.process-steps {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.process-step {
  display: flex;
  gap: 12px;
}

.step-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  flex-shrink: 0;
}

.step-body h3 {
  font-size: 17px;
  margin-bottom: 4px;
}

.step-body p {
  font-size: 15px;
  color: var(--muted);
}

.process-gallery img {
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.process-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

/* GALLERY
   ============================================= */

.gallery {
  background: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid img {
  border-radius: var(--radius-md);
  object-fit: cover;
}

/* REVIEWS
   ============================================= */

.reviews {
  background: radial-gradient(circle at 10% 0, #1f2937, #020617);
  color: #e5e7eb;
}

.reviews .section-heading h2,
.reviews .section-heading p {
  color: #e5e7eb;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 18px;
  padding: 20px 20px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.review-name {
  font-weight: 600;
  margin-bottom: 2px;
}

.review-location {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 10px;
}

/* SERVICE AREA
   ============================================= */

.partners {
  background: #ffffff;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.partner-pill {
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  background: #f9fafb;
  font-size: 14px;
  color: var(--ink);
}

/* CTA
   ============================================= */

.cta {
  background: radial-gradient(circle at 0 0, #1f2937, #020617);
  color: #e5e7eb;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
}

.cta-text h2 {
  font-size: 28px;
  margin: 10px 0 16px;
  color: #ffffff;
}

.cta-text p {
  color: #e5e7eb;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* CONTACT HOME
   ============================================= */

.contact-home {
  background: #ffffff;
}

.contact-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: flex-start;
}

.contact-home-info h2 {
  font-size: 28px;
  margin: 10px 0 14px;
}

.contact-home-info p {
  color: var(--muted);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 14px;
}

.contact-card {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 16px 14px 16px;
  border: 1px solid var(--border-subtle);
}

.contact-card i {
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 10px;
}

.contact-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}

.contact-card-link {
  font-size: 14px;
  font-weight: 600;
}

.contact-details {
  margin-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 12px;
}

.contact-row {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 14px;
}

.contact-label {
  min-width: 110px;
  font-weight: 600;
  color: var(--ink);
}

.contact-label i {
  margin-right: 5px;
}

.contact-value a {
  color: var(--accent);
}

.contact-home-note h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
}

.contact-list li {
  margin-bottom: 6px;
}

/* FOOTER
   ============================================= */

.site-footer {
  background: #020617;
  color: #e5e7eb;
  padding-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  padding-bottom: 30px;
}

/* footer logo */

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-logo .logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #0b6bcb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.footer-logo .logo-mark i {
  font-size: 18px;
}

.footer-logo .logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo .logo-name {
  font-weight: 700;
  font-size: 16px;
}

.footer-logo .logo-tagline {
  font-size: 13px;
  color: #9ca3af;
}

.footer-copy {
  font-size: 14px;
  color: #9ca3af;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 15px;
  margin: 0 0 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  margin-top: 6px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 0 16px;
  font-size: 13px;
  color: #9ca3af;
}

/* MOBILE CONTACT BAR
   ============================================= */

.mobile-contact-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  background: #020617;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.mobile-contact-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  color: #e5e7eb;
  font-size: 12px;
  text-decoration: none;
}

.mobile-contact-bar i {
  font-size: 16px;
  margin-bottom: 2px;
}

/* RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .services-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-inner,
  .contact-home-grid,
  .process-grid,
  .intro-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 26px;
    padding-right: 26px;
  }

  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-inner {
    padding: 10px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 12px 24px 18px;
    gap: 10px;
    border-top: 1px solid rgba(209, 213, 219, 0.9);
  }

  .main-nav a {
    padding: 6px 0;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero-container {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .intro-grid,
  .process-grid,
  .cta-inner,
  .contact-home-grid {
    gap: 26px;
  }

  .intro-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-grid,
  .gallery-grid,
  .reviews-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 56px 0;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-contact-bar {
    display: flex;
  }

  body {
    padding-bottom: 56px;
  }
}

@media (max-width: 768px) {

  /* Give breathing room to header content */
  .nav-bar .container,
  .top-bar .container {
    padding-left: 16px;
    padding-right: 16px;
  }

}

@media (max-width: 768px) {

  .top-bar-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .top-left,
  .top-right {
    justify-content: center;
    width: 100%;
  }

}

.contact-details,
.contact-details ul,
.contact-details li {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {

  .contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .contact-row::before {
    display: none !important;
    content: none !important;
  }

}

@media (max-width: 768px) {

  .hero-contact-line {
    display: none;
  }

}

/* Contact page */

.contact-page {
  padding-top: 70px;
  padding-bottom: 70px;
  background: #f4f6f9;
}

.contact-page .section-heading h1 {
  font-size: 30px;
  margin-bottom: 8px;
}

.contact-page .section-heading p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Two column layout */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

/* Left column */

.contact-info-block h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.contact-info-block p {
  font-size: 14px;
  color: #4b5563;
  max-width: 520px;
}

/* Main contact list */

.contact-main-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 20px;
}

.contact-main-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
  margin-bottom: 10px;
}

.contact-main-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, #093056, #19656b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.contact-main-icon i {
  font-size: 18px;
}

.contact-main-body {
  display: flex;
  flex-direction: column;
}

.contact-main-label {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.contact-main-value {
  font-size: 15px;
  color: #0b5ed7;
  text-decoration: none;
  font-weight: 600;
}

.contact-main-value:hover {
  text-decoration: underline;
}

/* Address and service area */

.contact-extra {
  margin-top: 14px;
  font-size: 14px;
}

.contact-extra-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
}

.contact-extra-label {
  font-weight: 600;
  min-width: 95px;
  color: #111827;
}

.contact-extra-label i {
  margin-right: 4px;
  color: #19656b;
}

.contact-extra-value {
  color: #4b5563;
}

/* Small bullet card with reasons */

.contact-note-card {
  margin-top: 18px;
  padding: 14px 14px 10px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.contact-note-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.contact-note-card ul {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  font-size: 13px;
  color: #4b5563;
}

/* Right column form card */

.contact-form-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
  padding: 24px 24px 20px;
}

.contact-form-card h2 {
  font-size: 22px;
  margin-bottom: 6px;
}

.contact-form-card > p {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 18px;
}

/* Form fields */

.contact-form .hp-field {
  display: none; /* keep honeypot hidden */
}

.form-row {
  margin-bottom: 13px;
}

.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #111827;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #d1d5db;
  padding: 10px 11px;
  font-size: 14px;
  background-color: #ffffff;
  outline: none;
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #19656b;
  box-shadow: 0 0 0 1px rgba(25, 101, 107, 0.12);
}

.form-row-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

/* Status banner */

.contact-status {
  margin-top: 24px;
  margin-bottom: 8px;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
}

.contact-status-success {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.contact-status-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* Responsiveness */

@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .contact-page .section-heading h1 {
    font-size: 24px;
  }

  .contact-form-card {
    padding: 20px 18px 18px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  }

  .form-row-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Generic page hero banner */

.page-hero {
  position: relative;
  width: 100%;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.55), transparent 60%),
              linear-gradient(to bottom, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.92));
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 40px 16px;
}

.page-hero-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  color: #ffffff;
}

.page-hero-subtitle {
  font-size: 15px;
  max-width: 620px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Specific backgrounds per page */

.page-hero.about-hero::before {
  background-image: url("/assets/img/about-hero.jpg");
}

/* You will reuse these for services and gallery later:
.page-hero.services-hero::before { background-image: url("/assets/img/services-hero.jpg"); }
.page-hero.gallery-hero::before  { background-image: url("/assets/img/gallery-hero.jpg"); }
*/

@media (max-width: 768px) {
  .page-hero {
    min-height: 210px;
  }

  .page-hero-title {
    font-size: 24px;
  }

  .page-hero-subtitle {
    font-size: 14px;
  }
}


/* About page layout */

.about-main {
  padding-top: 60px;
  padding-bottom: 40px;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 36px;
  align-items: flex-start;
}

.about-text-block h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

.about-text-block p {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 12px;
}

.about-highlight-card {
  background: #0b1b2c;
  color: #ffffff;
  border-radius: 16px;
  padding: 20px 22px 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

.about-highlight-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.about-highlight-card ul {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  font-size: 14px;
}

.about-highlight-card li {
  margin-bottom: 6px;
}

/* Values section */

.about-values {
  padding-top: 40px;
  padding-bottom: 60px;
  background: #f4f6f9;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.value-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.value-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: #4b5563;
}

/* About page CTA reuses existing .cta styles; just add top margin */

.about-cta {
  padding-top: 0;
}

/* Responsive tweaks */

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .about-main {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .about-text-block h2 {
    font-size: 22px;
  }

  .values-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Services page hero background */

.page-hero.services-hero::before {
  background-image: url("/assets/img/services-hero.jpg"); /* swap to your own image name if needed */
}

/* Services page layout */

.services-page-main {
  padding-top: 60px;
  padding-bottom: 50px;
  background: #ffffff;
}

.services-intro {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}

.services-intro h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.services-intro p {
  font-size: 15px;
  color: #4b5563;
}

/* Services grid */

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-page-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-page-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-page-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #093056, #19656b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.service-page-icon i {
  font-size: 18px;
}

.service-page-title {
  font-size: 16px;
  font-weight: 700;
}

.service-page-body {
  font-size: 14px;
  color: #4b5563;
}

/* Small list inside cards */

.service-page-list {
  margin: 4px 0 0;
  padding-left: 16px;
  font-size: 13px;
  color: #6b7280;
}

/* Secondary section on services page */

.services-extra {
  padding-top: 40px;
  padding-bottom: 60px;
  background: #f4f6f9;
}

.services-extra-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 26px;
  align-items: flex-start;
}

.services-extra-text p {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 10px;
}

.services-extra-list {
  list-style: disc;
  padding-left: 18px;
  font-size: 14px;
  color: #4b5563;
}

.services-extra-card {
  background: #0b1b2c;
  color: #ffffff;
  border-radius: 16px;
  padding: 20px 22px 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

.services-extra-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.services-extra-card ul {
  list-style: disc;
  padding-left: 18px;
  font-size: 13px;
  margin: 0;
}

/* Responsive */

@media (max-width: 1100px) {
  .services-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .services-page-main {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .services-page-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-extra-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Make sure everything inside is light */
.services-extra-card h3,
.services-extra-card p,
.services-extra-card li,
.services-extra-card strong {
  color: #ffffff;
}


/** NEWEST CHANGE **/
/* Home services area with image cards */

.services-home {
  padding-top: 4rem;
  padding-bottom: 4.5rem;
}

/* Desktop grid */

.services-grid-desktop {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 2.5rem;
}

.service-card-img {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.service-card-photo {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-card-body {
  padding: 18px 20px 20px;
}

.service-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #0b1020;
}

.service-card-body p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #4b5563;
}

/* Mobile carousel */

.services-carousel-mobile {
  margin-top: 2.25rem;
  display: none; /* hidden on desktop, shown in media query */
}

.services-carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin: 0 -16px;
  padding-left: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.service-slide {
  flex: 0 0 82%;
  max-width: 320px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  scroll-snap-align: center;
}

.service-slide .service-card-photo {
  height: 180px;
}

.view-all-slide {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.view-all-inner {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  text-align: left;
}

.view-all-inner h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #0b1020;
}

.view-all-inner p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  color: #4b5563;
}

.services-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 0.75rem;
}

.services-carousel-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.2);
}

/* Show carousel on small screens, grid on larger */

@media (max-width: 768px) {
  .services-grid-desktop {
    display: none;
  }

  .services-carousel-mobile {
    display: block;
  }

  .services-link-row.desktop-only {
    display: none;
  }
}

/* Make grid adapt a bit on medium screens */

@media (max-width: 1024px) and (min-width: 769px) {
  .services-grid-desktop {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* Gallery page hero */

.page-hero.gallery-hero::before {
  background-image: url("/assets/img/gallery-hero.jpg"); /* change name if you use a different file */
}

/* Gallery page layout */

.gallery-page-main {
  padding-top: 60px;
  padding-bottom: 50px;
  background: #ffffff;
}

.gallery-intro {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}

.gallery-intro h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.gallery-intro p {
  font-size: 15px;
  color: #4b5563;
}

/* Gallery grid */

.gallery-grid-page {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.45), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Lightbox */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  padding: 20px;
}

.lightbox-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-inner {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  text-align: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  margin-top: 10px;
  font-size: 14px;
  color: #e5e7eb;
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #ffffff;
  color: #111827;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive gallery */

@media (max-width: 1100px) {
  .gallery-grid-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .gallery-page-main {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .gallery-grid-page {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-item img {
    height: 220px;
  }
}

/* Gallery filters */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  justify-content: center;
}

.gallery-filter {
  border: 1px solid #d1d5db;
  background: #ffffff;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
  color: #111827;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.gallery-filter:hover {
  border-color: #19656b;
  box-shadow: 0 4px 10px rgba(148, 163, 184, 0.45);
}

.gallery-filter.active {
  background: #19656b;
  border-color: #19656b;
  color: #ffffff;
}

/* Hide items when filtering */
.gallery-item.is-hidden {
  display: none;
}

/* =========================
   Reviews scrolling section
   ========================= */

.reviews-scroll {
  background: #f5f7fb;
}

.reviews-scroll-columns {
  display: flex;
  gap: 1.75rem;
  margin-top: 2.5rem;
  position: relative;
  max-height: 640px;
  padding-bottom: 1rem;
  /* fade top and bottom like the React demo */
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  overflow: hidden;
}

.reviews-scroll-column {
  flex: 1;
  min-width: 0;
}

.reviews-scroll-list {
  list-style: none;
  margin: 0;
  padding: 0 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;

  /* animation; duration adjusted via CSS variable or data attribute in JS */
  animation-name: reviewsScroll;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* base duration; we tweak it below with JS */
.reviews-scroll-list {
  animation-duration: 20s;
}

/* duplicate content so scroll loops smoothly */
.reviews-scroll-list::after {
  content: attr(data-duplicate);
}

/* Each testimonial card */
.review-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.75rem 1.6rem;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(148, 163, 184, 0.25);
  max-width: 360px;
  margin-inline: auto;
  color: #0b1727;
}

.review-card p {
  margin: 0.75rem 0 1.25rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.review-stars {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: #fbbf24;
}

.review-footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.review-name {
  font-weight: 600;
  font-size: 0.98rem;
}

.review-tag {
  font-size: 0.86rem;
  color: #6b7280;
}

/* Call to action under the scroller */
.reviews-scroll-cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* Keyframes for vertical scroll */
@keyframes reviewsScroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* Pause animation when user hovers any column */
.reviews-scroll-column:hover .reviews-scroll-list {
  animation-play-state: paused;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .reviews-scroll-list {
    animation: none;
  }
}

/* Responsive: on small screens we show one column, then two, then three */

@media (max-width: 767px) {
  .reviews-scroll-columns {
    flex-direction: column;
    max-height: none;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .reviews-scroll-column {
    max-height: 420px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .reviews-scroll-column--lg {
    display: none;
  }
}

@media (max-width: 767px) {
  .reviews-scroll-column--md,
  .reviews-scroll-column--lg {
    display: none;
  }
}
