/* ===========================
   ROOT & RESET
   =========================== */
:root {
  --blue: #0891B2;
  --blue-dark: #0778A0;
  --black: #0d0f11;
  --off-black: #111;
  --dark-gray: #1a1a1a;
  --mid-gray: #6b7280;
  --light-gray: #f7f7f7;
  --border: #e5e7eb;
  --white: #ffffff;
}

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

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--dark-gray);
  line-height: 1.6;
}

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

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.15;
  font-weight: 600;
}

p { line-height: 1.75; }

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

/* ===========================
   HEADER
   =========================== */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--black);
  color: white;
  padding: 0 2.5rem;
  z-index: 1000;
  transition: height 0.4s ease;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-shrink: 0;
}

.nav a {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav a:hover,
.nav a.active { color: white; }

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

#logo-properties {
  height: 65px;
  width: auto;
  transition: height 0.4s ease;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.quote-button {
  background: var(--blue);
  color: white !important;
  padding: 0.55rem 1.3rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.quote-button:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

/* ===========================
   NAV DROPDOWN (Services)
   =========================== */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item > a::after {
  content: '▾';
  font-size: 0.65rem;
  opacity: 0.7;
  transition: transform 0.2s;
  display: inline-block;
}

.nav-item:hover > a::after {
  transform: rotate(180deg);
}

/* Invisible bridge fills the gap so mouse doesn't lose hover */
.nav-item::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 22px;
  display: none;
}

.nav-item:hover::before {
  display: block;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  min-width: 195px;
  padding: 0.4rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 200;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(255,255,255,0.08);
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #111;
}

.nav-item:hover .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s, background 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-dropdown a:last-child {
  border-bottom: none;
}

.nav-dropdown a:hover {
  color: white;
  background: rgba(255,255,255,0.05);
}

/* The 55 Club — highlighted nav link */
.nav-club {
  color: var(--blue) !important;
  font-weight: 600 !important;
  border: 1px solid rgba(8,145,178,0.35);
  padding: 0.3rem 0.85rem !important;
  border-radius: 4px;
  transition: background 0.2s, border-color 0.2s, color 0.2s !important;
}

.nav-club:hover {
  background: rgba(8,145,178,0.12) !important;
  border-color: var(--blue) !important;
  color: var(--blue) !important;
}

/* Shrunk header */
.header.small { height: 60px; }
.header.small #logo-properties { height: 36px; }

/* ===========================
   HAMBURGER MENU (Mobile)
   =========================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #111;
  position: fixed;
  top: 110px;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0.5rem 2rem 1.5rem;
  border-top: 1px solid #222;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.9rem 0;
  border-bottom: 1px solid #222;
  transition: color 0.2s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: white; }

.mobile-menu .mobile-quote-btn {
  color: var(--blue);
  padding-top: 1.1rem;
}

/* ===========================
   BANNER / HERO
   =========================== */
.banner {
  position: relative;
  background-image: url('images/Banner.png');
  background-size: cover;
  background-position: center;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 2rem 1.5rem;
}

.banner-eyebrow {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.2rem;
  display: block;
  text-shadow: 0 0 20px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.9);
}

.banner h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1.1rem;
}

.banner-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

.banner-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  background: var(--blue);
  color: white;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  color: white;
}

.btn-ghost {
  background: transparent;
  color: white;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.55);
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
  color: white;
}

.btn-dark {
  background: #1a1a1a;
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  transition: background 0.2s;
}

.btn-dark:hover { background: #333; color: white; }

.btn-primary-light {
  background: white;
  color: var(--black);
  padding: 0.9rem 2.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary-light:hover {
  background: #eee;
  transform: translateY(-2px);
  color: var(--black);
}

/* ===========================
   TRUST BAR
   =========================== */
.trust-bar {
  background: #0f0f0f;
  color: white;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.trust-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 1.1rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.trust-icon {
  color: var(--blue);
  margin-right: 0.5rem;
}

/* ===========================
   SECTION HELPERS
   =========================== */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--mid-gray);
  font-size: 1.05rem;
}

.section-label {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 0.75rem;
}

/* ===========================
   SERVICES (Homepage)
   =========================== */
.services {
  padding: 5.5rem 2rem;
  background: var(--light-gray);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1140px;
  margin: 0 auto;
}

.service {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.12);
}

.service img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-body {
  padding: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-body h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.7rem;
}

.service-body p {
  color: var(--mid-gray);
  font-size: 0.95rem;
  flex: 1;
}

.service-link {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  transition: letter-spacing 0.2s;
}

.service-link:hover { letter-spacing: 0.08em; }

.services-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===========================
   ABOUT US
   =========================== */
.about-us {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 5.5rem 5rem;
  background: white;
}

.about-us img {
  width: 45%;
  max-width: 480px;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.about-text h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.3rem;
}

.about-text p {
  color: var(--mid-gray);
  margin-bottom: 1.1rem;
  font-size: 1rem;
  line-height: 1.8;
}

/* ===========================
   JOIN THE CLUB
   =========================== */
.join-club {
  background: #1a1a1a;
  padding: 5.5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind the content */
.join-club::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(8,145,178,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.join-club-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.join-club-text {
  flex: 1;
  min-width: 0;
}

.join-club-text h2 {
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  margin-bottom: 0.8rem;
}

.join-club-text p {
  color: rgba(255,255,255,0.55);
  font-size: 0.97rem;
  line-height: 1.75;
}

.join-club-form {
  flex: 1;
  min-width: 0;
}

.join-club-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.join-club-fields input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 5px;
  color: white;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.join-club-fields input::placeholder {
  color: rgba(255,255,255,0.35);
}

.join-club-fields input:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(8,145,178,0.08);
}

.join-club-fields .btn-primary {
  width: 100%;
  padding: 0.9rem;
  text-align: center;
  justify-content: center;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.join-club-small {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

@media (max-width: 768px) {
  .join-club-inner {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }
  .join-club-text h2 { font-size: 2.2rem; }
}

/* ===========================
   BRANDS
   =========================== */
.brands {
  background: var(--light-gray);
  padding: 4.5rem 2rem;
}

.brand-images {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.brand-images img {
  height: 70px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter 0.35s, opacity 0.35s;
}

.brand-images img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ===========================
   CTA STRIP
   =========================== */
.cta-strip {
  background: var(--black);
  color: white;
  text-align: center;
  padding: 5.5rem 2rem;
}

.cta-strip h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.cta-strip p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.2rem;
  font-size: 1.05rem;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #060606;
  color: rgba(255,255,255,0.6);
  padding: 4rem 4rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
}

.footer-logo {
  height: 42px;
  width: auto;
  margin-bottom: 1.1rem;
  opacity: 0.8;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.42);
}

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-links h4, .footer-contact h4 {
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: 'Oswald', sans-serif;
}

.footer-links a, .footer-contact a {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.footer-links a:hover, .footer-contact a:hover {
  color: rgba(255,255,255,0.9);
}

.footer-bottom {
  text-align: center;
  padding: 1.4rem 0;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ===========================
   PAGE HERO (Interior pages)
   =========================== */
.page-hero {
  background: var(--black);
  color: white;
  text-align: center;
  padding: 5rem 2rem 4.5rem;
  border-bottom: 1px solid #1a1a1a;
}

.page-hero h1 {
  font-size: 3.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===========================
   SERVICE DETAIL (services.html)
   =========================== */
.service-detail {
  padding: 5.5rem 5rem;
  background: white;
}

.service-detail.alt-bg { background: var(--light-gray); }

.service-detail-inner {
  display: flex;
  align-items: center;
  gap: 5rem;
  max-width: 1140px;
  margin: 0 auto;
}

.service-detail-inner.reverse { flex-direction: row-reverse; }

.service-detail-text { flex: 1; }

.service-detail-text h2 {
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
}

.service-detail-text p {
  color: var(--mid-gray);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.service-features {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-features li {
  color: var(--dark-gray);
  font-size: 0.95rem;
  padding-left: 1.4rem;
  position: relative;
}

.service-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 0.6rem;
  top: 0.35em;
}

.service-detail-image {
  flex: 1;
  max-width: 480px;
  flex-shrink: 0;
}

.service-detail-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
}

/* ===========================
   FAQ (faqs.html)
   =========================== */
.faq-section {
  max-width: 780px;
  margin: 0 auto;
  padding: 5.5rem 2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark-gray);
  letter-spacing: 0.02em;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--blue); }

.faq-icon {
  font-size: 1.4rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-weight: 300;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 0 1.4rem;
  color: var(--mid-gray);
  font-size: 0.97rem;
  line-height: 1.8;
}

.faq-item.open .faq-answer { display: block; }

/* ===========================
   CONTACT (contact.html)
   =========================== */
.contact-section {
  padding: 5.5rem 2rem;
  background: var(--light-gray);
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form-wrap {
  background: white;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.contact-form-wrap h2 {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
  color: var(--mid-gray);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.3rem;
}

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.97rem;
  font-family: inherit;
  color: var(--dark-gray);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-info {
  padding-top: 0.5rem;
}

.contact-info h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.contact-detail-item h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.35rem;
}

.contact-detail-item p {
  color: var(--mid-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-note {
  background: #f0f9ff;
  border-left: 3px solid var(--blue);
  padding: 1rem 1.2rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

/* ===========================
   OSWALD FONT HELPER
   =========================== */
.oswald-regular {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ===========================
   MOBILE RESPONSIVE
   =========================== */
@media (max-width: 960px) {
  .services-container { grid-template-columns: repeat(2, 1fr); }
  .service-detail { padding: 4rem 2.5rem; }
  .service-detail-inner { gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .about-us { padding: 4rem 2.5rem; gap: 3rem; }
}

@media (max-width: 768px) {
  /* Header */
  .nav { display: none; }
  .quote-button { display: none; }
  .hamburger { display: flex; }
  .header { height: 70px; padding: 0 1.25rem; }
  .header.small { height: 60px; }
  #logo-properties { height: 40px; }
  .header.small #logo-properties { height: 32px; }
  .mobile-menu { top: 70px; }

  /* Banner */
  .banner { min-height: 420px; }
  .banner h1 { font-size: 2.8rem; }
  .banner-sub { font-size: 1rem; }

  /* Trust bar */
  .trust-bar { flex-direction: column; }
  .trust-item { width: 100%; }

  /* Services */
  .services { padding: 3.5rem 1.25rem; }
  .services-container { grid-template-columns: 1fr; }

  /* About */
  .about-us { flex-direction: column; padding: 3.5rem 1.5rem; gap: 2rem; }
  .about-us img { width: 100%; max-width: 100%; height: 260px; }

  /* Brands */
  .brands { padding: 3rem 1.25rem; }
  .brand-images { gap: 2rem; }
  .brand-images img { height: 55px; }

  /* CTA */
  .cta-strip { padding: 4rem 1.5rem; }
  .cta-strip h2 { font-size: 2rem; }

  /* Footer */
  .footer { padding: 3rem 1.5rem 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }

  /* Page Hero */
  .page-hero { padding: 3.5rem 1.5rem 3rem; }
  .page-hero h1 { font-size: 2.4rem; }

  /* Service Detail */
  .service-detail { padding: 3.5rem 1.5rem; }
  .service-detail-inner { flex-direction: column !important; gap: 2rem; }
  .service-detail-image { max-width: 100%; width: 100%; }
  .service-detail-image img { height: 260px; }

  /* FAQ */
  .faq-section { padding: 3.5rem 1.25rem; }

  /* Contact */
  .contact-section { padding: 3.5rem 1.25rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row-2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .banner h1 { font-size: 2.1rem; }
  .banner-buttons { flex-direction: column; align-items: center; }
  .section-header h2 { font-size: 1.9rem; }
  .cta-strip h2 { font-size: 1.7rem; }
  .page-hero h1 { font-size: 2rem; }
  .service-detail-text h2 { font-size: 2rem; }
}
