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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fb;
}

a {
  text-decoration: none;
}

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

/* ================= CONTAINER ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ================= HEADER ================= */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.25);
 border: 1px solid rgba(255, 255, 255, 0.1);
border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  z-index: 100;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  padding: 0 25px;
  flex-wrap: wrap;
}

.logo img {
  height: 58px;
}

/* ================= NAVIGATION ================= */
nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

nav a {
  color: #255c64;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
 bottom: -6px;
width: 0;
  height: 2px;
  background: linear-gradient(90deg, #144a9a, #8b0000);
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
width: 100%;
}

/* ================= BUTTON ================= */
.btn-header {
  background: linear-gradient(135deg, #8b0000, #c62828);
  color: white;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(139, 0, 0, 0.35);
  transition: 0.3s ease;
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 0, 0, 0.45);
}

.menu-toggle {
  display: none;
}
/* ================= BANNER / HERO ================= */
/* ================= BANNER / HERO ================= */
.banner-section.blog-hero {
  width: 100%;
  height: 800px;
background: url('../images/blog banner img.png') center/cover no-repeat;
osition: relative;
margin-top: 85px;
}
/* Property Investment Blog Section */

.property-blog-section {
  padding: 80px 20px;
  background: #f7f8fa;
  font-family: Arial, Helvetica, sans-serif;
  color: #222222;
}

.property-blog-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.property-blog-content {
  background: #ffffff;
  padding: 55px;
  border-radius: 22px;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.08);
}

.property-blog-header {
  max-width: 900px;
  margin-bottom: 35px;
}

.property-blog-category {
  display: inline-block;
  margin-bottom: 15px;
  padding: 9px 16px;
  border-radius: 50px;
  background: #fff1f1;
  color: #c61f2b;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.property-blog-header h1 {
  margin: 0 0 20px;
  color: #171717;
  font-size: 44px;
  line-height: 1.2;
  font-weight: 800;
}

.property-blog-intro {
  margin: 0;
  color: #5b5b5b;
  font-size: 19px;
  line-height: 1.8;
}


.property-blog-image{
    width:100%;
    height:700px;
    overflow:hidden;
    border-radius:20px;
    margin:35px 0 55px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f5f5f5;
}

.property-blog-image img{
    width:auto;
    height:100%;
    max-width:none;
    object-fit:contain;
}

.property-blog-image:hover img{
    transform:none;
}


.property-blog-block {
  margin-bottom: 55px;
}

.property-blog-block:last-of-type {
  margin-bottom: 0;
}

.property-blog-block h2 {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 14px;
  color: #1d1d1d;
  font-size: 31px;
  line-height: 1.3;
}

.property-blog-block h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 65px;
  height: 4px;
  border-radius: 20px;
  background: #c61f2b;
  content: "";
}

.property-blog-block h3 {
  margin: 0 0 12px;
  color: #242424;
  font-size: 21px;
  line-height: 1.4;
}

.property-blog-block p {
  margin: 0 0 18px;
  color: #555555;
  font-size: 17px;
  line-height: 1.9;
}

.property-blog-block p:last-child {
  margin-bottom: 0;
}

.property-blog-highlight {
  margin: 28px 0;
  padding: 30px;
  border-left: 5px solid #c61f2b;
  border-radius: 8px 16px 16px 8px;
  background: #fff7f7;
}

.property-blog-list {
  margin: 18px 0 25px;
  padding: 0;
  list-style: none;
}

.property-blog-list li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 30px;
  color: #505050;
  font-size: 16px;
  line-height: 1.7;
}

.property-blog-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: #c61f2b;
  font-size: 20px;
  font-weight: 700;
  content: "✓";
}

.property-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.property-benefit-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 17px;
  background: #ffffff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.property-benefit-card:hover {
  border-color: rgba(198, 31, 43, 0.25);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.property-benefit-card:last-child {
  grid-column: 1 / -1;
}

.property-benefit-number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #c61f2b;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
}

.property-benefit-card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.8;
}

.property-check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.property-check-list div {
  position: relative;
  padding: 18px 20px 18px 50px;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  background: #fafafa;
  color: #3c3c3c;
  font-size: 16px;
  font-weight: 600;
}

.property-check-list div::before {
  position: absolute;
  top: 50%;
  left: 18px;
  display: flex;
  width: 23px;
  height: 23px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #c61f2b;
  color: #ffffff;
  font-size: 13px;
  content: "✓";
  transform: translateY(-50%);
}

.property-location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 28px 0;
}

.property-location-grid span {
  padding: 12px 19px;
  border: 1px solid #ead5d7;
  border-radius: 50px;
  background: #fff7f7;
  color: #a41823;
  font-size: 15px;
  font-weight: 700;
}

.property-table-wrapper {
  width: 100%;
  margin: 30px 0;
  overflow-x: auto;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.property-comparison-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: #ffffff;
}

.property-comparison-table th,
.property-comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #eeeeee;
  text-align: left;
}

.property-comparison-table th {
  background: #222222;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.property-comparison-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.property-comparison-table tbody tr:hover {
  background: #fff1f2;
}

.property-comparison-table td {
  color: #4d4d4d;
  font-size: 15px;
}

.property-comparison-table td strong {
  color: #c61f2b;
}

.property-tip-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.property-tip-item {
  padding: 25px 28px;
  border-left: 4px solid #c61f2b;
  border-radius: 8px 14px 14px 8px;
  background: #fafafa;
}

.property-tip-item h3 {
  margin-bottom: 8px;
}

.property-tip-item p {
  margin: 0;
  font-size: 16px;
}

.property-investor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-top: 28px;
}

.property-investor-grid div {
  padding: 22px 18px;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  background: #ffffff;
  color: #343434;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.05);
}

.property-blog-cta {
  margin-top: 65px;
  padding: 50px;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(
      135deg,
      rgba(20, 20, 20, 0.98),
      rgba(70, 10, 15, 0.97)
    );
  color: #ffffff;
  text-align: center;
}

.property-blog-cta-content {
  max-width: 820px;
  margin: 0 auto;
}

.property-blog-cta-content > span {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffc8cc;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.property-blog-cta h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.3;
}

.property-blog-cta p {
  margin: 0 auto 28px;
  color: #e1e1e1;
  font-size: 17px;
  line-height: 1.8;
}

.property-cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  justify-content: center;
  margin-bottom: 32px;
}

.property-cta-features span {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 14px;
}

.property-blog-button {
  display: inline-flex;
  min-width: 210px;
  padding: 15px 26px;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: #c61f2b;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.property-blog-button:hover {
  background: #e12b38;
  box-shadow: 0 10px 25px rgba(198, 31, 43, 0.35);
  color: #ffffff;
  transform: translateY(-3px);
}

/* Tablet Responsive */

@media screen and (max-width: 900px) {
  .property-blog-section {
    padding: 60px 18px;
  }

  .property-blog-content {
    padding: 40px 30px;
  }

  .property-blog-header h1 {
    font-size: 36px;
  }

  .property-blog-image img {
    height: 420px;
  }

  .property-investor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Responsive */

@media screen and (max-width: 600px) {
  .property-blog-section {
    padding: 40px 12px;
  }

  .property-blog-content {
    padding: 28px 18px;
    border-radius: 15px;
  }

  .property-blog-category {
    font-size: 11px;
  }

  .property-blog-header h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .property-blog-intro {
    font-size: 16px;
    line-height: 1.7;
  }

  .property-blog-image {
    margin: 28px 0 40px;
    border-radius: 13px;
  }

  .property-blog-image img {
    height: 260px;
  }

  .property-blog-block {
    margin-bottom: 42px;
  }

  .property-blog-block h2 {
    font-size: 25px;
  }

  .property-blog-block h3 {
    font-size: 19px;
  }

  .property-blog-block p {
    font-size: 16px;
    line-height: 1.8;
  }

  .property-benefit-grid,
  .property-check-list,
  .property-investor-grid {
    grid-template-columns: 1fr;
  }

  .property-benefit-card:last-child {
    grid-column: auto;
  }

  .property-benefit-card {
    padding: 24px 21px;
  }

  .property-blog-highlight {
    padding: 24px 20px;
  }

  .property-tip-item {
    padding: 22px 20px;
  }

  .property-blog-cta {
    margin-top: 45px;
    padding: 38px 20px;
  }

  .property-blog-cta h2 {
    font-size: 27px;
  }

  .property-blog-cta p {
    font-size: 15.5px;
  }

  .property-blog-button {
    width: 100%;
  }
}
/* Fix space below fixed header */
.property-blog-section {
  padding: 130px 20px 70px;
  background: #f7f8fa;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

/* Keep the full blog inside the page width */
.property-blog-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

/* Blog white content box */
.property-blog-content {
  width: 100%;
  padding: 45px;
  border-radius: 20px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* Header area */
.property-blog-header {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 950px;
  margin: 0 0 35px;
  padding: 0;
  background: transparent;
}

/* Blog category label */
.property-blog-category {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 50px;
  background: #fff0f1;
  color: #c31822;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Fix heading size and positioning */
.property-blog-header h1 {
  position: static;
  width: 100%;
  max-width: 950px;
  margin: 0 0 20px;
  padding: 0;
  background: transparent;
  color: #171717;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

/* Intro paragraph */
.property-blog-intro {
  width: 100%;
  max-width: 850px;
  margin: 0;
  padding: 0;
  color: #5d5d5d;
  font-size: 18px;
  line-height: 1.8;
}

/* Image container */
.property-blog-image {
  position: relative;
  width: 100%;
  height: 480px;
  margin: 35px 0 55px;
  overflow: hidden;
  border-radius: 18px;
  background: #eeeeee;
}

/* Fix oversized image */
.property-blog-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
}

/* Prevent global image and heading styles from affecting blog */
.property-blog-content img {
  max-width: 100%;
}

.property-blog-content h1,
.property-blog-content h2,
.property-blog-content h3,
.property-blog-content p {
  position: static;
  transform: none;
}

/* Tablet */
@media screen and (max-width: 991px) {
  .property-blog-section {
    padding-top: 115px;
  }

  .property-blog-content {
    padding: 35px 28px;
  }

  .property-blog-header h1 {
    font-size: 38px;
  }

  .property-blog-image {
    height: 390px;
  }
}

/* Mobile */
@media screen and (max-width: 600px) {
  .property-blog-section {
    padding: 100px 12px 45px;
  }

  .property-blog-content {
    padding: 25px 16px;
    border-radius: 14px;
  }

  .property-blog-header h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .property-blog-intro {
    font-size: 16px;
    line-height: 1.7;
  }

  .property-blog-image {
    height: 240px;
    margin: 25px 0 40px;
    border-radius: 12px;
  }
}
/* ================= FOOTER ================= */
.footer {
  background: #292929;
  color: #ffffff;
  padding-top: 55px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 20px 45px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #fff7c5;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.85);
  transition: 0.3s;
}
.footer-col ul li a:hover {
color: #fff7c5;
padding-left: 4px;
}

.footer-logo {
 width: 140px;
  margin-bottom: 15px;
}

.footer-about {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-info li {
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
 padding: 18px 10px;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.15);
}
