* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
 
overflow-x:hidden;
}


/* ===============================
   CONTAINER
=================================*/

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===============================
   NAVBAR
=================================*/

header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 0 20px;
}

.navbar {
  height: 70px;
  background: #fff;
  padding: 0 30px;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.logo {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo img {
  margin-top: 4px;
  height: 50px;
  width: auto;
}

#navLinks {
  display: flex;
  list-style: none;
  gap: 28px;
}

#navLinks li {
  position: relative;
}

#navLinks a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  padding: 8px 0;
  transition: 0.3s;
}

#navLinks a:hover {
  color: #e63946;
}

#navLinks li::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #e63946;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

#navLinks li:hover::after {
  width: 100%;
}










/* ===============================
   DROPDOWN MENU
=================================*/

.dropdown-menu {
  position: absolute;
  top: 55px;
  left: 0;
  width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
}

.dropdown-menu li {
  padding: 12px 18px;
  list-style: none;
}

.dropdown-menu li a {
  color: #333;
}

.dropdown-menu li:hover {
  background: #f5f5f5;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.add-btn {
  padding: 10px 18px;
  border: none;
  border-radius: 25px;
  background: #e63946;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
  font-size: 16px;
  font-family: "poppins", sans-serif;
}

.add-btn:hover {
  background: #f87782;
  color: #fff;
}

#menuToggle {
  display: none;
  font-size: 26px;
  border: none;
  background: none;
  cursor: pointer;
}
.add-btn {
  display: inline-block;
  text-decoration: none;
}
.call-btn {
  background: #e63946;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.call-btn:hover {
  background: #c92f3c;
}







/* ===============================
   HERO
=================================*/
.hero {
  min-height: 100vh; 
  background-image: url("https://images.unsplash.com/photo-1568605114967-8130f3a36994");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 15px 40px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 700px;
}
.hero-text {
  margin-top: 15px;
  font-size: 19px;
  line-height: 1.6;
  opacity: 0.9;
}


.hero span {
  color: #e63946;
}

.top-text {
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.stars {
  color: #ffd700;
  margin: 20px 0;
  font-size: 18px;
}

.visit-btn {
  background: #e63946;
  border: none;
  padding: 15px 35px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}



.hero-content{
    background:rgba(255,255,255,0.25);
    backdrop-filter:blur(6px);
    padding:40px;
    border-radius:15px;
    max-width:700px;
    width:100%;
} 

.tag{
    background:#e8f3f1;
    padding:6px 14px;
    border-radius:20px;
    display:inline-block;
    margin-bottom:15px;
    font-size:14px;
    font-weight:500;
}

.hero h1{
    font-size:48px;
    margin-bottom:10px;
    line-height:1.2;
    font-weight:700;
}

.subtitle{
    margin-bottom:25px;
    font-size:16px;
    line-height:1.6;
}

/* ===============================
   PROPERTY BUTTONS
=================================*/

.property-types{
    margin-top:20px;
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
}

.property-types button{
    padding:12px 20px;
    border:none;
    border-radius:25px;
    background:#fff;
    cursor:pointer;
    transition:.3s;
    font-size:15px;
    font-weight:500;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.property-types button:hover{
    background:#fe741e;
    color:#fff;
    transform:translateY(-2px);
}

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 50px;
  }

  #navLinks {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  #menuToggle {
    display: block;
  }

  #navLinks {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
    gap: 15px;
    display: none;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }

  #navLinks.active {
    display: flex;
  }

  #navLinks li {
    width: 100%;
  }

  #navLinks li::after {
    display: none;
  }

  .nav-right {
    display: none;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 8px;
    margin-top: 10px;

    opacity: 1;
    visibility: visible;
    display: none;
    transform: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .logo img {
    height: 55px;
  }

  .hero {
    height: 70vh;
    padding: 20px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .top-text {
    font-size: 13px;
  }

  .visit-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0 15px;
  }
    .hero {
    height: auto;        /* 👈 FIXED */
    min-height: 60vh;    /* 👈 responsive height */
    padding: 80px 15px 40px;
  }

  .hero-content {
    padding: 20px;
  }

    .property-types button {
    padding: 8px 12px;
    font-size: 13px;
  }
  .logo img {
    height: 48px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .stars {
    font-size: 16px;
  }

  .visit-btn {
    padding: 10px 22px;
    font-size: 13px;
  }
}







/* ===============================
 CTA SECTION
=================================*/

.cta {
  position: relative;
  padding: 90px 0;
  background-image: url("https://images.unsplash.com/photo-1613977257363-707ba9348227");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  margin-bottom: 20px;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}


.cta-content {
  position: relative;
  max-width: 750px;
  margin: auto;
}


.cta h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.cta p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
}


.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}


.cta-btn {
  background: #e63946;
  color: #fff;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #c92f3c;
}


.cta-btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn-outline:hover {
  background: #fff;
  color: #000;
}
.cta-content {
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===============================
   FOOTER
=================================*/

.footer {
  background: #232f41;
  padding: 20px 0 20px;
  margin-top: 10px;
}

.footer-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 30px 0;
}

.footer-logo {
  width: 180px;
  margin-bottom: 5px;
  background: #fff;
  border-radius: 6px;
  margin-top: 30px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #fff;
  font-family: "poppins", sans-serif;
  
}

.footer-col h4 {
  margin-bottom: 16px;
  font-size: 18px;
  color: #e63946;
  font-family: "poppins", sans-serif;
    margin-top: 30px;

}
.footer-col p a {
  color: #fff;
  text-decoration: none;
}

.footer-col p a:hover {
  color: #e63946;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  color: #fff;
  font-family: "poppins", sans-serif;
}

.footer-col ul li {
  margin-bottom: 8px;
  font-family: "poppins", sans-serif;
}

.footer-col ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
  font-family: "poppins", sans-serif;
}

.footer-col ul li a:hover {
  color: #e63946;
  padding-left: 5px;
  font-family: "poppins", sans-serif;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.social-icons .call {
  background: #ff6b00;
}
.social-icons .facebook {
  background: #1877f2;
}

.social-icons .instagram {
  background: #e1306c;
}

.social-icons a:hover {
  transform: translateY(-4px);
}

.footer-bottom {
  max-width: 1200px;
  margin: auto;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #fff;
  font-family: "poppins", sans-serif;
}

.footer-bottom p {
  font-family: "poppins", sans-serif;
}
.design img {
  width: 120px;
}

@media (max-width: 1400px) {
  .footer-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 30px;
  }
}

@media (max-width: 1200px) {
  .footer-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .footer-logo {
    width: 150px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 20px 0 20px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 5px;
  }

  .footer-logo {
    margin: auto;
  }


  .social-icons {
    justify-content: center;
  }

  
  .footer-bottom {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
}

/* =================================
   SMALL MOBILE
================================= */

@media (max-width: 480px) {
  .footer-wrapper {
    padding: 0 15px;
    gap: 20px;
  }

  .footer-col h4 {
    font-size: 16px;
  }

  .footer-col p {
    font-size: 14px;
  }

  .footer-col ul li a {
    font-size: 13px;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
  }

  .footer-btn {
    width: 100%;
    font-size: 14px;
  }
}

/* =================================
   ABOUT SECTION
================================= */
.about {
  padding: 90px 0;
  background: #f9f9f9;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-images {
  display: flex;
  gap: 20px;
  flex: 1;
  min-width: 300px;
}

.big-img img {
  width: 100%;
  max-width: 400px;
  height: 520px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.small-imgs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.small-imgs img {
  width: 100%;
  max-width: 300px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}


.about-images img:hover {
  transform: scale(1.05);
}


.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #e63946;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
  
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 30px;
  background: #e63946;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  background: #d62839;
}


@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .about-images {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .big-img img {
    max-width: 350px;
    height: 400px;
  }
  
  .small-imgs {
    flex-direction: row;
    gap: 15px;
  }
  
  .small-imgs img {
    max-width: 160px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }
  
  .about-container {
    padding: 0 15px;
    gap: 30px;
  }
  
  .about-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .about-content p {
    font-size: 15px;
    margin-bottom: 12px;
  }
  
  .about-images {
    flex-direction: column;
    align-items: center;
  }
  
  .big-img img {
    max-width: 300px;
    height: 350px;
  }
  
  .small-imgs {
    flex-direction: row;
    gap: 10px;
    justify-content: center;
  }
  
  .small-imgs img {
    max-width: 140px;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 50px 0;
  }
  
  .about-container {
    padding: 0 10px;
    gap: 25px;
  }
  
  .about-content h2 {
    font-size: 24px;
  }
  
  .about-content p {
    font-size: 14px;
    text-align: justify;
line-height: 1.7;
  }
  .small-imgs{
display:none;
}
  
  .about-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
  
  .big-img img {
    max-width: 280px;
    height: 320px;
  }
  
  .small-imgs {
    flex-direction: column;
    gap: 10px;
  }
  
  .small-imgs img {
    max-width: 280px;
    height: 160px;
  }
}




/* ================= CONTACT SECTION ================= */

.contact-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f8f9fb, #eef2f7);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: center;
}

/* ================= LEFT INFO ================= */

.contact-info {
  animation: fadeLeft 1s ease;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 30px;
  position: relative;
  color: #003962;
}

.contact-info h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #e63946;
  position: absolute;
  bottom: -10px;
  left: 0;
}

.hours p {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e3e3e3;
  color: #232f41;
  transition: 0.3s;
  font-family: "poppins", sans-serif;
}

.hours p:hover {
  padding-left: 8px;
  color: #e63946;
}

.info-box a {
  text-decoration: none;
  color: #232f41;
  display: inline-block;
  font-family: "poppins", sans-serif;
}

.info-box a:hover {
  color: #e63946;
}
.info-box {
  margin-top: 30px;
}

.info-box p {
  margin: 15px 0;
  font-size: 15px;
  transition: 0.3s;
}

.info-box i {
  color: #FFF;
  margin-right: 12px;
  margin-left: 12PX;
  font-size: 18px;
}

.info-box p:hover {
  transform: translateX(6px);
}

/* ================= FORM ================= */

.contact-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(8px);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  animation: fadeRight 1s ease;
}

.contact-form input,
.contact-form textarea {
  width: 80%;
  padding: 8px;
  margin-bottom: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
  transition: 0.4s;
  font-family: "poppins", sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e63946;
  box-shadow: 0 0 8px rgba(200, 155, 60, 0.3);
  transform: scale(1.02);
}

.contact-form textarea {
  height: 160px;
  resize: none;
  font-family: "poppins", sans-serif;
}

.contact-form button {
  background: #e63946;
  color: #fff;
  border: none;
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.4s;
  font-family: "poppins", sans-serif;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(200, 155, 60, 0.4);
}

/* ================= MAP ================= */

.map-section {
  width: 100%;
  padding: 60px 0;
  background: #f5f7fa;
  text-align: center;
}

.map-section h2 {
  font-size: 32px;
  color: #232f41;
  margin-bottom: 10px;
}

.map-section p {
  color: #000;
  margin-bottom: 30px;
  font-size: 16px;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 45%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1200px) {
  .map-section iframe {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .map-section {
    padding: 40px 0;
  }

  .map-section iframe {
    height: 320px;
  }
}
@media (max-width: 480px) {
  .map-section iframe {
    height: 250px;
  }
}

/* ================= ANIMATIONS ================= */

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-form {
    padding: 30px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-info h2 {
    font-size: 24px;
    color: #fd731e;
  }

  .map-section iframe {
    height: 320px;
  }
}


/* ===============================
   PAGE BANNER
=================================*/

.page-banner {
  position: relative;
  height: 340px;
  background: url("https://images.unsplash.com/photo-1494526585095-c41746248156")
    center/cover no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}


.banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  top: 0;
  left: 0;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-content h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 10px;
}


.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb p {
  color: #ddd;
}

.about-page .page-banner {
  background: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa") center/cover no-repeat;
}

.plots-page .page-banner {
  background: url("https://images.unsplash.com/photo-1500382017468-9049fed747ef") center/cover no-repeat;
}

.villas-page .page-banner {
  background: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c") center/cover no-repeat;
}

.flats-page .page-banner {
  background: url("https://images.unsplash.com/photo-1545324418-cc1a3fa10c00") center/cover no-repeat;
}

.commercial-page .page-banner {
  background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab") center/cover no-repeat;
}

.lease-rent-page .page-banner {
  background: url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2") center/cover no-repeat;
}

.houses-villas-page .page-banner {
  background: url("https://images.unsplash.com/photo-1613977257363-707ba9348227") center/cover no-repeat;
}

.contact-page .page-banner {
  background: url("https://images.unsplash.com/photo-1497366216548-37526070297c") center/cover no-repeat;
}


@media (max-width: 768px) {
  .page-banner {
    height: 250px;
  }
  
  .banner-content h1 {
    font-size: 36px;
    margin-bottom: 8px;
  }
  
  .breadcrumb {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .page-banner {
    height: 200px;
  }
  
  .banner-content h1 {
    font-size: 28px;
    margin-bottom: 5px;
  }
  
  .breadcrumb {
    font-size: 12px;
    gap: 5px;
  }
}

.property-location {
  padding: 80px 10%;

  background: #eef3f8;
  margin-bottom: 10px;
}

.location-header {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 40px;
}

.location-header h2 {
  font-size: 42px;

  font-weight: 600;

  color: #0f2c35;
}

.browse-link {
  text-decoration: none;

  color: #0f2c35;

  font-weight: 500;
}


.location-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}



.location-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  cursor: pointer;
}

.location-card:hover {
  transform: translateY(-5px);
}



.location-card img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}



.location-text h3 {
  font-size: 20px;
  margin-bottom: 4px;
  color: #0f2c35;
}

.location-text p {
  font-size: 14px;

  color: #6b7b88;
}

@media (max-width: 1024px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .location-header h2 {
    font-size: 30px;
  }
}




.latest-properties{
padding:80px 10%;
}

.section-title{
text-align:center;
font-size:40px;
margin-bottom:50px;
color:#0f2c35;
}


.property-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
}


.property-card{
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.4s;
}

.property-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}



.card-img{
position:relative;
}

.card-img img{
width:100%;
height:220px;
object-fit:cover;
}
.card-footer{
display:flex;
justify-content:space-between;
align-items:center;
}

.card-footer a{
text-decoration:none;
color:#333;
font-weight:500;
}

.badge{
position:absolute;
left:15px;
top:15px;
padding:5px 12px;
font-size:13px;
color:#fff;
border-radius:4px;
}

.sell{
background:#e63946;
}

.featured{
background:#ff9800;
top:45px;
}

.top-icons{
position:absolute;
right:15px;
top:15px;
display:flex;
gap:8px;
}

.top-icons i{
width:32px;
height:32px;
background:rgba(0,0,0,0.5);
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:13px;
cursor:pointer;
}

.card-content{
padding:22px;
}

.card-content h3{
font-size:20px;
margin-bottom:10px;
color:#0f2c35;
}

.location{
color:#6c7a86;
font-size:14px;
margin-bottom:15px;
}

.location i{
color:#e63946;
margin-right:5px;
}

.property-info{
display:flex;
justify-content:space-between;
font-size:14px;
margin-bottom:18px;
color:#333;
}

.property-info span i{
color:#e63946;
margin-right:5px;
}


.card-footer{
display:flex;
justify-content:space-between;
align-items:center;
border-top:1px solid #eee;
padding-top:15px;
}

.details{
text-decoration:none;
color:#0f2c35;
font-weight:500;
}

.rating{
color:#ffa500;
font-size:14px;
}

@media(max-width:1024px){
.property-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.property-grid{
grid-template-columns:1fr;
}

.section-title{
font-size:28px;
}
}

/* ===============================
   FAQ SECTION
=================================*/

.faq-section {
    padding: 60px 15px;
    background: #f8f9fa;
}

.faq-container {
    width: 100%;
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: all 0.3s ease;
    gap: 10px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 500;
    color: #232f41;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.faq-toggle {
    font-size: 22px;
    font-weight: 300;
    color: #e63946;
    transition: all 0.3s ease;
    min-width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fff;
}

.faq-answer p {
    padding: 0 0 25px 0;
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 18px;
}

.faq-item.active .faq-question {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 15px;
    }
    
    .faq-question {
        padding: 16px 18px;
    }
    
    .faq-question h3 {
        font-size: 15px;
    }
    
    .faq-toggle {
        font-size: 20px;
        min-width: 28px;
    }
    
    .faq-answer {
        padding: 0 18px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 18px 16px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 12px;
    }
    
    .faq-question {
        padding: 14px 16px;
        gap: 8px;
    }
    
    .faq-question h3 {
        font-size: 14px;
        line-height: 1.3;
    }
    
    .faq-toggle {
        font-size: 18px;
        min-width: 24px;
    }
    
    .faq-answer {
        padding: 0 16px;
    }
    
    .faq-answer p {
        font-size: 14px;
        padding: 0 0 20px 0;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 16px 14px;
    }
}

/* ===============================
   TESTIMONIALS SECTION
=================================*/

.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-item {
    flex: 0 0 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 60px;
    color: #e63946;
    font-family: serif;
    line-height: 1;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: #ffd700;
    font-size: 16px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e63946, #f87782);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.client-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: #232f41;
    margin-bottom: 5px;
}

.client-details span {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}


.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: #e63946;
    transform: scale(1.2);
}

.testimonial-dots .dot:hover {
    background: #e63946;
}


@media (max-width: 992px) {
    .testimonial-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-item {
        flex: 0 0 100%;
    }
    
    .testimonial-content {
        padding: 25px;
        margin: 0 10px;
    }
    
    .testimonial-content p {
        font-size: 15px;
    }
    
    .client-details h4 {
        font-size: 16px;
    }
    
    .client-details span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .testimonial-content {
        padding: 20px;
    }
    
    .testimonial-content::before {
        font-size: 50px;
        top: -5px;
        left: 15px;
    }
    
    .client-avatar {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .testimonial-content p {
        font-size: 14px;
    }
}
/* ================= IMPROVED CONTACT SECTION ================= */

.contact-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8f9fb, #eef2f7);
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    
    padding: 0 20px;
}

/* ================= CONTACT INFO ================= */

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #232f41;
    font-weight: 600;
}

.contact-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hours {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.hours h3 {
    font-size: 18px;
    color: #e63946;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours p {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 15px;
}

.hours p:last-child {
    border-bottom: none;
}

.hours p span {
    font-weight: 600;
    color: #232f41;
}

.info-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e63946, #f87782);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.info-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #232f41;
    margin-bottom: 5px;
}

.info-details a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.info-details a:hover {
    color: #e63946;
}

/* ================= IMPROVED CONTACT FORM ================= */

.contact-form h3 {
    font-size: 24px;
    color: #232f41;
    margin-bottom: 25px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 50px 15px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e63946;
    background: #fff;
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.1);
}

.form-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
}

.form-group textarea + i {
    top: 20px;
    transform: none;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #e63946, #f87782);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}

/* ================= IMPROVED MAP SECTION ================= */

.map-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.map-header h2 {
    font-size: 36px;
    color: #232f41;
    margin-bottom: 15px;
    font-weight: 600;
}

.map-header p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.map-address {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 25px;
    color: #555;
    font-size: 16px;
}

.map-address i {
    color: #e63946;
    font-size: 18px;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.map-info h4 {
    font-size: 18px;
    color: #232f41;
    margin-bottom: 5px;
    font-weight: 600;
}

.map-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e63946;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.directions-btn:hover {
    background: #c92f3c;
    transform: translateY(-2px);
}

/* ================= CONTACT RESPONSIVE ================= */

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-wrapper {
        padding: 0 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .map-section {
        padding: 60px 15px;
    }
    
    .map-header h2 {
        font-size: 28px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .map-container iframe {
        height: 100%;
    }
    
    .map-overlay {
        position: static;
        margin-top: 20px;
        background: #fff;
    }
}

@media (max-width: 480px) {
    .contact-info h2 {
        font-size: 24px;
    }
    
    .contact-form h3 {
        font-size: 20px;
    }
    
    .info-item {
        padding: 15px;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}










/* ===============================
   FLOATING BUTTONS
=================================*/

.floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-buttons.show {
    opacity: 1;
    transform: translateY(0);
}

.floating-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-btn i{
font-size:18px;
line-height:1;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.call-btn {
    background: linear-gradient(135deg, #e63946, #dc2626);
}

.call-btn:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
}


@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 0 10px rgba(230, 57, 70, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
}

.whatsapp-btn {
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
}



/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 20px;
    left: 15px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}


i {
  font-size: 16px;
}

.fa-solid, .fa-regular, .fab, .fas, .far {
  font-size: 16px;
}

.info-icon i,
.top-icons i {
  font-size: 18px;
}

.location i,
.property-info i {
  font-size: 14px;
}

.faq-toggle {
  font-size: 22px;
}

.details i {
  font-size: 14px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .floating-buttons {
    bottom: 80px;   
    left: 12px;
  }

  .floating-btn {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

/* ================= COMPREHENSIVE RESPONSIVE STYLES ================= */

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 15px;
  }

  
  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  .property-card {
    margin-bottom: 25px;
  }
  
  .card-content h3 {
    font-size: 18px;
  }
  
  .property-info {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .property-info span {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-title {
    font-size: 28px;
    margin-bottom: 25px;
  }
  
  .property-card {
    margin-bottom: 20px;
  }
  
  .card-content {
    padding: 15px;
  }
  
  .card-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .location {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .price {
    font-size: 16px;
  }
  
  .btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .nav-links a {
    font-size: 14px;
    padding: 8px 12px;
  }
}

@media (max-width: 576px) {
  .container {
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .property-card {
    margin-bottom: 15px;
  }
  
  .card-content {
    padding: 12px;
  }
  
  .card-content h3 {
    font-size: 15px;
  }
  
  .location {
    font-size: 12px;
  }
  
  .price {
    font-size: 15px;
  }
  
  .property-info span {
    font-size: 11px;
    padding: 3px 6px;
  }
  
  .btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .property-card {
    margin-bottom: 12px;
  }
  
  .card-content {
    padding: 10px;
  }
  
  .card-content h3 {
    font-size: 14px;
    line-height: 1.3;
  }
  
  .location {
    font-size: 11px;
  }
  
  .price {
    font-size: 14px;
  }
  
  .property-info {
    gap: 5px;
  }
  
  .property-info span {
    font-size: 10px;
    padding: 2px 5px;
  }
  
  .btn {
    padding: 5px 10px;
    font-size: 11px;
  }
  
  .top-icons {
    gap: 5px;
  }
  
  .top-icons i {
    font-size: 12px;
    padding: 5px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  h4 { font-size: 18px; }
  h5 { font-size: 16px; }
  h6 { font-size: 14px; }
  
  p, span, div {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
  h3 { font-size: 18px; }
  h4 { font-size: 16px; }
  h5 { font-size: 14px; }
  h6 { font-size: 12px; }
  
  p, span, div {
    font-size: 13px;
    line-height: 1.4;
  }
}

@media (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }
  
  .card-img img {
    height: 200px;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .card-img img {
    height: 180px;
  }
}


@media(max-width:768px){
section{
padding:35px 0;
}
}

@media(max-width:480px){
section{
padding:25px 0;
}
}

@media (max-width: 1200px) {
  .property-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .property-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}


@media (max-width: 768px) {
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px;
    font-size: 14px;
  }
  
  .form-group label {
    font-size: 13px;
    margin-bottom: 5px;
  }
}

@media (max-width: 480px) {
  .form-group {
    margin-bottom: 12px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 8px;
    font-size: 13px;
  }
  
  .form-group label {
    font-size: 12px;
  }
}




/* ================= IMPROVED MOBILE NAVIGATION ================= */

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    transition: left 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links a {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 80%;
    text-align: center;
    transition: all 0.3s ease;
    margin: 5px 0;
    border-radius: 8px;
  }
  
  .nav-links a:hover {
    background: #e63946;
    color: white;
    transform: scale(1.05);
    border-bottom: 1px solid #e63946;
  }
  
  #menuToggle {
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  #menuToggle:hover {
    transform: scale(1.1);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 15px;
    height: 70px;
  }
  
  .nav-links {
    top: 70px;
    height: calc(100vh - 70px);
    justify-content: center;
  }
  
  .nav-links a {
    font-size: 16px;
    padding: 12px 25px;
    margin: 3px 0;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0 10px;
    height: 60px;
  }
  
  .nav-links {
    top: 60px;
    height: calc(100vh - 60px);
    justify-content: center;
    padding: 0;
  }
  
  .nav-links a {
    font-size: 15px;
    padding: 10px 20px;
    width: 90%;
    margin: 2px 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  #menuToggle {
    font-size: 22px;
  }
}



/* ================= RESPONSIVE CONTACT & MAP IMPROVEMENTS ================= */

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-form {
    order: 2;
  }
  
  .contact-info {
    order: 1;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 50px 0;
  }
  
  .contact-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .contact-info p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .contact-item {
    margin-bottom: 15px;
    padding: 15px;
  }
  
  .contact-item i {
    font-size: 18px;
    margin-right: 10px;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .map-section {
    padding: 40px 0;
  }
  
  .map-header h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .map-header p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 0;
  }
  
  .contact-info h2 {
    font-size: 24px;
  }
  
  .contact-info p {
    font-size: 13px;
  }
  
  .contact-item {
    padding: 12px;
    margin-bottom: 12px;
  }
  
  .contact-item i {
    font-size: 16px;
    margin-right: 8px;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .contact-form h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .map-section {
    padding: 30px 0;
  }
  
  .map-header h2 {
    font-size: 20px;
  }
  
  .map-header p {
    font-size: 13px;
  }
  
  .map-address {
    font-size: 12px;
  }
  
  .map-container {
    margin-top: 15px;
  }
}



/* ================= RESPONSIVE TESTIMONIALS & FAQ IMPROVEMENTS ================= */

@media (max-width: 992px) {
  .testimonials-section {
    padding: 50px 0;
  }
  
  .testimonial-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .testimonial-dots {
    margin-top: 25px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 40px 0;
  }
  
  .testimonials-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .testimonial-content {
    padding: 20px;
    margin: 0 10px;
  }
  
  .testimonial-text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  
  .testimonial-author h4 {
    font-size: 16px;
  }
  
  .testimonial-author p {
    font-size: 12px;
  }
  
  .testimonial-dots {
    margin-top: 20px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 30px 0;
  }
  
  .testimonials-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .testimonial-content {
    padding: 15px;
    margin: 0 5px;
  }
  
  .testimonial-text {
    font-size: 13px;
    margin-bottom: 12px;
  }
  
  .testimonial-author h4 {
    font-size: 15px;
  }
  
  .testimonial-author p {
    font-size: 11px;
  }
  
  .testimonial-dots {
    margin-top: 15px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }
    .faq-icon {
    font-size: 14px;
  }
}
  
/* ================= RESPONSIVE FOOTER IMPROVEMENTS ================= */

@media (max-width: 992px) {
  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
  
  .footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .footer-section p,
  .footer-section a {
    font-size: 14px;
  }
  
  .footer-section ul li {
    margin-bottom: 8px;
  }
  
  .social-links {
    justify-content: center;
    margin-top: 15px;
  }
  
  .social-links a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .footer-bottom {
    padding: 15px 0;
    margin-top: 30px;
  }
  
  .footer-bottom p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 15px;
  }
  
  .footer-wrapper {
    gap: 20px;
    padding: 0 10px;
  }
  
  .footer-section h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .footer-section p,
  .footer-section a {
    font-size: 13px;
  }
  
  .footer-section ul li {
    margin-bottom: 6px;
  }
  
  .social-links a {
    width: 32px;
    height: 32px;
    font-size: 14px;
    margin: 0 3px;
  }
  
  .footer-bottom {
    padding: 12px 0;
    margin-top: 20px;
  }
  
  .footer-bottom p {
    font-size: 12px;
  }
}





/* ================= RESPONSIVE UTILITIES ================= */

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
  
  .show-mobile {
    display: block !important;
  }
}

@media (min-width: 769px) {
  .hide-desktop {
    display: none !important;
  }
  
  .show-desktop {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .text-center-mobile {
    text-align: center !important;
  }
  
  .text-left-mobile {
    text-align: left !important;
  }
}

@media (max-width: 768px) {
  .mb-mobile-20 {
    margin-bottom: 20px !important;
  }
  
  .mb-mobile-15 {
    margin-bottom: 15px !important;
  }
  
  .p-mobile-10 {
    padding: 10px !important;
  }
}

@media (max-width: 480px) {
  .mb-mobile-10 {
    margin-bottom: 10px !important;
  }
  
  .p-mobile-5 {
    padding: 5px !important;
  }
}











/* ================= WHY CHOOSE US SECTION ================= */

.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #232f41;
    margin-bottom: 15px;
    position: relative;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-title.animate-title {
    opacity: 1;
    transform: translateY(0);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #e63946, #d62839);
    border-radius: 2px;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.section-title.animate-title::after {
    transform: translateX(-50%) scaleX(1);
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-subtitle.animate-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0) scale(1);
    border: 2px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e63946, #d62839);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.feature-card.floating {
    animation: float 3s ease-in-out infinite;
}

.feature-card.hover-effect {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(230, 57, 70, 0.15);
    border-color: rgba(230, 57, 70, 0.2);
}

.feature-card.hover-effect::before {
    left: 0;
}

.feature-card.hover-effect .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e63946, #d62839);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.feature-card.hover-effect .feature-icon::before {
    width: 100%;
    height: 100%;
}

.feature-icon i {
    font-size: 32px;
    color: #fff;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #232f41;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.feature-card.hover-effect h3 {
    color: #e63946;
    transform: translateY(-2px);
}

.feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s ease;
    text-align: justify;
}

.feature-card.hover-effect p {
    color: #555;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(230, 57, 70, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
    }
}

.feature-card.animate .feature-icon {
    animation: pulse 2s infinite;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-card.floating {
        animation: float 4s ease-in-out infinite;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 25px;
        border-radius: 15px;
    }
    
    .feature-card.hover-effect {
        transform: translateY(-10px) scale(1.01);
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .feature-icon i {
        font-size: 28px;
    }
    
    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 15px;
    }
    
    .feature-card.floating {
        animation: float 5s ease-in-out infinite;
    }
}

@media (max-width: 480px) {
    .why-choose-us {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .feature-card {
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .feature-card.hover-effect {
        transform: translateY(-8px) scale(1.01);
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
    
    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    .feature-card.floating {
        animation: float 6s ease-in-out infinite;
    }
    
    @keyframes float {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-5px);
        }
    }
}




















/* ================= CARD FOOTER STYLES ================= */

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.card-footer a {
    color: #e63946;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.card-footer a:hover {
    color: #d62839;
    transform: translateX(5px);
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.rating span {
    color: #666;
    font-weight: 600;
}

@media (max-width: 768px) {
    .card-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .card-footer a {
        font-size: 13px;
    }
    
    .rating {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .card-footer {
        margin-top: 15px;
        padding-top: 12px;
    }
    
    .card-footer a {
        font-size: 12px;
    }
    
    .rating {
        font-size: 10px;
    }
}

.card-footer a[href^="tel:"] {
    color: #e63946 !important;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.card-footer a[href^="tel:"]:hover {
    color: #c92f3c !important;
    transform: scale(1.05);
}

.card-footer a[href^="tel:"] i {
    font-size: 14px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}





