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

body {
  font-family: "Montserrat", sans-serif;
}

/* Header Wrapper */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Navbar Container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(238, 232, 232, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

/* Logo */
.logo a {
  font-size: 1.4rem;
  font-weight: bold;
  color: #d4af37;
  text-decoration: none;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #0e0101;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #d4af37;
}

/* Mobile Menu Icon */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    width: 200px;
    text-align: right;
    padding: 1rem;
    gap: 1rem;
    display: none; /* Hidden by default */
  }

  .nav-links.active {
    display: flex; /* Show on toggle */
  }

  .menu-toggle {
    display: block;
  }
}

/* /*here section */
/* HERO STYLING */
.hero {
  height: 100vh;
  background: url("images/hero-bg.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.hero-title {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.btn-call {
  background: #d4af37;
  color: #fff;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-call:hover {
  background: #b38e2f;
}
/* Hero Section End */

/* Section 2 Styles */
.realtor-profile {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 80px 0;
  color: white;
  position: relative;
}

.realtor-profile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPgogIDxmaWx0ZXIgaWQ9Im5vaXNlIj4KICAgIDxmZVR1cmJ1bGVuY2UgdHlwZT0iZnJhY3RhbE5vaXNlIiBiYXNlRnJlcXVlbmN5PSIwLjA1IiBudW1PY3RhdmVzPSI1IiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+CiAgICA8ZmVDb2xvck1hdHJpeCB0eXBlPSJzYXR1cmF0ZSIgdmFsdWVzPSIwIi8+CiAgPC9maWx0ZXI+CiAgPHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI25vaXNlKSIgb3BhY2l0eT0iMC4wNSIvPgo8L3N2Zz4=');
  opacity: 0.8;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.profile-card {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.profile-image-container {
  flex: 1 1 350px;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.profile-img {
  width: 100%;
  height: 100%;
  max-width: 350px;
  max-height: 350px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #d4af37;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
}

.profile-img:hover {
  transform: scale(1.03);
}

.experience-badge {
  position: absolute;
  bottom: 50px;
  right: 50px;
  background: #d4af37;
  color: #000;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.experience-badge span {
  font-size: 2rem;
  line-height: 1;
}

.experience-badge small {
  font-size: 0.8rem;
  text-align: center;
}

.profile-content {
  flex: 1 1 350px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-header {
  margin-bottom: 30px;
}

.realtor-tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.profile-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: white;
}

.profile-header h2 {
  font-size: 1.3rem;
  color: #d4af37;
  font-weight: 400;
}

.profile-divider {
  display: flex;
  align-items: center;
  margin: 25px 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.divider-icon {
  width: 24px;
  height: 24px;
  fill: #d4af37;
  margin: 0 15px;
}

.profile-contact {
  margin: 30px 0;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  margin-right: 15px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.phone-link {
  background: #d4af37;
  color: #000;
}

.email-link {
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
}

.contact-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.contact-icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.profile-stats {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .profile-card {
    flex-direction: column;
  }
  
  .profile-image-container {
    min-height: 300px;
    padding-bottom: 80px;
  }
  
  .experience-badge {
    bottom: 30px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .profile-content {
    padding: 30px;
    text-align: center;
  }
  
  .profile-divider {
    justify-content: center;
  }
  
  .profile-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .contact-link {
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .realtor-profile {
    padding: 50px 0;
  }
  
  .profile-img {
    max-width: 250px;
    max-height: 250px;
  }
  
  .experience-badge {
    width: 80px;
    height: 80px;
  }
  
  .experience-badge span {
    font-size: 1.5rem;
  }
  
  .profile-header h1 {
    font-size: 2rem;
  }
  
  .profile-header h2 {
    font-size: 1.1rem;
  }
  
  .stat-item {
    min-width: 80px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
}
/* section 2 end  */

/* /section 3 start  */
.alt-section {
  padding: 60px 0;
  background-color: #fff;
}

.alt-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.alt-section.reverse .alt-container {
  flex-direction: row-reverse;
}

.alt-image {
  flex: 1 1 500px;
}

.alt-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.alt-text {
  flex: 1 1 500px;
}

.alt-text h3 {
  font-size: 1.8rem;
  color: #c59d5f;
  margin-bottom: 15px;
}

.alt-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}
/* /section 3 end  */

/* section 4 start  */
/* Section 4 Styles */
.search-section {
  background: url("images/mls-background.jpg") center/cover no-repeat;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-container {
  background: rgba(0, 0, 0, 0.65);
  padding: 30px;
  border-radius: 10px;
  max-width: 1100px;
  width: 100%;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.search-title {
  font-size: 2rem;
  margin-bottom: 5px;
}

.search-subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.search-form .form-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.search-form input,
.search-form select {
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
}

.search-form button {
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  background: #ff6b35;
  color: white;
  font-weight: bold;
  cursor: pointer;
  grid-column: span 2; /* para mas wide yung button sa last row */
}

.search-form button:hover {
  background: #ff4b1f;
}
/* section 4 end  */

/* section 5 start  */
/* Logos Section */
.logos-section {
  background-color: #fff; /* pwede mo baguhin */
  padding: 40px 20px;
}

.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 256px;
}

.logos-container img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;g

}

.logos-container img:hover {
  transform: scale(1.05);
}
/* section 5 end  */

/* section 6 gallery section  */
/* Section 6: Property Gallery */
.property-gallery-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-carousel {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Main image */
.main-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.main-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.main-img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: opacity 0.3s ease;
  display: block;
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}

.image-counter {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  z-index: 2;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  color: #333;
}

.arrow svg {
  width: 24px;
  height: 24px;
}

.arrow.left { left: 20px; }
.arrow.right { right: 20px; }
.arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.05);
}

/* Thumbnails */
.thumbnails-container {
  overflow-x: auto;
  padding-bottom: 10px;
}

.thumbnails {
  display: flex;
  gap: 12px;
  padding: 5px;
  justify-content: center;
  min-width: min-content;
}

.thumbnails img {
  width: 100px;
  height: 75px;
  object-fit: cover;
  opacity: 0.7;
  transition: all 0.2s ease;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumbnails img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.thumbnails img.active {
  opacity: 1;
  border-color: #2a7fba;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Gallery CTA */
.gallery-cta {
  text-align: center;
  margin-top: 30px;
}

.cta-button {
  background-color: #2a7fba;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(42, 127, 186, 0.3);
}

.cta-button:hover {
  background-color: #1f6a9a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 127, 186, 0.4);
}

.cta-button svg {
  width: 18px;
  height: 18px;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 1200px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2;
}

.close-modal:hover {
  color: #ccc;
}

.modal-image-container {
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.modal-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}

.modal-arrow {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-arrow svg {
  width: 28px;
  height: 28px;
  color: white;
}

.modal-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.modal-counter {
  color: white;
  font-size: 1.1rem;
  min-width: 60px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .main-img-wrapper img {
    height: 350px;
  }
  
  .arrow {
    width: 40px;
    height: 40px;
  }
  
  .arrow.left { left: 10px; }
  .arrow.right { right: 10px; }
  
  .thumbnails img {
    width: 80px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .property-gallery-section {
    padding: 40px 10px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .main-img-wrapper img {
    height: 250px;
  }
  
  .image-counter {
    font-size: 0.8rem;
    padding: 3px 10px;
  }
  
  .thumbnails {
    justify-content: flex-start;
  }
}
/* section 6 end */

/* Our Services Section */
.services-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

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

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

.section-title {
  font-size: 2rem;
  color: #1a365d;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  line-height: 1.2;
  padding: 0 20px;  
}

.section-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-columns {
  display: flex;
  gap: 30px;
}

.service-column {
  flex: 1;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0 25px 0; /* Adjusted padding */
}

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

/* Regular rectangular image style */
.service-image {
  height: 250px;
  width: 100%;
  overflow: hidden;
}

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

/* Circular image style - only for 3rd column */
.service-column:nth-child(3) .service-image {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  margin: 25px auto 20px;
  overflow: hidden;
}

.service-column:nth-child(3) .service-image img {
  object-fit: cover;
  object-position: center;
}

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

.service-content {
  padding: 0 25px;
  width: 100%;
}

.service-content h3 {
  font-size: 1.5rem;
  color: #1a365d;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-content p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .services-columns {
    flex-direction: column;
    gap: 40px;
  }
  
  .service-column {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .service-column:nth-child(3) .service-image {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .service-content {
    padding: 0 20px;
  }
  
  .service-content h3 {
    font-size: 1.3rem;
  }
}
/* END OUR SERVICE SECTION  */


/* SOCIAL SECTION */
/* Enhanced Social Media Section Styles */
.social-media-section {
  background-color: #f8f9fa;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2.2rem;
  color: #1a365d;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.social-link {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.social-icon {
  width: 30px;
  height: 30px;
  fill: white;
}

.social-tooltip {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a365d;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.social-link:hover .social-tooltip {
  opacity: 1;
  visibility: visible;
  bottom: -40px;
}

/* Social Brand Colors */
.facebook {
  background-color: #3b5998;
}

.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.linkedin {
  background-color: #0077b5;
}

.yelp {
  background-color: #d32323;
}

/* Call-to-Action */
.social-cta {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-cta p {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: #d4af37;
  color: #000;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #c5a030;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.cta-icon {
  width: 18px;
  height: 18px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .social-links {
    gap: 15px;
  }
  
  .social-link {
    width: 60px;
    height: 60px;
  }
  
  .social-icon {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .social-media-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .social-links {
    gap: 10px;
  }
  
  .social-link {
    width: 50px;
    height: 50px;
  }
  
  .social-icon {
    width: 20px;
    height: 20px;
  }
  
  .social-cta {
    padding: 20px;
  }
}
/* end of social section  */




/* contact section  */
/* Enhanced Contact Section Styles */
.contact-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  position: relative;
}

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
}

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

.contact-form-container,
.map-hours-container {
  flex: 1;
  min-width: 300px;
}

/* Form Tabs */
.form-tabs {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.tab-btn {
  padding: 12px 20px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: #718096;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.tab-btn.active {
  color: #1a365d;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #d4af37;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}

/* Contact Info */
.contact-info {
  padding: 20px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  fill: #d4af37;
  flex-shrink: 0;
}

.contact-method h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #1a365d;
}

.contact-method a {
  color: #4a5568;
  transition: color 0.3s ease;
}

.contact-method a:hover {
  color: #d4af37;
}

address {
  font-style: normal;
  line-height: 1.6;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #25D366;
  color: white;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  fill: white;
}

/* Contact Form */
.contact-form {
  padding: 25px;
  background: white;
border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);

}

.form-group textarea {
  height: 150px;
  resize: vertical;
}


.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #d4af37;
  color: #000;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #c5a030;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.submit-btn svg {
  width: 18px;
  height: 18px;
}

.recaptcha-notice {
  font-size: 0.8rem;
  color: #718096;
  margin-top: 15px;
}

.recaptcha-notice a {
  color: #4a5568;
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0; transform: translateY(10px);
  }
  to {
    opacity: 1; transform: translateY(0px);
  }
} 

/* Map & Hours */
.map-hours-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.map-container {
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hours-container {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hours-container h3 {
  font-size: 1.3rem;
  color: #1a365d;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.hours-current {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f4f8;
}

.open-status {
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.9rem;
}

.open-status.open {
  background: #e6ffed;
  color: #22863a;
}

.open-status.closed {
  background: #ffeef0;
  color: #cb2431;
}

.hours-regular p {
  margin-bottom: 15px;
}

.hours-note {
  font-size: 0.9rem;
  color: #4a5568;
  padding-top: 15px;
  border-top: 1px solid #f0f4f8;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }
  
  .map-hours-container {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .map-container,
  .hours-container {
    flex: 1;
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .map-hours-container {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .tab-btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  .contact-method {
    flex-direction: column;
    gap: 8px;
  }
}
/* end contact section  */


/* go to top */
#goTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #333;
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 8px;
  transition: opacity 0.3s;
}

#goTopBtn:hover {
  background-color: #555;
}
/* end go to top */




/* footer section  */
.real-estate-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 40px 0 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.footer-social {
  text-align: center;
  margin-bottom: 30px;
}

.footer-heading {
  color: #ecf0f1;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #34495e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}

.copyright {
  margin-bottom: 10px;
  color: #bdc3c7;
  font-size: 14px;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #3498db;
}

@media (max-width: 768px) {

  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
    margin-top: 15px;
  }
}
/* end footer section  */
