*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

/* ===== HEADER ===== */
* { margin:0; padding:0; box-sizing:border-box; font-family: 'Poppins', sans-serif; }
body { background:#f8f8f8; }

/* ===== HEADER ===== */
header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
    background:#fff;
    box-shadow:0 2px 5px rgba(0,0,0,0.1);
    position:relative;
}

.logo {
    font-size:24px;
    font-weight:bold;
}

/* ===== MENU ===== */
nav {
    display:flex;
    gap:25px;
}

nav a {
    text-decoration:none;
    color:#333;
    font-weight:500;
    position:relative;
}

nav a.active {
    color:#ff6b6b; /* same as your banner button */
}

/* ===== DROPDOWN ===== */
.dropdown {
    position:relative;
}

.dropdown-content {
    display:none;
    position:absolute;
    top:35px;
    left:0;
    background:#fff;
    box-shadow:0 4px 8px rgba(0,0,0,0.15);
    border-radius:5px;
    overflow:hidden;
    min-width:180px;
    z-index:10;
    flex-direction:column;
}

.dropdown-content a {
    padding:10px 15px;
    display:block;
    color:#333;
    text-decoration:none;
    font-weight:400;
}

.dropdown-content a:hover {
    background:#ff6b6b;
    color:#fff;
}

.dropdown:hover .dropdown-content {
    display:flex;
    flex-direction:column;
}

/* ===== HEADER RIGHT ===== */
.header-right .phone-btn {
    background:#ff6b6b;
    color:#fff;
    padding:8px 16px;
    border-radius:6px;
    text-decoration:none;
    font-weight:500;
}

/* ===== HAMBURGER MENU ===== */
.menu-toggle {
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width:768px){
    nav {
        position:absolute;
        top:65px;
        left:0;
        right:0;
        background:#fff;
        flex-direction:column;
        display:none;
        gap:0;
        box-shadow:0 4px 8px rgba(0,0,0,0.2);
    }

    nav a, .dropdown-content a {
        padding:15px 30px;
    }

    nav.show {
        display:flex;
    }

    .menu-toggle {
        display:block;
    }

    .header-right {
        display:none;
    }

    .dropdown-content {
        position:static;
        box-shadow:none;
    }

    .dropdown:hover .dropdown-content {
        display:none; /* remove hover effect on mobile */
    }
}
/* ===== HERO SECTION ===== */
.hero{
    height:90vh;
    background:url('/images/banner.webp') center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.hero-content{
    position:relative;
    max-width:900px;
    text-align:center;
    color:#fff;
    padding:40px;
    background:rgba(0,0,0,0.35);
    border-radius:10px;
}

.hero-content h1{
    font-size:46px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-content p{
    font-size:16px;
    line-height:1.7;
    margin-bottom:30px;
}

.hero-content .cta{
    display:inline-block;
    background:#ff6b6b;
    color:#fff;
    padding:14px 34px;
    border-radius:6px;
    text-decoration:none;
    font-weight:500;
}

/* ===== MOBILE MENU ===== */
.menu-toggle{
    display:none;
    font-size:26px;
    cursor:pointer;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
    nav{
        position:absolute;
        top:70px;
        right:0;
        background:#fff4f1;
        flex-direction:column;
        width:220px;
        padding:20px;
        display:none;
    }

    nav.show{
        display:flex;
    }

    .menu-toggle{
        display:block;
    }

    .header-right{
        display:none;
    }

    .hero-content h1{
        font-size:34px;
    }
}



.services {
  padding: 80px 20px;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.services h1 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 600;
}

.subtitle {
  max-width: 900px;
  margin: auto;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.4s ease;
}

.card span {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  font-size: 15px;
}

.card:hover img {
  transform: scale(1.08);
}

/* Responsive */
@media(max-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .services h1 {
    font-size: 28px;
  }
}



.about-section {
  background: #fff4f2;
  padding: 80px 20px;
}

/* Main Container */
.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Image */
.about-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  object-fit: cover;
}

/* Content */
.about-content {
  max-width: 520px;
}

.location {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  display: inline-block;
  margin-bottom: 12px;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
}

.about-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Button */
.btn {
  display: inline-block;
  margin-top: 15px;
  background: #ff6b6b;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn:hover {
  background: #ff4f4f;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content h2 {
    font-size: 34px;
  }

  .about-content {
    max-width: 100%;
  }
}


.service-section {
  padding: 80px 20px;
  background: #ffffff;
}

.service-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
  text-align: center;
}

.service-card img {
  width: 220px;
  height: 140px;
  object-fit: cover;
  border-radius: 30px;
  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #111;
}

.service-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  max-width: 320px;
  margin: auto;
}

/* Tablet */
@media (max-width: 992px) {
  .service-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .service-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .service-card img {
    width: 200px;
    height: 130px;
  }
}


/* CTA SECTION */
.cta-section {
  background: url("images/callaction.webp") center/cover no-repeat;
  position: relative;
  padding: 90px 20px;
}

.cta-overlay {
  background: rgba(0, 0, 0, 0.45);
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
}

.cta-overlay h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 25px;
}

.cta-btn {
  display: inline-block;
  background: #ff6b6b;
  color: #fff;
  padding: 14px 34px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #ff4f4f;
}

/* CITY SECTION */
.city-section {
  padding: 90px 20px;
  background: #fff;
  text-align: center;
}

.city-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 60px;
  color: #111;
}

.city-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.city-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.city-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: brightness(0.75);
  transition: 0.4s ease;
}

.city-card span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.city-card:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-overlay h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .city-grid {
    grid-template-columns: 1fr;
  }

  .city-title {
    font-size: 30px;
  }
}


/* Section */
.testimonial-section {
  padding: 90px 20px;
  background: #fff4f2;
}

/* Container */
.testimonial-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Heading */
.testimonial-container h2 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.testimonial-subtitle {
  max-width: 650px;
  margin: auto;
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
  line-height: 1.7;
}

/* Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.testimonial-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

/* Text */
.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

/* User */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-user img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

.testimonial-user span {
  font-size: 13px;
  color: #777;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-container h2 {
    font-size: 30px;
  }
}


/* Section */
.faq-section {
  padding: 90px 20px;
  background: #ffffff;
}

/* Container */
.faq-container {
  max-width: 900px;
  margin: auto;
}

/* Heading */
.faq-container h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.faq-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
  line-height: 1.7;
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid #eee;
}

/* Question */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #111;
}

.faq-question span {
  font-size: 22px;
  color: #ff6b6b;
  transition: 0.3s;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 576px) {
  .faq-container h2 {
    font-size: 30px;
  }
}


/* Section background same as site */
.map-section {
  background: #fff4f2;
  padding: 40px 0;
}

/* Full width map container */
.map-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* Google Map iframe */
.map-container iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* Responsive height */
@media (max-width: 768px) {
  .map-container iframe {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .map-container iframe {
    height: 260px;
  }
}


.footer {
  background: #0f2e2e;
  color: #e6f2f2;
  padding: 50px 20px 0;
  font-family: Arial, sans-serif;
}

.footer-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
}

.footer-box h4 {
  font-size: 17px;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  text-decoration: none;
  color: #cfe5e5;
  font-size: 14px;
}

.footer-box ul li a:hover {
  color: #ff6f61;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 40px;
  padding: 15px 0;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: auto;
  }
}
