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

body {
  background-color: #f8f9fa;
}

.btn-custom-primary {
  background: linear-gradient(135deg, #004AAD 0%, #5899ee 100%);
  border: none;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-radius: 50px;
  padding: 1rem 2rem;
}
.btn-custom-primary:hover {
  background: linear-gradient(135deg, #00347a 0%, #2a7de9 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.btn-custom-primary:active {
  transform: translateY(-1px);
}
.btn-custom-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(44, 85, 48, 0.25);
}

header {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
header .logo {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.92);
  padding: 0.55rem 0.9rem;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
header .logo img {
  display: block;
  height: 90px;
  width: auto;
}
header .logo:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
header .menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
header .menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #004AAD;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}
header .menu-toggle[aria-expanded=true] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
header .menu-toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
header .menu-toggle[aria-expanded=true] span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
header nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
header nav a {
  color: #004AAD;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
header nav a:hover {
  background-color: #004AAD;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
header nav a:hover::before {
  left: 0;
}
header nav a:active {
  transform: translateY(0);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../hero-bg.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(55, 65, 81, 0.5);
  z-index: 1;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}
.hero-section .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}
.hero-section .hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.2s both;
}
.hero-section .hero-content .hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s both;
}
.hero-section .hero-content .hero-buttons .btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.hero-section .hero-content .hero-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.services-section {
  padding: 5rem 0;
  background: white;
}
.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.services-section .services-grid .service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}
.services-section .services-grid .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.services-section .services-grid .service-card .service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #004AAD 0%, #5899ee 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  transition: all 0.3s ease;
}
.services-section .services-grid .service-card .service-icon:hover {
  transform: scale(1.1);
}
.services-section .services-grid .service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 1rem;
}
.services-section .services-grid .service-card p {
  color: #6b7280;
  line-height: 1.6;
}

.properties-section {
  padding: 5rem 0;
  background: #f5f5f0;
}

.about-section {
  padding: 5rem 0;
  background: white;
}
.about-section .about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 1.5rem;
}
.about-section .about-content p {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.about-section .about-content .about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.about-section .about-content .about-stats .stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.about-section .about-content .about-stats .stat-item .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #004AAD;
  margin-bottom: 0.5rem;
}
.about-section .about-content .about-stats .stat-item .stat-label {
  color: #6b7280;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-section .about-image .image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #004AAD 0%, #5899ee 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-section {
  padding: 5rem 0;
  background: #f5f5f0;
}
.contact-section .contact-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.contact-section .contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-section .contact-form .form-group .form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-section .contact-form .form-group .form-control:focus {
  border-color: #004AAD;
  box-shadow: 0 0 0 0.2rem rgba(44, 85, 48, 0.25);
}
.contact-section .contact-form .btn {
  background: linear-gradient(135deg, #004AAD 0%, #5899ee 100%);
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.contact-section .contact-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.contact-section .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.contact-section .contact-info .contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.contact-section .contact-info .contact-item .contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #004AAD 0%, #5899ee 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}
.contact-section .contact-info .contact-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}
.contact-section .contact-info .contact-item p {
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.footer {
  background: #374151;
  color: white;
  padding: 3rem 0 1rem;
}
.footer h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ecf0f1;
}
.footer p {
  color: #bdc3c7;
  line-height: 1.6;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li {
  margin-bottom: 0.5rem;
}
.footer ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer ul li a:hover {
  color: #ecf0f1;
}
.footer .footer-bottom {
  border-top: 1px solid #4b5563;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem;
  }
  header .menu-toggle {
    display: flex;
  }
  header .logo {
    padding: 0.45rem 0.75rem;
  }
  header .logo img {
    height: 64px;
  }
  header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  header nav.active {
    right: 0;
  }
  header nav a {
    width: 100%;
    padding: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    border-radius: 10px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  header nav a:hover {
    background-color: #004AAD;
    color: white;
    transform: translateX(5px);
  }
  .hero-section .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-section .hero-content p {
    font-size: 1.1rem;
  }
  .hero-section .hero-content .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .about-section .about-stats {
    flex-direction: column;
    gap: 1rem;
  }
  .contact-section .contact-form {
    padding: 2rem;
  }
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
  pointer-events: none;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}