/* Global Styles */
:root {
  --primary-color: #003366;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --gold-color: #daa520;
  --text-color: #333;
  --light-bg: #f8f9fa;
  --section-bg: #f4f4f4;
  --explore-btn: #e07a5f;
  --visa-bg: #fffdf6;
  --roi-btn: #2e8b57;
  --gold-color-rgb: 218, 165, 32;
}

section:not(:first-of-type) {
  scroll-margin-top: 80px;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

/* Navigation Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 10px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-logo {
  height: 65px;
  max-height: 65px;
  object-fit: contain;
  transition: all 0.3s ease;

}

.navbar-logo:hover {
  transform: scale(1.05);
}

.navbar.scrolled .navbar-logo {
  height: 55px;
  max-height: 55px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 2rem;
}

.navbar .nav-link {
  color: #333;
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.2rem;
  position: relative;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.navbar .nav-link:hover {
  color: var(--gold-color);
  font-weight: bold;
}

.nav-link.active {
  color: var(--gold-color) !important;
  font-weight: bold;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: var(--gold-color);
  transition: all 0.3s ease;
}

/* .navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--gold-color);
  transition: all 0.3s ease;
} */

.navbar .nav-link:hover::after {
  width: 30px;
}

/* Responsive Navigation */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
  }

  .navbar .nav-link {
    padding: 0.8rem 1rem;
    margin: 0.2rem 0;
  }

  .nav-link.active::after,
  .navbar .nav-link::after {
    display: none;
  }

  .nav-link.active {
    background-color: rgba(var(--gold-color-rgb), 0.1);
    border-radius: 5px;
  }
}

/* Hero Section Compatibility */
.hero-section {
  padding-top: 80px;
  /* Add padding to account for fixed navbar */
}

@media (max-width: 991px) {
  .hero-section {
    padding-top: 70px;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

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

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

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(100%);
  transform: scale(1.1);
  transition: transform 10s ease-out;
  will-change: transform;
}

.slide.active {
  opacity: 1;
}

.slide.active img {
  transform: scale(1);
}

.slide-content {
  position: absolute;
  top: 78%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 90%;
  max-width: 1200px;
  z-index: 2;
  opacity: 0;
  transition: opacity 1s ease-in-out 0.5s;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.slide.active .slide-content {
  opacity: 1;
}

.hero-title {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 1s ease-in-out 0.6s, opacity 1s ease-in-out 0.6s;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.slide.active .hero-title {
  transform: translateY(0);
  opacity: 1;
}

.hero-subtitle {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 1s ease-in-out 0.7s, opacity 1s ease-in-out 0.7s;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.slide.active .hero-subtitle {
  transform: translateY(0);
  opacity: 1;
}

.hero-buttons {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 1s ease-in-out 0.8s, opacity 1s ease-in-out 0.8s;
}

.slide.active .hero-buttons {
  transform: translateY(0);
  opacity: 1;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 3;
  opacity: 0;
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.hero-slider:hover .slider-nav {
  opacity: 1;
}

.slider-nav.prev {
  left: 20px;
}

.slider-nav.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

.btn-consultation-outline {
  background: var(--gold-color);
  border: 2px solid var(--gold-color);
  border-radius: 30px;
  color: black;
  padding: 12px 30px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.btn-consultation-outline:hover {
  background: var(--gold-color);
  color: black;
  transform: translateY(-2px);
}

/* Properties Section */
.properties-section {
  background-color: white;
  padding: 80px 0;
}

.property-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.property-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
  transform: scale(1.1);
}

.property-type {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold-color);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  max-width: 50%;
  text-align: center;
}

.property-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.property-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.location {
  color: #666;
  font-size: 1rem;
  margin-bottom: 15px;
}

.location i {
  color: var(--gold-color);
  margin-right: 5px;
}

.property-features {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.property-features span {
  color: #666;
  font-size: 0.9rem;
}

.property-features i {
  color: var(--gold-color);
  margin-right: 5px;
}

.description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.property-benefits {
  margin-bottom: 20px;
}

.property-benefits .benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
}

.property-benefits .benefit-item i {
  color: var(--gold-color);
  margin-right: 10px;
  font-size: 1.1rem;
}

.property-benefits .benefit-item span {
  color: #666;
  font-size: 0.95rem;
}

.property-price {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  margin-bottom: 20px;
  margin-top: 20px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.yield {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 5px 10px;
  border-radius: 15px;
  font-weight: 600;
}

.btn-explore {
  background-color: transparent;
  border: 2px solid var(--gold-color);
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 1px;
  width: 100%;
  transition: all 0.3s ease;
  margin-top: auto;
}

.btn-explore:hover {
  background-color: var(--gold-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

@media (max-width: 768px) {
  .property-features {
    flex-direction: column;
    gap: 10px;
  }

  .property-features span {
    margin-bottom: 5px;
  }

  .property-price {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .property-type {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .property-benefits .benefit-item {
    padding: 6px 0;
  }
}

/* Investment Calculator */
#investment {
  background-color: var(--light-bg);
}

#calculator-form .form-control {
  padding: 12px;
  border-radius: 5px;
}

#calculator-form .btn-primary {
  padding: 12px;
  font-weight: 600;
}

/* Contact Form */
#contact-form .form-control {
  padding: 12px;
  border-radius: 5px;
}

#contact-form .btn-primary {
  padding: 12px 30px;
  font-weight: 600;
}

/* Footer */
footer {
  background-color: var(--primary-color);
}

footer h5 {
  margin-bottom: 1rem;
}

/* Why Dubai Section */
.why-dubai-section {
  background-color: var(--section-bg);
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 3rem;
  position: relative;
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--gold-color);
  margin: 20px auto 0;
  border-radius: 2px;
}

.benefit-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background-color: var(--gold-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon i {
  font-size: 2rem;
  color: white;
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.4;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

/* Comparison Box */
.comparison-box {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
}

.comparison-box h4 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.comparison-box h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--gold-color);
  border-radius: 2px;
}

.comparison-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--section-bg);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 10px;
}

.stat-label {
  display: block;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 992px) {
  .comparison-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-section .btn-primary,
  .hero-section .btn-outline-light {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .property-card {
    margin-bottom: 2rem;
  }

  .btn-consultation,
  .btn-consultation-outline {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .benefit-card {
    margin-bottom: 30px;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
  }

  .benefit-icon i {
    font-size: 1.5rem;
  }

  .benefit-card h3 {
    font-size: 1.2rem;
  }

  .comparison-box {
    padding: 30px 20px;
  }

  .comparison-box h4 {
    font-size: 1.5rem;
  }

  .stat-value {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .comparison-stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 15px;
  }
}

/* Animations */
.btn-primary {
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Visa Section */
.visa-section {
  background-color: var(--visa-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.visa-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold-color), #ffd700);
}

.visa-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.visa-icon {
  width: 100px;
  height: 100px;
  background: var(--visa-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.visa-icon i {
  font-size: 3rem;
  color: var(--gold-color);
}

.visa-content h3 {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.visa-content .lead {
  color: #666;
  font-size: 1.2rem;
  line-height: 1.6;
}

.visa-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--visa-bg);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-item i {
  color: var(--gold-color);
  font-size: 1.5rem;
}

.benefit-item span {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 1.1rem;
}

.btn-visa {
  background-color: var(--gold-color);
  color: #000;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 170, 0, 0.3);
  transition: all 0.3s ease;
}

.btn-visa:hover {
  background-color: #ffb733;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 170, 0, 0.4);
}

@media (max-width: 768px) {
  .visa-benefits {
    grid-template-columns: 1fr;
  }

  .visa-content {
    padding: 30px 20px;
  }

  .visa-content h3 {
    font-size: 1.8rem;
  }

  .benefit-item {
    padding: 12px;
  }

  .benefit-item span {
    font-size: 1rem;
  }
}

/* Footer Section */
.footer-section {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0 30px;
}

.footer-cta {
  margin-bottom: 40px;
}

.btn-roi {
  background-color: var(--roi-btn);
  color: white;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  transition: all 0.3s ease;
}

.btn-roi:hover {
  background-color: #218838;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.footer-heading {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--gold-color);
}

.contact-info p {
  margin-bottom: 10px;
  color: #ccc;
}

.contact-info i {
  color: var(--gold-color);
  margin-right: 10px;
  width: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-color);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--gold-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
}

@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .contact-info i {
    width: auto;
  }
}

/* Why Invest Now Section */
.why-invest-now-section {
  background-color: var(--light-bg);
  padding: 80px 0;
}

.invest-benefit-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.invest-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.invest-benefit-icon {
  width: 60px;
  height: 60px;
  background-color: var(--gold-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.invest-benefit-icon i {
  font-size: 2rem;
  color: white;
}

.invest-benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

.invest-benefit-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .why-invest-now-section {
    padding: 50px 0;
  }

  .invest-benefit-card {
    padding: 22px 12px;
    margin-bottom: 25px;
  }

  .invest-benefit-icon {
    width: 55px;
    height: 55px;
  }

  .invest-benefit-icon i {
    font-size: 1.3rem;
  }

  .invest-benefit-card h3 {
    font-size: 1.1rem;
  }
}

/* Ready to Take the Next Step Section */
.next-step-section {
  background-color: var(--section-bg);
  padding: 60px 0;
  text-align: center;
}

.next-step-section .section-title {
  margin-bottom: 20px;
}

.next-step-section p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

.next-step-section .btn-consultation {
  background-color: var(--gold-color);
  border-color: var(--gold-color);
  color: #000;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 170, 0, 0.3);
  transition: all 0.3s ease;
}

.next-step-section .btn-consultation:hover {
  background-color: #ffb733;
  border-color: #ffb733;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 170, 0, 0.4);
}

@media (max-width: 768px) {
  .next-step-section {
    padding: 40px 0;
  }

  .next-step-section p {
    font-size: 1rem;
  }

  .next-step-section .btn-consultation {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Investment Facts Section */
.investment-facts-section {
  background-color: white;
  padding: 80px 0;
}

.fact-card {
  background: var(--section-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.fact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--gold-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.fact-icon i {
  font-size: 1.8rem;
  color: white;
}

.fact-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.4;
}

.fact-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.roi-cta-box {
  background: var(--section-bg);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
}

.roi-cta-box h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.roi-cta-box p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .investment-facts-section {
    padding: 50px 0;
  }

  .fact-card {
    padding: 25px 15px;
    margin-bottom: 20px;
  }

  .fact-icon {
    width: 60px;
    height: 60px;
  }

  .fact-icon i {
    font-size: 1.5rem;
  }

  .fact-card h3 {
    font-size: 1.2rem;
  }

  .roi-cta-box {
    padding: 30px 20px;
  }

  .roi-cta-box h3 {
    font-size: 1.5rem;
  }

  .roi-cta-box p {
    font-size: 1rem;
  }
}

/* Investment Areas Section */
.investment-areas-section {
  background-color: var(--section-bg);
  padding: 80px 0;
}

.area-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--gold-color);
}

.area-header {
  background: var(--primary-color);
  color: white;
  padding: 25px;
  position: relative;
  border-bottom: 3px solid var(--gold-color);
}

.area-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  padding-right: 90px;
  line-height: 1.4;
}

.yield-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: var(--gold-color);
  color: #000;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(255, 170, 0, 0.2);
}

.area-content {
  padding: 25px;
}

.area-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  min-height: 80px;
}

.area-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-features span {
  background: var(--section-bg);
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.95rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.area-features span:hover {
  background: var(--gold-color);
  color: #000;
  transform: translateY(-2px);
}

.area-features i {
  color: var(--gold-color);
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.area-features span:hover i {
  color: #000;
}

.area-cta-box {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.area-cta-box:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--gold-color);
}

.area-cta-box h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.area-cta-box p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

@media (max-width: 992px) {
  .area-header h3 {
    font-size: 1.3rem;
    padding-right: 80px;
  }

  .yield-badge {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
}

@media (max-width: 768px) {
  .investment-areas-section {
    padding: 50px 0;
  }

  .area-card {
    margin-bottom: 20px;
  }

  .area-header {
    padding: 20px;
  }

  .area-header h3 {
    font-size: 1.2rem;
    padding-right: 70px;
  }

  .yield-badge {
    font-size: 0.85rem;
    padding: 5px 10px;
    top: 20px;
    right: 20px;
  }

  .area-content {
    padding: 20px;
  }

  .area-description {
    font-size: 0.95rem;
    min-height: auto;
  }

  .area-features {
    gap: 8px;
  }

  .area-features span {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .area-cta-box {
    padding: 30px 20px;
  }

  .area-cta-box h3 {
    font-size: 1.5rem;
  }

  .area-cta-box p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .area-features {
    flex-direction: column;
  }

  .area-features span {
    width: 100%;
  }
}

/* U.S. Investors Section */
.us-investors-section {
  background-color: white;
  padding: 80px 0;
}

.investor-card {
  background: var(--section-bg);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.investor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--gold-color);
}

.investor-header {
  background: var(--primary-color);
  color: white;
  padding: 25px;
  position: relative;
  border-bottom: 3px solid var(--gold-color);
  display: flex;
  align-items: center;
  gap: 20px;
}

.investor-logo {
  width: 60px;
  height: 60px;
  background: var(--gold-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.investor-logo i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.investor-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.investor-content {
  padding: 25px;
}

.investor-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  min-height: 80px;
}

.investor-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.investor-features span {
  background: white;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.95rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.investor-features span:hover {
  background: var(--gold-color);
  color: #000;
  transform: translateY(-2px);
}

.investor-features i {
  color: var(--gold-color);
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.investor-features span:hover i {
  color: #000;
}

.investor-partner,
.investor-location,
.investor-specialty,
.investor-benefit,
.investor-role {
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: white;
  border-radius: 10px;
  margin-top: 15px;
}

.investor-partner i,
.investor-location i,
.investor-specialty i,
.investor-benefit i,
.investor-role i {
  color: var(--gold-color);
  font-size: 1.1rem;
}

.investor-cta-box {
  background: var(--section-bg);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.investor-cta-box:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--gold-color);
}

.investor-cta-box h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.investor-cta-box p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

@media (max-width: 992px) {
  .investor-header h3 {
    font-size: 1.3rem;
  }

  .investor-logo {
    width: 50px;
    height: 50px;
  }

  .investor-logo i {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .us-investors-section {
    padding: 50px 0;
  }

  .investor-card {
    margin-bottom: 20px;
  }

  .investor-header {
    padding: 20px;
  }

  .investor-header h3 {
    font-size: 1.2rem;
  }

  .investor-content {
    padding: 20px;
  }

  .investor-description {
    font-size: 0.95rem;
    min-height: auto;
  }

  .investor-features {
    gap: 8px;
  }

  .investor-features span {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .investor-cta-box {
    padding: 30px 20px;
  }

  .investor-cta-box h3 {
    font-size: 1.5rem;
  }

  .investor-cta-box p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .investor-features {
    flex-direction: column;
  }

  .investor-features span {
    width: 100%;
  }

  .investor-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .investor-logo {
    margin: 0 auto;
  }
}

/* Cultural Benefits Section */
.cultural-benefits-section {
  background-color: var(--section-bg);
  padding: 80px 0;
}

.cultural-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
}

.cultural-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--gold-color);
}

.cultural-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.cultural-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.cultural-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.4;
}

.cultural-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  min-height: 80px;
}

.cultural-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cultural-features span {
  background: var(--section-bg);
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.95rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.cultural-features span:hover {
  background: var(--gold-color);
  color: #000;
  transform: translateY(-2px);
}

.cultural-features i {
  color: var(--gold-color);
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.cultural-features span:hover i {
  color: #000;
}

.cultural-cta-box {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.cultural-cta-box:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--gold-color);
}

.cultural-cta-box h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cultural-cta-box p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

@media (max-width: 992px) {
  .cultural-card {
    padding: 25px;
  }

  .cultural-icon {
    width: 70px;
    height: 70px;
  }

  .cultural-icon i {
    font-size: 1.8rem;
  }

  .cultural-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .cultural-benefits-section {
    padding: 50px 0;
  }

  .cultural-card {
    margin-bottom: 20px;
    padding: 20px;
  }

  .cultural-icon {
    width: 60px;
    height: 60px;
  }

  .cultural-icon i {
    font-size: 1.5rem;
  }

  .cultural-card h3 {
    font-size: 1.2rem;
  }

  .cultural-description {
    font-size: 0.95rem;
    min-height: auto;
  }

  .cultural-features {
    gap: 8px;
  }

  .cultural-features span {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .cultural-cta-box {
    padding: 30px 20px;
  }

  .cultural-cta-box h3 {
    font-size: 1.5rem;
  }

  .cultural-cta-box p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .cultural-features {
    flex-direction: column;
  }

  .cultural-features span {
    width: 100%;
  }
}

/* Investment Comparison Section */
.investment-comparison-section {
  background-color: white;
  padding: 80px 0;
}

.comparison-card {
  background: var(--section-bg);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.comparison-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--gold-color);
}

.comparison-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.comparison-icon i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.comparison-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

.comparison-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-item {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.comparison-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--section-bg);
}

.comparison-item.dubai h4 {
  color: var(--gold-color);
  border-bottom-color: var(--gold-color);
}

.comparison-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-item li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #666;
  font-size: 0.95rem;
}

.comparison-item li:last-child {
  margin-bottom: 0;
}

.comparison-item.dubai li i {
  color: var(--gold-color);
}

.comparison-item.others li i {
  color: #e74c3c;
}

.comparison-cta-box {
  background: var(--section-bg);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.comparison-cta-box:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--gold-color);
}

.comparison-cta-box h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.comparison-cta-box p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

@media (max-width: 992px) {
  .comparison-card {
    padding: 25px;
  }

  .comparison-icon {
    width: 60px;
    height: 60px;
  }

  .comparison-icon i {
    font-size: 1.5rem;
  }

  .comparison-card h3 {
    font-size: 1.3rem;
  }

  .comparison-item h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .investment-comparison-section {
    padding: 50px 0;
  }

  .comparison-card {
    margin-bottom: 20px;
    padding: 20px;
  }

  .comparison-icon {
    width: 50px;
    height: 50px;
  }

  .comparison-icon i {
    font-size: 1.3rem;
  }

  .comparison-card h3 {
    font-size: 1.2rem;
  }

  .comparison-item {
    padding: 15px;
  }

  .comparison-item h4 {
    font-size: 1rem;
  }

  .comparison-item li {
    font-size: 0.9rem;
  }

  .comparison-cta-box {
    padding: 30px 20px;
  }

  .comparison-cta-box h3 {
    font-size: 1.5rem;
  }

  .comparison-cta-box p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .comparison-content {
    gap: 15px;
  }

  .comparison-item {
    padding: 12px;
  }
}

/* U.S. vs Dubai Market Comparison Section */
.us-dubai-comparison-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.market-comparison-card,
.buying-process-card {
  background: white;
  border-radius: 15px;
  padding: 30px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.market-comparison-card h3,
.buying-process-card h3 {
  color: #2c3e50;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.comparison-table {
  width: 100%;
  margin-bottom: 90px;
  font-size: 1.2rem;
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-label {
  flex: 1;
  font-weight: 500;
  color: #2c3e50;
}

.comparison-value {
  flex: 1;
  text-align: center;
  font-weight: 600;
}

.comparison-value.dubai {
  color: #27ae60;
}

.comparison-value.us {
  color: #e74c3c;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.step-number {
  background: #27ae60;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h4 {
  color: #2c3e50;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

/* Visa-Eligible Properties Section Styles */
.visa-properties-section {
  background-color: #f8f9fa;
}

.property-card.visa-eligible {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.property-card.visa-eligible:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.property-card .property-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.property-card .property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
  transform: scale(1.05);
}

.property-card .property-type {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(218, 165, 32, 0.7);
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.property-card .property-content {
  padding: 20px;
}

.property-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #333;
}

.property-card .location {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.property-card .property-features,
.property-card .property-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.property-card .property-features span,
.property-card .property-amenities span {
  background: #f8f9fa;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  color: #555;
}

.property-card .property-highlights {
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.property-card .property-highlights p {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #666;
}

.property-card .property-highlights i {
  color: #28a745;
  margin-right: 8px;
}

/* Visa Requirements Box Styles */
.visa-requirements-box {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.visa-requirements-box h3 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  font-size: 1.8rem;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.requirement-item {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.requirement-item:hover {
  transform: translateY(-5px);
}

.requirement-item i {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 15px;
}

.requirement-item h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333;
}

.requirement-item p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

.visa-cta {
  text-align: center;
  margin-top: 30px;
}

.btn-consultation {
  background: var(--primary-color);
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-consultation:hover {
  background: var(--gold-color);
  color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .property-card .property-image {
    height: 200px;
  }

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

@media (max-width: 576px) {
  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .property-card .property-features,
  .property-card .property-amenities {
    justify-content: center;
  }
}

/* Next Steps Section */
.next-steps-section {
  background-color: var(--section-bg);
  padding: 80px 0;
}

.steps-timeline {
  position: relative;
  padding: 20px 0;
}

.steps-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50px;
  height: 100%;
  width: 2px;
  background: var(--gold-color);
}

.step-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gold-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  flex-grow: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.step-content p {
  color: #666;
  margin-bottom: 5px;
  line-height: 1.6;
}

.step-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #666;
}

.step-features li:last-child {
  margin-bottom: 0;
}

.step-features i {
  color: var(--gold-color);
  font-size: 1.1rem;
}

.next-steps-cta {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
}

.next-steps-cta h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.next-steps-cta p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .steps-timeline::before {
    left: 25px;
  }

  .step-item {
    gap: 20px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .step-content {
    padding: 5px;
  }

  .step-content h3 {
    font-size: 1.2rem;
  }

  .next-steps-cta {
    padding: 30px 20px;
  }

  .next-steps-cta h3 {
    font-size: 1.5rem;
  }

  .next-steps-cta p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .step-item {
    flex-direction: column;
    gap: 15px;
  }

  .step-number {
    margin-left: 25px;
  }

  .steps-timeline::before {
    left: 45px;
  }
}

/* Chicago Investor Segments Section Styles */
.chicago-segments-section {
  background-color: #f8f9fa;
}

.segment-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  overflow: hidden;
}

.segment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.segment-header {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 25px;
  text-align: center;
  position: relative;
}

.segment-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.segment-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.segment-header h3 {
  font-size: 1.4rem;
  margin: 0;
  font-weight: 600;
  min-height: 50px;
}

.segment-content {
  padding: 25px;
}

.segment-profile,
.segment-benefits,
.segment-properties {
  margin-bottom: 25px;
}

.segment-content h4 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.segment-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.segment-content ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #555;
  font-size: 0.95rem;
}

.segment-content ul li i {
  color: #28a745;
  margin-right: 10px;
  font-size: 1rem;
}

.property-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.property-features span {
  background: #f8f9fa;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

.property-features span i {
  color: #007bff;
}

.price-range {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
}

.price-range p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-range p i {
  color: #007bff;
}

.segment-cta-box {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin-top: 40px;
}

.segment-cta-box h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.segment-cta-box p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.segment-cta-box .btn-consultation {
  background: #ffffff;
  color: #007bff;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.segment-cta-box .btn-consultation:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.description-container {

  padding: 10px 12px;
  border: 2px;
  border-radius: 25px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .segment-header h3 {
    font-size: 1.2rem;
  }

  .segment-icon {
    width: 60px;
    height: 60px;
  }

  .segment-icon i {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .chicago-segments-section {
    padding: 40px 0;
  }

  .segment-card {
    margin-bottom: 30px;
  }

  .segment-content {
    padding: 20px;
  }

  .segment-cta-box {
    padding: 30px;
  }

  .segment-cta-box h3 {
    font-size: 1.5rem;
  }

  .segment-cta-box p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .property-features {
    justify-content: center;
  }

  .segment-header {
    padding: 20px;
  }

  .segment-icon {
    width: 50px;
    height: 50px;
  }

  .segment-icon i {
    font-size: 1.5rem;
  }
}

/* Contact Section Styles */
.contact-section {
  background-color: var(--section-bg);
}

.contact-wrapper {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-form-box {
  padding: 40px;
  height: 100%;
}

.form-title {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.form-floating>.form-control,
.form-floating>.form-select {
  height: calc(3.5rem + 2px);
  padding: 1rem 0.75rem;
  border: 1px solid #dee2e6;
  border-radius: 8px;
}

.form-floating>textarea.form-control {
  height: 120px;
}

.form-floating>label {
  padding: 1rem 0.75rem;
  color: #6c757d;
}

.form-floating>.form-control:focus,
.form-floating>.form-select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.contact-info-box {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 40px;
  height: 100%;
}

.info-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.info-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 1.2rem;
  color: #ffffff;
}

.info-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 500;
}

.info-content p {
  margin: 0;
  opacity: 1;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ffffff;
  color: #007bff;
  transform: translateY(-3px);
}


/* Scroll to Top Button Styles */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--gold-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {

  .contact-form-box,
  .contact-info-box {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact-wrapper {
    margin: 0 15px;
  }

  .contact-form-box,
  .contact-info-box {
    padding: 25px;
  }

  .form-title,
  .info-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .info-icon {
    width: 40px;
    height: 40px;
  }

  .info-content h4 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {

  .contact-form-box,
  .contact-info-box {
    padding: 20px;
  }

  .info-items {
    gap: 20px;
  }

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

/* Investment Areas Section Styles */
.yield-badge {
  font-size: 0.85rem;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: var(--gold-color);
  color: white;
  display: inline-block;
  margin-top: 8px;
}

.area-header h3 {
  margin-bottom: 8px;
}

.area-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Properties Section Slider */
.properties-slider {
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}

.properties-slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.properties-slide {
  flex: 0 0 33.333%;
  padding: 10px;
  box-sizing: border-box;
}

.properties-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.3s ease;
}

.properties-slider-nav:hover {
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.properties-slider-nav.prev {
  left: 0;
}

.properties-slider-nav.next {
  right: 0;
}

@media (max-width: 992px) {
  .properties-slide {
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .properties-slide {
    flex: 0 0 100%;
  }
}

/* === Moved from index.html <style> blocks === */
.card.hover-zoom,
.hover-shadow {
    transition: box-shadow 0.3s, transform 0.3s;
    background: #fff;
}

.card.hover-zoom:hover,
.hover-shadow:hover,
.navy-card:hover {
    box-shadow: 0 8px 32px rgba(0, 51, 102, 0.18) !important;
    transform: translateY(-6px) scale(1.055);
    z-index: 2;
    border-color: #daa520 !important;
    background: #f8fafc;
}

.card.hover-zoom:hover .fa-2x,
.hover-shadow:hover .fa-2x,
.navy-card:hover .fa-2x {
    color: #daa520 !important;
    transform: scale(1.18) rotate(-4deg);
    transition: color 0.3s, transform 0.3s;
}

.card.hover-zoom:hover h6,
.card.hover-zoom:hover .fw-semibold,
.hover-shadow:hover h6,
.hover-shadow:hover .fw-semibold,
.navy-card:hover h6,
.navy-card:hover .fw-semibold {
    color: #daa520 !important;
    letter-spacing: 0.03em;
}

.card {
    border-radius: 1.25rem !important;
    border: 2px solid #00336611;
    background: #fff;
}

@media (max-width: 575.98px) {
    .card.hover-zoom:hover,
    .hover-shadow:hover,
    .navy-card:hover {
        box-shadow: 0 4px 16px rgba(0, 51, 102, 0.09) !important;
        transform: scale(1.015);
    }
}

.about-section-btn.active,
.about-section-btn:active,
.about-section-btn:focus {
    background: #003366 !important;
    color: #fff !important;
    border-color: #003366 !important;
}

.about-section-btn:hover {
    background: #daa520 !important;
    color: #fff !important;
    border-color: #daa520 !important;
    transition: background .25s, color .25s;
}

/* --- ABOUT TAB ICON COLOR --- */
.about-section-btn i {
    color: #daa520;
    transition: color .25s;
}

.about-section-btn:hover i {
    color: #003366 !important;
}

.about-section-btn.active i {
    color: #003366;
}

/* Modal Styles from Contact Section */
.modal-content {
    border-radius: 1.25rem !important;
    box-shadow: 0 8px 32px rgba(0, 51, 102, 0.18) !important;
}

.modal-header,
.modal-footer {
    border: none !important;
}

.btn-warning {
    background: #daa520 !important;
    border: none;
}

.btn-warning:hover {
    background: #c59a18 !important;
}