* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
/* FIX unwanted right-side extra space */
html, body {
    width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

/* ===== General Styles ===== */
body {
  font-family: Arial, sans-serif;  
  line-height: 1.6;
  background: url('./service\ bc\ img.jpeg')no-repeat center center / cover fixed;
}

span{
  color:#ffcc00;
}

.hamburger{
  display: none;
}

.navBar{
  display:inline-block;
}

.navBar{
  /* background-color: rgb(47, 101, 87); */
  display: flex;
  flex-direction: row;
  gap: 100px;
  margin-top: 20px;
  background: linear-gradient(135deg,rgb(46, 105, 93),rgb(29, 77, 65)); 
  position: sticky;
  top: 0;
  z-index: 9999;
}

.logo{
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-left: 90px;
  align-items: center;
}

.logo img {
  height: 80px;
  width: 80px;
}

.logo h3{
  color:#ffcc00;
  font-size: 30px;
}

.navLinks{
  display: flex;
  flex-direction: row;
  gap: 80px;
}

.linkLeft{
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.linkRight{
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.linkLeft, .linkRight {
  display: flex;
  align-items: center;

  list-style: none;
  padding: 0;
  margin: 0;
}

.linkLeft a, .linkRight a {
  text-decoration: none;
  color:white;
  font-weight:bold;
}

.linkLeft a:hover {
  color:#ffcc00; /* Highlight active link */
}

/* Search Input Styling */
.linkRight input[type="search"] {
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  height: 40px;
}

/* SignIn Button Styling */
.linkRight button {
  padding: 6px 15px;
  border: none;
  background-color: #ffcc00;
  color:black;
  /* border-radius: 5px; */
  cursor: pointer;
  font-weight: bold;
  height: 40px;
  width: 130px;
  border-bottom-right-radius: 40px;
}

.linkRight button:hover {
  background-color:rgb(5, 67, 52);
  /* background-color:rgb(4, 68, 54); */
  color: white;
}

/* Hamburger Button */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
}

/* Mobile Styles */
@media (max-width: 450px) {
  .hamburger {
    display: block;
    font-size: 40px;
  }

  .navBar{
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;

    position: static;
    background-color:transparent;
  }
  .navBar.active{
    display:flex;
    flex-direction: column;
    gap: 20px;
  }
  .navBar .logo{
    margin-left: 2px;
  }
  .navLinks{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    margin-top: 40px;
  }
  .linkLeft{
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .linkLeft a:hover{
    color: #ffcc00;
  }
  .linkRight{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
  
  .linkLeft, .linkRight {
    flex-direction: column;
    gap: 10px;
  }

  .linkRight input[type="search"] {
    width: 70%;
  }

  .linkRight button:hover {
  background-color:rgb(2, 51, 40);
  color: white;
  }

  .linkRight button {
    width:27%;
  }

  .logo{
    margin-left: 140px;
  }
}









/*== section 01 ==*/
.valuation {
  padding: 60px 20px;
  text-align: center;
  /* background-color: #f4f6f8; */
  margin-top: 120px;
}

.valuation h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
  color:#ffcc00;
  /* color:white; */

  /* font-family: cursive; */
}

.valuation p {
  font-size: 1em;
  margin-bottom: 1.5em;
  color:white;
  /* color:#ffcc00; */
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

.valuation-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.valuation-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.valuation-form button {
  padding: 14px 22px;
  font-size: 1em;
  color:#555;
  /* background-color: #28a745; */
  background-color:#ffcc00;
  border: none;
  /* border-radius: 4px; */
  border-bottom-right-radius: 40px;
  cursor: pointer;
  font-weight: bold;
}

.valuation-form button:hover {
  background-color:rgb(5, 67, 52);
  color: white;
}


@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(0.9);
  }
  40% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.pulse-button {
    animation: heartbeat 3s infinite ease-in-out;
}


/* Keyframes: Zoom from slightly scaled down to full size */
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Apply the animation to the valuation section */
.valuation {
  animation: zoomIn 0.6s ease-out forwards;
}


/* @media (max-width: 450px) {
  .valuation h2 {
    font-size: 1.75em;
  }

  .valuation-form {
    flex-direction: column;
  }

  .valuation-form input,
  .valuation-form button {
    width: 100%;
  }
} */

/* 📱 Mobile screens (≤ 450px) */
@media (max-width: 450px) {
  .valuation {
    padding: 40px 15px;
    margin-top: 60px;
  }

  .valuation h2 {
    font-size: 1.5rem;
  }

  .valuation p {
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 0 10px;
  }

  .valuation-form {
    flex-direction: column; /* stack inputs + button vertically */
    gap: 12px;
    max-width: 100%;
  }

  .valuation-form input {
    min-width: unset; /* allow full width */
    width: 100%;
    font-size: 0.95rem;
    padding: 12px 15px;
  }

  .valuation-form button {
    width: 100%; /* full-width button */
    font-size: 0.95rem;
    padding: 12px 15px;
  }
}











/*== section 02 ==*/
.featured-listings {
  padding: 60px 20px;
  /* max-width: 1200px; */
  margin: 0 auto;
  text-align: center;
  /* background-color: #fff; */
  margin-top: 200px;
}

.featured-listings h2 {
  font-size: 2rem;
  margin-bottom: 0.3em;
  color:white;

  /* font-family:monospace; */
}

.featured-listings p {
  font-size: 1em;
  margin-bottom: 1.5em;
  color:white;
}

/* Search Form */
.property-search-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.property-search-form input {
  /* flex: 1; */
  width:40%;
  padding: 12px 16px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.property-search-form button {
  padding: 12px 20px;
  font-size: 1em;
  color: #555;
  background-color:#ffcc00;
  border: none;
  /* border-radius: 4px; */
  border-bottom-right-radius: 40px;
  cursor: pointer;
  font-weight: bold;
}

.property-search-form button:hover {
  background-color:rgb(5, 67, 52);
  color: white;
}

/* Property Grid */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.property-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  background-color:rgb(170, 245, 230);
  transition: box-shadow 0.3s ease-in-out;
}

.property-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.property-card img {
  width: 100%;
  height: auto;
  display: block;
}

.property-card .info {
  padding: 15px;
  background-color: rgb(44, 103, 93);
}

.property-card .info h3 {
  margin: 0 0 0.5em 0;
  font-size: 1.25em;
  color:white;

  /* font-style: italic; */
}

.property-card .info p {
  margin: 0 0 1em 0;
  color: #666;
  font-weight: bold;
  background-color:rgb(238, 213, 165);
  padding: 10px 20px;
  border-radius: 10px;
}

.property-card .info button {
  padding: 10px 16px;
  background-color:#ffcc00;
  color: #555;
  border: none;
  font-size: 1em;
  /* border-radius: 4px; */
  border-bottom-right-radius: 40px;
  margin-left: 65px;
  cursor: pointer;
  font-weight: bold;
}

.property-card .info button:hover {
  background-color:rgb(170, 245, 230);
}

@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.featured-listings {
  animation: slideInFromRight 1s ease-out forwards;
}


/* Mobile adjustments */
/* @media (max-width: 576px) {
  .property-search-form {
    flex-direction: column;
  }

  .property-search-form input,
  .property-search-form button {
    width: 100%;
  }
} */

/* 📱 Mobile screens (≤ 450px) */
@media (max-width: 450px) {
  .featured-listings {
    padding: 40px 15px;
    margin-top: 100px; /* reduce spacing */
  }

  .featured-listings h2 {
    font-size: 1.5rem;
  }

  .featured-listings p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  /* Search Form adjustments */
  .property-search-form {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .property-search-form input {
    width: 100%; /* full width */
    font-size: 0.95rem;
    padding: 10px 14px;
  }

  .property-search-form button {
    width: 100%; /* full width button */
    font-size: 0.95rem;
    padding: 12px 15px;
  }

  /* Property Grid: single column */
  .property-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .property-card .info h3 {
    font-size: 1.1rem;
  }

  .property-card .info p {
    font-size: 0.85rem;
    padding: 8px 12px;
  }

  .property-card .info button {
    width: 100%; /* button spans full card width */
    margin-left: 0;
    font-size: 0.95rem;
    padding: 10px 15px;
  }
}










/*== section 03 ==*/
.virtual-gallery {
  padding: 60px 20px;
  text-align: center;
  background-color:rgb(255, 245, 245);
  /* background-color:rgb(234, 218, 186); */
  margin-top: 200px;
}

.virtual-gallery h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
  color:rgb(26, 188, 156);

  /* font-family: cursive; */
}

.virtual-gallery p {
  font-size: 1em;
  margin-bottom: 1.5em;
  color: #555;
  font-weight: bold;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-style:oblique;
}

.gallery-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.images h3{
    color:rgb(26, 188, 156);
    margin-bottom: 15px;
    /* font-family: cursive; */
}

.tour-slider {
  overflow: hidden;
  width: 100%;
  max-width: 800px; /* Adjust as needed */
  margin: 0 auto;
}

.slider-track {
  display: flex;
  width: calc(200%); /* doubles the width for looped track */
  animation: slide 12s linear infinite;
}

.slider-track img {
  width: calc(100% / 3); /* if showing 3 images per view */
  flex-shrink: 0;
}

/* Keyframes for sliding animation */
@keyframes slide {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(-50%); }
  100% { transform: translateX(-100%); }
}


.tour iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

@media (max-width: 450px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }

  .tour iframe {
    height: 300px;
  }

  .gallery img {
    height: 150px;
  }
}









/*== section 04 ==*/
.trust-signals {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  /* background-color: #f9f9f9; */
  margin-top: 200px;
}

.trust-signals h2 {
  font-size: 2em;
  margin-bottom: 1em;
  color:#ffcc00;
  /* font-family: cursive; */
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}

.testimonial {
  /* background: #fff; */
  padding: 20px;
  border-left: 6px solid #ffcc00;
  border-radius: 4px;
  font-style: italic;
}

.testimonial p{
    color:white;
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonial .author {
  margin-top: 10px;
  font-style: normal;
  font-weight: bold;
  color:rgb(220, 174, 83);
}

/* Agent Profiles */
.agent-profiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.agent-profile {
  /* background:rgb(255, 245, 245); */
  background:#f3d55e;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.agent-profile button {
    background-color:rgb(33, 83, 71);
    padding:10px;
    margin-top: 10px;
    border-bottom-right-radius: 40px;
    width: 115px;
    color: white;
    font-weight: bold;
    border: none;
    height: 45px;
}

.agent-profile button:hover{
    background-color:whitesmoke;
    color: #555;
}

.agent-profile img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.agent-profile h3 {
  margin: 0 0 0.5em;
  font-size: 1.25em;
  color:rgb(21, 162, 125);
}

.agent-profile p {
  margin: 0;
  color:#555;
  font-weight: bold;
  font-style: italic;
}

/* Responsiveness */
@media (max-width: 450px) {
  .testimonials {
    grid-template-columns: 1fr;
  }
  
  .agent-profiles {
    grid-template-columns: 1fr;
  }
}











/*== section 05 ==*/
.exclusive-offer {
  background-color:rgb(223, 206, 121);
  /* background-color:rgb(228, 210, 120); */
  text-align: center;
  padding: 60px 20px;
  border-radius: 8px;
  max-width: 800px;
  margin: 40px auto;
  margin-top: 100px;
}

.exclusive-offer h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
  color:rgb(33, 83, 71);
  /* font-family: Verdana, Geneva, Tahoma, sans-serif; */
}

.exclusive-offer p {
  font-size: 1.1em;
  margin-bottom: 1em;
  color: #555;
}

.countdown-timer {
  font-size: 1.5em;
  font-weight: bold;
  margin: 20px 0;
  color:rgb(33, 83, 71);
}

.cta-btn {
  padding: 15px 30px;
  background-color:rgb(33, 83, 71);
  color: #fff;
  border: none;
  /* border-radius: 4px; */
  border-bottom-right-radius: 40px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
}

#timer span{
    color:white;

}

.cta-btn:hover {
  background-color:#ffcc00;
  color: #555;
}

@media (max-width: 450px) {
  .exclusive-offer {
    padding: 40px 15px;
    margin: 20px 10px;
    margin-top: 60px;
    border-radius: 6px;
  }

  .exclusive-offer h2 {
    font-size: 1.5em;
  }

  .exclusive-offer p {
    font-size: 1em;
  }

  .countdown-timer {
    font-size: 1.2em;
  }

  .cta-btn {
    padding: 12px 20px;
    font-size: 0.9em;
    width: 100%;  /* make button full width for mobile */
    border-bottom-right-radius: 30px;
  }
}










/*== section 06 ==*/
.faq-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto 40px;
  background-color:rgb(192, 226, 220);
  border-radius: 8px;
  margin-top: 150px;
}

.faq-section h2 {
  font-size: 2em;
  margin-bottom: 1em;
  color: #333;
  /* font-family: cursive; */
  margin-left: 150px;
}

.faq-item {
  margin-bottom: 10px;
}

.faq-question {
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1em;
  color: #2c3e50;
}

.faq-answer {
  margin-top: 0.5em;
  font-size: 1em;
  color: #555;
}

@media (max-width: 450px) {
  .faq-section {
    padding: 40px 15px;
    margin: 0 10px 30px;
    margin-top: 80px;
    border-radius: 6px;
  }

  .faq-section h2 {
    font-size: 1.5em;
    text-align: center;
  }

  .faq-question {
    font-size: 1em;
  }

  .faq-answer {
    font-size: 0.95em;
  }
}







/*== section 07 ==*/
.lead-capture {
  padding: 60px 20px;
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
  background-color: #eef9f1;
  border-radius: 8px;
  margin-top: 150px;
}

.lead-capture h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
  color:rgb(34, 84, 72);
  /* font-family:cursive; */
}

.lead-capture p {
  font-size: 1em;
  margin-bottom: 1em;
  color: #555;
  font-style: italic;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.lead-form input,
.lead-form select {
  padding: 12px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.lead-form button {
  padding: 14px;
  font-size: 1em;
  /* background-color: #27ae60; */
  background-color:rgb(34, 84, 72);
  color: white;
  border: none;
  /* border-radius: 4px; */
  border-bottom-right-radius: 40px;
  cursor: pointer;
  font-weight: bold;
}

.lead-form button:hover {
  background-color:#ffcc00;
  color: #555;
}


@media (max-width: 450px) {
  .lead-capture {
    padding: 40px 15px;
    margin: 0 10px 40px;
    margin-top: 80px;
    border-radius: 6px;
  }

  .lead-capture h2 {
    font-size: 1.5em;
  }

  .lead-capture p {
    font-size: 0.95em;
  }

  .lead-form {
    gap: 12px;
  }

  .lead-form input,
  .lead-form select {
    padding: 10px;
    font-size: 0.95em;
  }

  .lead-form button {
    padding: 12px;
    font-size: 0.95em;
    width: 100%; /* full width button for mobile */
    border-bottom-right-radius: 30px;
  }
}
