/* =========================================================
   REAL ESTATE – ULTRA MODERN / LUXURY LAW FIRM STYLE
   FULLY RESPONSIVE – MOBILE OPTIMIZED
   ========================================================= */

/* ===============================
   HERO SECTION
   =============================== */

.realestate4-hero {
  width: 100%;
  height: 100vh;
  background:
    radial-gradient(800px 400px at 50% 20%, rgba(184,151,106,0.25), transparent),
    url('../images/landlord-ten.jpg') center / cover no-repeat;
  position: relative;
  border-bottom: 6px solid #bb966a;
}

.realestate4-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.85)
  );
}

.realestate4-hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.realestate4-hero-overlay h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 58px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.8px;
  text-shadow: 0 10px 35px rgba(0,0,0,0.75);
}

.realestate4-hero-overlay h1::after {
  content: '';
  display: block;
  width: 110px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #b8976a, transparent);
  margin: 26px auto 0;
}

/* ===============================
   LANDLORD TENANT – INTRO CARD
   =============================== */

.lt-intro-section {
  padding: 120px 20px;
  background: #fffcfc;
  display: flex;
  justify-content: center;
}

.lt-intro-card {
  max-width: 880px;
  width: 100%;
  padding: 64px 64px;
  border-radius: 32px;
  background: 
#152943;
  border: 1px solid rgba(184,151,106,0.28);
  box-shadow: 0 50px 120px rgba(0,0,0,0.8);
  text-align: center;
}

.lt-intro-card h2 {
  font-size: 40px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.3;
}

.lt-intro-card h2 i {
  margin-right: 10px;
}

.gold-hr {
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent, #b8976a, transparent);
  margin: 26px 0 30px;
}

.lt-intro-card p {
  font-size: 16.5px;
  line-height: 1.85;
  margin-bottom: 18px;
  color: #e6e6e6;
}

/* BULLETS – FIXED ALIGNMENT */
.lt-points {
  list-style: none;
  padding: 0;
  margin: 32px auto;
  max-width: 520px;
}

.lt-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15.5px;
  text-align: left;
}

.lt-points i {
  color: #b8976a;
  margin-top: 4px;
  flex-shrink: 0;
}

.lt-contact {
  margin-top: 30px;
  font-weight: 700;
  color: #e1c07a;
  font-size: 16px;
}

.lt-contact span {
  margin: 0 10px;
  opacity: 0.35;
}

/* ===============================
   CONTACT CTA SECTION (BLACK BOX)
   =============================== */

.cta-section {
  padding: 50px 20px;
  background-color: #000000;
}

.cta-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-title {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.cta-subtitle {
  font-size: 16px;
  color: #d0d0d0;
  margin: 0;
}

.cta-buttons a {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  margin-right: 15px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.cta-btn-call {
  background: #b8976a;
  color: white;
}

.cta-btn-call:hover {
  background: #a68659;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(184,151,106,0.4);
}

.cta-btn-email {
  background: white;
  color: #1a1a1a;
}

.cta-btn-email:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* ===============================
   LANDLORD TENANT – DETAILS
   =============================== */

.lt-details-section {
  padding: 130px 20px;
  background: #ffffff;
}

.lt-grid-container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 64px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 56px;
  border-radius: 32px;
  background: 
#152943;
  border: 1px solid rgba(184,151,106,0.3);
  box-shadow: 0 70px 150px rgba(0,0,0,0.85);
}

.lt-text {
  grid-column: span 7;
}

.lt-text h3 {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 22px;
  line-height: 1.3;
}

.lt-text h3 i {
  margin-right: 10px;
}

.lt-text p {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 16px;
  color: #e6e6e6;
}

.lt-cta {
  margin-top: 24px;
  font-weight: 800;
  color: #e1c07a;
  font-size: 16px;
}

.lt-cta span {
  margin: 0 10px;
  opacity: 0.35;
}

/* IMAGE – REFINED */
.lt-image {
  grid-column: span 5;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 35px 100px rgba(0,0,0,0.85);
  position: relative;
  min-height: 400px;
}

.lt-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.55)
  );
}

.lt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   RESPONSIVE – TABLET
   =============================== */

@media (max-width: 991px) {
  /* Hero */
  .realestate4-hero {
    height: 70vh;
    min-height: 500px;
  }

  .realestate4-hero-overlay h1 {
    font-size: 42px;
  }

  /* Intro Card */
  .lt-intro-section {
    padding: 80px 20px;
  }

  .lt-intro-card {
    padding: 48px 36px;
  }

  .lt-intro-card h2 {
    font-size: 32px;
  }

  .lt-intro-card p {
    font-size: 15px;
  }

  /* CTA Section */
  .cta-box {
    padding: 35px 25px;
  }

  .cta-title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .cta-subtitle {
    font-size: 15px;
  }

  /* Details Section */
  .lt-details-section {
    padding: 80px 20px;
  }

  .lt-grid-container {
    grid-template-columns: 1fr;
    padding: 48px 36px;
    gap: 40px;
  }

  .lt-text,
  .lt-image {
    grid-column: span 12;
  }

  .lt-text h3 {
    font-size: 28px;
  }

  .lt-image {
    min-height: 350px;
  }
}

/* ===============================
   RESPONSIVE – MOBILE (PHONES)
   =============================== */

@media (max-width: 768px) {
  /* Hero */
  .realestate4-hero {
    height: 60vh;
    min-height: 450px;
  }

  .realestate4-hero-overlay h1 {
    font-size: 36px;
    padding: 0 15px;
  }

  .realestate4-hero-overlay h1::after {
    width: 80px;
    margin: 20px auto 0;
  }

  /* Intro Section */
  .lt-intro-section {
    padding: 60px 15px;
  }

  .lt-intro-card {
    padding: 40px 28px;
    border-radius: 20px;
  }

  .lt-intro-card h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .lt-intro-card h2 i {
    display: block;
    margin-bottom: 8px;
    margin-right: 0;
  }

  .lt-intro-card p {
    font-size: 14.5px;
    line-height: 1.75;
    text-align: left;
  }

  .lt-points {
    max-width: 100%;
  }

  .lt-points li {
    font-size: 14.5px;
  }

  .lt-contact {
    font-size: 14.5px;
    line-height: 1.6;
  }

  .lt-contact span {
    display: block;
    margin: 8px 0;
    opacity: 0;
  }

  /* CTA Section */
  .cta-section {
    padding: 40px 15px;
  }

  .cta-box {
    padding: 30px 20px;
    border-radius: 12px;
  }

  .cta-title {
    font-size: 22px;
    text-align: center;
  }

  .cta-subtitle {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
  }

  .cta-buttons {
    text-align: center;
  }

  .cta-buttons a {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
    font-size: 15px;
  }

  /* Details Section */
  .lt-details-section {
    padding: 60px 15px;
  }

  .lt-grid-container {
    padding: 35px 25px;
    gap: 30px;
    border-radius: 20px;
  }

  .lt-text h3 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .lt-text h3 i {
    display: block;
    margin-bottom: 8px;
    margin-right: 0;
  }

  .lt-text p {
    font-size: 14.5px;
    line-height: 1.75;
    text-align: left;
  }

  .lt-cta {
    font-size: 14.5px;
    line-height: 1.6;
  }

  .lt-cta span {
    display: block;
    margin: 8px 0;
    opacity: 0;
  }

  .lt-image {
    min-height: 280px;
    border-radius: 16px;
  }
}

/* ===============================
   RESPONSIVE – SMALL MOBILE
   =============================== */

@media (max-width: 480px) {
  /* Hero */
  .realestate4-hero {
    height: 55vh;
    min-height: 400px;
  }

  .realestate4-hero-overlay h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  /* Intro Card */
  .lt-intro-card {
    padding: 32px 20px;
    border-radius: 16px;
  }

  .lt-intro-card h2 {
    font-size: 24px;
  }

  .lt-intro-card p {
    font-size: 14px;
  }

  .lt-points li {
    font-size: 13.5px;
  }

  .lt-contact {
    font-size: 13.5px;
  }

  /* CTA Section */
  .cta-box {
    padding: 25px 18px;
  }

  .cta-title {
    font-size: 20px;
  }

  .cta-subtitle {
    font-size: 13px;
  }

  .cta-buttons a {
    padding: 13px 20px;
    font-size: 14px;
  }

  /* Details Section */
  .lt-grid-container {
    padding: 28px 18px;
    gap: 25px;
  }

  .lt-text h3 {
    font-size: 22px;
  }

  .lt-text p {
    font-size: 13.5px;
  }

  .lt-cta {
    font-size: 13.5px;
  }

  .lt-image {
    min-height: 240px;
  }
}

/* ===============================
   EXTRA SMALL DEVICES
   =============================== */

@media (max-width: 360px) {
  .realestate4-hero-overlay h1 {
    font-size: 26px;
  }

  .lt-intro-card h2 {
    font-size: 22px;
  }

  .lt-text h3 {
    font-size: 20px;
  }

  .cta-title {
    font-size: 18px;
  }
}