/* ============================================================
   QCS GLOBAL PROPERTIES — MAIN STYLESHEET
   Fonts: Cormorant Garant (display), Syne (heading), DM Sans (body)
   ============================================================ */

/* === GOOGLE FONTS IMPORT === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,400;0,600;0,700;1,400;1,700&family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1a30cc;
  --blue-dark: #0e1d8f;
  --blue-light: #3d5cf5;
  --blue-glow: rgba(26,48,204,0.12);
  --blue-tint: #eef1fb;
  --red: #cc2020;
  --red-tint: rgba(204,32,32,0.1);
  --green: #1a9940;
  --green-tint: rgba(26,153,64,0.1);
  --white: #ffffff;
  --off-white: #f7f9ff;
  --grey-light: #eef1fb;
  --grey: #dde2f4;
  --dark: #07092a;
  --text: #181f58;
  --text-muted: #6070a8;
  --font-display: 'Cormorant Garant', Georgia, serif;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 40px; --r-full: 9999px;
  --sh-sm: 0 2px 12px rgba(26,48,204,0.08);
  --sh-md: 0 8px 32px rgba(26,48,204,0.12);
  --sh-lg: 0 20px 60px rgba(26,48,204,0.16);
  --sh-glow: 0 0 50px rgba(26,48,204,0.22);
  --ease: cubic-bezier(0.4,0,0.2,1);
  --t: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* === LAYOUT === */
.ctr { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 3rem); }
.section { padding: clamp(70px, 8vw, 120px) 0; }
.section-sm { padding: clamp(40px, 5vw, 72px) 0; }

/* === SECTION LABELS & TITLES === */
.s-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-heading); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue);
  background: var(--blue-glow); border: 1px solid rgba(26,48,204,0.18);
  padding: 5px 14px 5px 10px; border-radius: var(--r-full); margin-bottom: 14px;
}
.s-label-dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; display: inline-block; }
.s-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--dark); line-height: 1.12; margin-bottom: 14px;
}
.s-title em { font-style: normal; color: var(--blue); }
.s-sub {
  font-size: clamp(0.88rem, 1.4vw, 1rem); color: var(--text-muted);
  max-width: 540px; line-height: 1.8;
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.06em; padding: 14px 28px; border-radius: var(--r-full);
  border: 2px solid transparent; transition: var(--t); white-space: nowrap; line-height: 1;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-blue { background: var(--blue); color: white; border-color: var(--blue); box-shadow: 0 4px 20px rgba(26,48,204,0.25); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); box-shadow: var(--sh-glow); }
.btn-red { background: var(--red); color: white; border-color: var(--red); }
.btn-red:hover { background: #a81818; border-color: #a81818; }
.btn-green { background: var(--green); color: white; border-color: var(--green); }
.btn-green:hover { background: #127030; border-color: #127030; }
.btn-outline-blue { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: white; }
.btn-outline-white { background: transparent; color: white; border-color: rgba(255,255,255,0.55); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; }
.btn-sm { padding: 10px 22px; font-size: 0.75rem; }
.btn-white { background: white; color: var(--blue); border-color: white; box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.btn-white:hover { background: var(--blue-tint); }

/* === REVEAL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-48px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-l.in { opacity: 1; transform: none; }
.reveal-r { opacity: 0; transform: translateX(48px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-r.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; } .d5 { transition-delay: 0.5s; }

/* === KEYFRAMES === */
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }
@keyframes floatYR { 0%,100%{transform:translateY(0)} 50%{transform:translateY(14px)} }
@keyframes floatX { 0%,100%{transform:translateX(0)} 50%{transform:translateX(12px)} }
@keyframes rotateSlow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes rotateSlowRev { from{transform:rotate(0deg)} to{transform:rotate(-360deg)} }
@keyframes slideIn { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes scaleIn { from{opacity:0;transform:scale(0.93)} to{opacity:1;transform:scale(1)} }
@keyframes progressBar { from{width:0%} to{width:100%} }
@keyframes shimmer { 0%{background-position:-200% center} 100%{background-position:200% center} }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* === NAVBAR === */
.qcs-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.35s ease;
  border-bottom: 1px solid transparent;
}
.qcs-nav.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: 0 2px 24px rgba(26,48,204,0.09);
  border-bottom-color: var(--grey-light);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.nav-logo-img { height: 58px; width: auto; max-width: 200px; object-fit: contain; display: block; }
.nav-links {
  display: flex; gap: 26px; align-items: center; list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--text); transition: color 0.2s;
  padding: 4px 0; position: relative; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--blue); border-radius: 2px; transition: width 0.25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600;
  color: var(--text-muted); letter-spacing: 0.02em; white-space: nowrap;
}
.nav-cta-btn { white-space: nowrap; }

/* ── HAMBURGER (hidden on desktop, shown on mobile) ── */
.nav-hamburger {
  display: none; /* hidden by default — shown via media query below */
  background: none; border: 1.5px solid var(--grey); border-radius: 8px;
  padding: 8px 10px; flex-direction: column; gap: 5px;
  cursor: pointer; flex-shrink: 0;
}
.ham-bar {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px; transition: all 0.3s;
}
.nav-hamburger.open .ham-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open .ham-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open .ham-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU (off-canvas slide-down) ── */
.nav-mobile-menu {
  display: none; background: white; padding: 8px 24px 24px;
  border-top: 1px solid var(--grey); flex-direction: column; gap: 0;
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.nav-mobile-menu.open {
  display: flex; max-height: 600px;
}
.nav-mobile-menu a {
  font-family: var(--font-heading); font-size: 0.92rem; font-weight: 600;
  color: var(--text); padding: 13px 0; border-bottom: 1px solid var(--grey-light);
  transition: color 0.2s; display: block;
}
.nav-mobile-menu a:hover { color: var(--blue); }
.nav-mobile-actions {
  display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap;
}
.nav-mobile-actions .btn { flex: 1; justify-content: center; min-width: 120px; }

/* === HERO SLIDER === */
.hero-section {
  position: relative; min-height: 100vh; overflow: hidden;
  padding-top: 72px; background: var(--off-white);
}
.hero-img-panel {
  position: absolute; top: 0; right: 0; width: 52%; height: 100%;
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0; overflow: hidden;
}
.hero-img-panel img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-img-overlay-l { position: absolute; inset: 0; background: linear-gradient(to right, var(--off-white) 0%, transparent 25%); }
.hero-img-overlay-b { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,9,42,0.25) 0%, transparent 50%); }
.hero-shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-content-wrap {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  min-height: calc(100vh - 72px);
  padding-top: 40px; padding-bottom: 160px;
}
.hero-content { max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,48,204,0.08); border: 1px solid rgba(26,48,204,0.2);
  border-radius: 100px; padding: 6px 16px 6px 10px; margin-bottom: 28px;
  animation: slideIn 0.55s ease both;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.hero-badge-text {
  font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue);
}
.hero-h1 {
  font-family: var(--font-display); font-size: clamp(2.8rem, 5.8vw, 5.2rem);
  font-weight: 700; line-height: 1.08; color: var(--dark); margin-bottom: 22px;
}
.hero-h1 span { display: block; }
.hero-h1 .hero-h1-accent { color: var(--blue); }
.hero-sub {
  font-size: clamp(0.92rem, 1.5vw, 1.05rem); color: var(--text-muted);
  line-height: 1.8; max-width: 460px; margin-bottom: 36px;
  animation: slideIn 0.6s ease 0.34s both;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 52px; animation: slideIn 0.6s ease 0.46s both; }
.hero-cta-text {
  font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.05em; color: var(--text); padding: 12px 0;
  border-bottom: 2px solid var(--blue); transition: color 0.2s;
}
.hero-cta-text:hover { color: var(--blue); }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; animation: slideIn 0.6s ease 0.58s both; }
.hero-stat-num {
  font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; color: var(--blue); line-height: 1;
}
.hero-stat-label { font-family: var(--font-body); font-size: 0.72rem; color: var(--text-muted); margin-top: 3px; letter-spacing: 0.04em; }
.hero-dots { position: absolute; bottom: 76px; left: clamp(1rem, 4vw, 3rem); z-index: 5; display: flex; gap: 8px; align-items: center; }
.hero-dot {
  width: 7px; height: 7px; border-radius: 100px; border: none; padding: 0;
  background: rgba(26,48,204,0.28); transition: all 0.35s ease; cursor: pointer;
}
.hero-dot.active { width: 28px; background: var(--blue); }
.hero-nav-prev, .hero-nav-next {
  position: absolute; bottom: 66px; z-index: 5;
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; box-shadow: var(--sh-sm); transition: var(--t);
}
.hero-nav-prev { right: 70px; background: white; border: 1px solid var(--grey); color: var(--blue); }
.hero-nav-next { right: 20px; background: var(--blue); border: none; color: white; }
.hero-nav-prev:hover { background: var(--blue-tint); }
.hero-nav-next:hover { background: var(--blue-dark); }
.hero-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--grey-light); z-index: 7; }
.hero-progress-bar { height: 100%; background: linear-gradient(90deg, var(--blue), var(--red)); animation: progressBar 6.5s linear forwards; transform-origin: left; }

/* Hero Search Panel */
.hero-search-panel {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: calc(100% - 3rem); max-width: 880px; z-index: 6;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 40px rgba(26,48,204,0.1);
  padding: 22px 28px;
}
.hero-search-grid { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; }
.hero-search-field { flex: 1 1 130px; min-width: 110px; }
.hero-search-label {
  font-family: var(--font-heading); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 5px;
}
.hero-search-select {
  width: 100%; border: none; border-bottom: 1.5px solid var(--grey);
  padding: 7px 0; font-family: var(--font-body); font-size: 0.84rem;
  color: var(--text); background: transparent; outline: none; cursor: pointer;
  appearance: none; -webkit-appearance: none;
}
.hero-search-mobile-btn {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  z-index: 6; background: white; color: var(--blue); border-radius: 100px;
  padding: 11px 28px; font-family: var(--font-heading); font-size: 0.8rem;
  font-weight: 700; letter-spacing: 0.06em; box-shadow: var(--sh-md);
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  border: none;
}

/* === WELCOME / ABOUT SECTION === */
.welcome-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.welcome-img-wrap { position: relative; padding-bottom: 40px; }
.welcome-main-img {
  border-radius: 28px 28px 80px 28px; overflow: hidden;
  box-shadow: var(--sh-lg); position: relative; z-index: 2;
}
.welcome-main-img img { width: 100%; height: 420px; object-fit: cover; transition: transform 0.5s ease; }
.welcome-main-img:hover img { transform: scale(1.04); }
.welcome-accent-tl { position: absolute; top: -18px; left: -18px; width: 100px; height: 100px; border-radius: 24px; background: var(--blue); z-index: 1; opacity: 0.12; }
.welcome-accent-br { position: absolute; bottom: 10px; right: -16px; width: 80px; height: 80px; border-radius: 50%; background: var(--green); opacity: 0.12; z-index: 1; }
.welcome-stat-card {
  position: absolute; bottom: 0; left: -24px; z-index: 4;
  background: white; border-radius: 16px; padding: 18px 24px;
  box-shadow: var(--sh-md); border: 1px solid var(--grey-light);
  display: flex; align-items: center; gap: 16;
}
.welcome-stat-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-tint); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.welcome-stat-num { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: var(--blue); line-height: 1; }
.welcome-stat-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.welcome-badge {
  position: absolute; top: 24px; right: -20px; z-index: 4;
  background: var(--blue); border-radius: 14px; padding: 14px 18px;
  box-shadow: var(--sh-md); color: white;
}
.welcome-badge-num { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; line-height: 1; }
.welcome-badge-label { font-size: 0.68rem; opacity: 0.85; margin-top: 2px; }
.welcome-divider { width: 48px; height: 4px; background: linear-gradient(90deg, var(--blue), var(--red)); border-radius: 2px; margin-bottom: 22px; }
.welcome-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.welcome-pill {
  font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px;
}
.welcome-quote {
  border-left: 3px solid var(--blue); padding: 16px 20px;
  background: var(--grey-light); border-radius: 0 12px 12px 0; margin-bottom: 32px;
}
.welcome-quote p {
  font-family: var(--font-display); font-size: 1rem; font-style: italic;
  color: var(--text); line-height: 1.7; margin-bottom: 8px;
}
.welcome-quote cite {
  font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700;
  color: var(--blue); letter-spacing: 0.06em; font-style: normal;
}

/* === STATS BAR === */
.stats-bar {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  position: relative; overflow: hidden;
}
.stats-bar-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 3vw, 40px); position: relative; z-index: 2; }
.stat-item { text-align: center; }
.stat-icon { font-size: 1.6rem; margin-bottom: 8px; }
.stat-num { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: white; line-height: 1; margin-bottom: 6px; }
.stat-label { font-family: var(--font-body); font-size: clamp(0.72rem, 1.2vw, 0.82rem); color: rgba(255,255,255,0.75); line-height: 1.4; }

/* === SERVICES === */
.services-header { text-align: center; margin-bottom: clamp(48px, 6vw, 80px); }
.service-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.service-img-wrap { position: relative; }
.service-img {
  overflow: hidden; position: relative; z-index: 2; box-shadow: var(--sh-lg);
}
.service-img img { width: 100%; height: 420px; object-fit: cover; transition: transform 0.6s ease; }
.service-img:hover img { transform: scale(1.05); }
.service-img-tl { border-radius: 28px 60px 28px 28px; }
.service-img-tr { border-radius: 60px 28px 28px 28px; }
.service-blob {
  position: absolute; width: 100px; height: 100px; border-radius: 50%; z-index: 1;
  animation: floatY 6s ease-in-out infinite;
}
.service-tag {
  position: absolute; top: 24px; z-index: 4; background: white; border-radius: 12px;
  padding: 12px 18px; box-shadow: var(--sh-md);
  display: flex; align-items: center; gap: 10;
}
.service-tag-icon { font-size: 20px; }
.service-tag-text { font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.service-mini-label {
  display: inline-flex; align-items: center; gap: 7px; border-radius: 100px;
  padding: 5px 14px 5px 10px; margin-bottom: 18px;
}
.service-mini-dot { width: 6px; height: 6px; border-radius: 50%; }
.service-mini-text { font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.service-h3 { font-family: var(--font-display); font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 700; color: var(--dark); line-height: 1.15; margin-bottom: 18px; }
.service-divider { width: 40px; height: 3px; border-radius: 2px; margin-bottom: 20px; }
.service-points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.service-point { display: flex; align-items: center; gap: 10; }
.service-point-dot { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.service-point-dot span { font-size: 10px; color: white; font-weight: 700; }
.service-extras { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.service-extra-card {
  background: white; border-radius: 20px; padding: 28px 32px;
  display: flex; gap: 20px; align-items: flex-start;
  box-shadow: var(--sh-sm); border: 1px solid var(--grey-light); transition: all 0.3s ease;
}
.service-extra-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.service-extra-icon { font-size: 32px; flex-shrink: 0; }
.service-extra-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.service-extra-desc { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; }

/* === PROPERTIES === */
.props-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: clamp(40px, 5vw, 64px); }
.props-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 28px); }
.prop-card {
  background: white; border-radius: 24px; overflow: hidden;
  box-shadow: var(--sh-sm); border: 1px solid var(--grey-light);
  transition: all 0.35s ease; display: flex; flex-direction: column;
}
.prop-card:hover { box-shadow: var(--sh-lg); transform: translateY(-8px); }
.prop-card-img { position: relative; overflow: hidden; height: 240px; }
.prop-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.prop-card:hover .prop-card-img img { transform: scale(1.08); }
.prop-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,9,42,0.5) 0%, transparent 60%); }
.prop-badge {
  position: absolute; top: 16px; left: 16px; color: white;
  font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px;
}
.prop-status {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.95); color: var(--dark);
  font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700;
  padding: 5px 12px; border-radius: 100px; backdrop-filter: blur(8px);
}
.prop-price {
  position: absolute; bottom: 16px; left: 16px; color: white;
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; line-height: 1;
}
.prop-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.prop-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.prop-location { display: flex; align-items: center; gap: 6px; color: var(--text-muted); font-size: 0.8rem; }
.prop-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.prop-specs { display: flex; gap: 16px; padding-top: 12px; border-top: 1px solid var(--grey-light); }
.prop-spec { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--text-muted); }
.prop-actions { display: flex; gap: 10px; margin-top: 4px; }
.prop-cta-box {
  text-align: center; margin-top: 56px; padding: 40px;
  background: white; border-radius: 24px; box-shadow: var(--sh-sm); border: 1px solid var(--grey-light);
}
.prop-cta-box h3 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.prop-cta-box p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.92rem; }

/* === WHY CHOOSE US === */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.why-img-wrap { position: relative; min-height: 500px; }
.why-main-img {
  border-radius: 28px 80px 28px 28px; overflow: hidden;
  box-shadow: var(--sh-lg); position: relative; z-index: 2;
}
.why-main-img img { width: 100%; height: 460px; object-fit: cover; }
.why-main-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,9,42,0.55) 0%, transparent 55%); }
.why-main-caption {
  position: absolute; bottom: 24px; left: 24px; color: white;
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; line-height: 1.1;
}
.why-card {
  position: absolute; top: 32px; right: -28px; z-index: 4;
  background: white; border-radius: 18px; padding: 20px 24px;
  box-shadow: var(--sh-md); border: 1px solid var(--grey-light); max-width: 200px;
}
.why-card-icon { font-size: 28px; margin-bottom: 8px; }
.why-card-num { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--blue); line-height: 1; }
.why-card-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; line-height: 1.4; }
.why-locations {
  position: absolute; bottom: -20px; left: 20px; right: 20px; z-index: 4;
  background: var(--blue); border-radius: 14px; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.why-locations-label { color: rgba(255,255,255,0.7); font-family: var(--font-heading); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.why-location-tag {
  background: rgba(255,255,255,0.15); color: white;
  font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
}
.why-divider { width: 48px; height: 4px; background: linear-gradient(90deg, var(--blue), var(--green)); border-radius: 2px; margin-bottom: 32px; }
.why-point {
  display: flex; gap: 18px; padding: 18px 0;
  border-bottom: 1px solid var(--grey-light);
  transition: all 0.2s ease; cursor: default;
}
.why-point:last-child { border-bottom: none; }
.why-point:hover { padding-left: 8px; }
.why-point-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.why-point-title { font-family: var(--font-heading); font-size: 0.92rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.why-point-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

/* === TESTIMONIALS === */
.testimonials-section { position: relative; overflow: hidden; }
.testimonials-bg1 { position: absolute; top: -80px; left: -80px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(26,48,204,0.07) 0%, transparent 70%); pointer-events: none; }
.testimonials-bg2 { position: absolute; bottom: -60px; right: -60px; width: 250px; height: 250px; border-radius: 50%; background: radial-gradient(circle, rgba(26,153,64,0.07) 0%, transparent 70%); pointer-events: none; }
.testi-card {
  background: white; border-radius: 28px; padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--sh-lg); border: 1px solid var(--grey-light);
  position: relative; animation: scaleIn 0.45s ease both;
  max-width: 760px; margin: 0 auto;
}
.testi-quote-mark {
  font-family: Georgia, serif; font-size: 6rem; line-height: 0.7;
  color: var(--blue); opacity: 0.12; position: absolute; top: 28px; left: 32px;
  user-select: none; font-weight: 900;
}
.testi-stars { display: flex; gap: 4px; margin-bottom: 24px; justify-content: center; }
.testi-star { color: #f59e0b; font-size: 1.1rem; }
.testi-text {
  font-family: var(--font-display); font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-style: italic; color: var(--text); line-height: 1.75; text-align: center;
  margin-bottom: 32px; position: relative; z-index: 1;
}
.testi-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.testi-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 3px solid var(--blue); box-shadow: 0 0 0 4px var(--blue-tint); }
.testi-name { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.testi-role { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.testi-dots { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 32px; }
.testi-dot { width: 8px; height: 8px; border-radius: 100px; border: none; background: rgba(26,48,204,0.25); transition: all 0.3s ease; cursor: pointer; }
.testi-dot.active { width: 28px; background: var(--blue); }

/* === TEAM === */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.5vw, 28px); }
.team-member { text-align: center; }
.team-avatar-wrap { position: relative; display: inline-block; margin-bottom: 18px; }
.team-avatar-ring { width: 120px; height: 120px; border-radius: 50%; overflow: hidden; margin: 0 auto; }
.team-avatar-ring img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.4s ease; }
.team-avatar-ring:hover img { transform: scale(1.08); }
.team-verified {
  position: absolute; bottom: 2px; right: 2px; width: 22px; height: 22px;
  border-radius: 50%; border: 3px solid white;
  display: flex; align-items: center; justify-content: center; font-size: 10px; color: white; font-weight: 700;
}
.team-name { font-family: var(--font-heading); font-size: 0.92rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; line-height: 1.3; }
.team-role { font-size: 0.75rem; font-family: var(--font-heading); font-weight: 600; letter-spacing: 0.04em; }

/* === CTA BANNER === */
.cta-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-light) 100%);
  padding: clamp(60px, 8vw, 100px) 0;
}
.cta-banner-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.cta-banner-blob1 { position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.04); animation: floatY 9s ease-in-out infinite; }
.cta-banner-blob2 { position: absolute; bottom: -80px; left: -80px; width: 280px; height: 280px; border-radius: 50%; background: rgba(26,153,64,0.12); animation: floatYR 7s ease-in-out infinite; }
.cta-banner-inner { position: relative; z-index: 2; text-align: center; }
.cta-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px; padding: 6px 16px 6px 10px; margin-bottom: 28px;
}
.cta-label-dot { width: 6px; height: 6px; border-radius: 50%; background: white; }
.cta-label-text { font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: white; }
.cta-h2 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 700; color: white; line-height: 1.1; margin-bottom: 20px; }
.cta-sub { color: rgba(255,255,255,0.8); font-size: clamp(0.9rem, 1.5vw, 1.05rem); max-width: 500px; margin: 0 auto 36px; line-height: 1.75; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact-info-title { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--dark); margin-bottom: 14px; line-height: 1.15; }
.contact-info-sub { color: var(--text-muted); margin-bottom: 36px; line-height: 1.8; font-size: 0.95rem; }
.contact-info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-info-label { font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
.contact-info-value { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.contact-socials { display: flex; gap: 12px; }
.contact-social { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: var(--t); }
.contact-form-box {
  background: white; border-radius: 24px; padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--sh-lg); border: 1px solid var(--grey-light);
}
.contact-form-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-label { font-family: var(--font-heading); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 7px; display: block; }
.form-input, .form-textarea, .form-select {
  width: 100%; border: 1.5px solid var(--grey); border-radius: var(--r-md);
  padding: 12px 16px; font-family: var(--font-body); font-size: 0.9rem; color: var(--text);
  background: var(--off-white); outline: none; transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--blue); background: white; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  background: var(--green-tint); border: 1px solid var(--green); border-radius: var(--r-md);
  padding: 14px 18px; color: var(--green); font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; margin-bottom: 18px;
}
.form-error { color: var(--red); font-size: 0.75rem; margin-top: 4px; }

/* === NEWSLETTER === */
.newsletter-section {
  background: linear-gradient(135deg, var(--blue-tint) 0%, white 100%);
  border-top: 1px solid var(--grey);
}
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter-form { display: flex; gap: 10px; margin-top: 28px; }
.newsletter-input {
  flex: 1; border: 1.5px solid var(--grey); border-radius: var(--r-full);
  padding: 14px 22px; font-family: var(--font-body); font-size: 0.9rem; color: var(--text);
  background: white; outline: none; transition: border-color 0.2s;
}
.newsletter-input:focus { border-color: var(--blue); }

/* === FOOTER === */
.qcs-footer { background: var(--dark); color: white; padding: clamp(60px, 8vw, 100px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); margin-bottom: 56px; }
.footer-brand-logo { height: 64px; width: auto; max-width: 180px; object-fit: contain; margin-bottom: 18px; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  transition: var(--t); border: 1px solid rgba(255,255,255,0.12);
}
.footer-social:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.footer-col-title { font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.87rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.84rem; color: rgba(255,255,255,0.7); }
.footer-contact-icon { font-size: 15px; margin-top: 1px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(26,153,64,0.15); border: 1px solid rgba(26,153,64,0.25);
  border-radius: 100px; padding: 5px 14px; font-family: var(--font-heading);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; color: var(--green);
}
.footer-back-top {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center;
  justify-content: center; color: white; font-size: 16px; transition: var(--t); cursor: pointer;
}
.footer-back-top:hover { background: var(--blue); border-color: var(--blue); }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: white; font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45); transition: var(--t);
  animation: pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); background: #1ebe5d; animation: none; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: clamp(130px, 14vw, 180px) 0 clamp(60px, 8vw, 100px);
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  position: relative; overflow: hidden; text-align: center;
  margin-top: 0; /* navbar is fixed, no push needed here */
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px; padding: 6px 16px 6px 10px; margin-bottom: 24px;
}
.page-hero-label-dot { width: 6px; height: 6px; border-radius: 50%; background: white; }
.page-hero-label-text { font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: white; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; color: white; line-height: 1.1; margin-bottom: 16px; }
.page-hero-sub { color: rgba(255,255,255,0.8); font-size: clamp(0.9rem, 1.5vw, 1.1rem); max-width: 540px; margin: 0 auto; line-height: 1.75; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-top: 20px; justify-content: center; font-family: var(--font-heading); font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { opacity: 0.4; }

/* === PROPERTY SEARCH BAR === */
.prop-search-bar {
  background: white; border-radius: 20px; padding: 24px 32px;
  box-shadow: var(--sh-lg); border: 1px solid var(--grey-light); margin-bottom: 40px;
}
.prop-search-grid { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 16px; align-items: end; }
.prop-search-group label {
  display: block; font-family: var(--font-heading); font-size: 0.62rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px;
}
.prop-search-group select, .prop-search-group input {
  width: 100%; border: none; border-bottom: 1.5px solid var(--grey);
  padding: 8px 0; font-family: var(--font-body); font-size: 0.88rem; color: var(--text);
  background: transparent; outline: none; appearance: none; -webkit-appearance: none;
}

/* === SINGLE PROPERTY === */
.single-prop-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 40px; }
.single-prop-main-img { border-radius: 20px; overflow: hidden; grid-column: 1; grid-row: 1 / 3; height: 500px; }
.single-prop-main-img img { width: 100%; height: 100%; object-fit: cover; }
.single-prop-thumb { border-radius: 14px; overflow: hidden; height: 244px; }
.single-prop-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.single-prop-thumb:hover img { transform: scale(1.05); }
.single-prop-grid { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.single-prop-info { }
.single-prop-price { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--blue); margin-bottom: 8px; }
.single-prop-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; color: var(--dark); line-height: 1.15; margin-bottom: 16px; }
.single-prop-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.single-prop-tag { font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; }
.single-prop-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; background: var(--grey-light); border-radius: 16px; padding: 20px; margin-bottom: 28px; }
.single-prop-spec { text-align: center; }
.single-prop-spec-icon { font-size: 1.4rem; margin-bottom: 6px; }
.single-prop-spec-val { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--dark); }
.single-prop-spec-label { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }
.single-prop-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.single-prop-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.single-prop-feature { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text); }
.single-prop-feature::before { content: '✓'; width: 18px; height: 18px; border-radius: 50%; background: var(--green); color: white; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0; }
.inquiry-box {
  background: white; border-radius: 20px; padding: 28px; box-shadow: var(--sh-md);
  border: 1px solid var(--grey-light); position: sticky; top: 90px;
}
.inquiry-box-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.inquiry-whatsapp {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  background: #25d366; color: white; border-radius: var(--r-full); padding: 14px;
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700;
  margin-bottom: 16px; transition: var(--t);
}
.inquiry-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }

/* === ABOUT PAGE === */
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-value-card {
  text-align: center; padding: 36px 24px; border-radius: 20px;
  background: white; box-shadow: var(--sh-sm); border: 1px solid var(--grey-light);
  transition: var(--t);
}
.about-value-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.about-value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.about-value-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.about-value-desc { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; }

/* === INVESTMENT PAGE === */
.invest-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.invest-feature {
  padding: 28px; background: white; border-radius: 18px;
  box-shadow: var(--sh-sm); border: 1px solid var(--grey-light); transition: var(--t);
}
.invest-feature:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

/* === BLOG === */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--sh-sm); border: 1px solid var(--grey-light); transition: var(--t); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.blog-card-img { height: 220px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 24px; }
.blog-card-cat { font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); background: var(--blue-tint); padding: 4px 12px; border-radius: 100px; display: inline-block; margin-bottom: 12px; }
.blog-card-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--dark); line-height: 1.3; margin-bottom: 10px; }
.blog-card-excerpt { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.blog-card-meta { display: flex; align-items: center; gap: 14px; font-size: 0.75rem; color: var(--text-muted); padding-top: 14px; border-top: 1px solid var(--grey-light); }

/* === PAGINATION === */
.pagination { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 48px; }
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700;
  transition: var(--t); border: 1.5px solid var(--grey);
}
.pagination a { color: var(--text); }
.pagination a:hover { background: var(--blue-tint); border-color: var(--blue); color: var(--blue); }
.pagination .current { background: var(--blue); border-color: var(--blue); color: white; }

/* === 404 PAGE === */
.error-404 { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-404-num { font-family: var(--font-display); font-size: clamp(6rem, 16vw, 12rem); font-weight: 700; color: var(--blue); opacity: 0.12; line-height: 1; margin-bottom: -20px; }
.error-404-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; color: var(--dark); margin-bottom: 16px; }

/* === ADMIN NOTICES === */
.qcs-admin-notice { padding: 12px 20px; border-radius: 8px; margin-bottom: 16px; font-size: 0.88rem; }
.qcs-admin-success { background: var(--green-tint); border-left: 4px solid var(--green); color: var(--green); }
.qcs-admin-error { background: var(--red-tint); border-left: 4px solid var(--red); color: var(--red); }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--grey-light); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }
::selection { background: var(--blue); color: white; }

/* === UTILITY === */
.text-center { text-align: center; }
.text-blue { color: var(--blue); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0 !important; }
.img-hover-zoom { transition: transform 0.5s ease; }
.img-hover-zoom:hover { transform: scale(1.05); }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .welcome-grid, .service-row, .why-grid, .contact-grid { grid-template-columns: 1fr !important; }
  .service-row .order-reverse { order: -1 !important; }
  .single-prop-grid { grid-template-columns: 1fr; }
  .single-prop-gallery { grid-template-columns: 1fr; }
  .single-prop-main-img { grid-row: auto; height: 320px; }
  .single-prop-thumb { height: 200px; }
  .props-grid { grid-template-columns: repeat(2, 1fr); }
  .prop-search-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .invest-features { grid-template-columns: 1fr 1fr; }
  .service-extras { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .hero-section { min-height: 90vh; }
  .hero-img-panel { width: 100%; clip-path: none; opacity: 0.15; }
  .hero-content-wrap { padding-bottom: 120px; }
  .hero-search-panel { display: none; }
  .hero-search-mobile-btn { display: inline-flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .props-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .invest-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .prop-search-grid { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .section-sm { padding: 36px 0; }
  .welcome-stat-card { left: 0; }
  .welcome-badge { right: 0; }
  .why-card { position: static; margin-top: 20px; }
  .why-locations { position: static; margin-top: 20px; }
  .single-prop-specs { grid-template-columns: repeat(2, 1fr); }
  .single-prop-features { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: 2.2rem; }
  .hero-stats { gap: 20px; }
  .hero-nav-prev, .hero-nav-next { bottom: 56px; }
  .hero-dots { bottom: 66px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ============================================================
   QCS PATCH v1.1 — Header spacing, logo, inner pages, buttons
   ============================================================ */

/* === NAV TOP SPACING FIX (desktop) === */
.qcs-nav {
  padding-top: 10px;
  padding-bottom: 10px;
}
.nav-inner {
  height: auto;
  min-height: 62px;
}
@media (min-width: 769px) {
  .nav-logo-img {
    height: 56px;
    max-width: 200px;
    object-fit: contain;
    display: block;
  }
  .nav-phone {
    display: inline-block !important;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
  }
  .nav-wa-btn {
    display: inline-flex !important;
  }
}
@media (max-width: 768px) {
  .nav-wa-btn { display: none; }
}

/* === INNER PAGE TOP OFFSET (clears fixed nav) === */
.page-hero {
  padding-top: calc(72px + 10px + 48px); /* nav height + nav padding + breathing room */
  margin-top: 0;
}
.hero-section {
  padding-top: calc(72px + 10px); /* nav height + nav padding */
}

/* === FOOTER LOGO FIX === */
.footer-logo-wrap {
  display: inline-block;
  background: white;
  border-radius: 12px;
  padding: 8px 14px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.footer-brand-logo {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  filter: none !important;
}
.footer-logo-link {
  display: inline-block;
  text-decoration: none;
}

/* === BUTTONS — ensure all are fully clickable === */
.btn { cursor: pointer !important; user-select: none; }
.btn:focus { outline: 3px solid var(--blue); outline-offset: 2px; }
.btn[href="#"] { pointer-events: auto; cursor: pointer; }
a.btn, button.btn { text-decoration: none; }

/* Services page — link cards */
.service-extra-card { cursor: pointer; }
.service-extra-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }

/* Property card actions */
.prop-actions .btn { pointer-events: auto; }

/* === SERVICE FOOTER LINKS (pull real services dynamically via PHP) === */
.footer-links a { display: block; }

/* === HERO IMG PANEL — ensure image shows on mobile too === */
@media (max-width: 768px) {
  .hero-img-panel {
    opacity: 0.15 !important;
    clip-path: none !important;
    width: 100% !important;
  }
  .hero-content-wrap { padding-bottom: 100px; }
  .page-hero { padding-top: calc(72px + 48px); }
}

/* === BLOG FEATURED POST — mobile stack === */
@media (max-width: 768px) {
  .blog-featured-grid { grid-template-columns: 1fr !important; }
}

/* === NAV PHONE — show on wider desktop only === */
@media (max-width: 1100px) {
  #nav-phone-desktop { display: none !important; }
}

/* === PROP CARD FIXES === */
.prop-card { cursor: default; }
.prop-card a { cursor: pointer; }

/* === ABOUT VALUES — 5-col responsive === */
.about-values {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) {
  .about-values { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .about-values { grid-template-columns: repeat(2, 1fr); }
}

/* === TEAM GRID RESPONSIVE === */
@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === FOOTER GRID RESPONSIVE === */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* === SINGLE.PHP — blog post spacing === */
.blog-single-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* === INQUIRY ADMIN — make status badge clickable === */
.inq-status-badge { display: inline-block; }

/* === NEWSLETTER FORM — full clickable button === */
#qcs-newsletter-form button[type="submit"] {
  flex-shrink: 0;
  cursor: pointer;
}

/* === MOBILE NAV — hamburger always shows on mobile === */
@media (max-width: 768px) {
  .nav-hamburger { display: flex !important; }
  .nav-links { display: none !important; }
}

/* === SERVICES — individual page hero color override === */
.page-hero[style*="background"] {
  background-attachment: scroll;
}

/* === PROPERTY SEARCH BAR === */
.prop-search-bar form button[type="submit"] {
  cursor: pointer;
  white-space: nowrap;
}

/* === 404 PAGE === */
.error-404 { min-height: calc(100vh - 72px); }

/* === PAGINATION LINKS === */
.pagination a, .pagination .page-numbers { cursor: pointer; }

/* ============================================================
   QCS PATCH v1.2 — Mobile, Nav stripe, Logo, Overflow, Carousel
   ============================================================ */

/* === GLOBAL OVERFLOW FIX === */
html, body { overflow-x: hidden; max-width: 100%; }
* { box-sizing: border-box; }
.ctr { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 3rem); }
section, div { max-width: 100%; }

/* === NAV TOP BRAND STRIPE (desktop only) === */
.nav-top-stripe {
  display: none;
}
@media (min-width: 769px) {
  .nav-top-stripe {
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--red) 40%, var(--green) 100%);
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 2;
  }
  .qcs-nav {
    padding-top: 14px;
    padding-bottom: 6px;
  }
  .nav-inner {
    height: auto;
    min-height: 60px;
    align-items: center;
  }
  .nav-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-phone-link:hover { color: var(--blue); }
}
@media (max-width: 768px) {
  .nav-phone-link { display: none; }
  .qcs-nav { padding-top: 0; padding-bottom: 0; }
}

/* === NAV LOGO — no cut-off === */
.nav-logo-img {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .nav-logo-img { height: 44px; }
  .nav-inner { height: 62px; }
}

/* === HAMBURGER — always show on mobile === */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
}
@media (max-width: 768px) {
  .nav-hamburger { display: flex !important; }
  .nav-links { display: none !important; }
  .nav-actions { display: flex; align-items: center; gap: 8px; }
}

/* === REMOVE ALL WHATSAPP FLOAT BUTTONS === */
.whatsapp-float { display: none !important; }
.nav-wa-btn { display: none !important; }

/* === FOOTER LOGO — direct, no white box === */
.footer-logo-link { display: inline-block; text-decoration: none; margin-bottom: 4px; }
.footer-brand-logo {
  height: 60px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  margin-bottom: 14px;
  filter: none !important;
  background: transparent;
  padding: 0;
}
/* Remove old white wrapper if present */
.footer-logo-wrap { background: transparent !important; padding: 0 !important; box-shadow: none !important; border-radius: 0 !important; }

/* === MOBILE — hero section height === */
@media (max-width: 768px) {
  .hero-section {
    min-height: 75vh !important;
  }
  .hero-content-wrap {
    min-height: calc(75vh - 62px);
    padding-top: 24px;
    padding-bottom: 90px;
    align-items: flex-start;
  }
  .hero-h1 { font-size: clamp(1.7rem, 6vw, 2.2rem) !important; }
  .hero-sub { font-size: 0.85rem !important; margin-bottom: 22px !important; }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 1.3rem; }
  .hero-stat-label { font-size: 0.65rem; }
  .hero-img-panel { opacity: 0.14 !important; clip-path: none !important; width: 100% !important; }
}

/* === MOBILE — drastically reduce ALL section title sizes === */
@media (max-width: 768px) {
  .s-title,
  .s-title em,
  h1.s-title, h2.s-title {
    font-size: clamp(1.25rem, 5.5vw, 1.55rem) !important;
    line-height: 1.2 !important;
  }
  .page-hero-title {
    font-size: clamp(1.5rem, 6.5vw, 2rem) !important;
    line-height: 1.15 !important;
  }
  .cta-h2 {
    font-size: clamp(1.3rem, 5.5vw, 1.7rem) !important;
  }
  .service-h3, h3.service-h3 {
    font-size: clamp(1.1rem, 4.5vw, 1.35rem) !important;
  }
  .contact-info-title {
    font-size: clamp(1.2rem, 5vw, 1.5rem) !important;
  }
  .single-prop-title {
    font-size: clamp(1.2rem, 5vw, 1.5rem) !important;
  }
  .single-prop-price {
    font-size: clamp(1.1rem, 4.5vw, 1.4rem) !important;
  }
  .prop-price {
    font-size: 0.95rem !important;
    line-height: 1.3 !important;
  }
  .stat-num { font-size: clamp(1.4rem, 5vw, 1.8rem) !important; }
  .testi-text { font-size: clamp(0.9rem, 3.5vw, 1.05rem) !important; }
  .welcome-quote p { font-size: 0.88rem !important; }
  .welcome-badge-num { font-size: 1rem !important; }
  .welcome-stat-num { font-size: 1.1rem !important; }
}
@media (max-width: 480px) {
  .s-title { font-size: clamp(1.1rem, 5vw, 1.35rem) !important; }
  .page-hero-title { font-size: clamp(1.3rem, 6vw, 1.7rem) !important; }
}

/* === MOBILE — section padding reduction === */
@media (max-width: 768px) {
  .section { padding: 44px 0 !important; }
  .section-sm { padding: 28px 0 !important; }
  .stats-bar { padding: 28px 0 !important; }
}

/* === MOBILE — CTA button centered + smaller === */
@media (max-width: 768px) {
  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .cta-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 12px 22px;
    font-size: 0.78rem;
  }
  .hero-ctas {
    flex-wrap: wrap;
    gap: 10px;
  }
  .hero-ctas .btn {
    flex: 1 1 auto;
    min-width: 140px;
    justify-content: center;
    font-size: 0.78rem;
    padding: 12px 18px;
  }
}

/* === MOBILE — grid layouts === */
@media (max-width: 768px) {
  /* Mission/Vision — single column */
  .mission-vision-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  /* Core values — 2 col 3 row */
  .about-values,
  .about-values-5 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  /* Who we serve — 2 col 3 row */
  .who-we-serve-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  /* Investment journey steps — 2 col 2 row */
  .invest-journey-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  /* Invest features — 2 col */
  .invest-features {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  /* Service extras — 1 col */
  .service-extras { grid-template-columns: 1fr !important; }
  /* Props grid — 1 col */
  .props-grid { grid-template-columns: 1fr !important; }
  /* Blog grid — 1 col */
  .blog-grid { grid-template-columns: 1fr !important; }
  /* Stats grid — 2 col */
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  /* Single prop specs — 2 col */
  .single-prop-specs { grid-template-columns: repeat(2, 1fr) !important; }
  /* Welcome grid — 1 col */
  .welcome-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  /* Service row — 1 col */
  .service-row { grid-template-columns: 1fr !important; gap: 24px !important; }
  .service-row > div { order: unset !important; }
  /* Why grid — 1 col */
  .why-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  /* Contact grid — 1 col */
  .contact-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  /* Single prop grid — 1 col */
  .single-prop-grid { grid-template-columns: 1fr !important; }
  /* About values 5-col */
  .about-values[style*="5"] { grid-template-columns: repeat(2,1fr) !important; }
  /* Team page profiles */
  .team-page-profile {
    flex-direction: column !important;
    text-align: center;
  }
  .team-page-profile > div:first-child {
    margin: 0 auto;
  }
}

/* === MOBILE — team carousel (scroll-snap) === */
@media (max-width: 768px) {
  .team-grid {
    display: flex !important;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 16px !important;
    padding-bottom: 16px;
    padding-right: 1rem;
    -webkit-overflow-scrolling: touch;
    /* no grid - flex row */
    grid-template-columns: unset !important;
  }
  .team-grid::-webkit-scrollbar { display: none; }
  .team-grid { -ms-overflow-style: none; scrollbar-width: none; }
  .team-grid > * {
    scroll-snap-align: start;
    flex: 0 0 76% !important;
    min-width: 0;
    width: 76% !important;
    max-width: none !important;
  }
}

/* === "100% COMMITMENT" BADGE — pin near image on mobile === */
@media (max-width: 768px) {
  .why-img-wrap {
    position: relative !important;
    min-height: 320px;
  }
  .why-main-img {
    margin-bottom: 0;
  }
  .why-card {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 5;
    max-width: 150px;
    padding: 14px 16px;
  }
  .why-locations {
    position: static !important;
    margin-top: 12px;
    border-radius: 12px;
  }
}

/* === ABOUT STAT CARDS — mobile positioning === */
@media (max-width: 768px) {
  .welcome-img-wrap { padding-bottom: 16px; }
  .welcome-stat-card {
    position: static !important;
    display: flex;
    margin-top: 16px;
    width: 100%;
  }
  .welcome-badge {
    position: static !important;
    display: inline-block;
    margin-top: 8px;
  }
}

/* === SINGLE SERVICE — other services 2x2 grid on mobile === */
@media (max-width: 768px) {
  .other-services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .other-services-grid a.service-extra-card {
    flex-direction: column !important;
    gap: 8px !important;
    padding: 16px 12px !important;
  }
}
@media (max-width: 480px) {
  .other-services-grid {
    grid-template-columns: 1fr !important;
  }
}

/* === FOOTER — mobile single column === */
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
}
@media (max-width: 768px) {
  .newsletter-form { flex-direction: column; gap: 10px; }
  .newsletter-input, .newsletter-form .btn { width: 100%; max-width: 100%; justify-content: center; }
}

/* === PROP SEARCH BAR — mobile stack === */
@media (max-width: 768px) {
  .prop-search-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .prop-search-bar { padding: 18px 16px; }
}

/* === HERO SEARCH PANEL hide on mobile === */
@media (max-width: 768px) {
  .hero-search-panel { display: none !important; }
}

/* === PAGE HERO — ensure content clears fixed nav === */
.page-hero {
  padding-top: calc(72px + 18px + 44px) !important;
}
@media (max-width: 768px) {
  .page-hero {
    padding-top: calc(62px + 28px) !important;
    padding-bottom: 32px !important;
  }
  .page-hero-title { word-break: break-word; }
  .breadcrumb { flex-wrap: wrap; justify-content: center !important; }
}

/* === FORM ROW — mobile stack === */
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr !important; }
}

/* === 404 page === */
@media (max-width: 768px) {
  .error-404 { min-height: 70vh; padding: 60px 0; }
  .error-404-num { font-size: 5rem; }
}

/* === GENERAL IMAGE OVERFLOW FIXES === */
img { max-width: 100%; height: auto; }
.service-img img { width: 100%; height: 100%; }
.service-img { overflow: hidden; max-width: 100%; }
.prop-card-img { overflow: hidden; max-width: 100%; }
@media (max-width: 768px) {
  .service-img { height: 240px !important; }
  .service-img img { height: 240px !important; object-fit: cover; }
  .service-blob { display: none; }
  .service-tag { display: none; }
  .welcome-main-img img { height: 280px !important; }
}

/* === HERO SHAPES — prevent overflow === */
.hero-shapes { overflow: hidden !important; }

/* === STICKY INQUIRY BOX — mobile static === */
@media (max-width: 768px) {
  .inquiry-box { position: static !important; top: auto !important; }
}

/* === TEAM PAGE — 1 col per person on mobile === */
@media (max-width: 768px) {
  .team-page-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .team-page-grid > div {
    flex-direction: column !important;
    text-align: center;
    align-items: center !important;
  }
  .team-page-grid > div > div:first-child {
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
  }
}

/* === SINGLE PROPERTY GALLERY — mobile stack === */
@media (max-width: 768px) {
  .single-prop-gallery {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  .single-prop-main-img {
    grid-row: auto !important;
    height: 240px !important;
  }
  .single-prop-thumb { height: 150px !important; }
}

