/* =========================================
   HERO SECTION
========================================= */

.mimshack-hero {

  position: relative;

  min-height: 680px;

  display: flex;

  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #081a2b 0%,
      #103a5c 55%,
      #948220 100%
    );

  color: #ffffff;

  font-family:
    Arial,
    Helvetica,
    sans-serif;
}


/* Decorative background */

.mimshack-hero::before {

  content: "";

  position: absolute;

  width: 650px;
  height: 650px;

  border-radius: 50%;

  right: -250px;
  top: -180px;

  background:
    rgba(255,255,255,0.05);
}


.mimshack-hero::after {

  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  border-radius: 50%;

  left: -180px;
  bottom: -170px;

  background:
    rgba(255,255,255,0.04);
}


.mimshack-hero-overlay {

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(8,26,43,0.85),
      rgba(8,26,43,0.25)
    );
}


.mimshack-hero-container {

  position: relative;

  z-index: 2;

  width: 100%;

  max-width: 1200px;

  margin: 0 auto;

  padding:
    80px 20px;
}


.mimshack-hero-content {

  max-width: 760px;
}


/* Label */

.mimshack-hero-label {

  display: inline-block;

  margin-bottom: 22px;

  padding:
    8px 17px;

  border:
    1px solid
    rgba(255,255,255,0.3);

  border-radius: 50px;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2.5px;
}


/* Heading */

.mimshack-hero h1 {

  margin: 0 0 25px;

  font-size:
    clamp(48px, 7vw, 76px);

  line-height: 1.02;

  letter-spacing: -2px;

  font-weight: 900;
}


.mimshack-hero h1 span {

  display: block;

  color: #72c7f5;
}


/* Description */

.mimshack-hero p {

  max-width: 670px;

  margin: 0 0 35px;

  color:
    rgba(255,255,255,0.82);

  font-size: 18px;

  line-height: 1.7;
}


/* Buttons */

.mimshack-hero-buttons {

  display: flex;

  align-items: center;

  gap: 14px;

  flex-wrap: wrap;

  margin-bottom: 30px;
}


.mimshack-hero-primary,
.mimshack-hero-whatsapp {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  min-height: 52px;

  padding:
    14px 24px;

  border-radius: 7px;

  text-decoration: none;

  font-size: 14px;

  font-weight: 700;

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}


.mimshack-hero-primary {

  background: #ffffff;

  color: #17b6d3;
}


.mimshack-hero-primary:hover {

  transform:
    translateY(-3px);

  color: #17b6d3;

  box-shadow:
    0 10px 25px
    rgba(0,0,0,.2);
}


.mimshack-hero-whatsapp {

  background: #25D366;

  color: #ffffff;
}


.mimshack-hero-whatsapp:hover {

  transform:
    translateY(-3px);

  color: #ffffff;

  box-shadow:
    0 10px 25px
    rgba(0,0,0,.2);
}


/* Trust */

.mimshack-hero-trust {

  display: flex;

  flex-wrap: wrap;

  gap: 22px;

  color:
    rgba(255,255,255,.65);

  font-size: 12px;
}


/* Mobile */

@media (max-width:600px) {

  .mimshack-hero {

    min-height: 620px;
  }

  .mimshack-hero-container {

    padding:
      70px 20px;
  }

  .mimshack-hero h1 {

    font-size: 47px;

    letter-spacing: -1px;
  }

  .mimshack-hero p {

    font-size: 16px;
  }

  .mimshack-hero-buttons {

    flex-direction: column;

    align-items: stretch;
  }

  .mimshack-hero-primary,
  .mimshack-hero-whatsapp {

    width: 100%;
  }

  .mimshack-hero-trust {

    flex-direction: column;

    gap: 9px;
  }

}


/* =========================================
   SERVICES SECTION
========================================= */

.mimshack-why {

  padding:
    100px 20px;

  background: #ffffff;

  font-family:
    Arial,
    Helvetica,
    sans-serif;
}


.mimshack-why-container {

  max-width: 1150px;

  margin: auto;
}


.mimshack-why-grid {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 70px;

  align-items: center;
}


.mimshack-why-label {

  color: #948220;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2px;
}


.mimshack-why-content h2 {

  margin:
    13px 0 22px;

  color: #17b6d3;

  font-size:
    clamp(38px,5vw,52px);

  line-height: 1.1;

  font-weight: 900;

  letter-spacing: -1px;
}


.mimshack-why-content h2 span {

  display: block;

  color: #948220;
}


.mimshack-why-content p {

  margin:
    0 0 18px;

  color: #627d98;

  font-size: 15px;

  line-height: 1.75;
}


.mimshack-why-link {

  display: inline-block;

  margin-top: 8px;

  color: #948220;

  text-decoration: none;

  font-size: 14px;

  font-weight: 700;
}


/* Cards */

.mimshack-why-cards {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 15px;
}


.mimshack-why-card {

  display: flex;

  gap: 15px;

  padding: 23px;

  background: #f7f9fb;

  border:
    1px solid #e6edf3;

  border-radius: 10px;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}


.mimshack-why-card:hover {

  transform:
    translateY(-5px);

  box-shadow:
    0 10px 25px
    rgba(16,42,67,.08);
}


.mimshack-why-icon {

  width: 46px;

  height: 46px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  background: #eaf5fc;

  border-radius: 9px;

  font-size: 21px;
}


.mimshack-why-card h3 {

  margin:
    0 0 7px;

  color: #17b6d3;

  font-size: 16px;
}


.mimshack-why-card p {

  margin: 0;

  color: #627d98;

  font-size: 12px;

  line-height: 1.6;
}


/* CTA */

.mimshack-why-cta {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  margin-top: 70px;

  padding:
    35px 40px;

  background:
    linear-gradient(
      135deg,
      #17b6d3,
      #17b6d3
    );

  border-radius: 14px;

  color: #ffffff;
}


.mimshack-why-cta span {

  color:
    rgba(255,255,255,.65);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;
}


.mimshack-why-cta h3 {

  margin:
    7px 0;

  font-size: 24px;
}


.mimshack-why-cta p {

  margin: 0;

  color:
    rgba(255,255,255,.75);

  font-size: 14px;
}


.mimshack-why-buttons {

  display: flex;

  gap: 10px;

  flex-shrink: 0;
}


.mimshack-why-quote,
.mimshack-why-whatsapp {

  padding:
    13px 18px;

  border-radius: 7px;

  text-decoration: none;

  font-size: 13px;

  font-weight: 700;

  white-space: nowrap;
}


.mimshack-why-quote {

  background: #ffffff;

  color: #17b6d3;
}


.mimshack-why-whatsapp {

  background: #25D366;

  color: #ffffff;
}


@media (max-width:850px) {

  .mimshack-why-grid {

    grid-template-columns: 1fr;

    gap: 45px;
  }

}


@media (max-width:600px) {

  .mimshack-why {

    padding: 70px 15px;
  }

  .mimshack-why-cards {

    grid-template-columns: 1fr;
  }

  .mimshack-why-cta {

    flex-direction: column;

    align-items: flex-start;

    padding: 28px;
  }

  .mimshack-why-buttons {

    flex-direction: column;

    width: 100%;
  }

  .mimshack-why-quote,
  .mimshack-why-whatsapp {

    text-align: center;

    width: 100%;

    box-sizing: border-box;
  }

}




/* =========================================
   SERVICES SECTION
========================================= */

.mimshack-services {
  padding: 100px 20px;

  background: #f7f9fb;

  font-family:
    Arial,
    Helvetica,
    sans-serif;
}


.mimshack-services-container {
  max-width: 1200px;

  margin: 0 auto;
}


/* =========================================
   SECTION HEADING
========================================= */

.mimshack-services-heading {
  max-width: 750px;

  margin: 0 auto 55px;

  text-align: center;
}


.mimshack-services-label {
  display: inline-block;

  margin-bottom: 15px;

  color: #948220;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 2px;
}


.mimshack-services-heading h2 {
  margin: 0 0 18px;

  color: #07bada;

  font-size: clamp(36px, 5vw, 52px);

  line-height: 1.1;

  font-weight: 800;

  letter-spacing: -1px;
}


.mimshack-services-heading h2 span {
  display: block;

  color: #948220;
}


.mimshack-services-heading p {
  margin: 0;

  color: #627d98;

  font-size: 17px;

  line-height: 1.7;
}


/* =========================================
   SERVICES GRID
========================================= */

.mimshack-services-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 22px;
}


/* =========================================
   SERVICE CARD
========================================= */

.mimshack-service-card {

  position: relative;

  min-height: 330px;

  padding: 32px;

  background: #ffffff;

  border: 1px solid #e4ebf1;

  border-radius: 14px;

  overflow: hidden;

  box-shadow:
    0 5px 20px rgba(16, 42, 67, 0.05);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


.mimshack-service-card::before {

  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 4px;

  background:
    linear-gradient(
      90deg,
      #25a7e8,
      #25a7e8
    );

  transform:
    scaleX(0);

  transform-origin: left;

  transition:
    transform 0.3s ease;
}


.mimshack-service-card:hover {

  transform:
    translateY(-8px);

  border-color: #cbddea;

  box-shadow:
    0 15px 35px
    rgba(16, 42, 67, 0.12);
}


.mimshack-service-card:hover::before {

  transform:
    scaleX(1);
}


/* =========================================
   ICON
========================================= */

.mimshack-service-icon {

  width: 58px;

  height: 58px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 20px;

  background:
    #eef6fc;

  border-radius: 12px;

  font-size: 27px;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}


.mimshack-service-card:hover
.mimshack-service-icon {

  transform:
    scale(1.08);

  background:
    #dceefa;
}


/* =========================================
   NUMBER
========================================= */

.mimshack-service-number {

  position: absolute;

  top: 25px;

  right: 28px;

  color: #e8eef3;

  font-size: 40px;

  font-weight: 800;

  line-height: 1;
}


/* =========================================
   CARD CONTENT
========================================= */

.mimshack-service-card h3 {

  margin: 0 0 12px;

  color: #07bada;

  font-size: 21px;

  line-height: 1.3;

  font-weight: 800;
}


.mimshack-service-card p {

  margin: 0 0 25px;

  color: #627d98;

  font-size: 15px;

  line-height: 1.7;
}


/* =========================================
   LEARN MORE
========================================= */

.mimshack-service-link {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: #948220;

  text-decoration: none;

  font-size: 14px;

  font-weight: 700;

  transition:
    gap 0.2s ease,
    color 0.2s ease;
}


.mimshack-service-link span {

  font-size: 19px;

  transition:
    transform 0.2s ease;
}


.mimshack-service-link:hover {

  color: #0d5fa3;

  gap: 12px;
}


.mimshack-service-link:hover span {

  transform:
    translateX(3px);
}


/* =========================================
   BOTTOM CTA
========================================= */

.mimshack-services-cta {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  margin-top: 50px;

  padding: 30px 35px;

  background:
    linear-gradient(
      135deg,
      #07bada,
      #07bada
    );

  border-radius: 14px;

  color: #ffffff;
}


.mimshack-services-cta h3 {

  margin: 0 0 7px;

  font-size: 21px;

  font-weight: 800;
}


.mimshack-services-cta p {

  margin: 0;

  color:
    rgba(255,255,255,0.8);

  font-size: 14px;

  line-height: 1.5;
}


.mimshack-services-cta-button {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  padding: 14px 22px;

  background: #25D366;

  color: #ffffff;

  border-radius: 7px;

  text-decoration: none;

  font-size: 14px;

  font-weight: 700;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}


.mimshack-services-cta-button:hover {

  background: #20bd5a;

  color: #ffffff;

  transform:
    translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .mimshack-services-grid {

    grid-template-columns:
      repeat(2, 1fr);
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .mimshack-services {

    padding: 70px 15px;
  }


  .mimshack-services-heading {

    margin-bottom: 40px;
  }


  .mimshack-services-heading h2 {

    font-size: 35px;
  }


  .mimshack-services-heading p {

    font-size: 15px;
  }


  .mimshack-services-grid {

    grid-template-columns: 1fr;

    gap: 16px;
  }


  .mimshack-service-card {

    min-height: auto;

    padding: 27px;
  }


  .mimshack-services-cta {

    flex-direction: column;

    align-items: flex-start;

    padding: 27px;

    margin-top: 35px;
  }


  .mimshack-services-cta-button {

    width: 100%;
  }

}



/* =========================================
   FAQ SECTION
========================================= */

.mimshack-faq {
  padding: 90px 20px;

  background: #f7f9fb;

  font-family:
    Arial,
    Helvetica,
    sans-serif;
}


.mimshack-faq-container {
  max-width: 900px;

  margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.mimshack-faq-heading {
  text-align: center;

  margin-bottom: 50px;
}


.mimshack-faq-label {
  display: inline-block;

  margin-bottom: 15px;

  color: #948220;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 2px;
}


.mimshack-faq-heading h2 {
  margin: 0 0 18px;

  color: #07bada;

  font-size: clamp(34px, 5vw, 48px);

  line-height: 1.15;

  font-weight: 800;
}


.mimshack-faq-heading h2 span {
  color: #948220;
}


.mimshack-faq-heading p {
  max-width: 650px;

  margin: 0 auto;

  color: #627d98;

  font-size: 17px;

  line-height: 1.7;
}


/* =========================================
   FAQ LIST
========================================= */

.mimshack-faq-list {
  display: flex;

  flex-direction: column;

  gap: 12px;
}


.mimshack-faq-item {
  overflow: hidden;

  background: #ffffff;

  border: 1px solid #e6edf3;

  border-radius: 10px;

  box-shadow:
    0 3px 12px rgba(16, 42, 67, 0.04);

  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}


.mimshack-faq-item:hover {
  border-color: #cbd9e5;

  box-shadow:
    0 6px 18px rgba(16, 42, 67, 0.08);
}


/* =========================================
   QUESTION
========================================= */

.mimshack-faq-question {
  width: 100%;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding: 22px 24px;

  border: none;

  background: #ffffff;

  color: #07bada;

  text-align: left;

  font-family: inherit;

  font-size: 16px;

  font-weight: 700;

  cursor: pointer;
}


.mimshack-faq-question:hover {
  color: #948220;
}


.mimshack-faq-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 30px;

  height: 30px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #eef6fc;

  color: #948220;

  font-size: 22px;

  font-weight: 400;

  line-height: 1;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}


/* =========================================
   ANSWER
========================================= */

.mimshack-faq-answer {
  display: grid;

  grid-template-rows: 0fr;

  transition:
    grid-template-rows 0.35s ease;
}


.mimshack-faq-answer p {
  overflow: hidden;

  margin: 0;

  padding: 0 24px;

  color: #627d98;

  font-size: 15px;

  line-height: 1.7;

  transition:
    padding 0.35s ease;
}


/* =========================================
   ACTIVE FAQ
========================================= */

.mimshack-faq-item.active
.mimshack-faq-answer {
  grid-template-rows: 1fr;
}


.mimshack-faq-item.active
.mimshack-faq-answer p {
  padding:
    0 24px 24px;
}


.mimshack-faq-item.active
.mimshack-faq-icon {
  transform: rotate(45deg);

  background: #948220;

  color: #ffffff;
}


/* =========================================
   WHATSAPP LINK
========================================= */

.mimshack-faq-whatsapp {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin:
    0 24px 24px;

  padding: 10px 16px;

  background: #25D366;

  color: #ffffff;

  border-radius: 6px;

  text-decoration: none;

  font-size: 14px;

  font-weight: 700;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}


.mimshack-faq-whatsapp:hover {
  background: #20bd5a;

  color: #ffffff;

  transform: translateY(-2px);
}


/* =========================================
   BOTTOM CTA
========================================= */

.mimshack-faq-cta {
  margin-top: 55px;

  padding: 40px 25px;

  text-align: center;

  background:
    linear-gradient(
      135deg,
      #07bada,
      #07bada
    );

  border-radius: 14px;

  color: #ffffff;
}


.mimshack-faq-cta h3 {
  margin: 0 0 10px;

  font-size: 27px;

  font-weight: 800;
}


.mimshack-faq-cta p {
  margin: 0 0 22px;

  color: rgba(255,255,255,0.85);

  font-size: 15px;

  line-height: 1.6;
}


.mimshack-faq-cta-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 13px 22px;

  background: #ffffff;

  color: #07bada;

  border-radius: 7px;

  text-decoration: none;

  font-size: 14px;

  font-weight: 700;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}


.mimshack-faq-cta-button:hover {
  background: #f1f5f8;

  color: #07bada;

  transform: translateY(-2px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .mimshack-faq {
    padding: 65px 15px;
  }


  .mimshack-faq-heading {
    margin-bottom: 35px;
  }


  .mimshack-faq-heading h2 {
    font-size: 34px;
  }


  .mimshack-faq-heading p {
    font-size: 15px;
  }


  .mimshack-faq-question {
    padding: 18px;

    font-size: 15px;
  }


  .mimshack-faq-answer p {
    padding-left: 18px;
    padding-right: 18px;
  }


  .mimshack-faq-item.active
  .mimshack-faq-answer p {
    padding:
      0 18px 20px;
  }


  .mimshack-faq-whatsapp {
    margin-left: 18px;
    margin-right: 18px;
  }


  .mimshack-faq-cta {
    margin-top: 40px;

    padding: 32px 20px;
  }

}


/* =========================================
   ACCESSIBILITY
========================================= */

.mimshack-faq-question:focus-visible,
.mimshack-faq-whatsapp:focus-visible,
.mimshack-faq-cta-button:focus-visible {
  outline: 3px solid #7cc4fa;

  outline-offset: 3px;
}



  /* ========================================
     MIMSHACK CTA SECTION
  ======================================== */

  .mimshack-cta {
    position: relative;
    overflow: hidden;

    padding: 90px 20px;

    background:
      linear-gradient(
        135deg,
        #0b1f33 0%,
        #737373 50%,
        #0b1f33 100%
      );

    color: #ffffff;
  }


  /* Decorative background circles */

  .mimshack-cta::before {
    content: "";
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.04);

    top: -250px;
    right: -120px;
  }


  .mimshack-cta::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.03);

    bottom: -180px;
    left: -100px;
  }


  /* Container */

  .mimshack-cta-container {
    position: relative;
    z-index: 2;

    max-width: 1000px;

    margin: 0 auto;

    text-align: center;
  }


  /* Label */

  .mimshack-cta-label {
    display: inline-block;

    margin-bottom: 18px;

    padding: 7px 16px;

    border: 1px solid rgba(255,255,255,0.25);

    border-radius: 50px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #ffffff;

    opacity: 0.9;
  }


  /* Heading */

  .mimshack-cta h2 {
    margin: 0 auto 20px;

    max-width: 800px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(36px, 5vw, 58px);

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1.5px;
  }


  /* Paragraph */

  .mimshack-cta p {
    max-width: 720px;

    margin: 0 auto 35px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 18px;

    line-height: 1.7;

    color: rgba(255,255,255,0.85);
  }


  /* Buttons */

  .mimshack-cta-buttons {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;

    margin-bottom: 32px;
  }


  .mimshack-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 52px;

    padding: 14px 25px;

    border-radius: 8px;

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    font-weight: 700;

    transition: all 0.25s ease;
  }


  /* WhatsApp */

  .mimshack-btn-whatsapp {
    background: #25D366;

    color: #ffffff;

    box-shadow:
      0 8px 20px rgba(0,0,0,0.2);
  }


  .mimshack-btn-whatsapp:hover {
    background: #20bd5a;

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
      0 12px 25px rgba(0,0,0,0.3);
  }


  .mimshack-whatsapp-icon {
    font-size: 20px;
  }


  /* Quote Button */

  .mimshack-btn-light {
    background: #ffffff;

    color: #0b1f33;

    box-shadow:
      0 8px 20px rgba(0,0,0,0.15);
  }


  .mimshack-btn-light:hover {
    background: #f1f5f8;

    color: #0b1f33;

    transform: translateY(-3px);
  }


  .mimshack-arrow {
    font-size: 20px;

    transition: transform 0.2s ease;
  }


  .mimshack-btn-light:hover .mimshack-arrow {
    transform: translateX(4px);
  }


  /* Trust indicators */

  .mimshack-cta-trust {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 25px;

    flex-wrap: wrap;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    color: rgba(255,255,255,0.7);
  }


  .mimshack-cta-trust span {
    white-space: nowrap;
  }


  /* ========================================
     MOBILE
  ======================================== */

  @media (max-width: 600px) {

    .mimshack-cta {
      padding: 65px 20px;
    }


    .mimshack-cta h2 {
      font-size: 36px;

      letter-spacing: -0.8px;
    }


    .mimshack-cta p {
      font-size: 16px;

      line-height: 1.6;
    }


    .mimshack-cta-buttons {
      flex-direction: column;

      width: 100%;
    }


    .mimshack-btn {
      width: 100%;

      max-width: 340px;
    }


    .mimshack-cta-trust {
      flex-direction: column;

      gap: 10px;
    }

  }


  /* =========================================
   QUOTE PAGE
========================================= */

.mimshack-quote-page {

  background: #f7f9fb;

  color: #17b6d3;

  font-family:
    Arial,
    Helvetica,
    sans-serif;
}


.mimshack-quote-container {

  max-width: 1150px;

  margin: auto;

  padding-left: 20px;

  padding-right: 20px;
}


/* =========================================
   HERO
========================================= */

.mimshack-quote-hero {

  padding:
    85px 20px 90px;

  text-align: center;

  background:
    linear-gradient(
      135deg,
      #c8c08c,
      #c8c08c
    );

  color: #ffffff;
}


.mimshack-quote-hero > div {

  max-width: 700px;
}


.mimshack-quote-hero span {

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2px;

  color:
    rgba(255,255,255,.7);
}


.mimshack-quote-hero h1 {

  margin:
    15px 0 20px;

  font-size:
    clamp(43px,6vw,65px);

  line-height: 1.05;

  letter-spacing: -1.5px;
}


.mimshack-quote-hero h1 strong {

  display: block;

  color: #72c7f5;
}


.mimshack-quote-hero p {

  margin: auto;

  max-width: 650px;

  color:
    rgba(255,255,255,.82);

  font-size: 17px;

  line-height: 1.7;
}


/* =========================================
   LAYOUT
========================================= */

.mimshack-quote-layout {

  display: grid;

  grid-template-columns:
    .8fr 1.2fr;

  gap: 65px;

  padding:
    80px 0;
}


/* =========================================
   INFO
========================================= */

.mimshack-quote-small {

  color: #948220;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2px;
}


.mimshack-quote-info h2 {

  margin:
    12px 0 17px;

  font-size: 38px;

  line-height: 1.15;

  font-weight: 900;
}


.mimshack-quote-info > p {

  margin:
    0 0 35px;

  color: #627d98;

  font-size: 15px;

  line-height: 1.7;
}


/* =========================================
   STEPS
========================================= */

.mimshack-quote-steps {

  display: flex;

  flex-direction: column;

  gap: 25px;
}


.mimshack-quote-steps > div {

  display: flex;

  gap: 15px;
}


.mimshack-quote-steps > div > strong {

  color: #948220;

  font-size: 14px;

  font-weight: 800;
}


.mimshack-quote-steps h3 {

  margin:
    0 0 5px;

  font-size: 15px;
}


.mimshack-quote-steps p {

  margin: 0;

  color: #627d98;

  font-size: 12px;

  line-height: 1.6;
}


/* =========================================
   WHATSAPP
========================================= */

.mimshack-quote-whatsapp-box {

  margin-top: 35px;

  padding: 22px;

  background: #eaf8ef;

  border:
    1px solid #d3efdc;

  border-radius: 10px;
}


.mimshack-quote-whatsapp-box strong {

  font-size: 14px;
}


.mimshack-quote-whatsapp-box p {

  margin:
    7px 0 15px;

  color: #52705e;

  font-size: 12px;

  line-height: 1.5;
}


.mimshack-quote-whatsapp-box a {

  display: inline-flex;

  padding:
    10px 15px;

  background: #25D366;

  color: #ffffff;

  border-radius: 6px;

  text-decoration: none;

  font-size: 12px;

  font-weight: 700;
}


/* =========================================
   FORM CARD
========================================= */

.mimshack-quote-form-card {

  padding: 40px;

  background: #ffffff;

  border:
    1px solid #e4ebf1;

  border-radius: 14px;

  box-shadow:
    0 12px 40px
    rgba(16,42,67,.07);
}


.mimshack-quote-form-header {

  margin-bottom: 28px;
}


.mimshack-quote-form-header span {

  color: #948220;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;
}


.mimshack-quote-form-header h2 {

  margin:
    8px 0;

  font-size: 28px;
}


.mimshack-quote-form-header p {

  margin: 0;

  color: #829ab1;

  font-size: 12px;
}


/* =========================================
   FORM
========================================= */

.mimshack-quote-form {

  display: flex;

  flex-direction: column;

  gap: 17px;
}


.mimshack-quote-form-row {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 15px;
}


.mimshack-quote-field {

  display: flex;

  flex-direction: column;

  gap: 7px;
}


.mimshack-quote-field label {

  color: #243b53;

  font-size: 12px;

  font-weight: 700;
}


.mimshack-quote-field input,
.mimshack-quote-field select,
.mimshack-quote-field textarea {

  width: 100%;

  box-sizing: border-box;

  padding:
    13px 14px;

  border:
    1px solid #d9e2ec;

  border-radius: 7px;

  background: #fbfcfd;

  color: #17b6d3;

  font-family: inherit;

  font-size: 13px;

  outline: none;

  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}


.mimshack-quote-field input:focus,
.mimshack-quote-field select:focus,
.mimshack-quote-field textarea:focus {

  border-color: #948220;

  background: #ffffff;

  box-shadow:
    0 0 0 3px
    rgba(22,119,200,.1);
}


.mimshack-quote-field textarea {

  resize: vertical;
}


/* =========================================
   SUBMIT
========================================= */

.mimshack-quote-submit {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  width: 100%;

  padding:
    16px 20px;

  border: none;

  border-radius: 7px;

  background:
    linear-gradient(
      135deg,
      #0d63a8,
      #0d63a8
    );

  color: #ffffff;

  font-family: inherit;

  font-size: 14px;

  font-weight: 700;

  cursor: pointer;

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}


.mimshack-quote-submit:hover {

  transform:
    translateY(-2px);

  box-shadow:
    0 8px 20px
    rgba(22,119,200,.25);
}


.mimshack-quote-submit span {

  font-size: 19px;
}


.mimshack-quote-note {

  margin: 0;

  color: #829ab1;

  text-align: center;

  font-size: 10px;

  line-height: 1.5;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width:850px) {

  .mimshack-quote-layout {

    grid-template-columns: 1fr;

    gap: 45px;
  }

}


@media (max-width:600px) {

  .mimshack-quote-hero {

    padding:
      65px 20px 70px;
  }

  .mimshack-quote-layout {

    padding:
      55px 0;
  }

  .mimshack-quote-info h2 {

    font-size: 32px;
  }

  .mimshack-quote-form-card {

    padding: 25px 18px;
  }

  .mimshack-quote-form-row {

    grid-template-columns: 1fr;
  }

}


/* =========================================
   GLOBAL
========================================= */

.mimshack-contact-page {

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  color: #17b6d3;

  background: #f7f9fb;
}


.mimshack-contact-container {

  max-width: 1150px;

  margin: 0 auto;

  padding-left: 20px;

  padding-right: 20px;
}


/* =========================================
   HERO
========================================= */

.mimshack-contact-hero {

  padding:
    90px 20px 100px;

  text-align: center;

  background:
    linear-gradient(
      135deg,
      #c8c08c,
      #c8c08c
    );

  color: #ffffff;
}


.mimshack-contact-label {

  display: inline-block;

  margin-bottom: 18px;

  padding:
    7px 16px;

  border:
    1px solid
    rgba(255,255,255,0.3);

  border-radius: 50px;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 2px;
}


.mimshack-contact-hero h1 {

  margin:
    0 auto 20px;

  font-size:
    clamp(42px, 6vw, 64px);

  line-height: 1.05;

  font-weight: 800;

  letter-spacing: -1.5px;
}


.mimshack-contact-hero h1 span {

  color: #72c7f5;
}


.mimshack-contact-hero p {

  max-width: 720px;

  margin:
    0 auto;

  color:
    rgba(255,255,255,0.85);

  font-size: 18px;

  line-height: 1.7;
}


/* =========================================
   MAIN GRID
========================================= */

.mimshack-contact-grid {

  display: grid;

  grid-template-columns:
    0.85fr 1.15fr;

  gap: 60px;

  padding:
    80px 0;
}


/* =========================================
   CONTACT INFO
========================================= */

.mimshack-small-label {

  display: block;

  margin-bottom: 12px;

  color: #948220;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 2px;
}


.mimshack-contact-info h2 {

  margin:
    0 0 15px;

  font-size: 38px;

  font-weight: 800;

  color: #17b6d3;
}


.mimshack-contact-info > p {

  margin:
    0 0 30px;

  color: #627d98;

  font-size: 16px;

  line-height: 1.7;
}


/* =========================================
   CONTACT METHODS
========================================= */

.mimshack-contact-method {

  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 14px;

  padding: 17px;

  background: #ffffff;

  border:
    1px solid #e4ebf1;

  border-radius: 10px;

  color: #17b6d3;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}


.mimshack-contact-method:hover {

  transform:
    translateY(-3px);

  border-color: #cbddea;

  box-shadow:
    0 8px 25px
    rgba(16,42,67,0.08);
}


.mimshack-contact-method-icon {

  width: 45px;

  height: 45px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  background: #eef6fc;

  border-radius: 9px;

  font-size: 21px;
}


.mimshack-contact-method strong {

  display: block;

  margin-bottom: 3px;

  font-size: 14px;
}


.mimshack-contact-method span {

  display: block;

  color: #948220;

  font-size: 14px;

  font-weight: 600;
}


.mimshack-contact-method small {

  display: block;

  margin-top: 3px;

  color: #829ab1;

  font-size: 12px;
}


/* WhatsApp */

.mimshack-contact-whatsapp {

  border-color:
    rgba(37,211,102,0.25);
}


.mimshack-contact-whatsapp
.mimshack-contact-method-icon {

  background:
    #e9faef;
}


/* =========================================
   TRUST
========================================= */

.mimshack-contact-trust {

  margin-top: 28px;

  padding-top: 25px;

  border-top:
    1px solid #dfe7ed;

  color: #627d98;

  font-size: 13px;

  line-height: 2;
}


/* =========================================
   FORM
========================================= */

.mimshack-contact-form-wrapper {

  padding: 40px;

  background: #ffffff;

  border:
    1px solid #e4ebf1;

  border-radius: 14px;

  box-shadow:
    0 10px 35px
    rgba(16,42,67,0.07);
}


.mimshack-contact-form-heading {

  margin-bottom: 30px;
}


.mimshack-contact-form-heading span {

  color: #948220;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2px;
}


.mimshack-contact-form-heading h2 {

  margin:
    9px 0 10px;

  font-size: 29px;

  color: #17b6d3;
}


.mimshack-contact-form-heading p {

  margin: 0;

  color: #627d98;

  font-size: 14px;

  line-height: 1.6;
}


/* =========================================
   FORM FIELDS
========================================= */

.mimshack-contact-form {

  display: flex;

  flex-direction: column;

  gap: 18px;
}


.mimshack-form-row {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 15px;
}


.mimshack-form-group {

  display: flex;

  flex-direction: column;

  gap: 7px;
}


.mimshack-form-group label {

  color: #243b53;

  font-size: 13px;

  font-weight: 700;
}


.mimshack-form-group input,
.mimshack-form-group select,
.mimshack-form-group textarea {

  width: 100%;

  box-sizing: border-box;

  padding:
    13px 14px;

  border:
    1px solid #d9e2ec;

  border-radius: 7px;

  background: #fbfcfd;

  color: #17b6d3;

  font-family: inherit;

  font-size: 14px;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}


.mimshack-form-group input:focus,
.mimshack-form-group select:focus,
.mimshack-form-group textarea:focus {

  border-color: #948220;

  background: #ffffff;

  box-shadow:
    0 0 0 3px
    rgba(22,119,200,0.1);
}


.mimshack-form-group textarea {

  resize: vertical;

  min-height: 120px;
}


/* =========================================
   SUBMIT
========================================= */

.mimshack-submit-button {

  width: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  padding: 16px 20px;

  border: none;

  border-radius: 7px;

  background:
    linear-gradient(
      135deg,
      #948220,
      #948220
    );

  color: #ffffff;

  font-family: inherit;

  font-size: 15px;

  font-weight: 700;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}


.mimshack-submit-button:hover {

  transform:
    translateY(-2px);

  box-shadow:
    0 8px 20px
    rgba(22,119,200,0.25);
}


.mimshack-submit-button span {

  font-size: 20px;
}


.mimshack-form-note {

  margin: 0;

  color: #829ab1;

  text-align: center;

  font-size: 11px;

  line-height: 1.5;
}


/* =========================================
   BOTTOM CTA
========================================= */

.mimshack-contact-bottom {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  margin-bottom: 80px;

  padding:
    32px 35px;

  background:
    linear-gradient(
      135deg,
      #17b6d3,
      #17b6d3
    );

  border-radius: 13px;

  color: #ffffff;
}


.mimshack-contact-bottom > div > span {

  color:
    rgba(255,255,255,0.65);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;
}


.mimshack-contact-bottom h3 {

  margin:
    7px 0 7px;

  font-size: 23px;

  font-weight: 800;
}


.mimshack-contact-bottom p {

  margin: 0;

  color:
    rgba(255,255,255,0.8);

  font-size: 14px;
}


.mimshack-bottom-whatsapp {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  padding:
    14px 23px;

  background: #25D366;

  color: #ffffff;

  border-radius: 7px;

  text-decoration: none;

  font-size: 14px;

  font-weight: 700;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}


.mimshack-bottom-whatsapp:hover {

  background: #20bd5a;

  color: #ffffff;

  transform:
    translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .mimshack-contact-grid {

    grid-template-columns: 1fr;

    gap: 40px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .mimshack-contact-hero {

    padding:
      65px 20px 75px;
  }


  .mimshack-contact-hero h1 {

    font-size: 42px;
  }


  .mimshack-contact-hero p {

    font-size: 16px;
  }


  .mimshack-contact-grid {

    padding:
      55px 0;
  }


  .mimshack-contact-info h2 {

    font-size: 32px;
  }


  .mimshack-contact-form-wrapper {

    padding: 25px 18px;
  }


  .mimshack-form-row {

    grid-template-columns: 1fr;
  }


  .mimshack-contact-bottom {

    flex-direction: column;

    align-items: flex-start;

    margin-bottom: 50px;

    padding: 27px;
  }


  .mimshack-bottom-whatsapp {

    width: 100%;
  }

}


/* =========================================
   FLEET SECTION
========================================= */

.mimshack-fleet {

  padding: 100px 20px;

  background: #f7f9fb;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  color: #17b6d3;
}


.mimshack-fleet-container {

  max-width: 1150px;

  margin: auto;
}


/* Header */

.mimshack-fleet-header {

  max-width: 700px;

  margin:
    0 auto 50px;

  text-align: center;
}


.mimshack-fleet-label {

  color: #948220;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2px;
}


.mimshack-fleet-header h2 {

  margin:
    13px 0 18px;

  font-size:
    clamp(38px, 5vw, 54px);

  line-height: 1.08;

  letter-spacing: -1.5px;

  font-weight: 900;
}


.mimshack-fleet-header h2 span {

  display: block;

  color: #948220;
}


.mimshack-fleet-header p {

  margin: 0;

  color: #627d98;

  font-size: 15px;

  line-height: 1.7;
}


/* Grid */

.mimshack-fleet-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}


/* Card */

.mimshack-fleet-card {

  overflow: hidden;

  background: #ffffff;

  border:
    1px solid #e2e8ee;

  border-radius: 12px;

  box-shadow:
    0 5px 20px
    rgba(16,42,67,.05);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}


.mimshack-fleet-card:hover {

  transform:
    translateY(-7px);

  box-shadow:
    0 15px 35px
    rgba(16,42,67,.11);
}


/* Image */

.mimshack-fleet-image {

  position: relative;

  height: 220px;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #dceaf4,
      #edf4f8
    );
}


.mimshack-fleet-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  transition:
    transform .5s ease;
}


.mimshack-fleet-card:hover
.mimshack-fleet-image img {

  transform:
    scale(1.05);
}


.mimshack-fleet-badge {

  position: absolute;

  top: 15px;

  right: 15px;

  padding:
    6px 10px;

  background: #948220;

  color: #ffffff;

  border-radius: 50px;

  font-size: 10px;

  font-weight: 700;
}


/* Content */

.mimshack-fleet-content {

  padding: 25px;
}


.mimshack-fleet-type {

  color: #948220;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1.5px;
}


.mimshack-fleet-content h3 {

  margin:
    8px 0 10px;

  font-size: 21px;

  font-weight: 800;
}


.mimshack-fleet-content p {

  margin:
    0 0 20px;

  color: #627d98;

  font-size: 13px;

  line-height: 1.65;
}


/* Meta */

.mimshack-fleet-meta {

  display: flex;

  flex-direction: column;

  gap: 8px;

  padding-top: 17px;

  border-top:
    1px solid #edf1f4;

  color: #486581;

  font-size: 11px;

  font-weight: 600;
}


/* Bottom CTA */

.mimshack-fleet-bottom {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  margin-top: 45px;

  padding:
    28px 30px;

  background:
    #17b6d3;

  border-radius: 11px;

  color: #ffffff;
}


.mimshack-fleet-bottom h3 {

  margin:
    0 0 6px;

  font-size: 19px;
}


.mimshack-fleet-bottom p {

  margin: 0;

  color:
    rgba(255,255,255,.65);

  font-size: 12px;
}


.mimshack-fleet-button {

  flex-shrink: 0;

  padding:
    13px 20px;

  background: #ffffff;

  color: #17b6d3;

  border-radius: 7px;

  text-decoration: none;

  font-size: 13px;

  font-weight: 700;
}


/* Responsive */

@media (max-width: 900px) {

  .mimshack-fleet-grid {

    grid-template-columns:
      1fr 1fr;
  }

}


@media (max-width: 600px) {

  .mimshack-fleet {

    padding: 70px 15px;
  }

  .mimshack-fleet-grid {

    grid-template-columns: 1fr;
  }

  .mimshack-fleet-bottom {

    flex-direction: column;

    align-items: flex-start;
  }

  .mimshack-fleet-button {

    width: 100%;

    box-sizing: border-box;

    text-align: center;
  }

}


/* =========================================
   TESTIMONIALS
========================================= */

.mimshack-testimonials {

  padding:
    100px 20px;

  background: #ffffff;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  color: #17b6d3;
}


.mimshack-testimonials-container {

  max-width: 1150px;

  margin: auto;
}


/* Header */

.mimshack-testimonials-header {

  max-width: 650px;

  margin:
    0 auto 50px;

  text-align: center;
}


.mimshack-testimonials-header > span {

  color: #948220;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;
}


.mimshack-testimonials-header h2 {

  margin:
    12px 0 17px;

  font-size:
    clamp(38px,5vw,53px);

  line-height: 1.08;

  letter-spacing: -1.5px;

  font-weight: 900;
}


.mimshack-testimonials-header h2 strong {

  color: #948220;
}


.mimshack-testimonials-header p {

  margin: 0;

  color: #627d98;

  font-size: 15px;

  line-height: 1.7;
}


/* Cards */

.mimshack-testimonials-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}


.mimshack-testimonial-card {

  position: relative;

  padding: 30px;

  background: #f7f9fb;

  border:
    1px solid #e4ebf1;

  border-radius: 11px;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}


.mimshack-testimonial-card:hover {

  transform:
    translateY(-5px);

  box-shadow:
    0 12px 30px
    rgba(16,42,67,.08);
}


/* Stars */

.mimshack-testimonial-stars {

  margin-bottom: 18px;

  color: #f5b942;

  font-size: 15px;

  letter-spacing: 2px;
}


/* Quote */

.mimshack-testimonial-card blockquote {

  min-height: 115px;

  margin:
    0 0 25px;

  color: #486581;

  font-size: 14px;

  line-height: 1.75;

  font-style: normal;
}


.mimshack-testimonial-card blockquote::before {

  content: "“";

  color: #72c7f5;

  font-size: 32px;

  font-weight: 900;

  vertical-align: -10px;

  margin-right: 3px;
}


/* Person */

.mimshack-testimonial-person {

  display: flex;

  align-items: center;

  gap: 12px;

  padding-top: 20px;

  border-top:
    1px solid #e0e7ed;
}


.mimshack-testimonial-avatar {

  width: 40px;

  height: 40px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  background:
    linear-gradient(
      135deg,
      #948220,
      #948220
    );

  color: #ffffff;

  border-radius: 50%;

  font-size: 11px;

  font-weight: 800;
}


.mimshack-testimonial-person strong {

  display: block;

  color: #17b6d3;

  font-size: 12px;
}


.mimshack-testimonial-person span {

  display: block;

  margin-top: 3px;

  color: #829ab1;

  font-size: 10px;
}


/* CTA */

.mimshack-testimonials-cta {

  display: flex;

  align-items: center;

  gap: 20px;

  margin-top: 45px;

  padding:
    25px 28px;

  background: #17b6d3;

  border-radius: 11px;

  color: #ffffff;
}


.mimshack-testimonials-quote-icon {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 45px;

  height: 45px;

  flex-shrink: 0;

  background:
    rgba(114,199,245,.15);

  color: #72c7f5;

  border-radius: 50%;

  font-size: 28px;
}


.mimshack-testimonials-cta h3 {

  margin:
    0 0 5px;

  font-size: 17px;
}


.mimshack-testimonials-cta p {

  margin: 0;

  color:
    rgba(255,255,255,.6);

  font-size: 12px;
}


.mimshack-testimonials-button {

  margin-left: auto;

  flex-shrink: 0;

  padding:
    12px 18px;

  background: #ffffff;

  color: #17b6d3;

  border-radius: 6px;

  text-decoration: none;

  font-size: 12px;

  font-weight: 700;
}


/* Responsive */

@media (max-width:900px) {

  .mimshack-testimonials-grid {

    grid-template-columns:
      1fr 1fr;
  }

}


@media (max-width:600px) {

  .mimshack-testimonials {

    padding:
      70px 15px;
  }

  .mimshack-testimonials-grid {

    grid-template-columns: 1fr;
  }

  .mimshack-testimonial-card blockquote {

    min-height: auto;
  }

  .mimshack-testimonials-cta {

    flex-direction: column;

    align-items: flex-start;
  }

  .mimshack-testimonials-button {

    width: 100%;

    margin-left: 0;

    box-sizing: border-box;

    text-align: center;
  }

}

  
/* =========================================
   FOOTER
========================================= */

.mimshack-footer {

  background:
    #0b1f33;

  color: #ffffff;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

}


/* Container */

.mimshack-footer-container {

  max-width: 1200px;

  margin: 0 auto;

  padding:
    70px 20px 25px;

}


/* =========================================
   FOOTER GRID
========================================= */

.mimshack-footer-grid {

  display: grid;

  grid-template-columns:
    1.5fr
    0.8fr
    1fr
    1.2fr;

  gap: 55px;

  padding-bottom: 55px;

  border-bottom:
    1px solid
    rgba(255,255,255,0.1);

}


/* =========================================
   BRAND
========================================= */

.mimshack-footer-logo {

  display: inline-flex;

  flex-direction: column;

  margin-bottom: 20px;

  color: #ffffff;

  text-decoration: none;

  font-size: 25px;

  line-height: 1;

  font-weight: 900;

  letter-spacing: 1px;
}


.mimshack-footer-logo span {

  margin-top: 5px;

  color: #72c7f5;

  font-size: 11px;

  letter-spacing: 4px;
}


.mimshack-footer-brand p {

  max-width: 330px;

  margin:
    0 0 23px;

  color:
    rgba(255,255,255,0.65);

  font-size: 14px;

  line-height: 1.7;
}


/* =========================================
   WHATSAPP
========================================= */

.mimshack-footer-whatsapp {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding:
    12px 18px;

  background:
    #25D366;

  color: #ffffff;

  border-radius: 7px;

  text-decoration: none;

  font-size: 13px;

  font-weight: 700;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}


.mimshack-footer-whatsapp:hover {

  background:
    #20bd5a;

  color: #ffffff;

  transform:
    translateY(-2px);
}


/* =========================================
   COLUMNS
========================================= */

.mimshack-footer-column h3 {

  margin:
    0 0 20px;

  color: #ffffff;

  font-size: 15px;

  font-weight: 800;
}


.mimshack-footer-column ul {

  margin: 0;

  padding: 0;

  list-style: none;
}


.mimshack-footer-column li {

  margin-bottom: 11px;
}


.mimshack-footer-column li a {

  color:
    rgba(255,255,255,0.62);

  text-decoration: none;

  font-size: 13px;

  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}


.mimshack-footer-column li a:hover {

  color: #72c7f5;

  padding-left: 4px;
}


/* =========================================
   CONTACT
========================================= */

.mimshack-footer-contact-item {

  display: flex;

  align-items: flex-start;

  gap: 12px;

  margin-bottom: 18px;
}


.mimshack-footer-contact-item > span {

  width: 28px;

  flex-shrink: 0;

  font-size: 17px;
}


.mimshack-footer-contact-item small {

  display: block;

  margin-bottom: 3px;

  color:
    rgba(255,255,255,0.45);

  font-size: 10px;

  text-transform: uppercase;

  letter-spacing: 1px;
}


.mimshack-footer-contact-item a,
.mimshack-footer-contact-item strong {

  display: block;

  color:
    rgba(255,255,255,0.75);

  text-decoration: none;

  font-size: 13px;

  line-height: 1.5;

  font-weight: 600;
}


.mimshack-footer-contact-item a:hover {

  color: #72c7f5;
}


/* =========================================
   FOOTER CTA
========================================= */

.mimshack-footer-cta {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  margin:
    45px 0;

  padding:
    27px 30px;

  background:
    linear-gradient(
      135deg,
      #b4dbe2,
      #07bada
    );

  border-radius: 11px;
}


.mimshack-footer-cta span {

  color:
    rgba(255,255,255,0.65);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;
}


.mimshack-footer-cta h3 {

  margin:
    6px 0 0;

  font-size: 23px;

  font-weight: 800;
}


.mimshack-footer-cta-button {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  padding:
    13px 21px;

  background:
    #ffffff;

  color:
    #17b6d3;

  border-radius: 7px;

  text-decoration: none;

  font-size: 13px;

  font-weight: 700;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}


.mimshack-footer-cta-button:hover {

  background:
    #f1f5f8;

  color:
    #17b6d3;

  transform:
    translateY(-2px);
}


/* =========================================
   BOTTOM BAR
========================================= */

.mimshack-footer-bottom {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding-top: 22px;
}


.mimshack-footer-bottom p {

  margin: 0;

  color:
    rgba(255,255,255,0.4);

  font-size: 11px;
}


.mimshack-footer-legal {

  display: flex;

  gap: 20px;
}


.mimshack-footer-legal a {

  color:
    rgba(255,255,255,0.45);

  text-decoration: none;

  font-size: 11px;

  transition:
    color 0.2s ease;
}


.mimshack-footer-legal a:hover {

  color: #72c7f5;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

  .mimshack-footer-grid {

    grid-template-columns:
      1.5fr 1fr 1fr;

    gap: 40px;
  }

  .mimshack-footer-brand {

    grid-column:
      1 / -1;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .mimshack-footer-container {

    padding:
      55px 20px 22px;
  }


  .mimshack-footer-grid {

    grid-template-columns: 1fr;

    gap: 35px;

    padding-bottom: 35px;
  }


  .mimshack-footer-brand {

    grid-column: auto;
  }


  .mimshack-footer-brand p {

    max-width: none;
  }


  .mimshack-footer-cta {

    flex-direction: column;

    align-items: flex-start;

    margin:
      35px 0;

    padding: 25px;
  }


  .mimshack-footer-cta-button {

    width: 100%;
  }


  .mimshack-footer-bottom {

    flex-direction: column;

    align-items: flex-start;

    gap: 15px;
  }


  .mimshack-footer-legal {

    flex-wrap: wrap;

    gap: 12px;
  }

}

