/* -------------------- */
/* GLOBAL STYLES */
/* -------------------- */

:root {
  --brand-red: #C84F63;
  --beige-bg: #f4efe1;
  --dark-bg: #2c2232;
  --text-dark: #333;
  --text-light: #fff;
  --max-width: 1100px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat","Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  background: #fff;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Montserrat","Helvetica Neue", Arial, sans-serif;
  color: #111;
  margin-top: 0;
}

h1, h2 {
  text-align: center;
  font-size:40px;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

p {
  margin: 0 0 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 3px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--brand-red);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: #b62c4a;
}

.btn-secondary {
  border: 2px solid var(--brand-red);
  color: var(--brand-red);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--brand-red);
  color: #fff;
}

/* -------------------- */
/* BUTTON ICON SUPPORT */
/* -------------------- */

/* Phone icon for call buttons */
.btn-icon[href^="tel:"]::before {
  content: "\f095"; /* phone icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  display: inline-block;
}

/* Envelope icon for quote buttons */
.btn-icon[href*="quote"]::before,
.btn-icon[href*="Quote"]::before {
  content: "\f0e0"; /* envelope icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  display: inline-block;
}

/* Ensure icon color matches button text */
.btn-icon::before {
  color: inherit;
}


/* -------------------- */
/* HEADER */
/* -------------------- */

.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 0.75rem 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-height: 50px;
}

.header-contact .btn-call {
  background: var(--brand-red);
  color: #fff;
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 3px;
}

/* -------------------- */
/* HERO */
/* -------------------- */

.hero {
  background: url("images/two-employees-moving-bench.jpg");
  background-repeat:no-repeat;
  background-size:cover;
  background-position: center top;
  position: relative;
  color: #fff;
  min-height: 600px;
}

.hero .overlay {
  background: transparent;
  padding: 4rem 0;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 45%;
}

.hero-text h1 {
  font-size: 2.5rem;
  text-align: left;
  color: #fff;
  margin-bottom: 0.5rem;
}

.hero-text p {
  color: #eee;
  margin-bottom: 1.5rem;
}

.quote-form {
  flex: 1 1 45%;
  background: #fff;
  border-radius: 5px;
  padding: 1.5rem;
  color: #000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.quote-form h3 {
  margin-bottom: 1rem;
  text-align: center;
  color: #111;
}

.quote-form form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quote-form select,
.quote-form input {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 1rem;
}

.quote-form button {
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
}

.phone-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

.iti {
  width: 100%;
}

.iti input {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.iti__selected-flag {
  background-color: #fff;
  border-right: 1px solid #ccc;
}

.iti__country-list {
  max-height: 250px;
  overflow-y: auto;
}


/* -------------------- */
/* WHY CHOOSE MKS */
/* -------------------- */

.why-choose {
  background: var(--beige-bg);
  padding: 4rem 0;
  text-align: center;
}

.features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.feature {
  flex: 1 1 30%;
}

.feature img {
  width: 100%;
  border-radius: 3px;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.cta-group {
  margin-top: 2rem;
}

.cta-group a {
  margin: 0 0.5rem;
}

/* -------------------- */
/* IMPECCABLE SERVICE */
/* -------------------- */

.impeccable-service {
  background: var(--dark-bg) url('images/pattern-bg.jpg') center/cover no-repeat;
  color: var(--text-light);
  padding: 5rem 0;
  text-align: center;
  position: relative;
}

.impeccable-service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 0;
}

.impeccable-service .container {
  position: relative;
  z-index: 1;
}

.impeccable-service h2 {
  font-family: "Montserrat","Helvetica Neue", Arial, sans-serif;
  font-size: 40px !important;
  color: #fff;
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.service-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.service-item .icon {
  height: 60px;
  width: 60px;
  margin: 0 auto 1rem;
  background: var(--brand-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item .icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.service-item h3 {
  color: var(--brand-red);
  font-size: 1.1rem;
  text-transform: uppercase;
  margin: 1rem 0 0.5rem;
}

.service-item p {
  font-size: 0.95rem;
  color: #e8e8e8;
  line-height: 1.5;
  margin: 0;
}

.impeccable-service .cta-group {
  margin-top: 1rem;
}

.impeccable-service .cta-group a {
  margin: 0 0.5rem;
}

/* -------------------- */
/* EXPERTS */
/* -------------------- */

.experts {
  background: var(--beige-bg);
  padding: 4rem 0;
  text-align: center;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.feature-grid .feature img {
  width: 100%;
  border-radius: 3px;
}

/* -------------------- */
/* TESTIMONIALS */
/* -------------------- */

.testimonials {
  background: var(--dark-bg) url('images/pattern-bg.webp') center/cover no-repeat;
  color: var(--text-light);
  padding: 5rem 0;
  text-align: center;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 0;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials h2 {
  font-family: "Montserrat","Helvetica Neue", Arial, sans-serif;
  font-size: 40px !important;
  color: #fff;
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.testimonial {
  background: #F1F1F1;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.testimonial-image {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 3px solid var(--brand-red);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content p {
  font-size: 0.95rem;
  color: #000;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-content h4 {
  margin: 0.5rem 0;
  font-weight: 600;
  color: #000;
}

.testimonial-content .stars {
  width: 100px;
  height: auto;
  margin-top: 0.25rem;
}

/* Stack naturally on smaller screens */
@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial {
    padding: 2rem 1rem;
  }
}

.review-screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  justify-items: center;
}

.review-screenshot-grid img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-screenshot-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

@media (max-width: 768px) {
  .review-screenshot-grid {
    grid-template-columns: 1fr;
  }
}



/* -------------------- */
/* FOOTER */
/* -------------------- */

.footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}

/* -------------------- */
/* RESPONSIVE STACKING */
/* -------------------- */

@media (max-width: 768px) {
  .hero-content,
  .features,
  .service-grid,
  .feature-grid,
  .testimonial-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature, .service-item, .testimonial {
    flex: 1 1 100%;
  }
  h1, h2 {
    text-align:center !important;
  }

  .quote-form, .hero-text {
    flex: 1 1 100%;
  }

  .quote-form {
    margin-top: 2rem;
  }

  .btn-primary, .btn-secondary {
    display: block;
    margin-bottom: 1rem !important;
    text-align:center;
  }
  .hero .hero-text .btn-primary {
    max-width: 215px;
    margin: 0 auto;
  }
  cta-group a {
    margin-bottom:1rem !important;
  }

}

/* -------------------- */
/* MOBILE STICKY CTA */
/* -------------------- */
.sticky-cta,
.hidden {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: space-around;
    align-items: center;
    background: #fff;
    padding: 0.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
    z-index: 9999;
    gap: 0.5rem;
  }

  .sticky-cta.show {
    display: flex;
  }

  .sticky-cta a {
      flex: 1;
      text-align: center;
      padding: 0.5rem 0.35rem;
      border-radius: 4px;
      font-size: .75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom:0 !important;
  }

  .sticky-cta .btn-primary {
    background: var(--brand-red);
    color: #fff;
    border: none;
  }

  .sticky-cta .btn-primary:hover {
    background: #b62c4a;
  }

  .sticky-cta .btn-secondary {
    border: 2px solid var(--brand-red);
    color: var(--brand-red);
    background: #fff;
  }

  .sticky-cta .btn-secondary:hover {
    background: var(--brand-red);
    color: #fff;
  }

  /* Add bottom padding so content isn't hidden behind the bar */
  body {
    padding-bottom: 80px;
  }
}

/* -------------------- */
/* MKS IMAGE CAROUSEL */
/* -------------------- */
.carousel-section {
  background: var(--beige-bg);
  padding: 5rem 0;
  text-align: center;
}

.carousel-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #111;
}

.carousel-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--brand-red);
  transition: var(--transition);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #b62c4a;
}


