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

:root {
  --navy-deep: #0F1B33;
  --navy-primary: #1B2A4A;
  --navy-light: #2C3E5A;
  --gold-primary: #D4AF37;
  --gold-light: #E8C547;
  --gold-dark: #B8941F;
  --slate-grey: #6B7B8D;
  --light-grey: #8B9DAF;
  --warm-cream: #F5F0E8;
  --off-white: #FAFAF7;
  --charcoal: #2D2D2D;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm: 0 2px 8px rgba(15,27,51,0.06);
  --shadow-md: 0 4px 16px rgba(15,27,51,0.10);
  --shadow-lg: 0 8px 32px rgba(15,27,51,0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background-color: #FAFAF7;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Section Numbers */
.section-number {
  font-family: var(--font-serif);
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 700;
  color: var(--gold-primary);
  opacity: 0.08;
  position: absolute;
  top: -10px; left: -10px;
  line-height: 1;
  pointer-events: none; user-select: none;
}
.section-number.light { color: var(--gold-primary); opacity: 0.15; }
.section-number.centered { position: relative; top: 0; left: 0; display: block; text-align: center; }

/* Common */
.section-label {
  font-family: var(--font-sans); font-weight: 600; font-size: 12px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-primary); margin-bottom: 16px; display: inline-block;
}
.section-title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.2; margin-bottom: 20px;
}
.section-subtitle { font-size: 17px; color: var(--slate-grey); max-width: 640px; line-height: 1.7; }
.gold-rule { width: 80px; height: 2px; background: var(--gold-primary); border: none; margin: 24px 0; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-weight: 600; font-size: 15px;
  letter-spacing: 0.5px; cursor: pointer; transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold-primary); color: var(--navy-deep);
  border-color: var(--gold-primary);
  box-shadow: 0 2px 12px rgba(212,175,55,0.25);
}
.btn-primary:hover {
  background: var(--gold-dark); border-color: var(--gold-dark);
  box-shadow: 0 4px 20px rgba(212,175,55,0.35); transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(15,27,51,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 12px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon { height: 36px; width: auto; display: block; }
.nav-logo svg { height: 36px; width: auto; }
.nav-logo-text {
  font-family: var(--font-serif); font-weight: 700;
  font-size: 20px; color: var(--white); letter-spacing: 1px;
}
.nav-logo-sub {
  font-family: var(--font-sans); font-size: 9px; font-weight: 500;
  letter-spacing: 3px; color: var(--light-grey);
  text-transform: uppercase; display: block; margin-top: -2px;
}

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.75);
  position: relative; padding-bottom: 4px; transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold-primary); transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px !important; font-size: 13px !important;
  color: var(--navy-deep) !important; background: var(--gold-primary);
  border-radius: var(--radius-sm); font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s ease; border-radius: 2px; }

.mobile-menu {
  display: none; position: fixed; top: 0; right: -100%; width: 320px; height: 100vh;
  background: var(--navy-deep); z-index: 1001; padding: 80px 32px 32px;
  transition: right 0.4s ease; box-shadow: -10px 0 40px rgba(0,0,0,0.3);
}
.mobile-menu.open { right: 0; }
.mobile-menu a { display: block; padding: 16px 0; font-size: 18px; color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.06); font-weight: 500; }
.mobile-menu a:hover { color: var(--gold-primary); }
.mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer; }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1000; opacity: 0; transition: opacity 0.3s ease; }
.mobile-overlay.open { opacity: 1; }

/* ═══ HERO ═══ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&q=80');
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,27,51,0.92) 0%, rgba(15,27,51,0.7) 40%, rgba(15,27,51,0.4) 100%);
}

.hero-geo { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-geo .arch {
  position: absolute; border: 1px solid rgba(212,175,55,0.06);
  border-radius: 50% 50% 0 0; animation: float 20s ease-in-out infinite;
}
.hero-geo .arch:nth-child(1) { width: 500px; height: 250px; bottom: -50px; left: 10%; }
.hero-geo .arch:nth-child(2) { width: 350px; height: 175px; bottom: -30px; right: 15%; animation-delay: -7s; }
.hero-geo .arch:nth-child(3) { width: 200px; height: 100px; top: 30%; right: 10%; animation-delay: -14s; border-color: rgba(212,175,55,0.04); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

.hero-content { position: relative; z-index: 2; max-width: 720px; padding: 120px 0 80px; }

.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold-primary); margin-bottom: 28px;
}
.hero-label::before { content: ''; width: 40px; height: 1px; background: var(--gold-primary); }

.hero h1 {
  font-family: var(--font-serif); font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 24px;
}
.hero p { font-size: 18px; color: var(--light-grey); line-height: 1.7; margin-bottom: 40px; max-width: 600px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Trust Bar */
.trust-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(245,240,232,0.95); backdrop-filter: blur(10px); padding: 18px 0; z-index: 3;
}
.trust-bar .container { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center; }
.trust-bar-label { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--slate-grey); }
.trust-sectors { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; }
.trust-sector {
  font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--navy-light); padding: 0 20px; border-right: 1px solid var(--gold-primary);
}
.trust-sector:last-child { border-right: none; }

/* ═══ ABOUT ═══ */
.about { padding: 120px 0; background-color: var(--warm-cream); position: relative; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-content { position: relative; }
.about-content .section-title { color: var(--navy-primary); }
.about-text { font-size: 16px; color: var(--charcoal); line-height: 1.75; margin-bottom: 16px; }

.about-image-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image {
  width: 100%; height: 480px; object-fit: cover;
  background-image: url('https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=800&q=80');
  background-size: cover; background-position: center;
}
.about-image-wrapper::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--gold-primary);
}

/* ═══ SERVICES ═══ */
.services { padding: 120px 0; background-color: var(--off-white); position: relative; }
.services-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.services-header .section-title { color: var(--navy-primary); }
.services-header .gold-rule { margin: 24px auto; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.service-card {
  background-color: var(--warm-cream); border-radius: var(--radius-md);
  overflow: hidden; transition: all var(--transition); border: 1px solid transparent;
}
.service-card-img {
  width: 100%; height: 200px; object-fit: cover;
  background-size: cover; background-position: center;
}
.service-card-body { padding: 32px; }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold-primary); transform: scaleX(0); transition: transform var(--transition);
}
.service-card { position: relative; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(212,175,55,0.2); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px; background-color: var(--navy-primary);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; margin-bottom: 24px;
}
.service-icon svg { width: 28px; height: 28px; stroke: var(--gold-primary); fill: none; stroke-width: 1.5; }

.service-card h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--navy-primary); margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--slate-grey); line-height: 1.7; }

.services-quote { text-align: center; margin-top: 64px; padding-top: 40px; border-top: 1px solid rgba(212,175,55,0.2); }
.services-quote p { font-family: var(--font-serif); font-style: italic; font-size: 20px; color: var(--navy-light); }

/* ═══ VALUE ═══ */
.value { padding: 120px 0; background-color: var(--navy-primary); position: relative; overflow: hidden; }
.value::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200'%3E%3Cpath d='M 0 200 Q 200 0 400 200' fill='none' stroke='%23D4AF37' stroke-width='0.3' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 400px 200px; background-repeat: repeat; opacity: 0.5;
}
.value .container { position: relative; z-index: 2; }
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.value-stats { display: flex; flex-direction: column; gap: 40px; }
.stat-item { border-left: 3px solid var(--gold-primary); padding-left: 24px; }
.stat-number { font-family: var(--font-serif); font-size: 42px; font-weight: 700; color: var(--gold-primary); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: var(--light-grey); line-height: 1.5; }

.value-content .section-title { color: var(--white); }
.value-text { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.75; margin-top: 20px; }

/* ═══ FOR CORPORATES ═══ */
.corporates { padding: 120px 0; background-color: var(--warm-cream); position: relative; }
.corporates-header { max-width: 640px; margin-bottom: 64px; }
.corporates-header .section-title { color: var(--navy-primary); }

.corp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 48px; }
.corp-item { display: flex; gap: 16px; align-items: flex-start; }
.corp-icon-sm {
  flex-shrink: 0; width: 44px; height: 44px; background-color: var(--navy-primary);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
}
.corp-icon-sm svg { width: 22px; height: 22px; stroke: var(--gold-primary); fill: none; stroke-width: 1.5; }
.corp-item h4 { font-family: var(--font-sans); font-weight: 700; font-size: 15px; color: var(--navy-primary); margin-bottom: 6px; }
.corp-item p { font-size: 13px; color: var(--slate-grey); line-height: 1.6; }

/* ═══ FOR LANDLORDS ═══ */
.landlords { padding: 120px 0; background-color: var(--off-white); position: relative; }
.landlords-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.landlords-content .section-title { color: var(--navy-primary); }

.benefit-list { list-style: none; margin: 32px 0; display: flex; flex-direction: column; gap: 16px; }
.benefit-list li { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--charcoal); }
.benefit-check {
  flex-shrink: 0; width: 28px; height: 28px;
  background-color: rgba(212,175,55,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.benefit-check svg { width: 14px; height: 14px; stroke: var(--gold-dark); fill: none; stroke-width: 2.5; }

.landlord-note {
  font-size: 13px; font-style: italic; color: var(--slate-grey);
  margin-top: 24px; padding-left: 16px; border-left: 2px solid var(--gold-primary);
}

.landlord-image {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  height: 500px; position: relative;
  background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=800&q=80');
  background-size: cover; background-position: center;
}
.landlord-image::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--gold-primary);
}

/* ═══ TEAM ═══ */
.team { padding: 120px 0; background-color: var(--warm-cream); position: relative; }
.team-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.team-header .section-title { color: var(--navy-primary); }
.team-header .gold-rule { margin: 24px auto; }
.team-text { font-size: 16px; color: var(--charcoal); line-height: 1.75; text-align: center; max-width: 600px; margin: 0 auto 48px; }

.team-grid { display: flex; justify-content: center; }

.team-card {
  background-color: var(--white); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  border-bottom: 3px solid transparent; max-width: 400px; width: 100%;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-bottom-color: var(--gold-primary); }

.team-photo {
  height: 340px;
  overflow: hidden;
  background-color: var(--navy-primary);
  background-image: url('https://lh3.googleusercontent.com/d/1vMus8fRuwnKlotgpI3_NnAgbNi5u1IG1');
  background-size: cover; background-position: center top;
}

.team-info { padding: 28px; text-align: center; }
.team-info h3 { font-family: var(--font-serif); font-size: 22px; color: var(--navy-primary); margin-bottom: 6px; }
.team-info .team-role { font-size: 13px; font-weight: 600; color: var(--gold-dark); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.team-info p { font-size: 14px; color: var(--slate-grey); line-height: 1.65; }

/* ═══ CONTACT ═══ */
.contact { padding: 120px 0 80px; background-color: var(--off-white); position: relative; }
.contact-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.contact-header .section-title { color: var(--navy-primary); }
.contact-header .gold-rule { margin: 24px auto; }

.contact-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 960px; margin: 0 auto; }

.contact-path {
  background-color: var(--white); border-radius: var(--radius-md);
  padding: 40px; box-shadow: var(--shadow-sm); border-top: 3px solid var(--gold-primary);
}
.contact-path h3 { font-family: var(--font-serif); font-size: 22px; color: var(--navy-primary); margin-bottom: 8px; }
.contact-path .path-desc { font-size: 14px; color: var(--slate-grey); margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy-primary); margin-bottom: 6px; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid #D0D5DD;
  border-radius: var(--radius-sm); font-family: var(--font-sans);
  font-size: 14px; color: var(--charcoal); background-color: var(--off-white);
  transition: all var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--navy-primary); box-shadow: 0 0 0 3px rgba(27,42,74,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; margin-top: 8px; }

.contact-details { text-align: center; margin-top: 48px; padding-top: 40px; border-top: 1px solid rgba(212,175,55,0.2); }
.contact-details p { font-size: 14px; color: var(--slate-grey); margin-bottom: 6px; }
.contact-details a { color: var(--navy-primary); font-weight: 600; }
.contact-details a:hover { color: var(--gold-primary); }

/* ═══ FOOTER ═══ */
.footer { background-color: var(--navy-deep); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo-text { font-size: 22px; margin-bottom: 12px; display: block; }
.footer-tagline { font-family: var(--font-serif); font-style: italic; font-size: 15px; color: var(--gold-primary); margin-bottom: 20px; }
.footer-desc { font-size: 14px; color: var(--light-grey); line-height: 1.7; max-width: 300px; }

.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--light-grey); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-primary); }

.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.15); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 12px; color: var(--slate-grey); }

.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold-primary); background-color: rgba(212,175,55,0.1); }
.footer-social svg { width: 16px; height: 16px; fill: var(--light-grey); }
.footer-social a:hover svg { fill: var(--gold-primary); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .corp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .value-grid { gap: 48px; }
  .about-grid { gap: 40px; }
  .about-image { height: 380px; }
  .landlord-image { height: 400px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .mobile-menu { width: 280px; padding: 70px 24px 32px; }
  .nav-logo-text { font-size: 17px; }
  .nav-logo svg { height: 30px; }

  .hero { min-height: 100svh; }
  .hero-bg::after {
    background: linear-gradient(180deg, rgba(15,27,51,0.95) 0%, rgba(15,27,51,0.8) 50%, rgba(15,27,51,0.6) 100%);
  }
  .hero-content { padding: 100px 0 100px; max-width: 100%; }
  .hero h1 { font-size: clamp(28px, 8vw, 36px); line-height: 1.2; margin-bottom: 16px; }
  .hero-label { font-size: 10px; letter-spacing: 2px; margin-bottom: 20px; flex-wrap: wrap; }
  .hero-label::before { width: 24px; }
  .hero p { font-size: 15px; line-height: 1.65; margin-bottom: 28px; max-width: 100%; }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 14px 24px; font-size: 14px; }

  .trust-bar { padding: 14px 0; }
  .trust-bar .container { flex-direction: column; gap: 10px; }
  .trust-sectors { flex-wrap: wrap; justify-content: center; gap: 4px; }
  .trust-sector { padding: 4px 10px; font-size: 9px; letter-spacing: 1.5px; border-right: none; }

  .about, .services, .corporates, .landlords, .team, .contact { padding: 72px 0; }
  .section-number { font-size: 50px; }
  .section-title { font-size: clamp(24px, 6vw, 32px); margin-bottom: 14px; }
  .section-subtitle { font-size: 15px; }
  .gold-rule { margin: 16px 0; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image { height: 260px; }
  .about-text { font-size: 15px; }

  .services-grid { grid-template-columns: 1fr; gap: 24px; }
  .service-card-img { height: 180px; }
  .service-card-body { padding: 24px 20px; }
  .service-card h3 { font-size: 19px; }
  .service-card p { font-size: 14px; }
  .service-icon { width: 48px; height: 48px; margin-bottom: 16px; }
  .services-quote p { font-size: 17px; }

  .value { padding: 72px 0; }
  .value-grid { grid-template-columns: 1fr; gap: 40px; }
  .stat-number { font-size: 32px; }
  .stat-label { font-size: 13px; }
  .value-text { font-size: 14.5px; }
  .value-stats { gap: 28px; }

  .corp-grid { grid-template-columns: 1fr; gap: 24px; }
  .corp-item { gap: 12px; }
  .corp-item h4 { font-size: 14px; }
  .corp-item p { font-size: 12.5px; }

  .landlords-grid { grid-template-columns: 1fr; gap: 32px; }
  .landlord-image { height: 280px; order: -1; }
  .benefit-list { margin: 24px 0; gap: 12px; }
  .benefit-list li { font-size: 14px; gap: 10px; }
  .benefit-check { width: 24px; height: 24px; }
  .landlord-note { font-size: 12px; }

  .team-grid { justify-content: stretch; }
  .team-card { max-width: 100%; }
  .team-photo { height: 300px; }
  .team-info { padding: 20px; }
  .team-info h3 { font-size: 19px; }
  .team-info p { font-size: 13px; }
  .team-text { font-size: 14.5px; margin-bottom: 32px; }

  .contact-paths { grid-template-columns: 1fr; gap: 24px; }
  .contact-path { padding: 28px 20px; }
  .contact-path h3 { font-size: 19px; }
  .form-group input, .form-group select, .form-group textarea { font-size: 16px; padding: 14px 14px; }
  .form-group label { font-size: 12px; }
  .form-submit { font-size: 14px; padding: 14px 20px; }
  .contact-details p { font-size: 12px; word-break: break-all; }

  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 28px; }
  .footer-brand .nav-logo-text { font-size: 19px; }
  .footer-tagline { font-size: 13px; margin-bottom: 12px; }
  .footer-desc { font-size: 13px; max-width: 100%; }
  .footer-col h4 { font-size: 11px; margin-bottom: 12px; }
  .footer-links a { font-size: 13px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-copy { font-size: 10px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 14px; }
  .hero-label { font-size: 9px; letter-spacing: 1.5px; }
  .section-title { font-size: clamp(22px, 6vw, 28px); }
  .section-label { font-size: 10px; letter-spacing: 3px; }
  .stat-number { font-size: 28px; }
  .about-image { height: 200px; }
  .landlord-image { height: 220px; }
  .team-photo { height: 260px; }
  .contact-path { padding: 24px 16px; }
  .contact-details a { font-size: 11px; }
  .service-card-img { height: 150px; }
  .img-divider-content h2 { font-size: 22px; }
  .img-divider-content p { font-size: 14px; }
}

/* ═══ PARALLAX IMAGE SECTIONS ═══ */
.img-divider {
  width: 100%; height: 400px; background-size: cover; background-position: center;
  background-attachment: fixed; position: relative;
}
.img-divider::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,27,51,0.3) 0%, rgba(15,27,51,0.6) 100%);
}
.img-divider-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
}
.img-divider-content h2 {
  font-family: var(--font-serif); font-size: clamp(24px, 3.5vw, 40px);
  color: var(--white); margin-bottom: 12px;
}
.img-divider-content p { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 560px; }

@media (max-width: 768px) {
  .img-divider { background-attachment: scroll; height: 260px; }
  .img-divider-content { padding: 0 20px; }
}

@supports (-webkit-touch-callout: none) {
  .img-divider { background-attachment: scroll; }
}
