/* First Choice Cleaning NI — shared styles
   Palette taken from the brand logo (navy blue / steel silver / charcoal) */

:root {
  --navy-dark: #0b1826;
  --navy: #0f2a4a;
  --blue: #1c5aa3;
  --blue-bright: #2e7fd6;
  --blue-light: #eaf2fb;
  --silver: #c7ccd3;
  --silver-dark: #838c96;
  --white: #ffffff;
  --offwhite: #f5f7f9;
  --text: #1a222c;
  --text-muted: #566072;
  --border: #e2e6ea;
  --radius: 10px;
  --shadow: 0 8px 24px rgba(11, 24, 38, 0.08);
  --shadow-lg: 0 16px 40px rgba(11, 24, 38, 0.16);
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: inherit;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--navy-dark);
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 16px; color: var(--text-muted); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(28, 90, 163, 0.35);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(28, 90, 163, 0.45); }

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.btn-outline-dark:hover { background: var(--blue); color: var(--white); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 24, 38, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.brand img { height: 46px; width: auto; }
.brand-text {
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.15;
}
.brand-text span {
  display: block;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--silver);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: var(--silver);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links .btn { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(46, 127, 214, 0.35), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(199, 204, 211, 0.15), transparent 45%),
    linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 60%, #123259 100%);
  color: var(--white);
  padding: 96px 0 88px;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 { color: var(--white); }
.hero p.lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 46ch;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--silver);
  margin-bottom: 22px;
}
.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(46, 127, 214, 0.25);
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.hero-logo-card img { width: 260px; margin: 0 auto; }

/* Page header for interior pages */
.page-header {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 70%);
  color: var(--white);
  padding: 64px 0 56px;
  text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 10px; }
.page-header p { color: rgba(255, 255, 255, 0.78); max-width: 60ch; margin: 0 auto; }

.page-header-photo {
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-header-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(11, 24, 38, 0.92) 0%, rgba(15, 42, 74, 0.86) 70%);
}
.page-header-photo .container { position: relative; z-index: 1; }

/* ---------- Photography ---------- */
.photo-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.photo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 24, 38, 0.9) 0%, rgba(11, 24, 38, 0.15) 60%);
}
.photo-banner-content {
  position: relative;
  z-index: 1;
  padding: 40px;
}
.photo-banner-content h2, .photo-banner-content h3 { color: var(--white); }
.photo-banner-content p { color: rgba(255, 255, 255, 0.85); margin-bottom: 0; }

.img-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.card-photo { padding: 0; overflow: hidden; }
.card-photo img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.card-photo .card-photo-body { padding: 24px 26px 30px; }
.card-photo h3 { margin-bottom: 8px; }
.card-photo p { margin-bottom: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(11,24,38,0.85), transparent);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
}

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section-alt { background: var(--offwhite); }
.section-navy {
  background: linear-gradient(160deg, var(--navy-dark), var(--navy));
  color: var(--white);
}
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255, 255, 255, 0.78); }

.section-head {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head.left { margin: 0 0 44px; text-align: left; }

/* ---------- Grids / Cards ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; }

/* list with check icons */
.check-list { list-style: none; margin: 0 0 20px; padding: 0; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--text-muted);
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-navy .check-list li::before { background: var(--blue-bright); }
.section-navy .check-list li { color: rgba(255,255,255,0.85); }

/* Two column with image/panel */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.section-navy .panel {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.stat {
  text-align: center;
  padding: 26px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.stat .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-bright);
  display: block;
}
.stat .label {
  font-size: 0.85rem;
  color: var(--silver);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: var(--white);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255, 255, 255, 0.88); max-width: 60ch; margin: 0 auto 28px; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

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

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--navy-dark);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--offwhite);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-bright);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 130px; }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { background: #e6f5ea; color: #1c7a3a; border: 1px solid #b7e3c3; }
.form-status.error { background: #fdeceb; color: #b3261e; border: 1px solid #f5c2bd; }

/* ---------- Contact info blocks ---------- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.contact-info-card .icon {
  margin: 0 auto 14px;
}
.contact-info-card a, .contact-info-card span.value {
  display: block;
  font-weight: 700;
  color: var(--navy-dark);
  margin-top: 4px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 40px; }
.footer-brand strong { color: var(--white); font-size: 1.05rem; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a, .footer-col span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
  font-size: 0.92rem;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 999px;
  transition: background 0.15s ease;
}
.footer-social:hover { background: rgba(255, 255, 255, 0.1); }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-logo-wrap { order: -1; }
  .hero-logo-card img { width: 190px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 14px 20px 24px;
    gap: 4px;
    display: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .nav-links .btn { margin-left: 0; margin-top: 8px; text-align: center; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .photo-banner { min-height: 260px; }
  .photo-banner-content { padding: 26px; }
  .form-row { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
