/* ============================================================
   OneIndo Property — Full Redesign
   Primary: #06048C
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary:       #06048C;
  --primary-light: #1917aa;
  --primary-dark:  #040269;
  --primary-tint:  #eaeafb;
  --white:         #ffffff;
  --bg-light:      #f3f3fb;
  --text-dark:     #12141e;
  --text-body:     #555e6d;
  --text-muted:    #9ca3af;
  --border:        #e5e7eb;
  --shadow-sm:  0 2px 8px rgba(6,4,140,.08);
  --shadow-md:  0 4px 20px rgba(6,4,140,.13);
  --shadow-lg:  0 8px 40px rgba(6,4,140,.2);
  --radius:    12px;
  --radius-sm:  8px;
  --radius-lg: 20px;
  --transition: all .3s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-body);
  background: #fff;
  line-height: 1.7;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
}

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ── Container ── */
.oi-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.oi-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.oi-btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.oi-btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6,4,140,.35);
}
.oi-btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.oi-btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
}
.oi-btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.oi-btn-white:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}
.oi-btn-sm {
  padding: 9px 20px;
  font-size: 13px;
}

/* ── Section ── */
.oi-section      { padding: 80px 0; }
.oi-section-alt  { padding: 80px 0; background: var(--bg-light); }

.oi-section-header {
  text-align: center;
  margin-bottom: 52px;
}
.oi-section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.oi-section-header .eyebrow::before,
.oi-section-header .eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.oi-section-header h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.oi-section-header p {
  font-size: 16px;
  color: var(--text-body);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.oi-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.oi-navbar.transparent { background: transparent; }
.oi-navbar.scrolled {
  background: #fff;
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

.oi-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.oi-nav-logo img { height: 42px; width: auto; }

.oi-nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.oi-nav-menu > li { position: relative; }
.oi-nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: var(--transition);
  white-space: nowrap;
}
.oi-navbar.scrolled .oi-nav-menu > li > a { color: var(--text-dark); }
.oi-nav-menu > li > a:hover,
.oi-nav-menu > li.active > a {
  background: rgba(255,255,255,.15);
  color: #fff;
}
.oi-navbar.scrolled .oi-nav-menu > li > a:hover,
.oi-navbar.scrolled .oi-nav-menu > li.active > a {
  background: var(--primary-tint);
  color: var(--primary);
}

/* Dropdown */
.oi-nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  border: 1px solid var(--border);
  animation: oi-fadedown .2s ease;
  z-index: 200;
}
.oi-nav-menu > li:hover .oi-nav-dropdown { display: block; }
.oi-nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--text-dark) !important;
  font-size: 13px;
  font-weight: 500;
  background: none !important;
}
.oi-nav-dropdown a:hover { background: var(--primary-tint) !important; color: var(--primary) !important; }
.oi-nav-dropdown a i { color: var(--primary); font-size: 16px; }

/* Nav CTA */
.oi-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--primary);
  transition: var(--transition);
}
.oi-nav-cta:hover { background: #fff !important; color: var(--primary) !important; }
.oi-navbar.scrolled .oi-nav-cta { background: var(--primary); color: #fff; }
.oi-navbar.scrolled .oi-nav-cta:hover { background: var(--primary-light) !important; color: #fff !important; }

/* Hamburger */
.oi-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.oi-nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.oi-navbar.scrolled .oi-nav-toggle span { background: var(--text-dark); }

/* ── Mobile Overlay Nav ── */
.oi-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  overflow-y: auto;
}
.oi-mobile-nav.open { display: block; }
.oi-mobile-nav-inner { padding: 20px 24px 40px; }
.oi-mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.oi-mobile-nav-head img { height: 38px; }
.oi-mobile-close {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 36px; height: 36px;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  line-height: 1;
}
.oi-mobile-menu { list-style: none; }
.oi-mobile-menu > li > a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
}
.oi-mobile-menu > li > a:hover { background: var(--primary-tint); color: var(--primary); }
.oi-mobile-submenu {
  list-style: none;
  padding: 4px 0 4px 32px;
  display: none;
}
.oi-mobile-submenu.open { display: block; }
.oi-mobile-submenu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 8px;
  color: var(--text-body);
  font-size: 14px;
  font-weight: 500;
}
.oi-mobile-submenu li a:hover { background: var(--primary-tint); color: var(--primary); }
.oi-mobile-menu .toggle-icon {
  margin-left: auto;
  font-size: 18px;
  transition: var(--transition);
}
.oi-mobile-menu .toggle-icon.rotated { transform: rotate(180deg); }
.oi-mobile-cta {
  display: flex;
  margin-top: 20px;
}
.oi-mobile-cta .oi-btn { width: 100%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.oi-hero {
  position: relative;
  width: 100%; height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.oi-hero video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  z-index: 0;
  pointer-events: none;
  object-fit: cover;
}
.oi-hero .yt-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.oi-hero .yt-wrapper iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 177.77vh;
  height: 56.25vw;
  min-width: 100%; min-height: 100%;
  border: none;
  pointer-events: none;
}
.oi-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,4,140,.82) 0%, rgba(2,1,45,.90) 100%);
  z-index: 1;
}
.oi-hero-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  padding: 0 24px;
  max-width: 820px;
  animation: oi-fadein .9s ease both;
}
.oi-hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.oi-hero-title {
  font-size: clamp(34px, 5.5vw, 68px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
  line-height: 1.12;
}
.oi-hero-title span { color: #b0aff5; }
.oi-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
  line-height: 1.7;
}
.oi-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.oi-about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.oi-about-eyebrow::before,
.oi-about-eyebrow::after {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.oi-about-text h1 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  margin-bottom: 18px;
}
.oi-about-text p { font-size: 15px; color: var(--text-body); line-height: 1.8; }

.oi-about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.oi-about-images a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.oi-about-images img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.oi-about-images a:hover img { transform: scale(1.06); }

/* ── Stats row ── */
.oi-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 32px;
}
.oi-stat-item {
  background: #fff;
  padding: 24px 20px;
  text-align: center;
}
.oi-stat-item .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.oi-stat-item .label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   PROPERTY CARDS
   ============================================================ */
.oi-property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.oi-property-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.oi-property-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.oi-property-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
}
.oi-property-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.oi-property-card:hover .oi-property-card-img img { transform: scale(1.06); }
.oi-property-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.oi-badge-available { background: #10b981; color: #fff; }
.oi-badge-sold      { background: #ef4444; color: #fff; }
.oi-property-loc {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(0,0,0,.55);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 4px;
}
.oi-property-loc a { color: #fff; }
.oi-property-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.oi-property-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.oi-property-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.4;
}
.oi-property-name a { color: var(--text-dark); }
.oi-property-name a:hover { color: var(--primary); }
.oi-property-specs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.oi-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-body);
  font-weight: 500;
}
.oi-spec i { color: var(--primary); font-size: 15px; }
.oi-property-card-body .oi-btn { margin-top: auto; }

/* ============================================================
   BROCHURE / DOWNLOAD SECTION
   ============================================================ */
.oi-brosur-wrap {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.oi-brosur-wrap::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.oi-brosur-wrap::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.oi-brosur-wrap > * { position: relative; z-index: 1; }
.oi-brosur-wrap h3 { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.oi-brosur-wrap p { color: rgba(255,255,255,.75); margin-bottom: 32px; }

.oi-brosur-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}
.oi-brosur-form-group { display: flex; flex-direction: column; gap: 6px; }
.oi-brosur-form-group label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .5px;
}
.oi-brosur-input {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.oi-brosur-input::placeholder { color: rgba(255,255,255,.45); }
.oi-brosur-input:focus { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.18); }
.oi-brosur-form .oi-btn-submit {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  color: var(--primary);
  border: 2px solid #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.oi-brosur-form .oi-btn-submit:hover { background: transparent; color: #fff; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.oi-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.oi-blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.oi-blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.oi-blog-card-img {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.oi-blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.oi-blog-card:hover .oi-blog-card-img img { transform: scale(1.05); }
.oi-blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.oi-blog-date {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.oi-blog-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.5;
  flex: 1;
}
.oi-blog-title a { color: var(--text-dark); }
.oi-blog-title a:hover { color: var(--primary); }
.oi-blog-read {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}
.oi-blog-read:hover { gap: 10px; color: var(--primary-light); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.oi-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.oi-cta::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,.05); border-radius: 50%;
}
.oi-cta::after {
  content: '';
  position: absolute; bottom: -30%; left: -5%;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.04); border-radius: 50%;
}
.oi-cta-inner {
  position: relative; z-index: 1;
  text-align: center; color: #fff;
}
.oi-cta-inner h2 {
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 800; color: #fff; margin-bottom: 14px;
}
.oi-cta-inner p { font-size: 17px; color: rgba(255,255,255,.8); margin-bottom: 36px; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.oi-page-header {
  padding: 110px 0 56px;
  background: linear-gradient(135deg, rgba(6,4,140,.88) 0%, rgba(2,1,45,.94) 100%),
              url('/img/5089528.jpg') center/cover no-repeat;
  color: #fff;
}
.oi-page-header h1 {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 800; color: #fff; margin-bottom: 12px;
}
.oi-breadcrumb-nav {
  display: flex; align-items: center; gap: 8px;
  list-style: none; font-size: 14px;
}
.oi-breadcrumb-nav li {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.65);
}
.oi-breadcrumb-nav li:not(:last-child)::after {
  content: '/'; color: rgba(255,255,255,.35);
}
.oi-breadcrumb-nav a { color: rgba(255,255,255,.8); font-weight: 500; }
.oi-breadcrumb-nav a:hover { color: #fff; }

/* ============================================================
   PROPERTY DETAIL
   ============================================================ */
.oi-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
}
.oi-gallery-main {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.oi-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.oi-gallery-thumbnails {
  display: flex;
  gap: 8px;
  padding: 10px 0 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.oi-gallery-thumbnails::-webkit-scrollbar { display: none; }
.oi-gallery-thumb {
  flex-shrink: 0;
  width: 80px; height: 60px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.oi-gallery-thumb.active { border-color: var(--primary); }
.oi-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Lightbox */
.oi-lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.oi-lightbox.open { display: flex; }
.oi-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}
.oi-lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: #fff; font-size: 32px; cursor: pointer; line-height: 1;
  background: none; border: none;
}

.oi-detail-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.oi-detail-card h4 {
  font-size: 17px; font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--primary-tint);
  display: flex; align-items: center; gap: 8px;
}
.oi-detail-card h4 i { color: var(--primary); }

.oi-status-pill {
  display: inline-flex;
  align-items: center; gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px; font-weight: 700;
  margin-bottom: 8px;
}
.oi-status-available { background: #ecfdf5; color: #10b981; }
.oi-status-sold      { background: #fef2f2; color: #ef4444; }
.oi-status-date      { background: var(--primary-tint); color: var(--primary); }

.oi-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.oi-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
  background: var(--bg-light);
  border-radius: 8px;
  font-size: 14px;
}
.oi-spec-row .label { color: var(--text-muted); font-weight: 500; }
.oi-spec-row .value { color: var(--text-dark); font-weight: 700; }

/* Description content */
.oi-detail-body { font-size: 15px; color: var(--text-body); line-height: 1.8; }
.oi-detail-body p { margin-bottom: 16px; }

/* Sidebar */
.oi-sidebar-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.oi-sidebar-card h4 {
  font-size: 15px; font-weight: 700;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-tint);
  display: flex; align-items: center; gap: 8px;
}
.oi-sidebar-card h4 i { color: var(--primary); }

.oi-contact-form input,
.oi-contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  margin-bottom: 10px;
  outline: none;
  background: var(--bg-light);
  transition: var(--transition);
}
.oi-contact-form input:focus,
.oi-contact-form textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(6,4,140,.1);
}
.oi-contact-form textarea { resize: vertical; min-height: 90px; }

.oi-mini-prop {
  display: flex; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.oi-mini-prop:last-child { border-bottom: none; padding-bottom: 0; }
.oi-mini-prop img {
  width: 68px; height: 54px;
  object-fit: cover;
  border-radius: 8px; flex-shrink: 0;
}
.oi-mini-prop-info h6 {
  font-size: 13px; font-weight: 600; margin-bottom: 4px; line-height: 1.4;
}
.oi-mini-prop-info h6 a { color: var(--text-dark); }
.oi-mini-prop-info h6 a:hover { color: var(--primary); }
.oi-mini-prop-price { font-size: 13px; font-weight: 700; color: var(--primary); }

.oi-loc-list { list-style: none; }
.oi-loc-list li { margin-bottom: 6px; }
.oi-loc-list li a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--text-body); font-size: 14px; font-weight: 500;
}
.oi-loc-list li a:hover { background: var(--primary-tint); color: var(--primary); }
.oi-loc-list li a i { color: var(--primary); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.oi-contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.oi-contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.oi-contact-icon {
  width: 64px; height: 64px;
  background: var(--primary-tint);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px; color: var(--primary);
}
.oi-contact-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.oi-contact-card p { font-size: 14px; color: var(--text-body); margin: 0; }

.oi-maps-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.oi-maps-wrap iframe { width: 100%; height: 450px; display: block; border: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.oi-footer {
  background: #0e0f2a;
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.oi-footer-brand img { height: 42px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.oi-footer-brand p {
  font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.55); margin-bottom: 20px;
}
.oi-footer-info { list-style: none; }
.oi-footer-info li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; font-size: 14px; color: rgba(255,255,255,.6);
}
.oi-footer-info li i { color: var(--primary-light); font-size: 17px; margin-top: 2px; flex-shrink: 0; }
.oi-footer-info a { color: rgba(255,255,255,.6); }
.oi-footer-info a:hover { color: #fff; }

.oi-footer h5 {
  font-size: 14px; font-weight: 700; color: #fff;
  margin-bottom: 20px; padding-bottom: 12px;
  position: relative;
}
.oi-footer h5::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--primary); border-radius: 2px;
}
.oi-footer-links { list-style: none; }
.oi-footer-links li { margin-bottom: 10px; }
.oi-footer-links a {
  font-size: 14px; color: rgba(255,255,255,.55);
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.oi-footer-links a:hover { color: #fff; padding-left: 4px; }
.oi-footer-links a::before { content: '›'; font-size: 16px; color: var(--primary); }

.oi-footer-wa {
  display: inline-flex;
  align-items: center; gap: 10px;
  padding: 12px 20px;
  background: #25d366; color: #fff;
  border-radius: 10px; font-weight: 600; font-size: 14px;
  transition: var(--transition); margin-top: 8px;
}
.oi-footer-wa:hover { background: #1ebe5b; color: #fff; transform: translateY(-2px); }

.oi-footer-bottom {
  margin-top: 56px; padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,.4);
}
.oi-footer-bottom a { color: rgba(255,255,255,.55); }
.oi-footer-bottom a:hover { color: #fff; }

/* ============================================================
   GRID HELPERS
   ============================================================ */
.oi-grid-2       { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.oi-grid-3       { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.oi-grid-4       { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.oi-grid-about   { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.oi-grid-footer  { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.oi-grid-content { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }

.oi-text-center { text-align: center; }
.oi-mt-8  { margin-top: 8px; }
.oi-mt-16 { margin-top: 16px; }
.oi-mt-24 { margin-top: 24px; }
.oi-mt-32 { margin-top: 32px; }
.oi-mt-40 { margin-top: 40px; }
.oi-mt-48 { margin-top: 48px; }
.oi-mb-0  { margin-bottom: 0; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes oi-fadein {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes oi-fadedown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .oi-nav-menu { display: none; }
  .oi-nav-toggle { display: flex; }
  .oi-grid-4 { grid-template-columns: repeat(2,1fr); }
  .oi-grid-content { grid-template-columns: 1fr; }
  .oi-grid-footer { grid-template-columns: 1fr 1fr; }
  .oi-grid-about { gap: 36px; }
}
@media (max-width: 768px) {
  .oi-section, .oi-section-alt { padding: 56px 0; }
  .oi-grid-2, .oi-grid-3, .oi-grid-about { grid-template-columns: 1fr; }
  .oi-grid-footer { grid-template-columns: 1fr; gap: 32px; }
  .oi-about-images { grid-template-columns: 1fr 1fr; }
  .oi-stats { grid-template-columns: repeat(3,1fr); }
  .oi-brosur-form { grid-template-columns: 1fr; }
  .oi-brosur-wrap { padding: 36px 24px; }
  .oi-gallery-main { height: 260px; }
  .oi-specs-grid { grid-template-columns: 1fr; }
  .oi-property-grid { grid-template-columns: 1fr; }
  .oi-blog-grid { grid-template-columns: 1fr; }
  .oi-grid-4 { grid-template-columns: 1fr; }
  .oi-hero { height: 85vh; }
}
@media (max-width: 480px) {
  .oi-hero-title { font-size: 30px; }
  .oi-hero-actions { flex-direction: column; align-items: center; }
  .oi-footer-bottom { flex-direction: column; text-align: center; }
  .oi-detail-card { padding: 20px 16px; }
  .oi-stats { grid-template-columns: repeat(3,1fr); }
  .oi-stat-item .num { font-size: 24px; }
  .oi-about-images { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ERROR PAGES  (404 / 403 / 500)
   ============================================================ */
.oi-error-wrap {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.oi-error-wrap::before {
  content: attr(data-code);
  position: absolute;
  font-size: clamp(180px, 28vw, 340px);
  font-weight: 900;
  color: var(--primary-tint);
  letter-spacing: -12px;
  line-height: 1;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}
.oi-error-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
}
.oi-error-icon {
  width: 80px; height: 80px;
  border-radius: 20px;
  background: var(--primary-tint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 28px;
}
.oi-error-icon.orange { background: #fff7ed; color: #ea580c; }
.oi-error-icon.red    { background: #fef2f2; color: #dc2626; }
.oi-error-code-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.oi-error-code-label.orange { color: #ea580c; }
.oi-error-code-label.red    { color: #dc2626; }
.oi-error-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}
.oi-error-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}
.oi-error-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .oi-error-actions { flex-direction: column; align-items: center; }
  .oi-error-actions .oi-btn { width: 100%; justify-content: center; }
}
