* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul, li {
  list-style: none;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #000000;
  background-color: #ffffff;
}

/* HEADER */

header {
  height: 100px;
  background: #bb595f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3% 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 220px;
  width: auto;
  object-fit: contain;
  display: block;
  padding: 0;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-menu a {
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: 0.3s ease;
  font-size: 17px;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #f3eac0;
  left: 0;
  bottom: -7px;
  transition: 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: #f3eac0;
}

/* BOOK BUTTON */

.book-btn {
  background-color: #f3eac0;
  color: #bb595f !important;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(187, 89, 95, 0.3);
}

.book-btn::after {
  display: none;
}

.book-btn:hover {
  background-color: #000000;
  color: #f3eac0 !important;
  transform: translateY(-2px);
}

.whatsapp-float{
  position: fixed;

  bottom: 20px;
  right: 20px;

  background-color: #25D366;

  color: #ffffff;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 22px;

  border-radius: 50px;

  text-decoration: none;

  z-index: 9999;

  box-shadow: 0 10px 25px rgba(0,0,0,0.2);

  transition: 0.3s ease;
}

.whatsapp-float i{
  font-size: 30px;
}

.whatsapp-float span{
  font-size: 15px;
  font-weight: 600;
}

.whatsapp-float:hover{
  transform: translateY(-3px);

  background-color: #000000;
}

/* Mobile */

@media (max-width: 768px){

  .whatsapp-float{
    padding: 13px 18px;
  }

  .whatsapp-float span{
    font-size: 14px;
  }

  .whatsapp-float i{
    font-size: 28px;
  }
}

/* HAMBURGER */

.nav-toggle {
  display: none;
  border: none;
  font-size: 1.6rem;
  color: #bb595f;
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  transition: 0.3s ease;
  background-color: #f3eac0;
}

.nav-toggle:hover {
  color: #f3eac0;
  background-color:#bb595f;
}

.community-section {
  padding: 100px 8%;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

.community-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.community-heading span {
  color: #bb595f;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
}

.community-heading h2 {
  font-size: 48px;
  color: #000000;
  margin-top: 15px;
  margin-bottom: 18px;
  line-height: 1.2;
}

.community-heading p {
  color: #555;
  font-size: 17px;
  line-height: 1.7;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.review-card {
  background: #f3eac0;
  padding: 35px 30px;
  border-radius: 28px;
  transition: all 0.35s ease;
  border: 2px solid transparent;

  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-card:hover {
  transform: translateY(-10px);
  background: #bb595f;
  border-color: #bb595f;
  box-shadow: 0 18px 40px rgba(187, 89, 95, 0.25);
}

.review-card:hover .review-text,
.review-card:hover h3,
.review-card:hover span,
.review-card:hover .quote-icon {
  color: #000000;
  cursor: pointer;
}

.quote-icon {
  font-size: 30px;
  color: #bb595f;
  line-height: 1;
  transition: 0.3s ease;
}

.review-text {
  color: #222;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 35px;
  transition: 0.3s ease;
  flex-grow: 1;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.review-logo {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.user-info h3 {
  font-size: 18px;
  color: #000000;
  margin-bottom: 5px;
  transition: 0.3s ease;
}

.user-info span {
  color: #555;
  font-size: 14px;
  transition: 0.3s ease;
}

/* Responsive */

@media (max-width: 768px) {

  .community-section {
    padding: 80px 6%;
  }

  .community-heading h2 {
    font-size: 34px;
  }

  .community-heading p {
    font-size: 15px;
  }

  .review-card {
    padding: 30px 24px;
  }

  .quote-icon {
    font-size: 55px;
  }

  .review-logo {
    width: 55px;
    height: 55px;
  }

}

/* Responsive */

@media (max-width: 768px) {

  .community-section {
    padding: 80px 6%;
  }

  .community-heading h2 {
    font-size: 34px;
  }

  .community-heading p {
    font-size: 15px;
  }

  .review-card {
    padding: 30px 25px;
  }

  .quote-icon {
    font-size: 55px;
  }

}

.footer{
  width: 100%;
  background: #f3eac0;
  color: #000000;
  padding: 35px 8% 25px;
}

.footer-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
}

.footer-middle{
  display: flex;
  flex-direction: row;
  gap: 2px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.footer-middle a{
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.footer-middle a:hover{
  color: #bb595f;
}

.footer-main{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.footer-left h2{
  font-size: 5rem;
  line-height: 0.95;
  color: #000000;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

.footer-contact{
  margin-bottom: 25px;
}

.footer-contact p{
  color: #000000;
  line-height: 1.7;
  font-weight: 600;
}

.footer-socials{
  display: flex;
  gap: 18px;
}

.footer-socials a{
  font-size: 1.5rem;
  transition: 0.3s ease;
}

.footer-socials a:hover{
  transform: translateY(-5px);
}

.footer-map {
  background: #bb595f;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.footer-map h3 {
  color: #000000;
  font-size: 1.2rem;
  margin-bottom: 12px;
  text-align: center;
}

.footer-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 12px;
}

.fa-instagram{
  color: #000000;
}

.fa-linkedin{
  color: #000000;
}

.fa-facebook{
  color: #000000;
}

.footer-right{
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-right img{
  width: 320px;
  max-width: 100%;
}

.footer-bottom{
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}

.footer-bottom p{
  color: #000000;
  font-size: 0.9rem;
}

/* MOBILE */
@media (max-width:768px){

  .footer{
    padding: 35px 7% 25px;
  }

  .footer-top{
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
  }

  .footer-nav{
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .footer-main{
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-left h2{
    font-size: 3.5rem;
    margin-bottom: 35px;
  }

  .footer-middle{
    padding-top: 0;
  }

  .footer-right img{
    width: 220px;
  }
}


/* RESPONSIVE */

@media (max-width: 1200px) {
  header {
    padding: 0 5%;
  }

  .nav-menu {
    gap: 1rem;
  }

  .nav-menu a {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    z-index: 1001;
  }

   .nav-bar .book-btn {
    background-color: #bb595f;
    color: #000000 !important;
    margin-bottom: 15px;
  }

  .nav-bar {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: beige;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    border-radius: 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }

  .nav-bar.active {
    max-height: 420px;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1.2rem;
    padding-top: 12px;
   
  }

   .nav-menu a::after {
    background: #bb595f;
  }

  .nav-menu a:hover {
    color: #bb595f;
  }

  .nav-menu a {
    color: #000000;
    font-size: 18px;
  }

  .book-btn {
    display: inline-block;
    padding: 12px 28px;
  }

}

@media (max-width: 480px) {
  header {
    height: 90px;
    padding: 0 5%;
  }

  .logo img {
    height: 170px;
  }

  .nav-bar {
    top: 90px;
  }
}