/* reality2u — Money2u style */
:root {
  --navy: #0A1628;
  --teal: #99C6C3;
  --teal-dark: #7caaa7;
  --gold: #F5A623;
  --cream: #F8F6F0;
  --glass: rgba(25,45,77,0.45);
  --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; }

a { text-decoration: none; color: inherit; }

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(153,198,195,0.15);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}
.logo-main .reality { color: var(--teal); }
.logo-main .twou { color: var(--white); }
.logo-sub {
  font-size: 0.65rem;
  color: rgba(153,198,195,0.7);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-links .nav-cta {
  background: var(--teal);
  color: var(--navy);
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.nav-links .nav-cta:hover { background: var(--teal-dark); color: var(--white); }

/* HERO */
.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, #0A1628 0%, #0d2044 50%, #0a1e38 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(153,198,195,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(153,198,195,0.15);
  border: 1px solid rgba(153,198,195,0.3);
  color: var(--teal);
  padding: 0.4rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.hero h1 .accent { color: var(--teal); }

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--teal);
  color: var(--navy);
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

/* STATS */
.stats-section {
  background: var(--white);
  padding: 4rem 2rem;
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-number span { color: var(--teal-dark); }
.stat-label {
  color: #666;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

/* SECTION TITLES */
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.section-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 560px;
}
.section-sub.dark { color: #666; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* SERVICES */
.services-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #0A1628 0%, #0d1f3a 100%);
}
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--glass);
  border: 1px solid rgba(153,198,195,0.2);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s;
}
.service-card:hover {
  border-color: rgba(153,198,195,0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--white);
}
.service-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* PROPERTY CARDS */
.properties-section {
  padding: 6rem 2rem;
  background: var(--cream);
}
.properties-section .section-title { color: var(--navy); }
.properties-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.prop-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
}
.prop-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.prop-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.prop-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
}
.badge-new { background: var(--teal); color: var(--navy); }
.badge-sale { background: var(--gold); color: var(--navy); }
.badge-reserved { background: #e53e3e; color: white; }
.badge-sold { background: #718096; color: white; }
.badge-commercial { background: #6b46c1; color: white; }
.badge-rent { background: #38a169; color: white; }

.prop-body { padding: 1.2rem; }
.prop-type {
  font-size: 0.8rem;
  color: var(--teal-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.prop-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.prop-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.prop-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.prop-meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: #666;
}
.prop-meta-item svg { color: var(--teal-dark); }
.prop-rating {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.prop-actions {
  display: flex;
  gap: 0.7rem;
}
.btn-small {
  flex: 1;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-align: center;
  display: inline-block;
}
.btn-small-primary { background: var(--navy); color: var(--white); }
.btn-small-primary:hover { background: var(--teal-dark); }
.btn-small-outline { background: transparent; color: var(--navy); border: 1px solid #ddd; }
.btn-small-outline:hover { border-color: var(--teal); color: var(--teal-dark); }

/* CTA SECTION */
.cta-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0d2044 0%, var(--navy) 100%);
  text-align: center;
}
.cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.05rem; }

/* FOOTER */
footer {
  background: #060e1a;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(153,198,195,0.1);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-top: 0.8rem;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--teal); }

/* PAGE HERO (subpages) */
.page-hero {
  background: linear-gradient(135deg, #0A1628 0%, #0d2044 100%);
  padding: 6rem 2rem 4rem;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 0.8rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }

/* FILTER BAR */
.filter-bar {
  background: var(--white);
  padding: 2rem;
  border-bottom: 1px solid #eee;
}
.filter-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  border: 1px solid #ddd;
  background: transparent;
  color: #555;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab.active, .filter-tab:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.filter-controls {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.filter-controls select {
  padding: 0.6rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #333;
  background: white;
  cursor: pointer;
}
.btn-search {
  background: var(--teal-dark);
  color: white;
  padding: 0.65rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-search:hover { background: var(--navy); }

/* WHITE SECTION */
.white-section {
  background: var(--white);
  padding: 5rem 2rem;
}
.white-section .section-title { color: var(--navy); }

/* DETAIL PAGE */
.detail-hero {
  height: 400px;
  position: relative;
  overflow: hidden;
}
.detail-gallery {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  height: 80px;
}
.gallery-thumb {
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.gallery-thumb:hover { opacity: 0.8; }
.detail-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
}
.detail-main {}
.detail-sidebar {}
.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: sticky;
  top: 90px;
  color: var(--navy);
}
.contact-form-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.form-field {
  margin-bottom: 1rem;
}
.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 0.3rem;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #333;
  background: white;
  font-family: 'Inter', sans-serif;
  transition: border 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--teal-dark);
}

/* TEAM CARDS */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.team-card {
  background: var(--glass);
  border: 1px solid rgba(153,198,195,0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(20px);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
.team-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

/* VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-align: center;
}
.value-card .icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-card h3 { color: var(--navy); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-card p { color: #666; font-size: 0.9rem; }

/* SERVICES DETAIL */
.service-detail-section {
  padding: 4rem 2rem;
}
.service-detail-section:nth-child(odd) { background: var(--white); }
.service-detail-section:nth-child(even) { background: var(--cream); }
.service-detail-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-detail-section:nth-child(even) .service-detail-inner { direction: rtl; }
.service-detail-section:nth-child(even) .service-detail-inner > * { direction: ltr; }
.service-detail-text h2 { color: var(--navy); font-size: 1.8rem; font-weight: 800; margin-bottom: 1rem; }
.service-detail-text ul { list-style: none; margin-bottom: 1.5rem; }
.service-detail-text ul li {
  padding: 0.4rem 0;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.service-detail-text ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-dark);
  margin-top: 0.55rem;
  flex-shrink: 0;
}
.service-detail-visual {
  border-radius: 20px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* KONTAKT */
.kontakt-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.kontakt-info h2 { color: var(--navy); font-size: 1.6rem; font-weight: 800; margin-bottom: 1.5rem; }
.kontakt-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.kontakt-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(153,198,195,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kontakt-info-text h4 { color: var(--navy); font-weight: 700; margin-bottom: 0.2rem; }
.kontakt-info-text p { color: #666; font-size: 0.9rem; }
.map-placeholder {
  border-radius: 16px;
  overflow: hidden;
  height: 250px;
  margin-top: 2rem;
}
.kontakt-form-section { background: var(--white); }
.form-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.form-card h2 { color: var(--navy); font-size: 1.4rem; font-weight: 800; margin-bottom: 1.5rem; }
.btn-full { width: 100%; padding: 0.85rem; border: none; border-radius: 10px; background: var(--navy); color: white; font-weight: 700; font-size: 1rem; cursor: pointer; transition: background 0.2s; }
.btn-full:hover { background: var(--teal-dark); }

/* DARK SECTION ALT */
.dark-section {
  background: var(--navy);
  padding: 5rem 2rem;
}
.dark-section .section-title { color: var(--white); }
.dark-section .section-sub { color: rgba(255,255,255,0.65); }

/* SYNERGY */
.synergy-section {
  background: linear-gradient(135deg, #0d2044 0%, #0A1628 100%);
  padding: 5rem 2rem;
  text-align: center;
}
.synergy-inner {
  max-width: 700px;
  margin: 0 auto;
}
.synergy-inner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.synergy-inner p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; }
  .service-detail-section:nth-child(even) .service-detail-inner { direction: ltr; }
  .kontakt-layout { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
