/*
Theme Name: RealEstate Pro
Theme URI: https://example.com/realestate-pro
Author: Local Developer
Author URI: https://example.com
Description: Modern and professional real estate WordPress theme with Elementor-friendly templates.
Version: 1.0.5
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: realestate-pro
*/

:root {
  --re-bg: #0f172a;
  --re-bg-soft: #111f3c;
  --re-light: #f8fafc;
  --re-muted: #94a3b8;
  --re-primary: #0386cc;
  --re-primary-dark: #02679d;
  --re-secondary: #72b54b;
  --re-card: #ffffff;
  --re-heading: #0b1220;
  --re-border: #e2e8f0;
  --re-shadow: 0 20px 35px rgba(15, 23, 42, 0.14);
  --re-radius: 16px;
  --re-container: 1160px;
  --re-accent-glow: 0 0 0 6px rgba(3, 134, 204, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background: radial-gradient(circle at top right, #e5f3fb 0%, #f1f5f9 42%, #e2edf4 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.re-container {
  width: min(100% - 2rem, var(--re-container));
  margin-inline: auto;
}

.re-site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(7, 13, 27, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  transition: all 0.3s ease;
}

.re-header-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.re-site-header.re-header-scrolled {
  background: rgba(7, 13, 27, 0.95);
  border-bottom-color: rgba(3, 134, 204, 0.5);
}

.re-brand-wrap {
  display: flex;
  align-items: center;
}

.re-brand-logo .custom-logo-link,
.re-brand-logo .custom-logo {
  display: block;
}

.re-brand-logo .custom-logo {
  max-height: 54px;
  width: auto;
}

.re-brand {
  color: var(--re-light);
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 1.25rem;
}

.re-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.re-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(226, 232, 240, 0.35);
  background: rgba(15, 23, 42, 0.5);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.re-menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: #e2e8f0;
}

.re-nav-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.re-nav a {
  color: #e2e8f0;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: all 0.22s ease;
}

.re-nav a:hover,
.re-nav .current-menu-item > a {
  background: rgba(3, 134, 204, 0.2);
  color: #e0f2ff;
}

.re-btn {
  display: inline-block;
  background: var(--re-primary);
  color: #f3fbff;
  font-weight: 700;
  border: 0;
  border-radius: 12px;
  padding: 0.86rem 1.24rem;
  box-shadow: 0 12px 24px rgba(3, 134, 204, 0.3);
  transition: all 0.25s ease;
}

.re-btn:hover {
  transform: translateY(-2px) scale(1.01);
  background: var(--re-secondary);
  color: #0f2a04;
}

.re-hero {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(17, 31, 60, 0.9)),
    url("https://images.unsplash.com/photo-1568605114967-8130f3a36994?auto=format&fit=crop&w=1920&q=80")
      center/cover;
  color: var(--re-light);
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.re-hero::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(3, 134, 204, 0.28), rgba(114, 181, 75, 0.06));
  border-radius: 50%;
  pointer-events: none;
}

.re-hero-inner {
  max-width: 720px;
}

.re-hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  align-items: end;
}

.re-hero-tag {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d9f1ff;
  border: 1px solid rgba(3, 134, 204, 0.55);
  background: rgba(3, 134, 204, 0.17);
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  margin-bottom: 0.9rem;
}

.re-hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.re-btn-outline {
  background: transparent;
  border: 1px solid rgba(224, 242, 255, 0.6);
  color: #e0f2ff;
  box-shadow: none;
}

.re-btn-outline:hover {
  border-color: var(--re-secondary);
  background: rgba(114, 181, 75, 0.14);
  color: #e9f8df;
}

.re-hero-metrics {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.re-hero-metrics div {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 12px;
  padding: 0.7rem;
}

.re-hero-metrics strong {
  display: block;
  font-size: 1.2rem;
  color: #ffffff;
}

.re-hero-metrics span {
  font-size: 0.78rem;
  color: #d5e7f3;
}

.re-hero-card {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  background: linear-gradient(160deg, rgba(4, 31, 48, 0.88), rgba(10, 41, 24, 0.82));
  box-shadow: 0 25px 46px rgba(2, 8, 23, 0.35);
  padding: 1.35rem;
  color: #e8f7ff;
}

.re-hero-card h3 {
  margin: 0 0 0.6rem;
  color: #fff;
}

.re-hero-card-text {
  margin: 0 0 0.8rem;
  color: #d6ecfb;
}

.re-hero-card ul {
  margin: 0 0 1rem;
  padding-left: 1rem;
}

.re-hero-card li {
  margin-bottom: 0.4rem;
  color: #d7eaf6;
}

.re-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.18;
  margin: 0 0 1rem;
}

.re-hero p {
  color: #cbd5e1;
  max-width: 60ch;
  margin: 0 0 1.8rem;
}

.re-grid {
  display: grid;
  gap: 1.2rem;
}

.re-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.re-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.re-section {
  padding: 4.8rem 0;
}

.re-section-dark {
  background: var(--re-bg);
  color: var(--re-light);
}

.re-title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin: 0 0 0.75rem;
  color: var(--re-heading);
}

.re-section-dark .re-title {
  color: var(--re-light);
}

.re-subtitle {
  color: #64748b;
  max-width: 66ch;
  margin: 0 0 2rem;
}

.re-section-dark .re-subtitle {
  color: #cbd5e1;
}

.re-section-dark > .re-container > p {
  color: #cbd5e1;
}

.re-card {
  background: var(--re-card);
  border: 1px solid var(--re-border);
  border-radius: var(--re-radius);
  padding: 1.4rem;
  box-shadow: var(--re-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.re-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 46px rgba(15, 23, 42, 0.18);
}

.re-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--re-heading);
}

.re-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.65;
}

.re-section-dark .re-card {
  color: #475569;
}

.re-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.2);
  border-radius: 14px;
  padding: 1.1rem;
}

.re-stat strong {
  display: block;
  font-size: 1.6rem;
  color: #b5ebff;
}

.re-project-card {
  overflow: hidden;
  border-radius: var(--re-radius);
  border: 1px solid var(--re-border);
  background: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.re-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px rgba(15, 23, 42, 0.16);
}

.re-project-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.re-project-content {
  padding: 1rem 1rem 1.2rem;
}

.re-project-content h3 {
  margin: 0 0 0.35rem;
}

.re-contact-box {
  background: #fff;
  border-radius: var(--re-radius);
  border: 1px solid var(--re-border);
  padding: 1.5rem;
}

.re-contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.re-contact-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(3, 134, 204, 0.25);
  color: #0f2740;
  font-size: 0.82rem;
  font-weight: 600;
  background: #f8fbff;
  transition: all 0.2s ease;
}

.re-contact-social a:hover {
  color: #0b5f8f;
  border-color: rgba(3, 134, 204, 0.6);
  background: #eef8ff;
}

.re-map-wrap {
  background: #fff;
  border: 1px solid var(--re-border);
  border-radius: var(--re-radius);
  overflow: hidden;
  box-shadow: var(--re-shadow);
}

.re-map-wrap iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.re-contact-form-box {
  background: #fff;
  border: 1px solid var(--re-border);
  border-radius: var(--re-radius);
  box-shadow: var(--re-shadow);
  padding: 1.4rem;
}

.re-fallback-form input,
.re-fallback-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: #0f172a;
  margin-bottom: 0.8rem;
}

.re-fallback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.re-fallback-form button {
  margin-top: 0.2rem;
}

.re-site-footer {
  margin-top: 3rem;
  color: #e2e8f0;
}

.re-footer-main {
  background: linear-gradient(180deg, #0a1628 0%, #0f172a 40%, #0b1220 100%);
  border-top: 1px solid rgba(3, 134, 204, 0.25);
  padding: 3rem 0 2.5rem;
}

.re-footer-main-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2.2fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.re-footer-logo-text {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f8fafc;
}

.re-footer-tagline {
  margin: 0;
  max-width: 36ch;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #94a3b8;
}

.re-footer-logo {
  margin-bottom: 0.85rem;
}

.re-footer-logo .custom-logo {
  max-height: 56px;
  width: auto;
}

.re-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.re-footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #e2e8f0;
  font-size: 0.78rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.re-footer-social a:hover {
  color: #7dd3fc;
  border-color: rgba(125, 211, 252, 0.75);
}

.re-social-icon {
  width: 1rem;
  height: 1rem;
  display: inline-block;
  flex: 0 0 auto;
  fill: currentColor;
}

.re-footer-widgets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.re-footer-widgets--fallback {
  border-left: 1px solid rgba(148, 163, 184, 0.15);
  padding-left: clamp(1rem, 3vw, 2rem);
}

.re-footer-heading {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #72b54b;
}

.re-footer-nav .re-footer-menu,
.re-footer-nav ul,
.re-footer-nav .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.re-footer-nav a {
  display: block;
  padding: 0.35rem 0;
  color: #e2e8f0;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.re-footer-nav a:hover {
  color: #7dd3fc;
}

.re-footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #cbd5e1;
}

.re-footer-contact a {
  color: #e2e8f0;
}

.re-footer-contact a:hover {
  color: #7dd3fc;
}

.re-footer-note {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.55;
}

.re-btn-footer {
  font-size: 0.82rem;
  padding: 0.65rem 1rem;
}

.re-footer-widget-title {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #86efac;
}

.re-footer-widget {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.55;
}

.re-footer-widget a {
  color: #e2e8f0;
}

.re-footer-widget a:hover {
  color: #7dd3fc;
}

.re-footer-bar {
  background: #050b14;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding: 1rem 0;
}

.re-footer-map {
  background: #081120;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding: 1rem 0 1.2rem;
}

.re-footer-map-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 18px 30px rgba(2, 8, 23, 0.24);
}

.re-footer-map-wrap iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.re-footer-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.re-footer-copy {
  margin: 0;
  font-size: 0.82rem;
  color: #94a3b8;
}

.re-footer-powered {
  margin: 0;
  font-size: 0.75rem;
  color: #64748b;
}

.re-elementor-canvas {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.re-elementor-canvas__inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.re-elementor-canvas__inner > .elementor {
  max-width: none;
}

.re-content-wrap {
  padding-top: 2.5rem;
}

.re-about-body p {
  color: #475569;
  max-width: 72ch;
  line-height: 1.65;
  margin: 0 0 1rem;
}

.re-about-body p:last-child {
  margin-bottom: 0;
}

.re-about-subheading {
  margin: 0 0 0.75rem;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 600;
  color: #b5ebff;
}

.re-section:not(.re-section-dark) .re-about-subheading {
  color: var(--re-primary);
}

.re-about-achievement {
  margin: 0;
  font-weight: 600;
  color: var(--re-heading);
}

.re-about-achievement::before {
  content: "✅ ";
}

.re-about-quote {
  margin: 0;
  max-width: 72ch;
  padding: 0 0 0 1.1rem;
  border-left: 4px solid var(--re-primary);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  font-style: italic;
  color: #e2e8f0;
}

.re-md-panel {
  max-width: 52rem;
  margin: 0 auto;
  padding: 1.75rem 1.85rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.42);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 18px 40px rgba(2, 8, 23, 0.25);
}

.re-md-panel__title {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  color: #f1f5f9;
}

.re-md-panel__quote {
  max-width: none;
  margin: 0;
}

.re-md-panel__meta {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 600;
  color: #cbd5e1;
}

.re-md-panel__name {
  color: #f8fafc;
}

.re-md-panel__role {
  color: #7dd3fc;
  font-weight: 600;
}

.re-md-panel__co {
  font-weight: 500;
  color: #94a3b8;
}

.re-editor-content {
  background: #fff;
  border: 1px solid var(--re-border);
  border-radius: var(--re-radius);
  padding: 1.5rem;
}

.re-editor-content:focus-within {
  box-shadow: var(--re-accent-glow);
}

.re-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.re-animate.re-in-view {
  opacity: 1;
  transform: translateY(0);
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.re-cta-block {
  background: linear-gradient(120deg, #013e5f, #0a2f44);
  color: #f8fafc;
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 22px 40px rgba(2, 8, 23, 0.22);
}

.re-cta-block h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.re-cta-block p {
  color: #cbd5e1;
  margin: 0 0 1.2rem;
}

.re-projects-hero {
  padding-top: 3.2rem;
  padding-bottom: 2.2rem;
}

.re-projects-hero-card {
  background: linear-gradient(135deg, rgba(1, 62, 95, 0.96), rgba(7, 25, 42, 0.94));
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 20px;
  box-shadow: 0 26px 45px rgba(2, 8, 23, 0.26);
  padding: 1.6rem;
  color: #e6f6ff;
}

.re-projects-kicker {
  display: inline-block;
  margin: 0 0 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #def1ff;
  border: 1px solid rgba(3, 134, 204, 0.65);
  background: rgba(3, 134, 204, 0.2);
}

.re-projects-hero .re-title,
.re-projects-hero .re-subtitle {
  color: #f4fbff;
}

.re-projects-hero .re-subtitle {
  margin-bottom: 1rem;
  max-width: 65ch;
}

.re-project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.re-project-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f3f9ff;
  font-size: 0.86rem;
}

.re-projects-hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.re-ventures-section {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
  background: linear-gradient(180deg, #f0f5f9 0%, #f8fafc 45%, #eef4f8 100%);
  border-top: 1px solid rgba(3, 134, 204, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.re-ventures-section .re-title {
  letter-spacing: -0.02em;
}

.re-venture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.re-venture-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff 0%, #f7fafc 55%, #ffffff 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 14px 32px rgba(15, 23, 42, 0.07),
    0 2px 6px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.25s ease;
}

.re-venture-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: radial-gradient(120% 80% at 100% 0%, rgba(3, 134, 204, 0.09), transparent 55%);
}

.re-venture-card:hover {
  transform: translateY(-8px);
  border-color: rgba(3, 134, 204, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 24px 48px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(3, 134, 204, 0.12);
}

.re-venture-card:hover::after {
  opacity: 1;
}

.re-venture-card__accent {
  height: 5px;
  width: 100%;
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--re-primary) 0%, #0aa8e6 45%, var(--re-secondary) 100%);
}

.re-venture-card__accent--featured {
  height: 6px;
  background: linear-gradient(90deg, var(--re-secondary) 0%, #8bc96a 40%, var(--re-primary) 100%);
}

.re-venture-card-featured {
  border-color: rgba(114, 181, 75, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 18px 40px rgba(114, 181, 75, 0.12),
    0 14px 28px rgba(3, 134, 204, 0.08);
}

.re-venture-card__inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.35rem 1.35rem;
  min-height: 220px;
}

.re-venture-card__media {
  position: relative;
  height: 158px;
  width: calc(100% + 2.7rem);
  max-width: none;
  margin: -1.25rem -1.35rem 1rem;
  background-color: #0b1f33;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.re-venture-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 20, 35, 0.05) 0%, rgba(8, 20, 35, 0.55) 100%);
  pointer-events: none;
}

.re-venture-card__media--1 {
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=900&q=80");
}

.re-venture-card__media--2 {
  background-image: url("https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=900&q=80");
}

.re-venture-card__media--3 {
  background-image: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=900&q=80");
}

.re-venture-card__media--4 {
  background-image: url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=900&q=80");
}

.re-venture-card__media--5 {
  background-image: url("https://images.unsplash.com/photo-1600047509807-ba8f99d2cdde?auto=format&fit=crop&w=900&q=80");
}

.re-venture-card__media--6 {
  background-image: url("https://images.unsplash.com/photo-1600566753376-12c8ab7fb75b?auto=format&fit=crop&w=900&q=80");
}

.re-venture-card__media--7 {
  background-image: url("https://images.unsplash.com/photo-1600585154529-762f2d33dbf6?auto=format&fit=crop&w=900&q=80");
}

.re-venture-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.re-venture-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0c4a6e;
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  border: 1px solid rgba(3, 134, 204, 0.22);
  border-radius: 6px;
  padding: 0.35rem 0.65rem;
}

.re-venture-badge-accent {
  color: #14532d;
  background: linear-gradient(135deg, #dcfce7 0%, #d9f99d 100%);
  border-color: rgba(114, 181, 75, 0.4);
}

.re-venture-card__body {
  flex: 1;
}

.re-venture-card__body h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: #0b1f33;
}

.re-venture-card__body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.62;
  color: #5b6b7d;
}

.re-venture-card__foot {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.re-venture-card__foot--split {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.re-venture-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.72rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #f8fafc;
  background: linear-gradient(135deg, var(--re-primary) 0%, #02679d 100%);
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 14px rgba(3, 134, 204, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.re-venture-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(3, 134, 204, 0.4);
  color: #fff;
}

.re-venture-card__foot--split .re-venture-btn {
  width: auto;
  flex: 1;
  min-width: 120px;
}

.re-venture-btn--secondary {
  background: #fff;
  color: var(--re-primary);
  border: 1px solid rgba(3, 134, 204, 0.35);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.re-venture-btn--secondary:hover {
  background: #f0f9ff;
  border-color: var(--re-primary);
  box-shadow: 0 4px 14px rgba(3, 134, 204, 0.15);
}

.re-founder-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.re-founder-panel {
  display: grid;
  grid-template-columns: minmax(220px, min(38%, 380px)) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f4f8fb 50%, #eef6fa 100%);
  border: 1px solid rgba(3, 134, 204, 0.14);
  border-radius: 22px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
  padding: 1.75rem 1.85rem;
  overflow: hidden;
}

.re-founder-visual {
  position: relative;
  min-width: 0;
  justify-self: stretch;
}

.re-founder-copy {
  min-width: 0;
  text-align: left;
}

.re-founder-photo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.re-founder-photo--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(160deg, #e0f2fe 0%, #f0fdf4 100%);
  color: #0b1f33;
  text-align: center;
  padding: 1.25rem;
}

.re-founder-photo__initial {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--re-primary);
}

.re-founder-photo__hint {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #64748b;
  max-width: 18ch;
}

.re-founder-copy .re-title {
  margin-bottom: 0.5rem;
}

.re-founder-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--re-primary);
}

.re-founder-name {
  margin: 0 0 0.25rem;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0b1f33;
}

.re-founder-role {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--re-secondary);
}

.re-founder-bio {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #475569;
}

.re-founder-bio p {
  margin: 0 0 0.65rem;
}

.re-founder-bio p:last-child {
  margin-bottom: 0;
}

.re-venture-spotlight {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: center;
  background: linear-gradient(140deg, #ffffff 0%, #f4f8fb 55%, #eef6fa 100%);
  border: 1px solid rgba(3, 134, 204, 0.14);
  border-radius: 22px;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
  padding: 1.5rem;
}

.re-venture-spotlight__media img,
.re-venture-spotlight__placeholder {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.re-venture-spotlight__media img {
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.re-venture-spotlight__placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  color: #64748b;
  background: linear-gradient(160deg, #e0f2fe 0%, #f0fdf4 100%);
  font-size: 0.88rem;
  line-height: 1.5;
}

.re-venture-spotlight__content .re-title {
  margin-bottom: 0.45rem;
}

.re-venture-spotlight__content .re-subtitle {
  margin-bottom: 1rem;
}

.re-venture-spotlight__list {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: #475569;
}

.re-venture-spotlight__list li {
  margin-bottom: 0.45rem;
}

@media (max-width: 640px) {
  .re-founder-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .re-founder-copy {
    text-align: center;
  }

  .re-founder-photo,
  .re-founder-photo--placeholder {
    max-width: 320px;
    margin-inline: auto;
  }

  .re-founder-copy .re-btn {
    margin-inline: auto;
  }

  .re-venture-spotlight {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .re-venture-spotlight__list {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .re-venture-card__foot--split {
    flex-direction: column;
  }

  .re-venture-card__foot--split .re-venture-btn {
    width: 100%;
    min-width: 0;
  }
}

.re-projects-highlight-grid .re-stat {
  min-height: 112px;
}

.re-project-detail-media {
  margin: 0 0 1.1rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.32);
  box-shadow: 0 18px 35px rgba(2, 8, 23, 0.22);
}

.re-project-detail-media img {
  width: 100%;
  height: clamp(220px, 32vw, 360px);
  object-fit: cover;
  display: block;
}

.re-project-gallery {
  margin: 0 0 1.75rem;
}

.re-section-dark .re-project-gallery__title {
  margin: 0 0 1rem;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: #e2e8f0;
}

.re-project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.85rem;
}

.re-project-gallery-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.32);
  box-shadow: 0 12px 24px rgba(2, 8, 23, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.re-project-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(2, 8, 23, 0.28);
}

.re-project-gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.re-project-amenities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.re-project-amenities span {
  display: block;
  background: #ffffff;
  border: 1px solid var(--re-border);
  border-radius: 12px;
  padding: 0.9rem;
  box-shadow: var(--re-shadow);
  font-weight: 600;
  color: #0f2740;
}

.re-media-hero {
  padding-top: 3.2rem;
  padding-bottom: 2.4rem;
}

.re-media-hero .re-title {
  margin-bottom: 0.5rem;
}

.re-media-section {
  padding-top: 2.4rem;
  padding-bottom: 3.4rem;
}

.re-media-grid {
  display: grid;
  gap: 1rem;
}

.re-media-grid--images {
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}

.re-media-grid--videos {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.re-media-item {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.re-media-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.18);
}

.re-media-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.re-media-video-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.45);
  box-shadow: 0 16px 30px rgba(2, 8, 23, 0.26);
}

.re-media-video-card video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: #020617;
}

.re-media-video-title {
  margin: 0;
  padding: 0.85rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
}

@media (max-width: 960px) {
  .re-grid-3,
  .re-grid-2 {
    grid-template-columns: 1fr;
  }

  .re-footer-main-inner {
    grid-template-columns: 1fr;
  }

  .re-footer-widgets,
  .re-footer-widgets--fallback {
    grid-template-columns: 1fr;
    border-left: 0;
    padding-left: 0;
  }

  .re-footer-bar-inner {
    flex-direction: column;
    text-align: center;
  }

  .re-header-wrap {
    min-height: auto;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0.9rem 0;
  }

  .re-menu-toggle {
    display: inline-flex;
  }

  .re-nav-wrap {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    background: rgba(7, 13, 27, 0.97);
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 14px;
    padding: 0.9rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 24px 40px rgba(2, 8, 23, 0.3);
  }

  .re-nav-wrap.is-open {
    display: flex;
  }

  .re-nav .re-menu-list,
  .re-nav ul {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .re-nav a {
    display: block;
    width: 100%;
  }

  .re-fallback-grid {
    grid-template-columns: 1fr;
  }

  .re-nav-cta {
    text-align: center;
  }

  .re-hero {
    padding-top: 5rem;
  }

  .re-hero-layout {
    grid-template-columns: 1fr;
  }

  .re-hero-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .re-project-amenities {
    grid-template-columns: 1fr;
  }

  .re-brand-logo .custom-logo {
    max-height: 44px;
  }
}
