/* ============================================
   PROPERTY COMPLIANCE LONDON - SHARED STYLES
   ============================================ */

:root {
  --navy: #0e2a50;
  --blue: #1a4a8a;
  --blue-soft: #eef4ff;
  --green: #15803d;
  --green-soft: #dcfce7;
  --green-mid: #22c55e;
  --white: #ffffff;
  --warm: #f8faff;
  --text: #1a2e4a;
  --muted: #6b7fa0;
  --border: #dce6f5;
  --shadow: 0 12px 48px rgba(14,42,80,0.12);
}

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

html { scroll-behavior: smooth; }

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

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

a { color: inherit; }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  padding: 8px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-left {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.topbar a:hover { color: var(--green-mid); }

.topbar-right {
  display: flex;
  gap: 16px;
  align-items: center;
}

.topbar-social {
  display: flex;
  gap: 8px;
}

.topbar-social a {
  width: 26px;
  height: 26px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.topbar-social a:hover { background: var(--green); }

/* ============ NAV ============ */
nav {
  background: white;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 84px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(14,42,80,0.06);
}

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

.logo img {
  background: transparent;
  mix-blend-mode: normal;
}


.nav-center {
  display: flex;
  gap: 8px;
  list-style: none;
  align-items: center;
}

.nav-center > li { position: relative; }

.nav-center > li > a {
  color: var(--navy);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-center > li > a:hover {
  color: var(--green);
  background: var(--warm);
}

.nav-center > li > a.active {
  color: var(--green);
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.2s;
}

.nav-center > li:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* SERVICES DROPDOWN */
.services-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(14,42,80,0.18);
  border: 1px solid var(--border);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 680px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
}

.nav-center > li:hover .services-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dd-card {
  text-decoration: none;
  color: var(--navy);
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}

.dd-card:hover {
  border-color: var(--green);
  background: var(--warm);
  transform: translateY(-3px);
}

.dd-icon { font-size: 28px; margin-bottom: 8px; }

.dd-card h5 { font-size: 12.5px; font-weight: 800; margin-bottom: 3px; }
.dd-card p { font-size: 10.5px; color: var(--muted); }

.dd-viewall {
  grid-column: 1 / -1;
  text-align: center;
  background: var(--navy);
  color: white !important;
  padding: 10px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  margin-top: 4px;
}

.dd-viewall:hover { background: var(--blue); }

/* NAV RIGHT */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--warm);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--navy);
}

.icon-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.nav-tel {
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  display: none;
}

.btn-book {
  background: var(--green);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(21,128,61,0.25);
  transition: all 0.2s;
}

.btn-book:hover { background: #0e6430; transform: translateY(-2px); }

@media (min-width: 1100px) {
  .nav-tel { display: flex; align-items: center; gap: 6px; }
}

/* ============ MOBILE NAV TOGGLE ============ */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--warm);
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
}

/* ============ SEARCH OVERLAY ============ */
.search-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(14,42,80,0.5);
  z-index: 999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

.search-overlay.active { display: flex; }

.search-box {
  background: white;
  border-radius: 16px;
  padding: 30px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.search-box h3 {
  font-family: 'Lora', serif;
  color: var(--navy);
  margin-bottom: 16px;
  font-size: 20px;
}

.search-box-row {
  display: flex;
  gap: 10px;
}

.search-box input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Nunito', sans-serif;
  outline: none;
}

.search-box input:focus { border-color: var(--green); }

.search-box button {
  background: var(--green);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
}

.search-suggestions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-suggestions a {
  background: var(--warm);
  border: 1.5px solid var(--border);
  border-radius: 30px;
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}

.search-suggestions a:hover { border-color: var(--green); color: var(--green); }

.search-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 22px;
  cursor: pointer;
  color: var(--muted);
  background: none;
  border: none;
}

.search-box { position: relative; }

/* ============ CONTACT CARD POPUP ============ */
.contact-card-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(14,42,80,0.5);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.contact-card-overlay.active { display: flex; }

.contact-card-panel {
  background: white;
  width: 100%;
  max-width: 420px;
  height: 100%;
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(0,0,0,0.2);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.ccp-header {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 36px 28px;
  position: relative;
}

.ccp-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 22px;
  cursor: pointer;
  color: white;
  background: rgba(255,255,255,0.15);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.ccp-header img { height: 50px; margin-bottom: 16px; }

.ccp-header h2 {
  font-family: 'Lora', serif;
  color: white;
  font-size: 24px;
  margin-bottom: 8px;
}

.ccp-header p {
  color: rgba(255,255,255,0.75);
  font-size: 13.5px;
}

.ccp-body { padding: 28px; }

.ccp-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
}

.ccp-item:hover { background: var(--warm); margin: 0 -10px; padding: 16px 10px; border-radius: 10px; }

.ccp-icon {
  width: 46px;
  height: 46px;
  background: var(--green-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.ccp-item h4 { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 3px; }
.ccp-item p { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

.ccp-hours {
  background: var(--warm);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  margin-top: 20px;
}

.ccp-hours h4 { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.ccp-hours-row { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--muted); padding: 4px 0; }
.ccp-hours-row span:last-child { font-weight: 700; color: var(--navy); }

.ccp-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 20px;
}

.ccp-cta {
  display: block;
  background: var(--green);
  color: white;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  margin-top: 20px;
}

/* ============ STICKY MOBILE BAR ============ */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  z-index: 300;
  padding: 10px;
  gap: 10px;
}

.mobile-sticky-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
}

.msb-call { background: var(--navy); color: white; }
.msb-whatsapp { background: #25D366; color: white; }
.msb-quote { background: var(--green); color: white; }

@media (max-width: 880px) {
  .mobile-sticky-bar { display: flex; }
  body { padding-bottom: 70px; }
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 250;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
}

@media (max-width: 880px) {
  .whatsapp-float { bottom: 90px; right: 16px; width: 52px; height: 52px; font-size: 26px; }
}

/* ============ COMMON SECTION STYLES ============ */
section { padding: 90px 60px; }

@media (max-width: 880px) {
  section { padding: 50px 24px; }
  nav { padding: 0 20px; }
  .topbar { padding: 8px 20px; }
}

.label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.title {
  font-family: 'Lora', serif;
  font-size: 38px;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.25;
}

.sub {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
}

.sh { text-align: center; margin-bottom: 52px; }
.sh .sub { margin: 0 auto; }

@media (max-width: 880px) {
  .title { font-size: 28px; }
}

/* ============ BUTTONS ============ */
.btn-main {
  background: var(--green);
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(21,128,61,0.25);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-main:hover { background: #0e6430; transform: translateY(-2px); }

.btn-call {
  background: var(--blue-soft);
  color: var(--navy);
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-call:hover { border-color: var(--navy); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-outline-navy:hover { background: var(--navy); color: white; }

/* ============ FOOTER ============ */
footer { background: #07182e; padding: 60px 60px 0; }
.foot { max-width: 1200px; margin: 0 auto; }

.foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 44px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.foot-brand img { height: 50px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.foot-brand p { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.7; margin-bottom: 16px; }

.foot-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.foot-badge {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: #4ade80;
  padding: 4px 11px;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 700;
}

.foot-col h4 {
  color: white;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13.5px; transition: color 0.2s; }
.foot-col ul li a:hover { color: var(--green-mid); }

.foot-contact-list { display: flex; flex-direction: column; gap: 14px; }
.foot-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.foot-contact-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.foot-contact-item div { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.foot-contact-item strong { color: white; display: block; margin-bottom: 2px; font-size: 13.5px; }

.foot-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
}

.foot-bottom p { color: rgba(255,255,255,0.35); font-size: 12px; }
.foot-bottom-links { display: flex; gap: 20px; }
.foot-bottom-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 12px; }
.foot-bottom-links a:hover { color: var(--green-mid); }

@media (max-width: 980px) {
  .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  footer { padding: 40px 24px 0; }
}

@media (max-width: 600px) {
  .foot-top { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; text-align: center; }
}

/* ============ MOBILE NAV MENU ============ */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; right: -100%;
  width: 80%;
  max-width: 340px;
  height: 100%;
  background: white;
  z-index: 998;
  box-shadow: -10px 0 40px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active { right: 0; }

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-header img { height: 40px; }

.mobile-menu ul { list-style: none; padding: 12px; }
.mobile-menu ul li a {
  display: block;
  padding: 14px 16px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
}
.mobile-menu ul li a:hover { background: var(--warm); color: var(--green); }

.mobile-menu-sub {
  list-style: none;
  padding-left: 20px;
}
.mobile-menu-sub li a { font-size: 13.5px; font-weight: 600; color: var(--muted); padding: 10px 16px; }

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.4);
  z-index: 997;
}
.mobile-menu-overlay.active { display: block; }

.mobile-menu-footer {
  margin-top: auto;
  padding: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 1100px) {
  .nav-center { display: none; }
  .nav-toggle { display: flex; }
}

/* ============ PAGE HEADER (for sub-pages) ============ */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 60px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34,197,94,0.1) 0%, transparent 70%);
  top: -200px; right: -100px;
  border-radius: 50%;
}

.page-header .label { color: var(--green-mid); }
.page-header h1 {
  font-family: 'Lora', serif;
  font-size: 42px;
  color: white;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }

@media (max-width: 880px) {
  .page-header { padding: 40px 24px; }
  .page-header h1 { font-size: 28px; }
}

/* ============ CTA BAND (reusable) ============ */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.12), transparent 70%);
}
.cta-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-band h2 { font-family: 'Lora', serif; font-size: 36px; color: white; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.7; }
.cta-band-right { display: flex; flex-direction: column; gap: 12px; }

.cta-card-link {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: all 0.25s;
}
.cta-card-link:hover { background: rgba(255,255,255,0.14); transform: translateX(4px); }
.cta-card-link.green { background: var(--green); border-color: var(--green); }
.cta-card-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.cta-card-link h4 { color: white; font-size: 14.5px; font-weight: 800; margin-bottom: 2px; }
.cta-card-link p { color: rgba(255,255,255,0.7); font-size: 12px; }

@media (max-width: 880px) {
  .cta-band-inner { grid-template-columns: 1fr; }
  .cta-band { padding: 50px 24px; }
}
