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

/* =========================
   BASE
========================== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: #0b1f3a;
  background: #ffffff;
  line-height: 1.5;
}

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

a {
  text-decoration: none;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   HEADER / NAVIGATION
========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: #000000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 24px;
}

.site-logo img {
  height: 82px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: #facc15;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-btn {
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  background: transparent;
}

.header-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.header-btn-primary {
  background: #facc15;
  color: #111111;
  border: 1.5px solid #facc15;
}

.header-btn-primary:hover {
  background: #eab308;
  border-color: #eab308;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #ffffff;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 0 4% 24px;
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.mobile-menu a {
  color: #ffffff;
  font-weight: 600;
}

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

/* =========================
   HERO SECTION
========================== */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.60)),
    url('../images/windsor-property-management-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  width: 100%;
  text-align: center;
  color: #ffffff;
  padding: 180px 20px 90px;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  color: #facc15;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: 66px;
  line-height: 1.05;
  margin-bottom: 22px;
  font-weight: 800;
}

.hero-text {
  font-size: 22px;
  max-width: 920px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.94);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn.primary {
  background: #facc15;
  color: #111111;
}

.btn.primary:hover {
  background: #eab308;
}

.btn.secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* =========================
   GENERAL SECTIONS
========================== */
.section {
  padding: 90px 0;
}

.section h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 14px;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 42px;
  color: #5b6470;
  font-size: 18px;
}

/* =========================
   SERVICES SECTION
========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: #ffffff;
  border: 1px solid #e7ebf0;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.card p {
  color: #5b6470;
}

/* =========================
   PRICING SECTION
========================== */
.pricing-section {
  background: #f7f9fc;
}

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

.pricing-card {
  background: #ffffff;
  border: 1px solid #e7ebf0;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.price {
  font-size: 34px;
  font-weight: 700;
  color: #0b1f3a;
  margin-bottom: 20px;
}

.pricing-card ul {
  padding-left: 20px;
}

.pricing-card li {
  margin-bottom: 10px;
  color: #5b6470;
}

.pricing-card.featured {
  border: 2px solid #facc15;
}
/* =========================
   PRICING SECTION - CLEAN
========================== */
.pricing-header {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 32px;
}

.pricing-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 13px;
  font-weight: 700;
  color: #245dff;
  margin-bottom: 12px;
}

.pricing-intro {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 0 auto 14px;
}

.pricing-trust-logos img {
  max-height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 10px;
  padding: 6px 10px;
  border: 1px solid #e4e8ef;
}

.brokerage-note {
  text-align: center;
  margin-bottom: 28px;
  color: #445066;
  font-size: 15px;
}

.pricing-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #e7ebf0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  position: relative;
}

.featured-card {
  border: 2px solid #facc15;
}

.pricing-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #facc15;
  color: #111111;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 999px;
  z-index: 2;
}

.pricing-image-wrap {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: 12px;
  background: #f7f9fc;
  border: 1px solid #e7ebf0;
  margin-bottom: 16px;
}

.pricing-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-card h3 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #0b1f3a;
}

.pricing-subtitle {
  color: #5b6470;
  font-size: 15px;
  margin-bottom: 14px;
  line-height: 1.6;
}

.pricing-card .price {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #0b1f3a;
  margin-bottom: 14px;
}

.pricing-card .price span {
  font-size: 15px;
  font-weight: 600;
  color: #5b6470;
}

.pricing-payment-note {
  color: #245dff;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
  font-weight: 600;
}

.pricing-features {
  padding-left: 20px;
  margin-bottom: 20px;
}

.pricing-features li {
  margin-bottom: 10px;
  color: #4e5868;
  line-height: 1.55;
}

.pricing-card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.text-link {
  font-size: 14px;
  font-weight: 700;
  color: #245dff;
}

.text-link:hover {
  color: #0b1f3a;
}

.legal-guarantee-box {
  margin-top: 36px;
  background: #ffffff;
  border: 1px solid #e3e8f0;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.legal-guarantee-box h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #0b1f3a;
}

.legal-guarantee-box p {
  color: #4f5a69;
  line-height: 1.7;
  margin-bottom: 14px;
}

.legal-guarantee-list {
  padding-left: 20px;
}

.legal-guarantee-list li {
  margin-bottom: 9px;
  color: #4f5a69;
  line-height: 1.6;
}

.savings-calculator {
  margin-top: 36px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid #e3e8f0;
  border-radius: 16px;
  padding: 34px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.savings-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 24px;
}

.savings-header h3 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #0b1f3a;
}

.savings-header p {
  color: #4f5a69;
  line-height: 1.7;
}

.slider-wrap {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}

.slider-wrap label {
  display: block;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #0b1f3a;
}

.rent-display {
  display: inline-block;
  min-width: 160px;
  text-align: center;
  background: #0b1f3a;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 18px;
}

#rentSlider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(to right, #245dff 0%, #79b7ff 100%);
  outline: none;
}

#rentSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #facc15;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

#rentSlider::-moz-range-thumb {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #facc15;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.savings-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.savings-box {
  background: #ffffff;
  border: 1px solid #e3e8f0;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}

.savings-box.highlight {
  border: 2px solid #facc15;
}

.savings-box h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #0b1f3a;
}

.savings-cost {
  font-size: 28px;
  font-weight: 800;
  color: #0b1f3a;
  margin-bottom: 10px;
}

.savings-save {
  color: #245dff;
  font-weight: 700;
  line-height: 1.6;
}

.pricing-disclosures {
  margin-top: 24px;
  font-size: 14px;
  color: #576172;
  line-height: 1.7;
}

.pricing-disclosures p {
  margin-bottom: 12px;
}

/* =========================
   RESPONSIVE - PRICING
========================== */
@media (max-width: 1100px) {
  .pricing-grid-3,
  .savings-results {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pricing-trust-logos img {
    max-height: 38px;
    max-width: 150px;
  }

  .pricing-image-wrap {
    height: 190px;
  }

  .legal-guarantee-box,
  .savings-calculator {
    padding: 22px;
  }

  .savings-header h3 {
    font-size: 24px;
  }

  .rent-display {
    width: 100%;
    min-width: 0;
  }
}

/* =========================
   RESPONSIVE - PRICING
========================== */
@media (max-width: 1024px) {
  .pricing-grid-3,
  .savings-results {
    grid-template-columns: 1fr;
  }

  .pricing-card-image {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .pricing-trust-logos {
    gap: 14px;
  }

  .pricing-trust-logos img {
    max-height: 44px;
  }

  .slider-value-row {
    flex-direction: column;
    align-items: stretch;
  }

  .rent-display {
    width: 100%;
  }

  .legal-guarantee-box,
  .savings-calculator {
    padding: 22px;
  }

  .savings-header h3 {
    font-size: 24px;
  }
}
/* =========================
   AREAS SECTION
========================== */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.areas-list span {
  background: #f4f6f9;
  border: 1px solid #e7ebf0;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

/* =========================
   CONTACT SECTION
========================== */
.contact-section {
  background: #0b1f3a;
  color: #ffffff;
}

.contact-section .section-intro {
  color: rgba(255, 255, 255, 0.8);
}

.contact-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-box p {
  font-size: 18px;
  margin-bottom: 12px;
}

.contact-box a {
  color: inherit;
}

/* =========================
   FOOTER FADE
========================== */
.footer-fade {
  height: 140px;
  background: linear-gradient(to bottom, #ffffff 0%, #111111 100%);
}

/* =========================
   FOOTER
========================== */
.site-footer {
  background: #000000;
  color: #ffffff;
  padding: 50px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand {
  max-width: 460px;
}

.footer-logo {
  width: 320px;
  max-width: 100%;
  height: auto;
  margin-bottom: 18px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #facc15;
}

.footer-bottom {
  margin-top: 40px;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* =========================
   FADE IN ANIMATION
========================== */
.fade-in {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================== */
@media (max-width: 1024px) {
  .site-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .services-grid,
  .pricing-grid,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content h1 {
    font-size: 50px;
  }

  .hero-text {
    font-size: 20px;
  }

  .site-logo img {
    height: 72px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
  }

  .hero-overlay {
    padding: 150px 20px 60px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-text {
    font-size: 18px;
  }

  .services-grid,
  .pricing-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 65px 0;
  }

  .section h2 {
    font-size: 30px;
  }

  .site-logo img {
    height: 64px;
  }

  .header-inner {
    min-height: 88px;
  }

  .footer-logo {
    width: 260px;
  }
}