:root {
  --navy: #0e1c3d;
  --navy-dark: #081228;
  --orange: #f3811f;
  --orange-dark: #d96c0f;
  --grey-bg: #f5f6f8;
  --text: #1e2430;
  --text-light: #5a6272;
  --white: #ffffff;
}

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

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text {
  color: var(--white);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}
.logo-text span { color: var(--orange); }
nav ul { list-style: none; display: flex; gap: 28px; }
nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
nav a:hover, nav a.active { color: var(--orange); }
.header-cta {
  display: flex;
  gap: 10px;
}
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover { background: var(--orange-dark); }
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-whatsapp:hover { background: #1ebe57; }
.nav-toggle { display: none; }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 64px 0 0 0;
  overflow: hidden;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--orange); }
.hero p { font-size: 1.1rem; color: #cdd3e0; margin-bottom: 28px; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img img { border-radius: 8px; box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.hero-banner-full { width: 100%; }
.hero-banner-full img { width: 100%; border-radius: 0; }

/* Trust strip */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid #e7e9ee;
  padding: 22px 0;
}
.trust-strip .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  text-align: center;
}
.trust-item { flex: 1; min-width: 150px; }
.trust-item strong { display: block; color: var(--navy); font-size: 1rem; }
.trust-item span { color: var(--text-light); font-size: 0.85rem; }

/* Section generic */
section { padding: 72px 0; }
.section-alt { background: var(--grey-bg); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.eyebrow {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 10px;
}
.section-head h2 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.section-head p { color: var(--text-light); font-size: 1.05rem; }

/* Cards grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid #e7e9ee;
  border-radius: 10px;
  padding: 30px 26px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(14,28,61,0.1); }
.card h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--text-light); font-size: 0.95rem; }
.card .icon {
  width: 48px; height: 48px;
  background: rgba(243,129,31,0.12);
  color: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

/* Image gallery row (from hero banner crops - reuse full banner strip as visual break) */
.photo-strip img { width: 100%; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 56px 0;
}
.cta-banner h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.cta-banner p { margin-bottom: 26px; font-size: 1.05rem; opacity: 0.95; }
.cta-banner .btn-outline { border-color: var(--white); }
.cta-banner .btn-outline:hover { background: var(--white); color: var(--orange-dark); }

/* Long-form content page (Services / Landlords / About) */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0 44px;
  text-align: center;
}
.page-header .eyebrow { color: var(--orange); }
.page-header h1 { font-size: 2.2rem; font-weight: 800; }
.page-header p { color: #cdd3e0; margin-top: 12px; max-width: 640px; margin-left: auto; margin-right: auto; }

.content-block { margin-bottom: 44px; }
.content-block h2 {
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 14px;
  padding-left: 16px;
  border-left: 4px solid var(--orange);
}
.content-block > p { color: var(--text-light); margin-bottom: 8px; }

.service-list { list-style: none; }
.service-list li {
  padding: 18px 0;
  border-bottom: 1px solid #e7e9ee;
}
.service-list li:last-child { border-bottom: none; }
.service-list strong { color: var(--navy); display: block; margin-bottom: 4px; font-size: 1.02rem; }
.service-list span { color: var(--text-light); font-size: 0.95rem; }

.closing-box {
  background: var(--grey-bg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  margin-top: 50px;
}
.closing-box p.quote { font-size: 1.1rem; color: var(--navy); font-style: italic; margin-bottom: 8px; }
.closing-box p.tagline { color: var(--orange); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; }

.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 20px; }
.why-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid #e7e9ee;
  border-radius: 8px;
  padding: 16px 18px;
}
.why-item .check {
  color: var(--orange);
  font-weight: 900;
  font-size: 1.1rem;
}

/* Placeholder block for missing content */
.placeholder-block {
  border: 2px dashed #c9cfdb;
  background: #fafbfc;
  border-radius: 10px;
  padding: 36px 24px;
  text-align: center;
  color: var(--text-light);
}
.placeholder-block strong { color: var(--navy); display: block; margin-bottom: 6px; }

/* Recent work gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-thumb:hover { transform: scale(1.04); box-shadow: 0 6px 18px rgba(0,0,0,0.18); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .gallery-grid { grid-template-columns: 1fr; } }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 25, 0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 88vw;
  max-height: 86vh;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 28px;
  font-size: 2.4rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  padding: 12px 18px;
  user-select: none;
}
.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }
@media (max-width: 600px) {
  .lightbox-close { top: 10px; right: 16px; font-size: 2rem; }
  .lightbox-nav { font-size: 1.5rem; padding: 8px 12px; }
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-item { margin-bottom: 26px; }
.contact-info-item strong { display: block; color: var(--navy); margin-bottom: 4px; }
.contact-info-item a, .contact-info-item span { color: var(--text-light); }
form { display: flex; flex-direction: column; gap: 14px; }
input, textarea {
  padding: 12px 14px;
  border: 1px solid #d6dae3;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
}
textarea { min-height: 130px; resize: vertical; }
form .btn { border: none; cursor: pointer; align-self: flex-start; }

/* Footer */
footer {
  background: var(--navy-dark);
  color: #b8bfd0;
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-grid h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-grid a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid #1c2a4d;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
}

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 200;
}

@media (max-width: 860px) {
  nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
