* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: "Poppins", Arial, sans-serif;
  background: #fffaf3;
  color: #333;
  line-height: 1.6;
}

/* HERO */
/* HERO SECTION - Using warm peach to coral gradient overlay */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255, 224, 138, 0.7), rgba(255, 182, 185, 0.7));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  padding: 0 20px;
  color: #fff;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.hero h2 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: #fff;
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 30px;
  color: #fffaf3;
  line-height: 1.6;
}

.btn-primary {
  background: #ff6f61;
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #e45a50;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 1.8rem; }
  .hero h2 { font-size: 1.1rem; }
  .hero p { font-size: 0.95rem; }
}


/* ABOUT */
.about {
  background: #fff8e7;
  padding: 100px 20px;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 320px;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #222;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: #444;
}

.about-list {
  list-style: none;
}

.about-list li {
  font-size: 1.05rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Responsive layout */
@media (max-width: 900px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 90%;
  }
}


/* TRUST */
.trust {
  background: #fff;
  padding: 100px 20px;
  text-align: center;
}

.trust h2 {
  margin-bottom: 50px;
  color: #222;
  font-size: 2rem;
  font-weight: 700;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.trust-card {
  background: #fff9ef;
  border-radius: 14px;
  padding: 40px 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
}

.trust-icon {
  color: #ff6f61;
  margin-bottom: 15px;
}

.trust-card h3 {
  color: #ff6f61;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.trust-card p {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .trust-card { padding: 30px 20px; }
  .trust h2 { font-size: 1.6rem; }
}


/* TESTIMONIALS */
.testimonials {
  background: #ffe7d1;
  padding: 100px 20px;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 40px;
  color: #222;
}

.swiper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.testimonial-content {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 40px 30px;
  max-width: 600px;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 15px;
}

.testimonial-content span {
  font-weight: bold;
  color: #555;
}

.swiper-pagination-bullet {
  background: #ffb6b9;
  opacity: 0.8;
}

.swiper-pagination-bullet-active {
  background: #ff6f61;
}

.swiper-button-prev,
.swiper-button-next {
  color: #ff6f61;
  transition: 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #e45a50;
}

.testimonial-stars {
  color: #FFD700; /* Classic gold stars */
  margin-bottom: 12px;
}

.testimonial-stars i {
  margin: 0 2px;
  font-size: 1.1rem;
}

/* Optional gradient look to match theme */
.testimonial-stars.gradient i {
  background: linear-gradient(135deg, #FFE08A, #FFB6B9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* Mobile tweak */
@media (max-width: 768px) {
  .testimonial-content {
    padding: 30px 20px;
  }
}

/* GALLERY */
/* GALLERY - Modern interactive grid */
.gallery {
  background: #fffef9;
  padding: 100px 20px;
  text-align: center;
}

.gallery h2 {
  color: #222;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.gallery-intro {
  color: #555;
  max-width: 720px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Grid layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Each item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,224,138,0.6), rgba(255,182,185,0.6));
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  transition: opacity 0.4s ease;
}

/* Hover effects */
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .gallery h2 { font-size: 1.6rem; }
  .gallery-intro { font-size: 1rem; margin-bottom: 40px; }
}


/* SERVICE AREA */
/* SERVICE AREA */
.service-area {
  background: #fffaf3;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.service-area h2 {
  color: #222;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-intro {
  color: #555;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Grid Layout */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Cards */
.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 224, 138, 0.2), rgba(255, 182, 185, 0.3));
  transition: all 0.5s ease;
  z-index: 0;
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
}

/* Icon styling */
.service-card i {
  font-size: 2.2rem;
  color: #ff6f61;
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
  transition: transform 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.25rem;
  color: #ff6f61;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  z-index: 1;
  position: relative;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .service-area h2 {
    font-size: 1.6rem;
  }
  .service-intro {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}

.service-card i {
  background: linear-gradient(135deg, #FFE08A, #FFB6B9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* SERVICE MAP */
.service-map {
  margin-top: 60px;
  text-align: center;
}

.service-map h3 {
  color: #ff6f61;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.map-frame {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  max-width: 900px;
  margin: 0 auto;
}

.map-frame iframe {
  border: none;
  width: 100%;
  height: 320px;
  filter: saturate(1.2) brightness(1.05);
  transition: transform 0.3s ease;
}

.map-frame:hover iframe {
  transform: scale(1.02);
}



/* CONTACT / CTA */
.cta {
  background: linear-gradient(135deg, #ffd5a5, #ffb6b9);
  text-align: center;
  padding: 90px 20px;
}
.cta-buttons a {
  display: inline-block;
  margin: 10px;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1eb158; }
.btn-call { background: #ff6f61; color: #fff; }
.btn-call:hover { background: #e45a50; }

/* FOOTER */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 30px 15px;
  font-size: 0.9rem;
}
footer a { color: #ffd5a5; }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.8rem; }
  .about-content { flex-direction: column; }
}
