/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-desktop {
  display: none;
  gap: 2rem;
}

.nav-desktop a {
  text-decoration: none;
  color: #4a5568;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-desktop a:hover {
  color: #ec9b19;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #4a5568;
  transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid #e2e8f0;
  padding: 1rem 0;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile a {
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #4a5568;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: background 0.3s;
}

.nav-mobile a:hover {
  background: #f7fafc;
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 64px;
  background: url('https://ext.same-assets.com/2810750548/2850893536.jpeg') center/cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
}

.hero h1 {
  color: white;
  font-size: 2rem;
  font-weight: bold;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.2;
}

/* Why Choose Us Section */
.why-choose-us {
  background: #1d3859;
  padding: 3rem 1rem;
}

.section-divider {
  height: 4px;
  width: 256px;
  background: #ec9b19;
  margin: 0 auto 2rem;
}

.why-choose-us h2 {
  color: #ec9b19;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
}

.intro-text {
  color: white;
  font-size: 1.125rem;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.features-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.feature h3 {
  color: #ec9b19;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.feature p {
  color: white;
  font-size: 1.125rem;
}
.feature-left {
  text-align: center;
}

.feature-right {
  text-align: center;
}

/* About Us Section */
.about-us {
  background: white;
  padding: 3rem 1rem;
}

.about-us h2 {
  color: #ec9b19;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

.about-text {
  color: #2d3748;
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.8;
  max-width: 80rem;
  margin: 0 auto 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 2rem;
}

.btn-primary {
  background: #1d3859;
  color: white;
}

.btn-primary:hover {
  background: #2d4869;
}

.btn-secondary {
  background: white;
  color: #1d3859;
}

.btn-secondary:hover {
  background: #f7fafc;
}

/* Services Section */
.services {
  background: #f6f6f6;
  padding: 3rem 1rem;
}

.services h2 {
  color: #ec9b19;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.service-item {
  text-align: center;
}

.service-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.service-item h3 {
  color: #1d3859;
  font-size: 1.25rem;
  font-weight: bold;
}

/* Featured Property Section */
.featured-property {
  background: #1d3859;
  padding: 3rem 1rem;
}

.featured-property h2 {
  color: white;
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 2rem;
}

/* Contact Section */
.contact {
  background: white;
  padding: 3rem 1rem;
}

.contact h2 {
  color: #2d3748;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-intro {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.contact-intro p {
  color: #2d3748;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-top: 3rem;
}

.contact-item {
  text-align: center;
}

.contact-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.contact-item p {
  color: #2d3748;
  font-size: 1.125rem;
  font-weight: 600;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.social-links a {
  transition: opacity 0.3s;
}

.social-links a:hover {
  opacity: 0.7;
}

.social-links img {
  width: 40px;
  height: 40px;
}

/* Footer */
.footer {
  background: #1d3859;
  padding: 1rem 1rem;
}

.footer-divider {
  height: 4px;
  width: 128px;
  background: #ec9b19;
  margin: 0 auto 1rem;
}

.copyright,
.rights {
  color: white;
  font-weight: 600;
  margin: 0.25rem 0;
}

/* WhatsApp Float Button (Transparent Version) */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s;
  z-index: 999;
}

.whatsapp-icon-img {
  width: 60px; /* Changed to 48px so the icon is slightly larger without the circle */
  height: auto;
}

/* Responsive Design */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero h1 {
    font-size: 3.75rem;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .feature-left {
  text-align: center;
}

  .feature-right {
    text-align: center;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-choose-us h2,
  .about-us h2,
  .services h2 {
    font-size: 3rem;
  }

  .featured-property h2 {
    font-size: 2.5rem;
  }

  .contact h2 {
    font-size: 3rem;
  }
}
/* Contact Top Section */
.contact-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.contact-text p {
  font-size: 1.125rem;
  color: #2d3748;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Map */
.contact-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* Desktop Layout */
@media (min-width: 768px) {
  .contact-top {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .contact-map iframe {
    height: 350px;
  }
}




