﻿
/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #FFFFFF;
  --primary-color:                #38b083;
  --section-bg-color:             #f5f5f5;
  --border-color:                 #dee2e6;
  --dark-color:                   #000000;
  --grey-color:                   #fcfeff;
  --title-color:                  #565758;
  --p-color:                      #717275;
  --footer-bg-color:              #07262e;

  --body-font-family:             'Karla',"IBM Plex Sans Thai", sans-serif;


  --h1-font-size:                 68px;
  --h2-font-size:                 42px;
  --h3-font-size:                 36px;
  --h4-font-size:                 32px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --menu-font-size:               18px;
  --copyright-text-font-size:     16px;
  --custom-link-font-size:        14px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             600;
}

body {
    background: var(--white-color);
    font-family: var(--body-font-family); 
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  line-height: normal;
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-family: var(--body-font-family);
  font-weight: var(--font-weight-light);
  
  }

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

::selection {
  background: var(--primary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white-color);
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-padding-manu {
  padding-top: 120px;
}

.section-padding-oem {
  padding-top: 120px;
}

.section-padding-booking {
  padding-top: 100px;
  padding-bottom: 100px;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.paddingText {
  padding: 50px;
}


.navbar-brand i { margin-right: 12px; }

.backstretch { max-width: 99.99%; }

/*---------------------------------------
  CUSTOM ICON               
-----------------------------------------*/
.play-icon-wrap {
  background: var(--white-color);
  border-radius: .3rem;
  position: relative;
  z-index: 2;
  padding: 10px 12px;
  max-width: 152.31px;
}

.play-icon {
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 100px;
  font-size: 20px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin-right: 10px;
}

.play-icon::before {
  display: block;
  padding-top: 5px;
  padding-left: 5px;
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
/* Secondary Button */
.custom-btn {
  background: transparent;
  color: var(--dark-color);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all .25s ease;
}

.custom-btn:hover {
  background: var(--dark-color);
  border-color: var(--dark-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}


/* Primary Button */
.custom-btn-diy {
  background: var(--primary-color);
  color: var(--white-color);
  border: 1px solid var(--primary-color);
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all .25s ease;
}

.custom-btn-diy:hover {
  background: #2f9b73;
  border-color: #2f9b73;
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(56,176,131,.25);
}

/*---------------------------------------
  FAQ ACCORDION               
-----------------------------------------*/
/* --- Blog Card --- */


.blog-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensures cards stretch to fit their container */
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.blog-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0.9;
}

.blog-card .content {
  padding: 20px;
  flex-grow: 1; /* Ensures content stretches to fill available space */
}

.blog-card .content .description {
  opacity: 1;
  margin-top: 0.75rem;
}


.blog-card .tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  background-color: #f1f1f1;
  color: #333;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.blog-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-card p {
  font-size: 1rem;
  color: var(--p-color);
  line-height: 1.6;
}


.icon-circle {
  width: 48px;
  height: 48px;
  background-color: #c9e1d5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* เน€เธเธดเนเธกเธฃเธฐเธขเธฐเธซเนเธฒเธเธฃเธฐเธซเธงเนเธฒเธเนเธ•เนเธฅเธฐ feature */
}


/* --- Accordion Styled as Card --- */
.accordion-item {
  background-color: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-button {
  background-color: transparent;
  color: #333;
  font-size: 1rem;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #000;
  box-shadow: none;
}

.accordion-button::after {
  transform: rotate(-90deg);
  transition: transform 0.2s;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
}

.accordion-body {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid #eaeaea;
  font-size: 0.95rem;
  color: #555;
}

.benefit-list {
  font-size: 0.95rem;
  line-height: 1.2;
  color: #333;
  padding-left: 1rem;
}

.benefit-list li strong {
  display: block;
  font-weight: 600;
  color: ##38b083;
}


.benefit-list i {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/*---------------------------------------
  Horizontal Scroll            
-----------------------------------------*/


/* Horizontal Scroll */
.timeline-container {
  display: flex;
  overflow-x: auto; /* Horizontal scroll */
  scroll-snap-type: x mandatory; /* Smooth scroll snapping */
  height: 100vh;
}

.timeline-container::-webkit-scrollbar {
  display: none; /* Hide scrollbar */
}

.timeline-slide {
  position: absolute; /* Stack slides on top of each other */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 750ms ease-in-out;
  z-index: 1; /* Ensure content stays visible */
}

/* Add overlay using ::before */
.timeline-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4); 
  z-index: -1; /* Place it behind the slide content */
}

#slide1 {
  background: url('../images/cover/IMG_Siam10.webp') no-repeat center center/cover;
}
#slide2 {
  background: url('../images/cover/AIM_Firstaidkiss_02.webp') no-repeat center center/cover;
}
#slide3 {
  background: url('../images/cover/IMG_3884.webp') no-repeat center center/cover;
}
#slide4 {
  background: url('../images/cover/AIM.webp') no-repeat center center/cover;
}

.timeline-slide.active {
  opacity: 1; /* Show the active slide */
  visibility: visible; /* Make the slide interactable */
  z-index: 1; /* Ensure the active slide is on top */
}

/* Timeline Content */
.timeline-content {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 58%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10%;
  padding-left: 6%;
  background: linear-gradient(
    to left,
    rgba(0,0,0,.62),
    rgba(0,0,0,.38),
    rgba(0,0,0,.08),
    transparent
  );
  z-index: 2;
}

.timeline-card {
  max-width: 520px;
  text-align: right;
  padding: 28px 32px;
  border-radius: 22px;
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(2px);
}

.timeline-year {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.timeline-kicker {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

.timeline-content h1,
.timeline-content h2 {
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}


.timeline-content p {
  max-width: 500px;
  margin: 22px 0 0 auto;
  padding: 0;
  background: transparent;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,.88);
  text-align: right;
}


/* Timeline Navigation - Horizontal Layout */
.timeline-navigation {
  position: absolute; /* Position relative to the section */
  bottom: 5%; /* Place at the bottom of the section */
  left: 50%; /* Center horizontally */
  transform: translateX(-50%); /* Align perfectly at the center */
  display: flex; /* Horizontal layout for indicators */
  flex-direction: row; /* Stack indicators side by side */
  gap: 15px; /* Space between indicators */
  z-index: 1000; /* Ensure it's above the content */
}

/* Horizontal Indicators */
.timeline-indicator {
  display: block;
  width: 12px; /* Indicator size */
  height: 12px;
  background-color: #d4d4d4; /* Default color */
  border-radius: 50%; /* Circular shape */
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.timeline-indicator:hover,
.timeline-indicator:focus {
  background-color: var(--primary-color); /* Highlight color on hover */
  transform: scale(1.3); /* Zoom effect */
}

.timeline-indicator.active {
  background-color: var(--primary-color); /* Highlight active indicator */
  transform: scale(1.5); /* Larger size for active indicator */
}

@media (max-width: 768px) {
  .timeline-content {
    width: 100%;
    height: 100%;
    right: 0;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    background: linear-gradient(
      to top,
      rgba(0,0,0,.68),
      rgba(0,0,0,.36),
      rgba(0,0,0,.08)
    );
  }

  .timeline-card {
    max-width: 100%;
    padding: 24px 22px;
    text-align: center;
    border-radius: 20px;
    background: rgba(0,0,0,.24);
    backdrop-filter: blur(2px);
  }

  .timeline-year {
    font-size: 30px;
    margin-bottom: 8px;
  }

  .timeline-kicker {
    font-size: 11px;
    letter-spacing: 1.6px;
    margin-bottom: 12px;
  }

  .timeline-content h1,
  .timeline-content h2 {
    font-size: clamp(24px, 8vw, 32px);
    line-height: 1.25;
    text-align: center;
  }

  .timeline-content p {
    max-width: 100%;
    margin-top: 16px;
    font-size: 14.5px;
    line-height: 1.7;
    text-align: center;
  }

  .timeline-navigation {
    bottom: 7%;
    gap: 10px;
  }


}

@media (max-width: 420px) {
  .timeline-card {
    padding: 22px 18px;
  }

  .timeline-content h1,
  .timeline-content h2 {
    font-size: 24px;
  }

  .timeline-content p {
    font-size: 13.5px;
  }
}


/*---------------------------------------
  Manufacturing Page            
-----------------------------------------*/

.manu-home-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
  overflow: hidden;
}

.manu-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%; /* Background occupies 1/4 (25%) of the section height */
  z-index: 1; /* Places the background behind other elements */
  overflow: hidden; /* Ensures any overflow is hidden */
  display: flex; /* Enables centering of child elements */
  align-items: center; /* Centers the image vertically */
  justify-content: center; /* Centers the image horizontally */
}

.manu-background img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image fills the container while maintaining aspect ratio */
  object-position: center; /* Centers the image within the container */
}

.manu-content {
  position: relative;
  z-index: 2; /* Places content above the background */
  margin-top: 15%;
  text-align: left;
  align-items: center;
  padding: 20px;
}



/* Media Query for Screens up to 1024px */
@media (max-width: 1024px) {
  .manu-background {
    height: 30%; /* Background height for tablet screens */
  }

  .manu-content {
    margin-top: 35%; /* Dynamically adjusts to match background height */
  }
}

/* Media Query for Smaller Screens (up to 768px) */
@media (max-width: 768px) {
  .manu-background {
    height: 30%; /* Reduced background height for smaller screens */
  }

  .manu-content {
    margin-top: 35%; /* Matches the height of the background */
  }
}


.article-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensures cards stretch to fit their container */
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.article-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0.8;
}

.article-card .content {
  padding: 20px;
  flex-grow: 1; /* Ensures content stretches to fill available space */
}

.article-card .tag {
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
  border-radius: 15px;
  display: inline-block;
  margin-bottom: 10px;
}

.article-card h4 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
}

.article-card p {
  font-size: 1rem;
  color: #777;
}


/*---------------------------------------
  testimonial           
-----------------------------------------*/
.testimonial-slider {
  background-color:white;
  padding: 2em 0 2em 0;
}


.testimonial-title h2 {
  padding-bottom: 0.5em;
}

.manu-icon {
    margin-top: auto; /* Push to the bottom */
}

.manu-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.manu-card {
  margin: 0 0.5em;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensures cards stretch to fit their container */
  display: flex;
  flex-direction: column;
}
.manu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.manu-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0.9;
}

.manu-card .content {
  padding: 20px;
  flex-grow: 1; /* Ensures content stretches to fill available space */
}

.manu-card .tag {
  border-radius: 100px;
  color: var(--p-color);
  background-color: var(--section-bg-color);
  font-size: 15px;
  font-weight: var(--font-weight-light);
  padding: 2px 10px;
  display: inline-block;
  vertical-align: top;
  margin-right: 7px;
  margin-bottom: 10px;
}

.manu-card .cate {
  border-radius: 100px;
  color: var(--white-color);
  background-color: var(--primary-color);
  padding: 0px 4px;
  display: inline-block;
  vertical-align: top;
}

.manu-card h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.manu-card p {
  font-size: 1rem;
  color: #777;
}

.manu-card .price {
  padding: 0 20px 0 20px;
  font-size: 1rem;
  color: #222;
}

.manu-card .note {
  font-size: 0.8rem;
  color: #777;
}

.carousel-item {
  margin-bottom: 1.5rem; /* Adds space below each card */
}


.carousel-control-prev,
.carousel-control-next {
  background-color: none;
  opacity: 1;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  top: 50%;
  transition: box-shadow 0.2s ease, transform 0.2s ease; /* Smooth transition for hover effect */
  box-shadow: none; /* No shadow by default */
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  transform: scale(1.1); /* Slight scaling effect */
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);

}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: transparent; /* Remove background for icons */
  color: #000; /* Set icon color */
  font-size: 2rem;
}


@media (min-width: 576px) {
  .carousel-item {
    margin-right: 0;
    flex: 0 0 50%;
    display: block;
  }
  .carousel-inner {
    display: flex;
    padding-bottom: 1.5rem; /* Adjust space for smaller screens */
  }
}

/*---------------------------------------
packaging        
-----------------------------------------*/
.grid-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 20px auto;
      padding: 20px;
    }

    .grid-item {
      margin: 0 0.5em;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%; /* Ensures cards stretch to fit their container */
      display: flex;
      flex-direction: column;
    }

    .grid-item:hover {
      transform: translateY(-5px);
    }

    .grid-item img {
      width: 100%;
      height: auto;
      object-fit: cover;
      opacity: 0.8;
    }

    .grid-item h3 {
      font-size: 1.2rem;
      color: #333;
    }

    .grid-item p {
      font-size: 0.9rem;
      color: #666;
      margin: 10px 0 0;
    }
    .grid-item .tag {
      border-radius: 100px;
      color: var(--p-color);
      background-color: var(--section-bg-color);
      font-size: 15px;
      font-weight: var(--font-weight-light);
      padding: 2px 10px;
      display: inline-block;
      vertical-align: top;
      margin:10px;
    }
    .grid-item .price {
      padding: 0 20px 0 20px;
      font-size: 1rem;
      color: #222;
    }

    .grid-offer {
      margin: 0 0.5em;
      background: #f6f6f8;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%; /* Ensures cards stretch to fit their container */
      display: flex;
      flex-direction: column;
      padding: 20px;
    }
    .grid-offer:hover {
      transform: translateY(-5px);
    }
    .grid-offer p {
      font-size: 1.1rem;
      color: #666;
      margin: 10px 0 0;
    }
    .grid-offer h4 {
      font-size: 30px;
      text-align: left; 
      text-transform: uppercase;
    }
    .grid-offer h5 {
      font-size: 30px;
      text-align: center; 
      text-transform: uppercase;
      margin: 10px;
    }
    .grid-offer img {
      display: block;
      margin-left: auto;
      margin-right: auto;
      max-width: 100%; /* Ensures the image does not exceed the container's width */
      height: auto;    /* Maintains the aspect ratio */
      object-fit: contain; /* Ensures the image fits well within the space */
}

/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero-booking {
  padding-top: 120px;
  padding-bottom: 60px;
  position: relative;
  background: var(--section-bg-color);
}
.hero {
  padding-top: 120px;
  padding-bottom: 60px;
  position: relative;
}

.heroText {
  position: relative;
  z-index: 2;
}


@media screen and (min-width: 991px) {
  .hero {
    height: 75vh;
	min-height: 600px;
  }
}

.overlay {
  background: rgba(128,142,176, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.overlay.dark-overlay {
  background: rgba(0,0,0, 0.85);
}

.nav-tabs .nav-link {
  background: transparent;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid transparent;
  color: var(--border-color);
  font-weight: var(--font-weight-bold);
  margin: auto;
  position: relative;
  top: 1px;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active {
  background: transparent;
  border-color: transparent;
  border-bottom-color: var(--primary-color);
  color: var(--dark-color);
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 15px;
  padding-bottom: 15px;
  transition: background 0.3s ease-out;
}

.sticky-nav {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.sticky-nav .navbar-brand {
  color: var(--dark-color);
}

.sticky-nav .navbar-nav .nav-link{
  color: var(--p-color);
}


.navbar-brand {
  font-size: 40px;
  color: var(--white-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 25px;
  padding-left: 25px;
}


.navbar-nav .nav-link {
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-normal);
  padding-top: 15px;
  padding-bottom: 15px;
}



.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}


.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--p-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--p-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  floating btn            
-----------------------------------------*/
.floatingButtonWrap {
  display: block;
  position: fixed;
  bottom: 100px; 
  right: 45px;
  z-index: 999999999;
}


.floatingButtonInner {
  position: relative;
}

.floatingButton {
  display: block;
  width: 60px;
  height: 60px;
  text-align: center;
  background: -webkit-linear-gradient(45deg, #38b083, #0a5f40);
    background: -o-linear-gradient(45deg, #38b083, #0a5f40);
    background: linear-gradient(45deg, #38b083, #0a5f40);
  color: #fff;
  font-size: 28px;
  line-height: 50px;
  position: absolute;
  border-radius: 50% 50%;
  bottom: 0px;
  right: 0px;
  border: 5px solid #a0c9ba;
  /* opacity: 0.3; */
  opacity: 1;
  transition: all 0.4s;
}

.floatingButton .fa {
  font-size: 15px !important;
}

.floatingButton.open,
.floatingButton:hover,
.floatingButton:focus,
.floatingButton:active {
  opacity: 1;
  color: #fff;
}


.floatingButton .fa {
  transform: rotate(0deg);
  transition: all 0.4s;
}

.floatingButton.open .fa {
  transform: rotate(270deg);
}

.floatingMenu {
  position: absolute;
  bottom: 60px;
  right: 0px;
  /* width: 200px; */
  display: none;
}

.floatingMenu li {
  width: 100%;
  float: right;
  list-style: none;
  text-align: right;
  margin-bottom: 5px;
}

.floatingMenu li a {
  padding: 8px 15px;
  display: inline-block;
  background: #a0c9ba;
  color: black;
  border-radius: 5px;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.4s;
  /* -webkit-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.22);
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.22); */
  -webkit-box-shadow: 1px 3px 5px rgba(211, 224, 255, 0.5);
  box-shadow: 1px 3px 5px rgba(211, 224, 255, 0.5);
}

.floatingMenu li a:hover {
  margin-right: 10px;
  text-decoration: none;
}


.quizButtonWrap {
  position: fixed;
  bottom: 30px;
  right: 45px;
  z-index: 999999;
}

/* Use flexbox to line up badge and button */
.quiz-button-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

/* Remove position: absolute for this button only */
.floating-game-button {
  background: linear-gradient(45deg, #f2709c, #ff9472);
  border-color: #fbb1bd;
  position: static; /* ๐”ฅ important: so it stays in flex flow */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  line-height: 50px;
  border: 5px solid #fbb1bd;
}

/* The animated icon */
.animated-icon {
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* The NEW badge */
.quiz-badge {
  background-color: #ff4757;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/*---------------------------------------
  Modal            
-----------------------------------------*/

.modal-content {
  background-color: #fffdfb; /* เธเธฃเธตเธกเธเธงเธฅเน */
  border-radius: 1.5rem;
}

.modal-title {
  font-size: 1.25rem;
  color: #333;
}

.modal-body img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  opacity: 0.8;
}

.btn-outline-dark {
  border-color: #333;
  color: #333;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background-color: #333;
  color: #fff;
}


/*---------------------------------------
  About              
-----------------------------------------*/
.section-label{
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  padding-bottom: 12px;
}

.section-label::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:60px;
  height:2px;
  background: var(--primary-color);
}

.section-label-center::after{
  left: 50%;
  transform: translateX(-50%);
}

.about-image{
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: .3rem;
  opacity: 0.8;

}

.imgs-grid {
  display: grid;
  grid-template-columns: repeat(27, 1fr);
  position: relative;
  &:before {
    position: absolute;
    content: "";
    width: 255px;
    height: 217px;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-40%, -40%);
    z-index: -1;
  }
  .grid {
    position: relative;
    img {
      border-radius: 10px;
      max-width: 100%;
    }
    &.grid-1 {
      grid-column: 1 / span 18;
      grid-row: 1 / span 27;
    }
    &.grid-2 {
      grid-column: 19 / span 27;
      grid-row: 1 / span 5;
      padding-left: 20px;
    }
    &.grid-3 {
      grid-column: 16 / span 16;
      grid-row: 6 / span 27;
      padding-top: 20px;
    }

  }
}

.img-wrap {
  position: relative;
  &:before {
    position: absolute;
    content: "";
    width: 255px;
    height: 217px;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translate(-40%, -40%);
    z-index: -1;
  }
  img {
    border-radius: 20px;
  }
}


/*---------------------------------------
  OUR WORK              
-----------------------------------------*/
.work-thumb {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: opacity 0.5s ease, transform 0.5s ease; /* For Isotope filtering */
}

.work-thumb.hidden {
  opacity: 0; /* Hidden during filtering */
  transform: scale(0.8); /* Add a subtle scaling effect */
  pointer-events: none; /* Disable interaction with hidden items */
}

/* Work Image Styling */
.work-image-wrap {
  position: relative;
  overflow: hidden;
}

.work-image {
  border-radius: 0.3rem;
  transition: transform 0.5s ease, opacity 0.5s ease; /* Smooth hover effect */
}

.work-thumb:hover .work-image {
  opacity: 0.9;
  transform: scale(1.05);
}

.work-text-info {
  background: var(--section-bg-color);
  border-radius: .3rem;
  border-bottom: 5px solid var(--border-color);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 20px;
  width: 85%;
  margin: auto;
  margin-bottom: 20px;
  transition: filter 0.5s;
}

.work-thumb:hover .work-text-info {
  filter: blur(2px);
}

.work-title-test {
  
}

.work-title{
  position: relative;
  display: block;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: var(--font-weight-light);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding-bottom: 12px;
}


.work-tag {
  border-radius: 100px;
  color: var(--p-color);
  font-size: 12px;
  font-weight: var(--font-weight-light);
  padding: 2px 10px;
  display: inline-block;
  vertical-align: top;
  margin-right: 7px;
  margin-bottom: 10px;
}

.work-cate {
  border-radius: 100px;
  color: black;
  font-size: 12px;
  font-weight: var(--font-weight-light);
  padding: 2px 10px;
  display: inline-block;
  vertical-align: top;
  margin-right: 7px;
  margin-bottom: 10px;
  border: 1px solid black; /* Black border */
  background-color: transparent; /* Transparent background */
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--body-font-family);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--white-color);
  background-color: var(--primary-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  padding-top: 13px;
  padding-bottom: 13px;
}

.custom-form label {
  color: var(--p-color);
  font-weight: var(--font-weight-normal);
}

.custom-form button[type="submit"] {
  background: var(--primary-color);
  border: 0;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--dark-color);
  color: var(--white-color);
}

.subscribe-form .form-control {
  background: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-color: var(--white-color);
  color: var(--white-color);
}

.subscribe-form input {
  border-radius: 0;
}

.subscribe-form button[type="submit"] {
  background: var(--white-color);
  color: var(--dark-color);
  

}

/*---------------------------------------
  PRICING PLANS               
-----------------------------------------*/
.pricing {

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.pricing .container {
  position: relative;
  z-index: 2;
}

.pricing-plan {
  padding-top: 60px;
  position: relative;
}

.pricing-info {
  position: relative;
  text-align: left;
  color: white;
}

.pricing-image {
  position: relative;
  width: 170px;
}


.pricing-header {
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 30px;
}

.pricing-icon {
  font-size: 45px;
}

.pricing-name {
  margin-left: 50px;
}

.pricing-price {
  margin-left: auto;
}

.pricing-recommend {
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px 20px;
  position: absolute;
  top: 0;
  right: 0;
}

.pricing-body {
  margin-top: 60px;
  margin-right: 50px;
  margin-left: 95px;
}

.pricing-list {
  padding-left: 15px;
}

.pricing-list-item {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  line-height: normal;
  margin-top: 5px;
  margin-bottom: 5px;
}

/*---------------------------------------
  SERVICES               
-----------------------------------------*/
.services {
  background: var(--section-bg-color);
}

.services-oem{
  background: white;
}

.row-flex {
  display: flex;
  flex-wrap: wrap;
  
}

.row-flex > [class*='col-'] {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

/*---------------------------------------
  DIY           
-----------------------------------------*/
.diy {
  background: var(--section-bg-color);
}

/* DIY Card Image */
.diy-image-wrap{
  position:relative;
  overflow:hidden;
  border-radius:18px 18px 0 0;
}

.diy-card-img{
  width:100%;
  height:260px;
  object-fit:cover;

  filter:
    saturate(.95)
    contrast(1.02);

  transition:
    transform .5s ease,
    filter .4s ease;
}

.location-link:hover .diy-card-img{
  transform:scale(1.05);

  filter:
    saturate(1.05)
    contrast(1.05);
}

.diy-info {
  display: relative;
  text-align: left;
  padding: 20px 20px 10px;

.diy-info .price {
  padding: 0 20px 0 20px;
  font-size: 2rem;
  color: #222;
}

}
.diy-text-info {
  border-radius: .3rem;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 10px;
  width: 85%;
  margin: auto;
}


.diy-subheading{
  font-size:32px;
  font-weight:500;
  margin-bottom:12px;
}

.diy-subheading-desc{
  max-width:800px;
  margin:0 auto;
  color:#666;
  line-height:1.8;
}

.diy-tag {
  border-radius: 100px;
  color: var(--p-color);
  background-color: var(--section-bg-color);
  font-size: 15px;
  font-weight: var(--font-weight-light);
  padding: 2px 10px;
  display: inline-block;
  vertical-align: top;
  margin-right: 7px;
  margin-bottom: 10px;
}

.tag-new{
  display:inline-flex;
  align-items:center;
  gap:7px;

  padding:0;
  margin:0 0 10px;

  background:none;
  border:0;
  border-radius:0;

  color:var(--primary-color);

  font-size:12px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.tag-new::before{
  content:"";
  width:18px;
  height:1px;
  background:var(--primary-color);
  display:inline-block;
}

.card-meta{
  height:24px;
  margin:10px 0;
  display:flex;
  align-items:center;
}

.card-accent{
  width:40px;
  height:1px;
  background:var(--primary-color);
}

.diy-details{
  padding:0 20px 18px;
}

.diy-details-title{
  font-size:10px;
  font-weight:400;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:#999;
  margin-bottom:14px;
}

.diy-item{
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:10px 0;

  border-top:1px solid rgba(0,0,0,.06);
}

.diy-item-name{
  font-size:15px;
  color:#222;
}

.diy-item-desc{
  font-size:15px;
  color:#888;
}


/* Overlay "NEW" like locations vibe */
.corner-badge{
  position:absolute;
  top:14px;
  left:14px;

  background:#111;
  color:#fff;

  padding:8px 14px;
  border-radius:999px;

  font-size:12px;
  font-weight:600;

  box-shadow:0 10px 24px rgba(0,0,0,.25);
}
/* Booking button variant using your minimal icon-btn */
.icon-btn.primary{
  background:#111; color:#fff; border-color:#111;
}
.icon-btn.primary:hover{ background:#222; border-color:#222; }

/* Rotate chevron when expanded */
.toggle-rotate .chev{ transition: transform .25s ease; }
.toggle-rotate:not(.collapsed) .chev{ transform: rotate(180deg); }

/* Tidy list look inside collapse */
.diy-list .list-group-item{
  border-left:0; border-right:0; border-color:rgba(0,0,0,.075);
  padding:.6rem .75rem;
}

/* Minimal, luxe card */
.offer-card{
  background:#fff; border:1px solid #eee;
  box-shadow:0 8px 24px rgba(0,0,0,.05);
  transition:transform .25s ease, box-shadow .25s ease;
  display:flex; flex-direction:column;
}
.offer-card:hover{ transform:translateY(-2px); box-shadow:0 14px 32px rgba(0,0,0,.08); }

/* Tier separators */
.price-list li + li{ border-top:1px dashed rgba(0,0,0,.08); }

/* Callout pill */
.offer-callout{
  background: linear-gradient(180deg, #ffffff, #f8f9fb);
  border:1px solid rgba(0,0,0,.06);
  border-radius:12px;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
  padding:1rem .75rem .85rem;
}
.callout-kicker{
  position:absolute; top:-10px; left:14px;
  background:#111; color:#fff; font-size:.75rem; letter-spacing:.2px;
  padding:.2rem .5rem; border-radius:999px; box-shadow:0 4px 12px rgba(0,0,0,.15);
}

.diy-section-head{
  display:grid;
  grid-template-columns: 1fr 340px;
  gap:36px;
  align-items:start;
}

.diy-section-copy .tagline{
  display:block;
  margin-bottom:12px;
  font-size:12px;
  font-weight:600;
  letter-spacing:1.8px;
  text-transform:uppercase;
  color:var(--primary-color);
}

.diy-section-copy p{
  max-width:720px;
  line-height:1.8;
  color:#666;
}

.diy-highlight-list{
  list-style:none;
  padding:0;
  margin:22px 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
}

.diy-highlight-list li{
  font-size:14px;
  color:#555;
}

.diy-highlight-list i{
  color:var(--primary-color);
  margin-right:6px;
}

.diy-section-head{
  grid-template-columns: 1fr 380px;
}

.diy-price-mini{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:22px;
  padding:26px;
  box-shadow:0 12px 32px rgba(0,0,0,.05);
}

.diy-price-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
}

.pricing-badge-soft{
  background:rgba(56,176,131,.1);
  color:var(--primary-color);
  font-size:12px;
  font-weight:600;
  padding:6px 10px;
  border-radius:999px;
}

.diy-price-mini h3{
  font-size:22px;
  font-weight:600;
  margin:0;
}

.mini-price-list{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.mini-price-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 0;
  border-bottom:1px solid rgba(0,0,0,.06);
  font-size:14px;
  color:#666;
}

.mini-price-row strong{
  color:#111;
  font-size:15px;
  font-weight:600;
}

.mini-price-row.best{
  padding:14px 16px;
  border:1px solid rgba(56,176,131,.18);
  border-radius:14px;
  background:#fbfdfc;
}

@media (max-width:991px){
  .diy-section-head{
    grid-template-columns:1fr;
  }
}

.diy-pricing-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:22px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  overflow:hidden;
  transition:all .25s ease;
}

.diy-pricing-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 36px rgba(0,0,0,.1);
}

.pricing-badge{
  position:absolute;
  top:16px;
  right:16px;
  background:#000;
  color:#fff;
  font-size:12px;
  font-weight:600;
  padding:5px 10px;
  border-radius:999px;
}

.pricing-kicker{
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#888;
  font-weight:600;
}

.pricing-title{
  font-size:22px;
  font-weight:600;
  color:#111;
}

.pricing-sub{
  font-size:14px;
  color:#999;
}

.pricing-main{
  margin-top:22px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.pricing-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 0;
  border-bottom:1px dashed rgba(0,0,0,.08);
  font-size:15px;
  color:#555;
}

.pricing-row strong{
  color:#111;
  font-size:16px;
}

.pricing-row small{
  font-size:12px;
  color:#777;
}

.best-value{
  background:linear-gradient(180deg,#f7fbf9,#fff);
  border:1px solid rgba(56,176,131,.18);
  border-radius:14px;
  padding:14px;
  margin-top:4px;
}

.best-value small{
  display:block;
  margin-top:3px;
  color:var(--primary-color);
  font-weight:600;
}

.pricing-note{
  margin-top:18px;
  padding:10px 12px;
  border-radius:999px;
  background:#f6f6f6;
  color:#666;
  font-size:13px;
  text-align:center;
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background: var(--footer-bg-color);
  padding-top: 100px;
  padding-bottom: 100px;
}

.site-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tooplate-link a {
	color: var(--white-color);
}

.footer-menu {
  padding: 0;
}

.footer-menu-item {
  display: block;
  list-style: none;
}

.footer-menu-link,
.footer-link {
  display: inline-block;
  color: rgba(255,255,255,0.8);
  font-size: var(--copyright-text-font-size);
  margin-top: 5px;
  margin-bottom: 5px;
}

.footer-menu-link:hover,
.footer-link:hover {
  color: var(--white-color);
  text-decoration: underline;
}

.site-footer .social-icon-link,
.site-footer .copyright-text {
  color: var(--white-color);
  font-size: var(--copyright-text-font-size);
}

.site-footer .social-icon {
  text-align: left;
}

.site-footer .copyright-text {
  font-size: var(--copyright-text-font-size);
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  font-size: 1rem;
  display: inline-block;
  vertical-align: top;

  margin-right: 5px;
}

.social-icon-link:hover {
  color: var(--primary-color);
}

/*---------------------------------------
  Location               
-----------------------------------------*/
/* Card container (yours, kept) */
.location-link{
  background:#fff;border-radius:10px;box-shadow:0 4px 6px rgba(0,0,0,.1);
  overflow:hidden;transition:transform .3s ease, box-shadow .3s ease;
  height:100%;display:flex;flex-direction:column;
}
.location-link:hover{ transform:translateY(-5px);box-shadow:0 8px 12px rgba(0,0,0,.2); }

/* Image should not reuse .location-link */
.location-img{ width:100%; max-height: 220px; object-fit:cover; opacity:.8; display:block; }

/* NEW: top bar with tag + minimal buttons on the same line */
.location-topbar{
  display:flex; align-items:center; 
  justify-content:space-between;
  padding:10px 12px 6px 12px; gap:.5rem;
}

/* Tag row under the image */
.meta-row{
  display:flex;
  padding: 10px 10px 0;
}


/* Bottom action bar */
.location-actions{
  margin-top: auto; 
  padding: 12px;
  display: flex;
  gap: .5rem;
  border-top: 1px solid rgba(0,0,0,.06);
  justify-content: flex-end;
  flex-wrap: nowrap;  
}

/* Make the two buttons balanced and minimal */
.location-actions .icon-btn{
  flex: 0 0 auto;
  white-space: nowrap; 
}

@media (max-width: 575.98px){
  .location-actions .icon-btn span{ display:none; }
}

/* Tag (kept, slightly softened) */
.location-link .tag{
  font-size:.85rem; background:rgba(0,0,0,.06); color:#555;
  padding:5px 10px; border-radius:15px; display:inline-block; margin:0;
}

/* Minimal buttons (ghost style) */
.actions-min{ display:flex; align-items:center; gap:.4rem; }
.icon-btn{
  border:1px solid rgba(0,0,0,.12); background:#fff; color:#222;
  border-radius:999px; padding:.35rem .6rem; font-size:.85rem;
  line-height:1; display:inline-flex; align-items:center; gap:.35rem;
  box-shadow:none;
}
.icon-btn:hover{ background:#f7f7f8; border-color:rgba(0,0,0,.2); }
.icon-btn:active{ background:#f1f1f3; }
.icon-btn.icon-only{ padding:.35rem .5rem; } /* for compact icon-only */

/* Title & meta */
.location-link .content{ padding:6px 12px 12px; font-size:10px; text-transform: uppercase; }
.location-link h4{ font-size:1.1rem; margin:6px 0 4px;  }
.location-link p{ font-size:1rem; color:#777; margin:0; }

@media (max-width:575.98px){
  .location-link h4{ font-size:1rem; }
  .location-link p{ font-size:.95rem; }
}

/* wrap the image so we can pin the badge to its bottom */
.image-wrap{
  position: relative;
  border-radius: 10px 10px 0 0;   /* match your card */
  overflow: hidden;

}

/* bottom-of-image badge for pop-ups */
.img-badge{
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .7rem;
  font-size: .8rem;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(255, 255, 255, .45);
  color: #111;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  backdrop-filter: blur(6px);
}


.img-badge i{ font-size: 1rem; line-height: 1; }


/*---------------------------------------
  ANIMATION               
-----------------------------------------*/
@media (prefers-reduced-motion) {
	[data-animation] {
		animation: none;
	}
}

.animation-group {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin-top: 30px;

	@media screen and (max-width: 420px) {
		display: grid;
		gap: 10px;
		grid-template-columns: repeat(2, auto);
	}

	[data-animation] {

		align-items: center;
		cursor: pointer;
		font-style: normal;


		opacity: 0;
		&.animate {
			opacity: 1;
		}

		&:nth-child(1) {
			animation-delay: 10ms;
		}
		&:nth-child(2) {
			animation-delay: 100ms;
		}
		&:nth-child(3) {
			animation-delay: 200ms;
		}
		&:nth-child(4) {
			animation-delay: 400ms;
		}
	}
}

/* Animations */
:root {
	--animate-duration: 1.5s;
	--animate-delay: 1s;
	--animate-repeat: 1;
}

.animated {
	animation-duration: 1s;
	animation-duration: var(--animate-duration);
	animation-fill-mode: both;
}
@keyframes pulse {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}

	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-20%, 0, 0);
		transform: translate3d(-20%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  body {
    padding-top: 80px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }
	
  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-padding-manu {
    padding-top: 80px;
  }

  .section-padding-oem {
    padding-top: 80px;
  }

  .custom-btn {
    font-size: var(--copyright-text-font-size);
    padding: 8px 16px;
  }

  .navbar {
    background: var(--white-color);
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
  }

  .navbar-brand {
    color: var(--dark-color);
  }

  .navbar-nav .nav-link {
    color: var(--p-color);
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .site-footer {
    padding-top: 70px;
    padding-bottom: 50px;
  }

  .site-footer-bottom,
  .site-footer .social-icon {
    text-align: center;
  }
}

@media screen and (max-width: 580px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 32px;
  }

  .paddingText {
    padding: 25px;
  }

  .pricing-plan {
    padding: 60px 30px 20px 30px;
  }

  .pricing-header {
    padding-bottom: 20px;
  }

  .pricing-body {
    margin-top: 30px;
    margin-right: 0;
    margin-left: 0;
  }
}

@media screen and (max-width: 480px) {
  .pricing-name,
  .pricing-price {
    margin-bottom: 0;
  }

  .pricing-price {
    max-width: 45px;
    margin-right: auto;
  }
}


/*---------------------------------------
  BOOKING PAGE               
-----------------------------------------*/

.booking-section{
  background: linear-gradient(180deg, #fff, #f7f8f7);
}

.booking-header{
  max-width: 820px;
  margin: 0 auto 42px;
}

.booking-kicker{
  display:block;
  margin-bottom:12px;
  font-size:12px;
  font-weight:600;
  letter-spacing:1.8px;
  text-transform:uppercase;
  color:var(--primary-color);
}

.booking-header h1{
  font-size:clamp(30px, 4vw, 48px);
  font-weight:500;
  margin-bottom:14px;
}

.booking-header p{
  font-size:17px;
  line-height:1.8;
  color:#666;
}

.booking-card,
.booking-side-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:24px;
  box-shadow:0 14px 40px rgba(0,0,0,.06);
}

.booking-card{
  padding:32px;
}

.booking-side-card{
  position:sticky;
  top:110px;
  padding:26px;
}

.booking-step{
  display:flex;
  align-items:center;
  gap:12px;
  margin:30px 0 18px;
}

.booking-step:first-of-type{
  margin-top:0;
}

.booking-step span{
  width:34px;
  height:34px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(56,176,131,.12);
  color:var(--primary-color);
  font-size:13px;
  font-weight:700;
}

.booking-step h2{
  font-size:18px;
  font-weight:600;
  margin:0;
  letter-spacing:.4px;
}

.booking-form label{
  font-size:14px;
  font-weight:600;
  color:#444;
  margin-bottom:8px;
}

.booking-form label small,
.form-note{
  font-size:12px;
  color:#999;
  font-weight:400;
}

.booking-form .form-control,
.booking-form .form-select,
.booking-form .select2-container--bootstrap-5 .select2-selection{
  border:1px solid rgba(0,0,0,.1);
  border-radius:14px;
  min-height:48px;
  padding:12px 14px;
  box-shadow:none;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus{
  border-color:var(--primary-color);
  box-shadow:0 0 0 .2rem rgba(56,176,131,.12);
}

.booking-submit{
  width:100%;
  margin-top:24px;
  border:0;
  border-radius:999px;
  padding:15px 28px;
  background:var(--primary-color);
  color:#fff;
  font-weight:600;
  letter-spacing:.3px;
  transition:all .25s ease;
}

.booking-submit:hover{
  background:#2f9b73;
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(56,176,131,.25);
}

.booking-loading{
  margin-top:16px;
  color:#555;
  display:flex;
  align-items:center;
  gap:10px;
}

.booking-side-card h3{
  font-size:24px;
  font-weight:600;
  margin-bottom:6px;
}

.booking-tips{
  margin-top:22px;
  padding-top:18px;
  border-top:1px dashed rgba(0,0,0,.1);
}

.booking-tips p{
  display:flex;
  gap:8px;
  align-items:flex-start;
  font-size:14px;
  color:#666;
  margin-bottom:10px;
}

.booking-tips i{
  color:var(--primary-color);
}

.booking-alert{
  border:0;
  border-radius:16px;
  padding:18px 20px;
  margin-bottom:24px;
  font-size:15px;
}

.booking-alert hr{
  margin:12px 0;
  opacity:.12;
}

.booking-alert label{
  font-size:14px;
}
.diy-select-hint{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  background:rgba(56,176,131,.1);
  color:var(--primary-color);
  font-size:12px;
  font-weight:600;
  padding:6px 10px;
}

.diy-tag-group{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.diy-tag-group input[type="checkbox"]{
  display:none;
}

.diy-tag-group label{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  color:#555;
  font-size:14px;
  font-weight:500;
  cursor:pointer;
  transition:all .25s ease;
}

.diy-tag-group label:hover{
  border-color:var(--primary-color);
  color:var(--primary-color);
  transform:translateY(-1px);
}

.diy-tag-group input:checked + label{
  background:var(--primary-color);
  border-color:var(--primary-color);
  color:#fff;
  box-shadow:0 8px 20px rgba(56,176,131,.18);
}

.diy-tag-group input:checked + label::before{
  content:"✓";
  margin-right:8px;
  font-weight:700;
}

.diy-tag-group input:disabled + label{
  opacity:.35;
  cursor:not-allowed;
  background:#f5f5f5;
  color:#999;
  border-color:rgba(0,0,0,.08);
  box-shadow:none;
  transform:none;
}

@media (max-width:768px){
  .diy-tag-group{
    gap:8px;
  }

  .diy-tag-group label{
    font-size:13px;
    padding:10px 14px;
  }
}

@media (max-width: 991px){
  .booking-side-card{
    position:relative;
    top:auto;
  }
}

@media (max-width: 575px){
  .booking-card,
  .booking-side-card{
    padding:22px;
    border-radius:18px;
  }

  .booking-header{
    margin-bottom:28px;
  }
}