/* ================== Vaastvik Realtors CSS ================== */

/* ===== Professional Breadcrumb ===== */
.vaastvik-breadcrumb {
  background-color: #f8f8f8;
  padding: 12px 0;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  border-bottom: 1px solid #e0e0e0;
}

.vaastvik-breadcrumb .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.vaastvik-breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.vaastvik-breadcrumb-item {
  color: #555;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.vaastvik-breadcrumb-item + .vaastvik-breadcrumb-item::before {
  content: "›";
  margin: 0 8px;
  color: #999;
  font-weight: 500;
}

.vaastvik-breadcrumb-item a {
  text-decoration: none;
  color: #c19b6c;
  transition: color 0.3s ease;
}

.vaastvik-breadcrumb-item a:hover {
  color: #a17d50;
}

.vaastvik-breadcrumb-item.active {
  color: #555;
  font-weight: 600;
  cursor: default;
}

/* Responsive */
@media (max-width: 768px) {
  .vaastvik-breadcrumb {
    font-size: 13px;
    padding: 10px 0;
  }

  .vaastvik-breadcrumb-item + .vaastvik-breadcrumb-item::before {
    margin: 0 6px;
  }
}

/* ===== Services Section ===== */
.vaastvik-services-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.vaastvik-service-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.vaastvik-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vaastvik-service-img {
  height: 220px;
  overflow: hidden;
}

.vaastvik-service-img img {
  height: 100%;
  object-fit: cover;
}

/* ===== FAQ Section ===== */
.vaastvik-faq-about {
  background: #eef5ff;
  padding: 70px 0;
}

.vaastvik-faq-about h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0b1f3a;
}

.vaastvik-faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  overflow: hidden;
}

.vaastvik-faq-question {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  color: #1e293b;
}

.vaastvik-faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
}

.vaastvik-faq-item.active .vaastvik-faq-question::after {
  content: "-";
}

.vaastvik-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  padding: 0 20px;
  font-size: 14px;
  color: #475569;
}

.vaastvik-faq-item.active .vaastvik-faq-answer {
  max-height: 220px;
  padding: 0 20px 20px;
}

.vaastvik-team_section {
  background: #f9f9f9;
}

.vaastvik-team-banner img {
  height: 350px;
  object-fit: cover;
}

.vaastvik-heading_container h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.vaastvik-team-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

.vaastvik-team-grid {
  margin-top: 20px;
}

.vaastvik-team-card {
  background: #fff;
  padding: 30px 20px;
  margin-bottom: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.vaastvik-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vaastvik-team-icon {
  font-size: 40px;
  color: #c19b6c;
  margin-bottom: 15px;
}

.vaastvik-team-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.vaastvik-designation {
  font-size: 14px;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .vaastvik-team-banner img {
    height: 220px;
  }

  .vaastvik-heading_container h2 {
    font-size: 28px;
  }


.vaastvik-faq {
  background: #f1f6ff;
  padding: 70px 0;
}

.vaastvik-faq .container {
  max-width: 900px;
  margin: auto;
}

.vaastvik-faq h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0b1f3a;
}

/* FAQ ITEM */
.vaastvik-faq .faq-item {
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  overflow: hidden;
}

/* QUESTION */
.vaastvik-faq .faq-question {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  color: #1e293b;
}

.vaastvik-faq .faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
}

/* ACTIVE STATE */
.vaastvik-faq .faq-item.active .faq-question::after {
  content: "-";
}

/* ANSWER */
.vaastvik-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  padding: 0 20px;
  font-size: 14px;
  color: #475569;
}

.vaastvik-faq .faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 20px;
}
}