@font-face {
  font-family: 'Avelier';
  src: url('../fonts/Awelier/MADEAwelierPERSONALUSE-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avelier';
  src: url('../fonts/Awelier/MADEAwelierPERSONALUSE-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avelier';
  src: url('../fonts/Awelier/MADEAwelierPERSONALUSE-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avelier';
  src: url('../fonts/Awelier/MADEAwelierPERSONALUSE-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avelier';
  src: url('../fonts/Awelier/MADEAwelierPERSONALUSE-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avelier';
  src: url('../fonts/Awelier/MADEAwelierPERSONALUSE-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}



@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}


@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}


.font-avelier {
  font-family: 'Avelier', sans-serif;
}

.font-inter {
  font-family: 'Inter', sans-serif;
}

.font-poppins {
  font-family: 'Poppins', sans-serif;
}

/* ================= PAGE FRAME ================= */
/* Smooth Scroll (Pure CSS) */
html {
  scroll-behavior: smooth;
}

.page-frame {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1300px;
  height: 100vh;
  pointer-events: none;
  z-index: 1001;
}

.frame-line {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: #FFFFFF33;
  overflow: hidden;
}

.frame-line.left {
  left: 0;
}

.frame-line.right {
  right: 0;
}

/* Gold moving accent */
.frame-accent {
  position: absolute;
  left: 0;
  width: 1px;
  height: 20px;
  background: #DEC093;
  top: 0;
  animation: frameMoveDown 6s linear infinite;
}

/* Alternate direction on right side */
.frame-line.right .frame-accent {
  animation: frameMoveUp 6s linear infinite;
}

/* ================= ANIMATIONS ================= */

@keyframes frameMoveDown {
  0%   { top: 0; opacity: 1; }
  90%  { top: calc(100% - 5px); opacity: 1; }
  100% { top: calc(100% - 5px); opacity: 0; }
}

@keyframes frameMoveUp {
  0%   { top: calc(100% - 5px); opacity: 1; }
  90%  { top: 0; opacity: 1; }
  100% { top: 0; opacity: 0; }
}

body {
    margin: 0px;
}

/* ================= HEADER ================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10, 15, 20, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
}

/* ===== Desktop Nav ===== */

.nav-desktop {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  color: #ffffff;
  text-decoration: none;
  position: relative;
}

.nav-link {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* underline */
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;          /* text se gap */
  width: 0;
  height: 1px;
  background: #DEC093;
  transition: width 0.35s ease;
}

/* hover state */
.nav-link:hover {
  color: #DEC093;
}

.nav-link:hover::after {
  width: 100%;
}

/* active state */
.nav-link.active {
  color: #DEC093;        /* 👈 text bhi gold */
}

.nav-link.active::after {
  width: 100%;           /* underline bhi show */
}


/* ===== CTA Button ===== */

.cta-btn-header {
  position: relative;
  overflow: hidden;
  background: transparent;          /* real background */
  border: 1px solid #DEC093;
  color: #000;                      /* normal text black */
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  padding: 14px 22px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.35s ease, border-color 0.35s ease;
  z-index: 1;
}

/* Gold background layer */
.cta-btn-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #DEC093;
  transform: scaleX(1);             /* full visible */
  transform-origin: left;
  transition: transform 0.45s ease;
  z-index: -1;
}

/* Hover → gold remove left → right */
.cta-btn-header:hover::before {
  transform: scaleX(0);
}

.cta-btn-header:hover {
  color: #fff;                      /* hover text white */
  border-color: #fff;
}

.stat {
    display: flex;
    gap: 10px;
}

/* ===== Burger ===== */

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 2px;
  background: #fff;
}

/* ===== Mobile Menu ===== */

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 24px;
  padding: 30px 24px;
  background: rgba(10, 15, 20, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

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

/* ===== Responsive ===== */

@media (max-width: 992px) {
  .nav-desktop,
  .cta-btn-header {
    display: none;
  }

  .burger {
    display: flex;
  }
  .arrow {
    display: none;
  }
}
/* ================= HERO ================= */

.hero {
  position: relative;
  height: 850px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 100%;
}

/* Slides */
.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
}

/* Overlay */
/* Overlay on slider image */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    181.14deg,
    rgba(0, 0, 0, 0.42) 11.9%,
    rgba(0, 0, 0, 0.315) 49.07%,
    rgba(0, 0, 0, 0.63) 101.82%
  );
  z-index: 1;
  pointer-events: none;
}


/* Inner container */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  height: 100%;
  color: #fff;
}

/* ===== CENTER CONTENT ===== */
.hero-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  text-align: center;
  width: 100%;
  padding: 0 24px;
}

.hero-title {
  font-size: 85px;
  line-height: 90px;
  font-weight: 400;
  line-height: 70px;
}

.hero-desc {
  font-size: 22px;
  font-weight: 200;
  line-height: 30px;
  max-width: 900px;
  margin: 20px auto 40px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn {
  font-size: 18px;
  font-weight: 500;
  padding: 16px 26px;
  text-decoration: none;
}

.btn.primary {
  position: relative;
  overflow: hidden;
  background: transparent;      /* real bg transparent */
  color: #000;                  /* 👈 NORMAL STATE TEXT BLACK */
  border: 1px solid #DEC093;
  transition: color 0.35s ease, border-color 0.35s ease;
  z-index: 1;
}

/* Gold background layer */
.btn.primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #DEC093;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.45s ease;
  z-index: -1;                  /* 👈 gold text ke peeche */
}

/* Hover: gold left → right remove */
.btn.primary:hover::before {
  transform: scaleX(0);
}

.btn.primary:hover {
  color: #fff;                  /* hover text white */
  border-color: #fff;
}


.btn.outline {
  position: relative;
  overflow: hidden;
  background: transparent;
  color: #fff;                   /* normal text white */
  border: 1px solid #fff;
  transition: color 0.35s ease, border-color 0.35s ease;
  z-index: 1;
}

/* Gold fill layer */
.btn.outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #DEC093;            /* gold fill */
  transform: scaleX(0);           /* start empty */
  transform-origin: left;
  transition: transform 0.45s ease;
  z-index: -1;
}

/* Hover: gold fill L → R */
.btn.outline:hover::before {
  transform: scaleX(1);
}

.btn.outline:hover {
  color: #000;                    /* hover text black */
  border-color: #DEC093;
}


/* ===== BOTTOM ROW ===== */
.hero-bottom {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 24px;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-num {
  font-size: 60px;
  gap: 10px;
  line-height: 40px;
}

.stat-text {
  font-size: 18px;
  line-height: 20px;
  font-weight: 200;
}

.stat-divider {
  width: 1px;
  height: 100px;
  background: #fff;
}

/* Thumbnails */
.hero-thumbs {
  display: flex;
  gap: 10px;
  margin-right: 30px;
}

.hero-thumbs img {
  width: 131px;
  height: 115px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
}

.hero-thumbs img.active {
  border-color: #DEC093;
}

/* ===== ARROWS (1200px GRID) ===== */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4.34px);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.arrow.left {
  left: 0px;
}

.arrow.right {
  right: 0px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .hero-title {
    font-size: 35px;
    line-height: 48px;
  }

  .hero-desc {
    font-size: 13px;
    line-height: 24px;
    width: 330px;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    bottom: 20px;
    padding: 0px;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-thumbs img {
    width: 125px;
    height: 78px;
  }

  .arrow.left {
    left: 10px;
  }

  .arrow.right {
    right: 10px;
  }
}
.about-section {
  padding: 100px 24px;
  background: #fff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}

/* LEFT */
.about-tag {
  display: inline-block;
  color: #DEC093;
  font-size: 30px;
  font-weight: 500;
}

.about-title {
    font-size: 50px;
    line-height: 60px;
    color: #0f172a;
    font-weight: 400;
}

/* RIGHT */
.about-right p {
  font-size: 17px;
  line-height: 30px;
  color: #475569;
  margin-bottom: 45px;
  font-weight: 400;
}

/* STATS */
.about-stats {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-box {
  text-align: center;
  min-width: 160px;
}

.stat-number {
  font-size: 75px;
  color: #DEC093;
  line-height: 1;
  font-weight: 400;
}

.stat-label {
  margin-top: 12px;
  font-size: 18px;
  color: #475569;
}

.stat-divider {
  width: 2px;
  height: 100px;
  background: #e5e7eb;
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .about-right p {
    margin-bottom: 15px;
  }

  .about-title {
    font-size: 36px;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    place-content: center;
    justify-content: center;
  }
  .stat-divider {
    display: none;
  }

  .stat-divider {
    height: 50px;
  }
  .review p {
    width: 100% !important;
  }
  .hero-center {
    padding: 0px;
  }
  .hero-thumbs {
    margin-right: 0px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 80px 20px;
  }

  .about-title {
    font-size: 30px;
    line-height: 40px;
  }

  .stat-number {
    font-size: 44px;
  }
  .stat-num {
    font-size: 30px !important;
  }
  .stat-text {
    font-size: 12px !important;
    line-height: 18px;
  }
.btn {
    font-size: 12px;
}
}
.featured-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px; /* section height image ke equal */
}

/* LEFT IMAGE */
.featured-split__image {
  position: relative;
  overflow: hidden;
  max-height: 700px;   /* 👈 IMPORTANT */
}

.featured-split__image img {
  width: 100%;
  height: 100%;
  max-height: 700px;   /* 👈 IMPORTANT */
  object-fit: cover;
  display: block;
}

/* RIGHT PANEL */
.featured-split__content {
  background: #121736;
  display: flex;
  align-items: center;
}

.featured-split__inner {
  max-width: 600px;
  padding: 30px;
  color: #fff;
}

/* TEXT */
.featured-tag {
  display: block;
  font-size: 30px;
  line-height: 30px;
  color: #DEC093;
  font-weight: 400;
}

.featured-title {
  font-size: 50px;
  line-height: 70px;
  font-weight: 400;
  margin-top: 30px;
}
@media (max-width: 992px) {
  .featured-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .featured-split__image {
    height: 400px;
    max-height: 400px;
  }

  .featured-split__inner {
    padding: 60px 24px;
    text-align: center;
  }

  .featured-title {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .featured-split__image {
    height: 320px;
    max-height: 320px;
  }

  .featured-title {
    font-size: 30px;
    line-height: 40px;
  }
}
.property-highlight {
  position: relative;
  height: 700px;            /* fixed height */
  width: 100%;
  overflow: hidden;
}
.property-highlight:not(:last-child) {
  border-bottom: 1px solid #DEC095;
}

/* IMAGE */
.property-bg {
  position: absolute;
  inset: 0;
}

.property-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.property-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 1;
}

/* CONTENT WRAPPER */
.property-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;     /* 👈 BOTTOM ALIGN */
}

/* 1200px GRID */
.property-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px 40px;      /* bottom spacing */
  display: flex;
  justify-content: space-between;
  align-items: flex-end;     /* 👈 BOTH SIDES BOTTOM */
}

/* LEFT */
.property-location {
  display: block;
  font-size: 18px;
  line-height: 18px;
  color: rgba(255,255,255,0.85);
}

.property-title {
  font-size: 40px;
  color: #fff;
  line-height: 40px;
  margin-top: 20px;
}

/* RIGHT */
.property-right {
  text-align: right;
}

.property-price {
  font-size: 36px;
  color: #fff;
  font-weight: 700;
}

.property-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 25px;
  float: left;
  margin-top: 20px;
  margin-bottom: 10px;
}
.property-link .property-icon {
  transition: 
    filter 0.3s ease,
    transform 0.3s ease;
}

/* HOVER */
.property-link:hover {
  color: #DEC095;
}

.property-link:hover .property-icon {
  transform: rotate(45deg);
  filter: brightness(0) saturate(100%)
          invert(78%) sepia(19%)
          saturate(676%)
          hue-rotate(2deg)
          brightness(95%) contrast(90%);
}

.property-link span {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .property-highlight {
    height: 420px;
  }

  .property-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .property-right {
    text-align: left;
  }

  .property-title {
    font-size: 28px;
  }

  .property-price {
    font-size: 24px;
  }
}

/* ===== SECTION ===== */
.home-view-all {
  background-color: #121736; /* blue */
  padding: 80px 20px;
}

.home-view-all__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== BUTTON ===== */
.home-view-all__btn {
  background-color: #DEC095;
  color: #121736;
  font-size: 18px;
  line-height: 1;
  padding: 20px 40px;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hover effect (optional but classy) */
.home-view-all__btn:hover {
  background-color: #d4b886;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .home-view-all {
    padding: 60px 16px;
  }

  .home-view-all__btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 18px 24px;
    font-size: 16px;
  }
}
.testimonials {
  background: #DFDDD8;
  padding: 100px 24px;
}

.testimonials-inner {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.testimonials-title {
  font-size: 48px;
}

/* SLIDER */
.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* SLIDE */
.testimonial-slide {
  min-width: 100%;
}

/* AVATAR */
.avatar {
  width: 64px;
  height: 64px;
  background: #7c5ac2;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px;
}

/* NAME */
.name {
  font-size: 26px;
  font-weight: bold;
  margin: 0px;
}

/* STARS */
.stars {
  color: #EE9300;
  font-size: 30px;
  font-weight: bold;
}

/* REVIEW TEXT */
.review p {
  font-size: 18px;
  line-height: 30px;
  color: #2D2D2D;
  margin: 0 auto;
  width: 750px;
  margin-bottom: 30px;
}

/* NAV */
.testimonial-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.nav-btn.prev {
  background: #121736;
  color: #fff;
}

.nav-btn.next {
  background: #fff;
  color: #000;
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonials-title {
    font-size: 34px;
  }

  .review p {
    font-size: 16px;
    line-height: 26px;
  }
    .testimonials {
    padding: 50px 24px;
  }
  .contact-form input, .contact-form textarea {
    width: 89% !important;
  }
}
.blog-section {
  background: #ffffff;
  padding: 120px 24px;
}

.blog-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.blog-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-tag {
  display: block;
  color: #DEC093;
  font-size: 30px;
  font-weight: 700;
}

.blog-title {
  font-size: 50px;
  line-height: 50px;
  margin: 0px;
  letter-spacing: 0%;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
/* .blog-content {
  margin-top: 28px;
} */

.blog-content h3 {
  font-size: 26px;
  line-height: 36px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 0px;

}
.blog-title-link {
    text-decoration: none;
    color: black;
}
.blog-content h3:hover {
color: #DEC095;

}
.property-arrow-link {
  display: inline-flex;
  align-items: center;
}

.property-arrow {
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* HOVER EFFECT */
.property-arrow-link:hover .property-arrow {
  transform: rotate(45deg);

}


/* FOOTER */
.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-date {
  font-size: 16px;
  color: #2D2D2D;
}

/* ARROW */
.blog-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #121736;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
}
@media (max-width: 768px) {
  .blog-section {
    padding: 80px 20px;
  }

  .blog-title {
    font-size: 34px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-content h3 {
    font-size: 20px;
  }
}
.contact-section {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  color: #fff;
}

/* BACKGROUND */
.contact-bg {
  position: absolute;
  inset: 0;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.6) 50%,
    rgba(0,0,0,0.75) 100%
  );
  z-index: 1;
}

/* CONTENT */
.contact-content {
  position: relative;
  z-index: 2;
  height: 100%;
}

.contact-inner {
  max-width: 1200px;
  margin: auto;
  padding: 100px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* LEFT */
.contact-left h2 {
    font-size: 50px;
    line-height: 100%;
    margin-bottom: 50px;
    font-weight: bold;
}

.contact-left p {
  max-width: 460px;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 50px;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info .icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon img {
    width: 20px;
}


.contact-info strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
}

.contact-info span {
  font-size: 16px;
  opacity: 0.85;
  font-weight: 300;
  color: white !important;
}

/* RIGHT FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 93%;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 16px;
  outline: none;
}

.contact-form textarea {
  min-height: 140px;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.7);
}

.contact-right {
    align-content: center;
}

/* BUTTON */
.cta-btn {
  margin-top: 10px;
  background: #DEC093;
  color: #000;
  border: 1px solid #DEC093;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  width: 200px;
}
@media (max-width: 768px) {
  .contact-inner {
    grid-template-columns: 1fr;
    padding: 80px 20px;
  }

  .contact-left h2 {
    font-size: 34px;
  }
}
.site-footer {
  background: #e9e6e0;
  padding: 80px 24px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
}

/* TOP */
.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

/* LOGO */
.footer-logo img {
  max-width: 200px;
}

/* MENU */
.footer-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0;
  margin: 0;
}

.footer-menu a {
  text-decoration: none;
  color: #2D2D2D;
  font-size: 18px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 50px;
  height: 50px;
  background: #121736;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
}
.footer-social a:hover {
background-color: #DEC095;
}

/* DIVIDER */
.footer-divider {
  margin: 60px 0 30px;
  height: 1px;
  background: rgba(0,0,0,0.2);
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
  font-size: 18px;
  line-height: 18px;
  color: #2D2D2D;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #2D2D2D;
  text-decoration: none;
  font-size: 18px;
  line-height: 18px;
}
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-menu {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ===============================
   OUR PROPERTY HERO + FILTER
================================ */

/* WRAPPER */
.our-property-wrapper {
  width: 100%;
}

/* HERO */
.our-property-hero {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.our-property-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-property-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.our-property-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.our-property-breadcrumb {
  font-size: 22px;
  opacity: 1;
}

.our-property-title {
  font-size: 80px;
  line-height: 90px;
  margin: 0px;
  font-weight: 300;
}
/* ================================
   OUR PROPERTIES SEARCH SECTION
================================ */

.our-properties-search-section {
  background-color: #121636;
  padding: 50px 20px;
}

/* Inner container */
.our-properties-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Form layout */
.our-properties-form {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 32px;
  align-items: center;
}

/* Field wrapper (IMPORTANT FIX) */
.our-properties-field {
  position: relative;
  min-width: 0;
}

/* Common input & select styles */
.our-properties-field input,
.our-properties-field select {
  width: 100%;
  height: 58px;
  padding: 0 22px;
  border-radius: 4px;
  border: 1px solid #E6E6E6;
  background-color: #ffffff;
  font-size: 16px;
  color: #121636;
  outline: none;
  box-sizing: border-box;
}

/* Placeholder */
.our-properties-field input::placeholder {
  color: #7A7A7A;
}

/* Search input spacing for icon */
.our-properties-search input {
  padding-right: 56px;
}

/* Search icon */
.our-properties-search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
}

/* Select dropdown styling */
.our-properties-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23D6A243' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  cursor: pointer;
}

/* Focus state */
.our-properties-field input:focus,
.our-properties-field select:focus {
  border-color: #D6A243;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .our-properties-form {
    grid-template-columns: 1.8fr 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .our-properties-form {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}


/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {

  .our-property-hero {
    height: 300px;
  }

  .our-property-title {
    font-size: 38px;
  }

  .our-property-filter-inner {
    flex-direction: column;
    gap: 20px;
  }
}
/* ===============================
   OUR PROPERTY PAGINATION
================================ */

.our-property-pagination {
  background: #121736;
  padding: 40px 0;
  border-bottom: 1px solid #DEC095;
}

.our-property-pagination-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 14px;
}

/* PAGE BUTTON */
.our-property-page {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  align-content: center;
  text-align-last: center;
  text-decoration: none;
}

/* ACTIVE */
.our-property-page.active {
  background: #DEC093;
  color: #121736;
}

/* HOVER */
.our-property-page:hover:not(.active) {
  background: #DEC093;
  color: #121736;;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
  .our-property-pagination {
    padding: 30px 0;
  }

  .our-property-page {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
}
/* ===============================
   PROPERTY DETAIL HERO
================================ */

.property-detail-hero {
  position: relative;
  height: 520px;
  width: 100%;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.property-detail-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/our-properties.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

/* DARK OVERLAY */
.property-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.55) 100%
  );
}

/* CONTENT WRAPPER */
.property-detail-hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

/* INNER */
.property-detail-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  color: #fff;
}

/* BREADCRUMB */
.property-detail-breadcrumb {
font-size: 22px;
opacity: 1;
}

/* TITLE */
.property-detail-title {
    font-size: 46px;
    line-height: 60px;
    margin: 0px;
    font-weight: 400;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 768px) {
  .property-detail-hero {
    height: 320px;
  }

  .property-detail-title {
    font-size: 40px;
  }

  .property-detail-breadcrumb {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .property-detail-hero {
    height: 280px;
  }

  .property-detail-title {
    font-size: 32px;
  }
}
/* ===============================
   PROPERTY DETAIL – FEATURED IMAGE
================================ */

.property-detail-featured {
  background: #E0E1E1; /* light off-white bg like design */
  padding: 80px 0;
}

.property-detail-featured-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.property-detail-featured-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  object-fit: cover;
}

/* ===============================
   TABLET
================================ */

@media (max-width: 1024px) {
  .property-detail-featured {
    padding: 60px 0;
  }
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 768px) {
  .property-detail-featured {
    padding: 40px 0;
  }

  .property-detail-featured-inner {
    padding: 0 16px;
  }
}
/* ===============================
   PROPERTY DETAIL – INFO SECTION
================================ */

.property-detail-section {
  background: #E0E1E1;
}

.property-detail-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.property-detail-header {
  margin-bottom: 60px;
}

.property-detail-price {
  font-size: 30px;
  color: #E8B66E;
  font-weight: 700;
  font-weight: bold;
}

.property-detail-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.property-detail-box {
  background: #D9D9D9;
  text-align: center;
  padding: 20px 20px;
}

.property-detail-icon {
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.property-detail-icon img {
  width: 28px;
  height: 28px;
}

.property-detail-box h3 {
  font-size: 45px;
  font-weight: 400;
  color: #121736;
  margin-bottom: 8px;
  margin-top: 0px;
}

.property-detail-box p {
  font-size: 14px;
  margin-top: -10px;
  color: #666666;
  letter-spacing: 1px;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .property-detail-title {
    font-size: 36px;
  }

  .property-detail-price {
    font-size: 26px;
  }

  .property-detail-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .property-detail-box {
    padding: 40px 15px;
  }

  .property-detail-box h3 {
    font-size: 34px;
  }
}

/* ===============================
   PROPERTY DETAIL – ABOUT
================================ */

.property-detail-about {
  background: #E0E1E1;
  padding: 80px 0;
}

.property-detail-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Title */
.property-detail-about-title {
  font-size: 36px;
  font-weight: 300;
  line-height: 26px;
  color: #121736;
  margin: 0 0 20px;
}

/* Text */
.property-detail-about-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #6b6b6b;
  margin: 0;
}

/* ===============================
   TABLET
================================ */

@media (max-width: 1024px) {
  .property-detail-about-title {
    font-size: 34px;
  }

  .property-detail-about-text {
    font-size: 17px;
    line-height: 28px;
  }
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 600px) {
  .property-detail-about {
    padding-top: 50px;
    padding-bottom: 0px;
  }
  .property-detail-features {
    gap: 0px !important;
    margin-bottom: 20px !important;
}
.property-detail-spec {
  font-size: 12px !important;
}
.property-detail-spec strong {
  font-size: 12px !important;
}


  .property-detail-about-title {
    font-size: 28px;
  }

  .property-detail-about-text {
    font-size: 16px;
    line-height: 26px;
  }
}
/* ===============================
   PROPERTY DETAIL – FEATURES & INFO
================================ */

.property-detail-info {
  background: #E0E1E1;
}

.property-detail-info-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

/* HEADINGS */
.property-detail-heading {
  font-size: 36px;
  margin-bottom: 30px;
  color: #1c2230;
  font-weight: 300;
}

/* FEATURES */
.property-detail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 70px;
}

.property-detail-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.property-detail-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 16px;
  color: #6b6b6b;
  font-weight: 300;
}

.property-detail-features li span {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #DEC093;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* PROPERTY DETAILS */
.property-detail-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
}

.property-detail-spec {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #cfcfcf;
  font-size: 16px;
}

.property-detail-spec span {
  color: #6b6b6b;
}

.property-detail-spec strong {
  color: #2D2D2D;
  font-size: 16px;
}

/* RIGHT SIDE CARDS */
.property-detail-card {
  background: #fff;
  padding: 40px;
  margin-bottom: 30px;
}

.property-detail-card h4 {
  font-size: 36px;
  margin-bottom: 12px;
  color: #333333;
  font-weight: 300;
}

.property-detail-card p {
  font-size: 15px;
  line-height: 25px;
  color: #666666;
  margin-bottom: 24px;
}

.property-detail-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  color: #1c2230;
}

/* CONTACT */
.property-detail-contact div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #666666;

}

.property-detail-contact span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #121736;
  color: #DEC093;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 900px) {
  .property-detail-info-inner {
    grid-template-columns: 1fr;
  }

  .property-detail-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .property-detail-info {
    padding: 0px 0;
  }

  .property-detail-heading {
    font-size: 28px;
  }

  .property-detail-card {
    padding: 30px;
  }
  .property-detail-header {
    margin-bottom: 30px;
  }
}
/* ===============================
   BLOG PAGE – HERO
================================ */

.blog-hero {
  position: relative;
  height: 520px;
  background: url("../images/our-properties.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark overlay */
.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Content */
.blog-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

/* Breadcrumb */
.blog-hero-breadcrumb {
    font-size: 22px;
    opacity: 1;
}

/* Title */
.blog-hero-title {
  font-size: 80px;
  line-height: 90px;
  margin: 0px;
  font-weight: 300;
}

/* ===============================
   TABLET
================================ */

@media (max-width: 1024px) {
  .blog-hero {
    height: 360px;
  }

  .blog-hero-title {
    font-size: 48px;
  }
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 600px) {
  .blog-hero {
    height: 300px;
  }

  .blog-hero-title {
    font-size: 36px;
  }

  .blog-hero-breadcrumb {
    font-size: 13px;
  }
}
/* ===============================
   BLOG – LISTING
================================ */

.blog-list {
  background: #E0E1E1;
  padding: 80px 0;
}

.blog-list-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.blog-card {
  background: transparent;
}

/* IMAGE */
.blog-card-image {
  width: 100%;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;
}

/* CONTENT */
.blog-card-content {
  padding-top: 20px;
}

.blog-card-title {
  font-size: 26px;
  line-height:30px;
  margin: 0 0 0px;
  color: #1c2230;
  width: 450px;
}

/* FOOTER */
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-card-date {
    font-size: 16px;
    color: #2D2D2D;
    font-weight: 400;
}

/* ARROW */
.blog-card-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #121736;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.blog-card-arrow:hover {
  background: #DEC093;
  color: #000;
}

/* ===============================
   TABLET
================================ */

@media (max-width: 1024px) {
  .blog-card-title {
    font-size: 22px;
  }
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 768px) {
  .blog-list-inner {
    grid-template-columns: 1fr;
  }

  .blog-card-title {
    font-size: 20px;
  }
}
/* ===============================
   BLOG – PAGINATION
================================ */

.blog-pagination {
  background: #E0E1E1;
  padding: 40px 0 80px;
}

.blog-pagination-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

/* Pages */
.blog-pagination-page {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #dcdcdc;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* Active */
.blog-pagination-page.active {
  background: #121736;
  color: #fff;
  font-weight: bold;
}

/* Hover */
.blog-pagination-page:hover {
  background: #121736;
  color: #fff;
  font-weight: bold;
}
.blog-pagination-inne-img {
    width: 40px;
}

/* Arrows */
.blog-pagination-arrow {
  font-size: 20px;
  color: #6b6b6b;
  text-decoration: none;
  padding: 0 8px;
}

.blog-pagination-arrow:hover {
  color: #121736;
}

/* Disabled arrow */
.blog-pagination-arrow.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 480px) {
  .blog-pagination-page {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
}
/* ===============================
   BLOG DETAIL – HERO
================================ */

.blog-detail-hero {
  position: relative;
  height: 520px;
  background: url("../images/our-properties.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay */
.blog-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Content */
.blog-detail-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

/* Breadcrumb */
.blog-detail-breadcrumb {
    font-size: 22px;
    opacity: 1;
}

/* Title */
.blog-detail-title-breadcrumbs {
    font-size: 80px;
    line-height: 90px;
    margin: 0px;
    font-weight: 300;
}

/* ===============================
   TABLET
================================ */

@media (max-width: 1024px) {
  .blog-detail-hero {
    height: 360px;
  }

  .blog-detail-title {
    font-size: 48px;
  }
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 600px) {
  .blog-detail-hero {
    height: 300px;
  }

  .blog-detail-title {
    font-size: 34px;
  }

  .blog-detail-breadcrumb {
    font-size: 13px;
  }
}
/* ===============================
   BLOG DETAIL – CONTENT
================================ */

.blog-detail-content {
  background: #E0E1E1;
  padding: 80px 0;
}

.blog-detail-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

/* LEFT */
.blog-detail-title {
  font-size: 46px;
  margin-bottom: 30px;
  font-weight: 300;
}

.blog-detail-image img {
  width: 100%;
  height: 400px;
  display: block;
  margin-bottom: 25px;
  object-fit: cover;
}
.meta-title strong {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}
.meta-title {
  font-size: 16px;
}

.blog-detail-meta {
  display: flex;
  gap: 40px;
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 30px;
}

.blog-detail-meta div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-detail-article p {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 24px;
  color: #6b6b6b;
  font-weight: 300;
}

.blog-detail-article h3 {
  font-size: 24px;
  margin: 40px 0 12px;
  font-weight: 400;
}

/* RIGHT */
.blog-detail-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.blog-detail-box {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
}

.blog-detail-box h4 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 300;
}

.blog-detail-box input {
  width: 90%;
  padding: 12px 14px;
  border: 1px solid #ccc;
}

/* Categories */
.blog-detail-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-detail-box ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #6b6b6b;
  font-weight: 300;
}

/* Related */
.blog-detail-related {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.blog-detail-related img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.blog-detail-related small {
  font-size: 12px;
  color: #6b6b6b;
}

.blog-detail-related p {
  font-size: 14px;
  margin: 4px 0 0;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 900px) {
  .blog-detail-inner {
    grid-template-columns: 1fr;
  }

  .blog-detail-sidebar {
    position: relative;
    top: auto;
  }

  .blog-detail-title {
    font-size: 32px;
  }
  .blog-detail-meta {
    gap: 10px;
  }
  .blog-detail-article p {
    font-size: 12px;
  }
  .meta-title strong {
    font-size: 12px;
  }
  .meta-title {
    font-size: 12px;
  }

}
/* ================= GLOBAL ================= */

.about-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= FOUNDERS SECTION ================= */

.about-page-founders {
  padding-top: 100px;
}

.about-page-founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.about-page-founder-card {
  display: flex;
  flex-direction: column;
}

.about-page-founder-image img {
  width: 100%;
  height: 500px;
  border-radius: 14px;
  object-fit: cover;
}

.about-page-founder-name {
  margin-top: 22px;
  font-size: 22px;
  line-height: 1.3;
}

.about-page-founder-role {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.7;
}

.about-page-founder-text {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.75;
  color: #333;
}

/* ================= STORY SECTION ================= */

.about-page-story {
  padding: 0px 0 120px;
}

.about-page-story-title {
  font-size: 36px;
  margin-bottom: 28px;
  line-height: 1.2;
}

.about-page-story-text {
  /*max-width: 820px;*/
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 22px;
  color: #333;
}

/* ================= TABLET & MOBILE ================= */

@media (max-width: 991px) {

  .about-page-founders {
    padding-top: 50px;
  }

  .about-page-founders-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-page-founder-name {
    font-size: 20px;
  }

  .about-page-story-title {
    font-size: 30px;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 575px) {

  .about-page-container {
    padding: 0 16px;
  }

  .about-page-founders {
    padding-top: 0px;
  }

  .about-page-founder-image img {
    border-radius: 12px;
  }

  .about-page-founder-name {
    font-size: 19px;
  }

  .about-page-founder-role {
    font-size: 13px;
  }

  .about-page-founder-text {
    font-size: 14.5px;
    line-height: 1.7;
  }

  .about-page-story {
    padding: 0px 0 80px;
  }

  .about-page-story-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .about-page-story-text {
    font-size: 15px;
    line-height: 1.75;
  }
}
a {
    text-decoration: none !important;
    color: inherit;
}
span a {
    color: white !important;
}
.footer-social a img {
    width: 20px;
        height: 20px;
}