/* =========================
   HERO SLIDER ALIGNMENT FIX
========================= */

.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px); /* header height adjust */
  min-height: 520px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* CONTENT CENTER FIX */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;

  text-align: center;
  padding: 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* TEXT FIX */
.hero-content h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: clamp(16px, 2.5vw, 22px);
  margin-bottom: 30px;
  max-width: 750px;
}

/* BUTTON FIX */
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .hero-slider {
    height: calc(100vh - 70px);
    min-height: 420px;
  }

  .hero-content {
    padding: 15px;
  }
}
/* ===== HERO SLIDER VISIBILITY FIX ===== */

.hero-slide {
  opacity: 0 !important;
  z-index: 1 !important;
  transition: opacity 1s ease-in-out !important;
}

.hero-slide.active {
  opacity: 1 !important;
  z-index: 2 !important;
}/* SLIDE CONTENT */
.hero-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 20px;
}

.slide-content h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 15px;
}

.slide-content p {
  font-size: clamp(16px, 2.5vw, 22px);
}

/* VISIBILITY */
.hero-slide {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* FIXED BUTTONS */
.hero-fixed-buttons {
  position: absolute;
  z-index: 4;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}

/* =========================
   OUR SERVICES SECTION
========================= */

.our-services {
  padding: 80px 20px;
  background: #f9f9f9;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.service-icon {
  font-size: 42px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Highlight card */
.service-highlight {
  border: 2px solid #e63946;
}

/* MOBILE */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }
}
/* ===== WHY CHOOSE US: 4x2 GRID FIX ===== */

/* =========================
   WHY CHOOSE US – RESPONSIVE
========================= */

.why-choose-us {
  padding: 70px 15px;
  background: #ffffff;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* DESKTOP: 4 x 2 */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* CARD */
.why-item {
  background: #ffffff;
  padding: 24px 18px;
  border-radius: 14px;
  border: 2px solid #e6e6e6;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;   /* 🔥 mobile fix */
  text-align: center;

  box-sizing: border-box;
  transition: all 0.3s ease;
}

.why-icon {
  font-size: 30px;
  margin-bottom: 12px;
}

.why-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* HOVER */
.why-item:hover {
  border-color: #e63946;
  transform: translateY(-4px);
}

/* =========================
   TABLET: 2 x 4
========================= */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   MOBILE: 1 x 8
========================= */
@media (max-width: 600px) {
  .why-choose-us {
    padding: 50px 12px;
  }

  .why-grid {
    grid-template-columns: 1fr;   /* 🔥 one column */
    gap: 18px;
  }

  .why-item {
    padding: 20px 15px;
  }

  .why-icon {
    font-size: 28px;
  }

  .why-item h3 {
    font-size: 17px;
  }

  .why-item p {
    font-size: 14px;
  }
}


/* =========================
   ABOUT US SHORT – PREMIUM
========================= */

.premium-about {
  padding: 90px 20px;
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
}

.about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-tag {
  display: inline-block;
  background: #e63946;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-text h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text h2 span {
  color: #e63946;
}

.about-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
  max-width: 650px;
}

.about-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 34px;
  background: #e63946;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: #c92c39;
  transform: translateY(-3px);
}

/* EXPERIENCE BOX */
.about-exp-box {
  background: #ffffff;
  border: 2px solid #e63946;
  border-radius: 18px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.exp-number {
  font-size: 64px;
  font-weight: 800;
  color: #e63946;
  line-height: 1;
}

.exp-text {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-top: 10px;
}

/* MOBILE */
@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-exp-box {
    max-width: 300px;
    margin: 30px auto 0;
  }

  .about-text h2 {
    font-size: 30px;
  }
}

/* =========================
   GALLERY / BEFORE AFTER
========================= */

.gallery-section {
  padding: 90px 20px;
  background: #ffffff;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gallery-block {
  margin-top: 60px;
}

.gallery-block h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* BEFORE AFTER */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.ba-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.ba-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ba-card:hover img {
  transform: scale(1.08);
}

.ba-label {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 20px;
  color: #fff;
}

.ba-label.before {
  background: #555;
}

.ba-label.after {
  background: #e63946;
}

/* GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .ba-card img {
    height: 260px;
  }
}

/* =========================
   PREMIUM TESTIMONIALS
========================= */

.testimonials-premium {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fff, #f7f7f7);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-slider {
  overflow: hidden;
  margin-top: 60px;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  animation: slideRTL 45s linear infinite;
}

.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused; /* pause on hover */
}

.testimonial-card {
  min-width: 340px;
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 18px;
  position: relative;

  /* gradient border effect */
  background-clip: padding-box;
  border: 2px solid transparent;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(135deg, #e63946, #ff9f9f);
  background-origin: border-box;

  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  text-align: left;
}

.quote {
  font-size: 50px;
  color: #e63946;
  position: absolute;
  top: 15px;
  right: 20px;
  opacity: 0.2;
}

.stars {
  color: #f4b400;
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.client {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e63946;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client strong {
  font-size: 14px;
  display: block;
}

.client small {
  font-size: 12px;
  color: #777;
}

/* RTL SLIDE */
@keyframes slideRTL {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 280px;
  }
}

/* =========================
   CONTACT & CTA SECTION
========================= */

.contact-cta {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fff5f6, #ffffff);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

/* LEFT INFO */
.contact-info h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 17px;
  color: #666;
  margin-bottom: 30px;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

.contact-list span {
  font-size: 22px;
}

.contact-list a {
  color: #e63946;
  text-decoration: none;
  font-weight: 600;
}

/* RIGHT SIDE */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* FORM */
.enquiry-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.enquiry-form h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 14px 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.enquiry-form textarea {
  min-height: 90px;
  resize: none;
}

.enquiry-form button {
  width: 100%;
  padding: 14px;
  background: #e63946;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.enquiry-form button:hover {
  background: #c92c39;
}

/* MAP */
.map-box iframe {
  width: 100%;
  height: 280px;
  border-radius: 18px;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info {
    text-align: center;
  }

  .contact-list li {
    justify-content: center;
  }
}

.cta-contact {
  text-align: center;
  padding: 40px 20px;
}

.btn-contact {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 28px;
  background-color: #6a1b9a; /* purple */
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
}

.btn-contact:hover {
  background-color: #4a148c;
}

.cta-full-button {
  display: block;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 20px 30px;

  text-align: center;
  font-size: 22px;
  font-weight: 800;

  color: #e63946;
  text-decoration: none;

  border: 3px solid #e63946;     /* 🔴 charo taraf colour */
  border-radius: 50px;

  background: #fff5f6;           /* light highlight */
  transition: all 0.3s ease;
}

.cta-full-button span {
  text-decoration: underline;
}

/* Hover effect */
.cta-full-button:hover {
  background: #e63946;
  color: #ffffff;
  transform: translateY(-3px);
}

.cta-full-button:hover span {
  color: #ffffff;
}


