/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Cairo", sans-serif !important;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}
h1,
h2,
h3,
h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 5rem 1rem;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Introduction Section */
.intro {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.intro p {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Portfolio Sections */
.portfolio-section {
  margin-bottom: 3rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: #d4af37;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.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;
}

.property-card:hover {
  transform: translateY(-10px);
}

.property-img {
  height: 200px;
  overflow: hidden;
}

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

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

.property-details {
  padding: 1.5rem;
}

.property-details h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.property-type {
  color: #d4af37;
  font-weight: bold;
  margin-bottom: 1rem;
  display: block;
}

.property-desc,
.property-service,
.property-value {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.property-value {
  color: #2c3e50;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Stats Section */
.stats-section {
  background-color: #2c3e50;
  color: white;
  padding: 4rem 0;
  text-align: center;
  margin: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #d4af37;
  margin-bottom: 0.5rem;
}

.stat-text {
  font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
  margin: 4rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testimonial-card:before {
  content: "\201C";
  font-size: 5rem;
  color: #d4af37;
  position: absolute;
  top: -10px;
  left: 20px;
  opacity: 0.2;
  font-family: Arial, sans-serif;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: bold;
  color: #2c3e50;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 3rem 0;
  background-color: #f0f2f5;
  border-radius: 10px;
  margin: 3rem 0;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cta-button.primary {
  background-color: #d4af37;
  color: white;
  border: 2px solid #d4af37;
}

.cta-button.secondary {
  background-color: transparent;
  color: #2c3e50;
  border: 2px solid #d4af37;
}

.cta-button:hover {
  opacity: 0.9;
  transform: scale(1.05);
}


/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1542744095-fcf48d80b0fd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 5rem 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Goals Section */
.goals-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.goal-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #d4af37; /* Gold accent color */
  transition: transform 0.3s ease;
}

.goal-card:hover {
  transform: translateY(-5px);
}

.goal-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.goal-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  text-align: center;
}

.goal-card ul {
  list-style: none;
  padding: 0;
}

.goal-card li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.goal-card li:before {
  content: "•";
  color: #d4af37;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Values Styling */
.values-section {
  background-color: #2c3e50;
  color: white;
  padding: 3rem 0;
  margin: 3rem 0;
  border-radius: 12px;
}

.values-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #d4af37;
}

.values-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.value-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.value-item h4 {
  color: #d4af37;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 2rem 0;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cta-button.primary {
  background-color: #d4af37;
  color: white;
  border: 2px solid #d4af37;
}

.cta-button.secondary {
  background-color: transparent;
  color: #2c3e50;
  border: 2px solid #d4af37;
}

.cta-button:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .goal-card {
    padding: 1.5rem;
  }
  .values-container {
    flex-direction: column;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

:root {
  --primary-color: #1a365d;
  --secondary-color: #d4af37;
  --accent-color: #4299e1;
  --light-color: #f8f9fa;
  --dark-color: #2d3748;
  --transition: all 0.3s ease;
}


/* Hero Section */
.hero {
  background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)),
    url("https://images.unsplash.com/photo-1560448204-603b3fc33ddc?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.hero p {
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Intro Section */
.intro-section {
  padding: 4rem 0;
  background-color: white;
}

.intro-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.9;
}

/* Services Section */
.services-section {
  padding: 3rem 0 5rem;
  background-color: #f8f9fa;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}

.service {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 3rem;
  transition: var(--transition);
}

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

.service-header {
  display: flex;
  align-items: center;
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem;
}

.service-number {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-left: 15px;
  font-size: 1.2rem;
}

.service-title {
  font-size: 1.5rem;
  margin: 0;
}

.service-content {
  padding: 2rem;
}

.service-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border-radius: 6px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.service-points {
  list-style-type: none;
  margin: 1.5rem 0;
}

.service-points li {
  margin-bottom: 0.8rem;
  padding-right: 1.5rem;
  position: relative;
}

.service-points li::before {
  content: "•";
  color: var(--secondary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-right: -1em;
  font-size: 1.4rem;
}

/* Why Choose Services Section */
.why-choose-services {
  padding: 5rem 0;
  background-color: white;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  background-color: #f8f9fa;
  transition: var(--transition);
}

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  background-color: rgba(212, 175, 55, 0.1);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.feature h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Services CTA Section */
.services-cta {
  padding: 4rem 0;
  background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.9)),
    url("https://images.unsplash.com/photo-1564013799919-ab600027ffc6?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.services-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.services-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #c19b2e;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent-color);
  color: white;
}

.btn-accent:hover {
  background-color: #3182ce;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .services-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

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

  .service-header {
    flex-direction: column;
    text-align: center;
  }

  .service-number {
    margin: 0 0 10px 0;
  }
}

/* Header Styles */
header {
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--secondary-color);
  margin-right: 5px;
}

.logo-img {
  width: 40px;
  height: 40px;
  margin-left: 10px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1973&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.hero p {
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Vision Section */
.vision-section {
  padding: 5rem 0;
  background-color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}

.vision-content {
  margin-bottom: 3rem;
  line-height: 1.9;
  font-size: 1.1rem;
}

.vision-points {
  list-style-type: none;
  margin: 2rem 0;
}

.vision-points li {
  margin-bottom: 1.2rem;
  padding-right: 1.5rem;
  position: relative;
}

.vision-points li::before {
  content: "•";
  color: var(--secondary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-right: -1em;
  font-size: 1.4rem;
}

.vision-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.vision-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 5rem 0;
  background-color: #f2f6fc;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
}

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  background-color: rgba(212, 175, 55, 0.1);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.feature h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(to left, var(--primary-color), #2c5282);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #c19b2e;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 2.5rem 0;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

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

/* Header Styles */
header {
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--secondary-color);
  margin-right: 5px;
}

.logo-img {
  width: 40px;
  height: 40px;
  margin-left: 10px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

nav ul li a:hover {
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)),
    url("https://images.unsplash.com/photo-1560520031-3a4dc4e9de0c?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1973&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.hero p {
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Mission Section */
.mission-section {
  padding: 5rem 0;
  background-color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}

.mission-content {
  margin-bottom: 3rem;
  line-height: 1.9;
  font-size: 1.1rem;
}

.mission-points {
  list-style-type: none;
  margin: 2rem 0;
}

.mission-points li {
  margin-bottom: 1.2rem;
  padding-right: 1.5rem;
  position: relative;
}

.mission-points li::before {
  content: "•";
  color: var(--secondary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-right: -1em;
  font-size: 1.4rem;
}

.mission-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* How We Achieve Section */
.how-we-achieve {
  padding: 5rem 0;
  background-color: #f2f6fc;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
}

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  background-color: rgba(212, 175, 55, 0.1);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.feature h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(to left, var(--primary-color), #2c5282);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #c19b2e;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 2.5rem 0;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

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

  nav {
    display: none;
  }
}


/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .properties-grid,
  .stats-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}


/* Latest protipes */
.simple-properties-grid {
    display: grid;
    grid-template-columns: repeat(2, 150px);
    gap: 15px;
    justify-content: center;
}

.simple-property-item {
    width: 100%;
    height: 130px;
    overflow: hidden;
    border-radius: 4px;
}

.simple-property-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 500px) {
    .simple-properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .simple-property-item {
        width: 100%;
        height: 130px;
    }
}
