/**
* Template Name: sugiharti
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: 
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37373f; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ce1212; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #7f7f90;  /* The default color of the main navmenu links */
  --nav-hover-color: #ce1212; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #7f7f90; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ce1212; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f2f2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1f1f24;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #37373f;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 120px;
  margin-right: 150px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--default-font);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 36px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: color-mix(in srgb, var(--nav-color) 80%, black 50%);
  }
} /* ✅ Tambahkan ini: penutup blok desktop */

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --heading-font: var(--default-font);
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
}

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .address p {
  margin-bottom: 0px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .copyright {
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: var(--default-font);
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 56px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  display: inline-block;
  text-transform: uppercase;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 48px;
  font-weight: 500;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  perspective: 1000px;
}

/* FULLSCREEN WRAPPER FIX */
#hero-wrapper {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
}

/* GRADIENT OVERLAY */
.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.7));
  z-index: 1;
  pointer-events: none;
}

/* SLIDE BASE */
.hero-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 1.2s ease,
    transform 1.6s ease,
    filter 1.3s ease;
  z-index: 1;
  filter: blur(6px);
}

.hero-slider .slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
  filter: blur(0);
}

/* PARALLAX LIGHT EFFECT */
.hero-slider .slide.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      rgba(255,255,255,0.12) 0%,
      rgba(0,0,0,0.25) 100%);
  animation: parallaxZoom 8s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes parallaxZoom {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.05); opacity: 0.9; }
}

/* SLIDE CONTENT */
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0,0,0,0.65);
  pointer-events: none;
}

/* HEADLINE */
.slide-content h2 {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide.active .slide-content h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* SUBHEAD */
.slide-content h3 {
  font-size: 1.3rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide.active .slide-content h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

/* COLOR HELPERS */
.text-blue { color: #002F6C; }
.text-maroon { color: #800000; }

/* BUTTON */
.btn-bubble {
  display: inline-block;
  margin-top: 15px;
  padding: 0.9em 2.4em;
  border-radius: 50px;
  background: #800000;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.25);
  box-shadow: 0 0 25px rgba(128,0,0,0.45);
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(60px);
  pointer-events: auto;
}

.slide.active .btn-bubble {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.3s;
}

.btn-bubble:hover {
  background: #9e1b1b;
  box-shadow: 0 0 35px rgba(155,0,0,0.8);
  transform: scale(1.08);
}

/* NAV BUTTONS */
.hero-slider .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  border: 2px solid rgba(128,0,0,0.4);
  box-shadow: 0 0 12px rgba(128,0,0,0.3);
  transition: all 0.3s ease;
}

.hero-slider .nav:hover {
  background: rgba(128,0,0,0.2);
  transform: translateY(-50%) scale(1.15);
}

.hero-slider .prev { left: 2%; }
.hero-slider .next { right: 2%; }

.hero-slider .nav svg {
  width: 26px;
  height: 26px;
  stroke: #800000;
}

/*==============================================================
  RESPONSIVE FIX — MOBILE FULL IMAGE
==============================================================*/
@media (max-width: 600px) {

  .hero-slider,
  #hero-wrapper,
  .hero-slider .slide {
    height: 100vh !important;
    min-height: 100vh !important;
  }

  /* HINDARI GAMBAR KE-CROP */
  .hero-slider .slide {
    background-size: cover !important;
    background-position: center top !important;
    transform: scale(1) !important;
    filter: none !important;
  }

  .slide-content h2 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .slide-content h3 {
    font-size: 1rem;
  }

  .btn-bubble {
    padding: 0.7em 1.6em;
    font-size: 0.85rem;
  }

  .hero-slider .nav {
    width: 40px;
    height: 40px;
  }

  .hero-slider .nav svg {
    width: 20px;
    height: 20px;
  }
}

/* ===== WRAPPER WAJIB FULL HEIGHT ===== */
#hero-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

/* ===== FIX AVOID CROPPING ===== */
.hero-slider .slide {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* ============================
   MOBILE FIX — NO CROPPING
   ============================ */
@media (max-width: 600px) {

  /* Paksa semua area mengikuti tinggi layar */
  .hero-slider,
  #hero-wrapper,
  .hero-slider .slide {
    height: 100vh !important;
    min-height: 100vh !important;
  }

  /* HAPUS efek cinematic agar gambar tidak ke-*crop* */
  .hero-slider .slide {
    transform: none !important;
    filter: none !important;
    background-position: top center !important;
  }

  /* Sesuaikan teks */
  .slide-content h2 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
  }
  .slide-content h3 {
    font-size: 1rem !important;
  }

  /* Tombol */
  .btn-bubble {
    padding: 0.7em 1.5em !important;
    font-size: 0.85rem !important;
  }

  /* Navigasi */
  .hero-slider .nav {
    width: 38px !important;
    height: 38px !important;
  }
  .hero-slider .nav svg {
    width: 18px !important;
    height: 18px !important;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  position: relative;
  overflow: hidden;
}

/* Statistik */
.about-stats h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #002F6C;
  margin-bottom: 5px;
}
.about-stats p {
  font-size: 14px;
  color: #555;
}

/* Tombol maroon */
.btn-about {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 32px;
  border-radius: 50px;
  background: #800000;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(128, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.btn-about:hover {
  background: #a00000;
  box-shadow: 0 5px 15px rgba(128, 0, 0, 0.5);
  transform: translateY(-2px);
}

/* Hover efek gambar */
.about-img img {
  transition: all 0.4s ease;
  border-radius: 12px;
}
.about-img:hover img {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(0, 47, 108, 0.3);
}

/* Background shape dekoratif */
.about-bg-shape {
  position: absolute;
  right: -100px;
  top: 150px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle at top left, #002F6C 30%, transparent 70%);
  opacity: 0.12;
  border-radius: 50%;
  z-index: 0;
  animation: floaty 6s ease-in-out infinite alternate;
}
@keyframes floaty {
  0% { transform: translateY(0px); }
  100% { transform: translateY(20px); }
}

/* Quotes Box */
.book-a-table {
  text-align: center;
  border: 3px solid rgba(0,47,108,0.2);
  padding: 20px;
  background: rgba(255,255,255,0.85);
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.book-a-table:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0,47,108,0.15);
}
.book-a-table h3 {
  font-size: 1.2rem;
  color: #002F6C;
  margin-bottom: 5px;
}
.book-a-table p {
  color: #800000;
  font-weight: 500;
  font-size: 1rem;
  margin: 0;
}

/* Responsif */
@media (max-width: 767px) {
  .about-stats { flex-direction: column; gap: 15px; }
  .about-stats h4 { font-size: 1.6rem; }
  .btn-about { padding: 10px 24px; font-size: 0.95rem; }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  position: relative;
  padding: 100px 0 140px;
  background: linear-gradient(to bottom right, #ffffff, #f4f7fb);
  overflow: hidden;
}

/* Wave Background Animation */
.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave {
  position: relative;
  display: block;
  width: 200%;
  animation: moveWave 10s linear infinite;
}

@keyframes moveWave {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* WHY BOX LEFT */
.why-us .why-box {
  background: var(--accent-color);
  color: #fff;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.why-us .why-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.why-us .why-box h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 20px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: #fff;
  color: #800000;
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.why-us .why-box .more-btn:hover {
  background: #e8e8e8;
}

/* ICON BOX MAIN */
.icon-box {
  background: #fff;
  text-align: center;
  padding: 40px 25px;
  border-radius: 20px;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
}

.icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(128,0,0,0.1);
}

/* ICON INSIDE BOX */
.icon-box i {
  font-size: 42px;
  color: var(--accent-color);
  background: rgba(128,0,0,0.08);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.icon-box:hover i {
  background: var(--accent-color);
  color: #fff;
  transform: scale(1.15) rotate(8deg);
}

/* TITLE & TEXT */
.icon-box h4 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}

.icon-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* COUNTER */
.count-up {
  margin-top: 25px;
}

.count-up .counter {
  font-size: 36px;
  font-weight: 700;
  color: #800000;
}

.count-up p {
  font-size: 14px;
  color: #555;
}

/* LIGHT GLOW ON HOVER */
.icon-box:hover {
  box-shadow: 0 0 30px rgba(128, 0, 0, 0.15);
}

/*--------------------------------------------------------------
# MOBILE FIX — Counter Tidak Muncul + Parallax OFF
--------------------------------------------------------------*/
@media (max-width: 600px) {

  /* Matikan parallax supaya counter tidak hilang */
  .parallax-item {
    transform: none !important;
  }

  /* Biar tidak terlalu mepet */
  .icon-box {
    padding: 32px 22px;
  }

  .count-up .counter {
    font-size: 30px;
  }

  .why-us {
    padding: 70px 0 120px;
  }
}

/*--------------------------------------------------------------
# Customer
--------------------------------------------------------------*/
:root {
  --lb-bg: #f7f8fa;
  --lb-panel: #ffffff;
  --lb-text: #7a1a1a; /* maroon elegan */
  --lb-muted: #9c0303;
  --lb-blue: #b0b6bf;
  --lb-green: #d8dbdf;
  --lb-ring: rgba(156, 163, 175, 0.35);
  --lb-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
  --lb-shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.12);
  --logo-h-mobile: 68px;
  --logo-h-desktop: 104px;
  --cell-pad-y: 18px;
  --cell-pad-x: 24px;
}

/* ===== Section Container ===== */
.logos-section.enhanced {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(209, 213, 219, 0.06), transparent 70%), var(--lb-bg);
  color: var(--lb-text);
  padding: 60px 0;
}

.logos-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header ===== */
.logos-section .logos-header {
  text-align: center;
  margin-bottom: 30px;
}

.logos-section .logos-header h2 {
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.1;
  font-weight: 900;
  color: var(--lb-text);
  margin: 0 0 12px;
  text-transform: uppercase;
}

.logos-section .logos-header .bar {
  height: 3px;
  width: 160px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lb-blue), var(--lb-green));
  box-shadow: 0 4px 12px rgba(156, 163, 175, 0.25);
}

/* ===== Swiper ===== */
.logos-section .swiper {
  overflow: visible;
}

.logos-section .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important;
}

.logos-section .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--cell-pad-y) var(--cell-pad-x);
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--lb-ring);
  box-shadow: var(--lb-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  min-height: calc(var(--logo-h-mobile) + var(--cell-pad-y) * 2);
}

@media (min-width: 768px) {
  .logos-section .swiper-slide {
    min-height: calc(var(--logo-h-desktop) + var(--cell-pad-y) * 2);
  }
}

.logos-section .swiper-slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--lb-shadow-lg);
  border-color: rgba(156, 163, 175, 0.45);
}

/* ===== Logo ===== */
.logos-section .logo {
  height: var(--logo-h-mobile);
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.95);
  opacity: 0.9;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

@media (min-width: 768px) {
  .logos-section .logo {
    height: var(--logo-h-desktop);
  }
}

.logos-section .swiper-slide:hover .logo {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

/* ===== Client Name ===== */
.client-name {
  font-size: 14px;
  color: var(--lb-muted);
  margin-top: 6px;
  text-align: center;
  display: block;
  font-weight: 500;
}
/* === WAVE PARALLAX (Bagian Atas) === */
.wave-container.top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 0;
}

.wave-container.top .wave {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
  transform: rotate(180deg); /* dibalik agar gelombang turun ke bawah */
}
/* === Wave Bottom (Ombak Bawah Maroon) === */
.wave-bottom {
  position: relative;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.wave-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 2px);
  height: 120px;
}

.wave-bottom path {
  animation: waveFloat 6s ease-in-out infinite alternate;
}

@keyframes waveFloat {
  0%   { d: path("M0,224L60,197.3C120,171,240,117,360,96C480,75,600,85,720,112C840,139,960,181,1080,186.7C1200,192,1320,160,1380,144L1440,128V320H0Z"); }
  50%  { d: path("M0,224L60,214.7C120,205,240,139,360,122.7C480,107,600,149,720,170.7C840,192,960,192,1080,181.3C1200,171,1320,149,1380,138.7L1440,128V320H0Z"); }
  100% { d: path("M0,224L60,197.3C120,171,240,117,360,96C480,75,600,85,720,112C840,139,960,181,1080,186.7C1200,192,1320,160,1380,144L1440,128V320H0Z"); }
}

/*--------------------------------------------------------------
# Product Section
--------------------------------------------------------------*/
.product-section {
  padding: 60px 0;
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ---------- Toolbar ---------- */
.product-toolbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 25px auto 40px;
}

.toolbar-item {
  display: flex;
  align-items: center;
  background: #f8f8f8;
  border-radius: 8px;
  padding: 8px 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.toolbar-item i {
  margin-right: 8px;
  color: #1abc9c;
  font-size: 16px;
}

.toolbar-item select,
.toolbar-item input {
  border: none;
  background: transparent;
  font-size: 15px;
  outline: none;
}

/* ---------- Product Grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  max-width: 320px;
  width: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.product-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #f8f8f8;
  border-bottom: 3px solid #1abc9c;
}

.product-info {
  padding: 15px;
  text-align: left;
}

.product-info h4 {
  font-size: 16px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 5px;
}

.product-info p {
  font-size: 14px;
  color: #555;
  margin: 8px 0 14px;
  line-height: 1.5em;
  height: 42px;
  overflow: hidden;
}

.btn-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.btn-detail {
  background: #1abc9c;
  border: none;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}
.btn-detail:hover { background: #16a085; }

.btn-wa {
  background-color: #25D366;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
  text-decoration: none;
}
.btn-wa:hover { background-color: #1ebe5d; }

/* ==========================================================
   🟦 PRODUCT MODAL — Shopee/Tokopedia Style
   ========================================================== */
.product-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 40px 15px;
}

.product-modal.show {
  display: flex;
  animation: fadeZoomIn 0.3s ease forwards;
}

.modal-content {
  background: #fff;
  border-radius: 14px;
  width: 95%;
  max-width: 1000px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  cursor: pointer;
  color: #444;
  transition: 0.3s;
  z-index: 10;
}
.close:hover { color: #1abc9c; }

.modal-body {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding: 40px;
}

.modal-left {
  flex: 1 1 450px;
  text-align: center;
}

.zoom-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  height: 420px;
  margin: 0 auto;
  border-radius: 10px;
  background-color: #f7f7f7;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: background-size 0.2s ease, background-position 0.2s ease;
}

.zoom-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
}

.zoom-frame:hover img { opacity: 0; }
.zoom-frame:hover {
  background-size: 200%;
  cursor: zoom-in;
}

/* ---------- Thumbnails ---------- */
.thumb-gallery {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  overflow-x: auto;
  justify-content: flex-start;
  padding-bottom: 5px;
}
.thumb-gallery::-webkit-scrollbar {
  height: 6px;
}
.thumb-gallery::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 6px;
}
.thumb-gallery img {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
  border: 2px solid transparent;
}
.thumb-gallery img:hover,
.thumb-gallery img.active {
  opacity: 1;
  border-color: #1abc9c;
}

/* ---------- Modal Info ---------- */
.modal-right {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.modal-right h2 {
  font-size: 22px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.modal-right p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-contact {
  display: inline-block;
  background: #1abc9c;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.btn-contact:hover { background: #16a085; }

.btn-back {
  margin-top: 12px;
  background: #ccc;
  color: #333;
  padding: 8px 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.btn-back:hover { background: #999; }

/* ---------- Animation ---------- */
@keyframes fadeZoomIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .modal-body { flex-direction: column; align-items: center; padding: 25px; }
  .zoom-frame { height: 320px; max-width: 100%; }
  .modal-right { text-align: center; }
  .toolbar-item { width: 100%; max-width: 320px; }
}
/* ==== GRID FOTO (HALAMAN UTAMA) ==== */
.product-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #f8f8f8;
  border-bottom: 3px solid #1abc9c;
  border-radius: 8px 8px 0 0;
}

/* ==== FOTO UTAMA DI MODAL ==== */
.zoom-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  height: 420px;
  margin: 0 auto;
  border-radius: 10px;
  background-color: #f7f7f7;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: background-size 0.2s ease, background-position 0.2s ease;
}

.zoom-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
}

.zoom-frame:hover img { opacity: 0; }
.zoom-frame:hover {
  background-size: 200%;
  cursor: zoom-in;
}

/* ==== THUMBNAIL FOTO ==== */
.thumb-gallery img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
  border: 2px solid transparent;
}
.thumb-gallery img.active,
.thumb-gallery img:hover {
  opacity: 1;
  border-color: #1abc9c;
}

/*--------------------------------------------------------------
# Download Section
--------------------------------------------------------------*/
.download {
  padding: 100px 0;
  background: linear-gradient(to bottom right, #f8f9fa, #ffffff);
}

.download .section-title h2 {
  font-weight: 700;
  color: #003566;
}

.download .section-title .description-title {
  color: #ce1212;
}

.download-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(40px);
}

.download-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.download-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.download-card .icon {
  font-size: 50px;
  color: #ce1212;
  margin-bottom: 20px;
}

.download-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #003566;
}

.download-card p {
  color: #555;
  font-size: 15px;
  margin-bottom: 25px;
}

.btn-download {
  background-color: #ce1212;
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-download:hover {
  background-color: #a50e0e;
  transform: scale(1.05);
  color: #fff;
}

.btn-outline-preview {
  border: 2px solid #ce1212;
  color: #ce1212;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-preview:hover {
  background-color: #ce1212;
  color: #fff;
  transform: scale(1.05);
}

/* Responsif */
@media (max-width: 768px) {
  .download-card {
    margin-bottom: 20px;
  }
}
.modal-content {
  border-radius: 15px;
  overflow: hidden;
}
.modal-body {
  background-color: #f9f9f9;
}

/*--------------------------------------------------------------
# Project Section
--------------------------------------------------------------*/
.shi-project {
  padding: 100px 0;
  background: #f8f9fa;
}

.shi-project .shi-project-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.4s ease;
}

.shi-project .shi-project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shi-project .shi-project-item:hover img {
  transform: scale(1.08);
}

.shi-project .shi-project-item:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.4s ease;
}

.shi-project .shi-project-item:hover:before {
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
}

.shi-project .project-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.shi-project .shi-project-item:hover .project-info {
  opacity: 1;
  transform: translateY(0);
}

.shi-project .project-info h5 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.shi-project .project-info p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.shi-project .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(0,0,0,0.3);
  opacity: 1;
}

.shi-project .swiper-pagination-bullet-active {
  background-color: #ce1212;
}

#shiProjectPreview img {
  max-height: 90vh;
  object-fit: contain;
}

/*--------------------------------------------------------------
# Section Quotation
--------------------------------------------------------------*/
.shi-quotation-section {
  position: relative;
  background: linear-gradient(135deg, #fefefe 0%, #f7f8fb 100%);
  overflow: hidden;
  padding: 80px 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

/* Bubble Background - DISABLED IN MOBILE */
.bubble-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  z-index: 0;
}
.bubble {
  position: absolute;
  bottom: -150px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
  animation: floatUp 20s infinite ease-in;
}

@keyframes floatUp {
  0% {transform: translateY(0) scale(1);opacity: 0.4;}
  100% {transform: translateY(-100vh) scale(1);opacity: 0;}
}

/* Title */
.section-title h2 {
  font-weight: 700;
  font-size: 32px;
  color: #222;
}
.section-title h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #ce1212;
  margin: 10px auto 0;
}
.section-title p {
  color: #555;
  margin-top: 10px;
}

/* Layout */
.shi-quotation-section .container {
  position: relative;
  z-index: 2;
}

.reservation-img {
  background-size: cover;
  background-position: center;
  min-height: 420px;
  border-radius: 16px 0 0 16px;
}

.reservation-form-bg {
  background: #ffffff;
  padding: 45px;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

/* Input */
.form-control {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 12px 15px;
  background: #fff;
  transition: border-color 0.2s ease;
}
.form-control:focus {
  border-color: #ce1212;
  box-shadow: none;
}
label {
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}

/* Button */
.btn-submit {
  background: linear-gradient(90deg, #ce1212, #ff4b2b);
  color: #fff;
  border: none;
  padding: 14px 38px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(206,18,18,0.25);
}
.btn-submit:hover {
  transform: translateY(-3px);
}

/* Success Icon */
.success-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  color: #28a745;
  font-size: 64px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.success-icon.active {
  opacity: 1;
}

/* Feedback */
.form-feedback {
  text-align: center;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.form-feedback.success {color:#28a745;opacity:1;}
.form-feedback.error {color:#dc3545;opacity:1;}

/* ============================
   ANIMATION LIGHT VERSION
============================ */

/* Animasi lembut tanpa blur / transform berat */
.fade-slide-up {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.fade-slide-up.active {
  opacity: 1;
}

.scale-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.scale-in.active {
  opacity: 1;
}

.blur-reveal {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.blur-reveal.active {
  opacity: 1;
}

/* ============================
   MOBILE OPTIMIZATION MODE
============================ */

@media (max-width: 768px) {

  /* Hapus bubble */
  .bubble-bg {
    display: none !important;
  }

  /* Hilangkan transform/blur sepenuhnya */
  .fade-slide-up,
  .scale-in,
  .blur-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  /* Form */
  .reservation-img {
    border-radius: 16px;
    min-height: 250px;
  }

  .reservation-form-bg {
    border-radius: 16px;
    padding: 25px;
    box-shadow: none;
  }

  .shi-quotation-section {
    padding: 50px 0;
  }
}

/*--------------------------------------------------------------
# Section Titles (Global)
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  margin-bottom: 40px; /* lebih lega antar section */
}

/* Judul utama (H2) - biru industrial */
.section-title h2 {
  color: #003566; /* Biru profesional */
  font-size: 40px; /* sebelumnya 32px, kini lebih besar */
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase; /* opsional: tampil tegas */
}

/* Subjudul (p & .subtitle) - merah brand */
.section-title p,
.section-title .subtitle {
  color: #ce1212; /* Warna aksen utama */
  font-size: 20px; /* sebelumnya 16px, kini lebih besar */
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Efek halus saat hover */
.section-title h2,
.section-title p {
  transition: color 0.3s ease, transform 0.3s ease;
}

.section-title:hover h2 {
  color: #00264d; /* Biru lebih pekat saat hover */
}

.section-title:hover p {
  color: #9c0303; /* Merah lebih tua saat hover */
}

/* Responsif - tetap proporsional di HP */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 30px;
  }
  .section-title p,
  .section-title .subtitle {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Contact / Maps Section
--------------------------------------------------------------*/
#contact {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* === SECTION TITLE (Selaras Semua Section, Tanpa Garis Bawah) === */
#contact .section-title {
  text-align: center;
  margin-bottom: 60px;
}

#contact .section-title h2 {
  font-size: 34px;
  font-weight: 800;
  color: #003566;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

#contact .section-title p {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-top: 12px;
}

#contact .section-title .description-title {
  color: #ce1212;
  font-weight: 700;
}

/* === BOX KONTAK === */
.contact-info-box {
  background: #fff;
  border-radius: 15px;
  border: 1px solid #eee;
  padding: 35px 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-box h3 {
  font-weight: 700;
  color: #003566;
  margin-bottom: 20px;
}

.contact-info-box .info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.contact-info-box .info-item i {
  font-size: 22px;
  color: #ce1212;
  margin-top: 3px;
}

.contact-info-box .info-item p {
  color: #444;
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

.contact-info-box a {
  color: #003566;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-box a:hover {
  color: #ce1212;
}

/* === MAP === */
.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.map-container:hover {
  transform: scale(1.01);
}

/* === ANIMASI === */
#contact .contact-info-box,
#contact .map-container {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

#contact .contact-info-box.visible,
#contact .map-container.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
  #contact {
    padding: 70px 0;
  }

  .contact-info-box {
    margin-bottom: 30px;
    padding: 25px 20px;
  }

  .map-container iframe {
    height: 300px;
  }

  #contact .section-title h2 {
    font-size: 28px;
  }

  #contact .section-title p {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Starter Section
--------------------------------------------------------------*/
.starter-section {
  display: block; /* placeholder supaya tidak warning */
}
/*--------------------------------------------------------------
# SHI Team Section
--------------------------------------------------------------*/
.shi-team-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  z-index: 1;
}

/* === Swiper Layout === */
.shi-team-slider {
  padding-bottom: 60px;
}
.shi-team-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto;
}

/* Pagination (dots) */
.shi-team-slider .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}
.shi-team-slider .swiper-pagination-bullet-active {
  background: #ce1212;
  width: 12px;
  height: 12px;
}

/* Navigation Buttons */
.shi-team-slider .swiper-button-prev,
.shi-team-slider .swiper-button-next {
  color: #ce1212;
  transition: all 0.3s;
}
.shi-team-slider .swiper-button-prev:hover,
.shi-team-slider .swiper-button-next:hover {
  transform: scale(1.15);
}

/* Hide nav buttons on mobile */
@media (max-width: 768px) {
  .shi-team-slider .swiper-button-prev,
  .shi-team-slider .swiper-button-next {
    display: none;
  }
}

/* === Team Card === */
.shi-team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  max-width: 320px;
}
.shi-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* === Gambar Anggota === */
.member-img {
  position: relative;
  overflow: hidden;
}
.member-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
  object-fit: cover;
}
.shi-team-card:hover img {
  transform: scale(1.05);
}

/* === Info Anggota === */
.member-info {
  padding: 15px;
}
.member-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #003566;
  margin-bottom: 5px;
}
.member-info span {
  color: #ce1212;
  font-weight: 500;
  font-size: 14px;
}

/* === Modal (Popup) === */
.shi-team-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(52, 0, 196, 0.55);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  animation: fadeInOverlay 0.3s ease;
}
@keyframes fadeInOverlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Konten Modal */
.shi-team-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  animation: fadeInModal 0.35s ease-out;
}
@keyframes fadeInModal {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tombol Close */
.shi-modal-close {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 26px;
  color: #333;
  background: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.shi-modal-close:hover {
  background: #ce1212;
  color: #fff;
  transform: scale(1.1);
}

/* === Foto Modal (Oval proporsional) === */
.modal-img {
  width: 180px;
  height: 230px;
  border-radius: 50% / 35%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 4px solid #ce1212;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

/* === Nama & Deskripsi === */
#shiModalName {
  font-size: 21px;
  font-weight: 700;
  color: #003566;
  margin-bottom: 5px;
}
.shi-role {
  font-weight: 600;
  color: #ce1212;
  margin-bottom: 10px;
}
#shiModalDesc {
  color: #000000;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* === Dark Mode Adaptif === */
@media (prefers-color-scheme: dark) {
  .shi-team-modal-content {
    background: #000000;
    color: #eee;
  }
  #shiModalName {
    color: #000000;
  }
  #shiModalDesc {
    color: #ccc;
  }
  .shi-modal-close {
    background: #2a2a2a;
    color: #fff;
  }
  .shi-modal-close:hover {
    background: #ce1212;
  }
}

/* === Responsif === */
@media (max-width: 575px) {
  .shi-team-modal-content {
    max-width: 340px;
    padding: 20px;
  }
  .modal-img {
    width: 160px;
    height: 200px;
    border-radius: 50% / 40%;
  }
  #shiModalName {
    font-size: 18px;
  }
  #shiModalDesc {
    font-size: 13px;
  }
}
/* === FIX: Spacing antar section (Team & Quotation) === */
#shi-team {
  margin-bottom: 60px; 
  position: relative;
  z-index: 2; 
}

.shi-quotation-section {
  position: relative;
  z-index: 1;
  overflow: visible !important; 
  margin-top: 40px; 
}

/* === FIX: Pastikan Swiper tidak menembus section lain === */
.shi-team-section .swiper {
  position: relative;
  z-index: 3;
  overflow: visible;
}

/* === FIX: Background SVG & Form di Quotation biar stabil === */
.shi-quotation-section .reservation-img {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  min-height: 400px;
}

/* === FIX: Perataan container agar tidak loncat ke kanan === */
.shi-quotation-section .container {
  position: relative;
  z-index: 2;
}

/* === FIX: Shadow & form border biar tidak “tembus” di HP === */
@media (max-width: 768px) {
  .shi-quotation-section .reservation-form-bg {
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  }
}

/* ===================================================== */
/* 🛍️ PRODUCT SECTION - Shopee Style v6.2 (Final Ultra) */
/* ===================================================== */

.product-section { padding: 60px 0; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }

.product-card {
  background: #fff; border-radius: 10px; overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1); transition: 0.3s;
}
.product-card:hover { transform: translateY(-5px); }

.product-image img { width: 100%; height: 220px; object-fit: cover; }

.product-info { padding: 15px; text-align: left; }
.product-info h4 { font-size: 16px; font-weight: 600; color: #2c3e50; }
.product-info p { font-size: 14px; color: #666; margin: 8px 0 10px; }

.btn-group { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.btn-detail, .btn-wa {
  padding: 8px 14px; border-radius: 6px; font-size: 14px; cursor: pointer;
  transition: 0.3s; border: none; text-decoration: none;
}
.btn-detail { background: #1abc9c; color: #fff; }
.btn-wa { background: #25D366; color: #fff; }
.btn-detail:hover { background: #16a085; }
.btn-wa:hover { background: #1ebe5d; }

/* ===== Modal ===== */
.product-modal {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.8); justify-content: center; align-items: center; z-index: 9999;
}
.modal-content {
  background: #fff; border-radius: 14px; width: 90%; max-width: 1000px;
  overflow: hidden; position: relative;
}
.close {
  position: absolute; right: 20px; top: 10px; font-size: 30px; cursor: pointer; color: #444; z-index: 10;
}
.modal-body { display: flex; gap: 25px; padding: 30px; flex-wrap: wrap; }

.modal-left { flex: 1 1 400px; text-align: center; position: relative; }
.modal-right { flex: 1 1 400px; }

.zoom-box { position: relative; width: 100%; overflow: hidden; border: 1px solid #eee; border-radius: 10px; }
.zoom-box img { width: 100%; object-fit: contain; }
#zoom-lens {
  position: absolute; display: none; top: 0; left: 0; right: 0; bottom: 0;
  background-repeat: no-repeat; pointer-events: none; border-radius: 10px;
}

/* ===== Tombol Panah (← →) ===== */
.arrow-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.5); color: #fff;
  border: none; border-radius: 50%; width: 40px; height: 40px;
  display: flex; justify-content: center; align-items: center;
  font-size: 20px; cursor: pointer; z-index: 8; transition: 0.3s;
}
.arrow-btn:hover { background: rgba(0,0,0,0.8); }
.arrow-left { left: 10px; }
.arrow-right { right: 10px; }

/* ===== Dot Slider ===== */
.dot-container {
  display: flex; justify-content: center; align-items: center;
  margin-top: 10px; gap: 6px;
}
.dot {
  width: 8px; height: 8px;
  background-color: #ccc; border-radius: 50%;
  transition: all 0.3s; cursor: pointer;
}
.dot.active { background-color: #1abc9c; transform: scale(1.3); }

/* ===== Thumbnail Gallery ===== */
.thumb-gallery {
  display: flex; justify-content: center; gap: 8px; margin-top: 10px; flex-wrap: wrap;
}
.thumb-gallery img {
  width: 70px; height: 70px; border-radius: 8px; object-fit: cover;
  cursor: pointer; opacity: 0.6; transition: 0.3s; border: 2px solid transparent;
}
.thumb-gallery img.active,
.thumb-gallery img:hover {
  opacity: 1; border-color: #1abc9c;
}

/* ===== Tombol Hubungi ===== */
.btn-contact {
  display: inline-block; background: #1abc9c; color: #fff;
  padding: 10px 18px; border-radius: 6px; text-decoration: none;
}
.btn-contact:hover { background: #16a085; }

/* ===== Fade Smooth Antar Foto ===== */
.fade-in {
  animation: fadeImage 0.4s ease-in-out;
}
@keyframes fadeImage {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== Swipe Indicator (Mobile) ===== */
@media (max-width: 768px) {
  .zoom-box::after {
    content: "← Geser →";
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 10px;
    animation: fadeSwipe 2s infinite;
  }
  @keyframes fadeSwipe {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
  }
}

/* ===== Responsive Modal Fix ===== */
@media (max-width: 768px) {
  .modal-body { flex-direction: column; align-items: center; padding: 18px !important; gap: 10px; }
  .modal-right { width: 100%; text-align: center; }
  .modal-right h2 { font-size: 18px; margin-bottom: 8px; }
  .modal-right p { font-size: 14px; color: #555; line-height: 1.5em; }
  .product-modal .modal-content {
    max-height: 95vh; overflow-y: auto;
  }
  .zoom-box img { max-height: 280px; object-fit: contain; }
}

/* ==========================================================
   🔥 HERO SLIDER — MOBILE FIX FINAL (untuk insta.co.id)
   ========================================================== */
@media (max-width: 600px) {

  /* Paksa full screen */
  .hero-slider,
  #hero-wrapper,
  .hero-slider .slide {
    height: 100vh !important;
    min-height: 100vh !important;
  }

  /* Matikan cinematic zoom (biang masalah croppping) */
  .hero-slider .slide {
    transform: none !important;
    filter: none !important;
    background-size: cover !important;
    background-position: top center !important;
  }

  /* Teks lebih rapi di HP */
  .slide-content h2 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
  }
  .slide-content h3 {
    font-size: 1rem !important;
  }

  /* Tombol responsive */
  .btn-bubble {
    padding: 0.7em 1.5em !important;
    font-size: 0.85rem !important;
  }

  /* Navigasi smaller */
  .hero-slider .nav {
    width: 38px !important;
    height: 38px !important;
  }
  .hero-slider .nav svg {
    width: 18px !important;
    height: 18px !important;
  }
}









