/* General Styles */
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8em;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #e74c3c;
  border-radius: 2px;
}

.section-title p {
  font-size: 1.2em;
  color: #7f8c8d;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
  background-color: #e74c3c;
  color: #fff;
  border: 2px solid #e74c3c;
}

.btn-primary:hover {
  background-color: #c0392b;
  border-color: #c0392b;
}

.btn-secondary {
  background-color: transparent;
  color: #e74c3c;
  border: 2px solid #e74c3c;
}

.btn-secondary:hover {
  background-color: #e74c3c;
  color: #fff;
}

/* Header */
header {
  background-color: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  margin-right: 10px;
}

.logo span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8em;
  font-weight: 700;
  color: #2c3e50;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #555;
  font-weight: 600;
  font-size: 1.05em;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #e74c3c;
}

.language-switch {
  background-color: #f2f2f2;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 0.9em;
}

.language-switch:hover {
  background-color: #e74c3c;
  color: #fff;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/north_view.webp') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 150px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 4em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.5em;
  margin-bottom: 30px;
}

.hero-buttons .btn {
  margin: 0 10px;
}

/* About Section */
.about {
  background-color: #f9f9f9;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2em;
  color: #2c3e50;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
}

.company-details {
  margin-top: 30px;
}

.detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #555;
}

.detail-item i {
  color: #e74c3c;
  margin-right: 15px;
  font-size: 1.3em;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Properties Section */
.properties {
  background-color: #fff;
}

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

.property-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.property-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.property-content {
  padding: 25px;
}

.property-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8em;
  color: #2c3e50;
  margin-bottom: 10px;
}

.property-location {
  color: #7f8c8d;
  font-size: 1em;
  margin-bottom: 15px;
}

.property-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.property-details .detail {
  display: flex;
  flex-direction: column;
}

.property-details .label {
  font-size: 0.9em;
  color: #7f8c8d;
  margin-bottom: 5px;
}

.property-details .value {
  font-weight: 600;
  color: #333;
}

.property-card .status {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 600;
}

.status.in-construction {
  background-color: #f39c12;
  color: #fff;
}

.status.available {
  background-color: #27ae60;
  color: #fff;
}

/* Investment Section */
.investment {
  background-color: #f9f9f9;
}

.investment-hero {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 40px;
  margin-bottom: 60px;
}

.investment-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.investment-text {
  flex: 1;
}

.investment-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2em;
  color: #2c3e50;
  margin-bottom: 20px;
}

.investment-text p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 30px;
}

.investment-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.highlight-item {
  text-align: center;
  background-color: #ecf0f1;
  padding: 20px;
  border-radius: 8px;
}

.highlight-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  color: #e74c3c;
  margin-bottom: 5px;
}

.highlight-label {
  font-size: 1em;
  color: #555;
}

.investment-image {
  flex: 1;
  text-align: center;
}

.investment-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project-details {
  margin-top: 60px;
}

.project-details h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2em;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
}

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

.detail-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 30px;
}

.detail-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5em;
  color: #e74c3c;
  margin-bottom: 20px;
}

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

.detail-card ul li {
  margin-bottom: 10px;
  color: #555;
  font-size: 1.05em;
}

.detail-card ul li:last-child {
  margin-bottom: 0;
}

/* Timeline Section */
.timeline-section {
  margin-top: 60px;
}

.timeline-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2em;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #e74c3c;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: #fff;
  border: 4px solid #e74c3c;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(even)::after {
  left: -17px;
}

.timeline-content {
  padding: 20px 30px;
  background-color: #fff;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2em;
  font-weight: 700;
  color: #e74c3c;
  margin-bottom: 10px;
}

.timeline-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4em;
  color: #2c3e50;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 1em;
  color: #555;
}

/* Services Section */
.services {
  background-color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

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

.service-icon {
  font-size: 3em;
  color: #e74c3c;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8em;
  color: #2c3e50;
  margin-bottom: 15px;
}

.service-card p {
  color: #555;
}

/* Contact Section */
.contact {
  background-color: #f9f9f9;
}

.contact-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2em;
  color: #2c3e50;
  margin-bottom: 25px;
}

.contact-details .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-details .contact-item i {
  font-size: 1.5em;
  color: #e74c3c;
  margin-right: 20px;
  margin-top: 5px;
}

.contact-details .contact-item strong {
  display: block;
  font-size: 1.1em;
  color: #333;
  margin-bottom: 5px;
}

.contact-details .contact-item p {
  margin: 0;
  color: #555;
}

.contact-details .contact-item a {
  color: #e74c3c;
  text-decoration: none;
}

.contact-details .contact-item a:hover {
  text-decoration: underline;
}

.contact-form {
  flex: 2;
  min-width: 400px;
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1em;
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 60px 0 30px;
  font-size: 0.95em;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-info {
  flex: 2;
  min-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 50px;
  margin-right: 10px;
}

.footer-logo span {
  font-family: 'Montserrat', sans-serif;
  font-size: 2em;
  font-weight: 700;
  color: #fff;
}

.footer-info p {
  color: #bdc3c7;
  margin-bottom: 25px;
}

.social-links a {
  color: #fff;
  font-size: 1.5em;
  margin-right: 20px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #e74c3c;
}

.footer-links-container {
  flex: 3;
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-section {
  min-width: 150px;
}

.footer-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2em;
  color: #e74c3c;
  margin-bottom: 20px;
}

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

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

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

.footer-links a:hover {
  color: #fff;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 992px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }

  .nav-menu {
    margin-top: 20px;
    justify-content: center;
  }

  .nav-menu li {
    margin: 0 15px;
  }

  .hero-content h1 {
    font-size: 3em;
  }

  .hero-content p {
    font-size: 1.2em;
  }

  .about-content, .investment-content, .contact-content {
    flex-direction: column;
    text-align: center;
  }

  .about-image, .investment-image {
    margin-top: 30px;
  }

  .about-text, .investment-text, .contact-info, .contact-form {
    min-width: unset;
    width: 100%;
  }

  .timeline::after {
    left: 18px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 10px;
  }

  .timeline-item:nth-child(even) {
    left: 0%;
  }

  .timeline-item::after, .timeline-item:nth-child(even)::after {
    left: 10px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links-container {
    margin-top: 30px;
    justify-content: center;
  }

  .footer-section {
    min-width: unset;
    width: 100%;
  }

  .social-links {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 2.2em;
  }

  .hero {
    padding: 100px 0;
  }

  .hero-content h1 {
    font-size: 2.5em;
  }

  .hero-content p {
    font-size: 1em;
  }

  .hero-buttons .btn {
    display: block;
    margin: 15px auto;
  }

  .properties-grid, .details-grid, .services-grid {
    grid-template-columns: 1fr;
  }

  .investment-highlights {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .highlight-number {
    font-size: 2em;
  }

  .contact-form {
    padding: 30px;
  }
}


