/**
* Template Name: Avilon
* Template URL: https://bootstrapmade.com/avilon-bootstrap-landing-page-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* =========================================
   ULTRA PREMIUM GLOBAL DESIGN SYSTEM 2026
========================================= */

/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors */
:root { 
  --background-color: #f1f5f9;              /* Soft luxury grey */
  --default-color: #1e293b;                 /* Slate dark modern */
  --heading-color: #0f172a;                 /* Deep navy */
  
  --accent-color: #f97316;                  /* Premium orange */
  --accent-secondary: #14b8a6;              /* Tosca (brand identity tetap hidup) */
  
  --surface-color: #ffffff;
  --contrast-color: #ffffff;  
}

/* Navigation Colors */
:root {
  --nav-color: rgba(255, 255, 255, 0.9);
  --nav-hover-color: #f97316;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #1e293b;
  --nav-dropdown-hover-color: #f97316;
  --contrast-color: #ffffff;
}

/* Presets */
.light-background {
  --background-color: #f8fafc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0b1120;      /* Deep corporate navy */
  --default-color: #e2e8f0;
  --heading-color: #ffffff;
  --surface-color: #1e293b;
  --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);
}

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.4s ease;
}

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

.header .logo img {
  max-height: 110px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--heading-color);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  background: #0f172a; /* Deep navy */
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/*--------------------------------------------------------------
# ENTERPRISE NAVIGATION SYSTEM 2026
--------------------------------------------------------------*/

/* ===============================
   Desktop Navigation
================================= */
@media (min-width: 1200px) {

  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

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

  /* Subtle underline animation */
  .navmenu a::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 12px;
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    transition: 0.3s ease;
    border-radius: 2px;
  }

  .navmenu li:hover>a::after,
  .navmenu .active::after {
    width: calc(100% - 36px);
  }

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

  .navmenu a i {
    font-size: 12px;
    margin-left: 6px;
    transition: 0.3s;
  }

  .navmenu li:hover>a i {
    transform: rotate(180deg);
  }

  /* ===============================
     Dropdown Premium Style
  ================================= */

  .navmenu .dropdown ul {
    margin: 0;
    padding: 12px 0;
    background: var(--surface-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 12px;
    z-index: 99;

    /* Premium depth */
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(8px);
  }

  .navmenu .dropdown ul li {
    min-width: 220px;
  }

  .navmenu .dropdown ul a {
    padding: 12px 22px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--nav-dropdown-color);
    transition: all 0.25s ease;
  }

  .navmenu .dropdown ul a:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
    padding-left: 26px;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  /* Nested dropdown */
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: 100%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
  }
}

/* ===============================
   Mobile Navigation
================================= */
@media (max-width: 1199px) {

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    cursor: pointer;
    transition: 0.3s;
  }

  .mobile-nav-toggle:hover {
    color: var(--accent-color);
  }

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    padding: 15px 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--default-color);
    padding: 14px 24px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    transition: 0.3s;
  }

  .navmenu a:hover,
  .navmenu .active {
    color: var(--accent-color);
  }

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

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    padding: 8px 0;
    margin: 8px 20px;
    border-radius: 12px;
    background-color: color-mix(in srgb, var(--background-color), white 40%);
    transition: 0.4s ease;
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
  }

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

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

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(6px);
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
    transform: translateY(0);
  opacity: 1;
  }
}

/*--------------------------------------------------------------
# ULTRA PREMIUM FOOTER 2026 – JASPINDO MOVERS
--------------------------------------------------------------*/

.footer-custom {
  position: relative;
  padding: 90px 0 40px;
  color: #e2e8f0;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1120, #0f172a, #1e293b);
  background-size: 200% 200%;
  animation: footerGradient 12s ease infinite;
}

/* Animated Gradient */
@keyframes footerGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Soft glowing top divider */
.footer-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f97316, transparent);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.6);
}

/* Title Branding */
.footer-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #ffffff;
}

/* Description */
.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #cbd5e1;
  max-width: 90%;
}

/* Section Headings */
.footer-custom h5 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
}

.footer-custom h5::after {
  content: "";
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #fb923c);
  display: block;
  margin-top: 8px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 14px;
  transition: 0.3s ease;
  position: relative;
}

.footer-links a::before {
  content: "›";
  margin-right: 6px;
  color: #f97316;
  opacity: 0;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-links a:hover::before {
  opacity: 1;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
  transition: all 0.4s ease;
}

.social-links a:hover {
  background: #f97316;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.5);
}

/* Contact */
.footer-contact {
  font-size: 14px;
  line-height: 1.9;
  color: #cbd5e1;
}

/* Copyright */
.footer-custom .copyright {
  margin-top: 60px;
  padding-top: 25px;
  font-size: 13px;
  color: #94a3b8;
  border-top: 1px solid rgba(255,255,255,0.08);
}
/*--------------------------------------------------------------
# ENTERPRISE PRELOADER
--------------------------------------------------------------*/
/* PRELOADER */

#preloader{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:#0d1b2a;

  display:none; /* WAJIB */

  justify-content:center;
  align-items:center;
  z-index:99999;
}

/* WRAPPER */

.loader-wrapper{
  text-align:center;
}

/* TRUCK ICON */

.truck-icon{
  font-size:60px;
  color:#d4af37;
  display:block;
  animation: truckMove 2s linear infinite;
}

/* ROAD */

.road{
  width:220px;
  height:4px;
  background:#444;
  margin:15px auto;
  position:relative;
  overflow:hidden;
}

.road::before{
  content:"";
  position:absolute;
  width:200%;
  height:100%;
  background:repeating-linear-gradient(
    90deg,
    #d4af37 0px,
    #d4af37 40px,
    transparent 40px,
    transparent 80px
  );
  animation:roadMove 1s linear infinite;
}

/* TEXT */

.loader-text{
  color:#d4af37;
  font-weight:600;
}

.loader-text span{
  display:block;
  font-size:13px;
  color:#aaa;
}

/* ANIMATION */

@keyframes truckMove{
  0%{transform:translateX(-30px)}
  50%{transform:translateX(30px)}
  100%{transform:translateX(-30px)}
}

@keyframes roadMove{
  from{transform:translateX(0)}
  to{transform:translateX(-80px)}
}

/*--------------------------------------------------------------
# ENTERPRISE SCROLL TOP BUTTON
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 25px;
  bottom: 100px; /* ubah dari 25px ke 100px */
  z-index: 99999;

  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), black 15%)
  );

  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.25);
  transition: all 0.35s ease;
  transform: translateY(10px);
}

/* Icon */
.scroll-top i {
  font-size: 22px;
  color: var(--contrast-color);
  transition: 0.3s;
}

/* Hover effect */
.scroll-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
}

/* Active state */
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
/*--------------------------------------------------------------
# Disable AOS delay on mobile (Clean Mobile Motion)
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
    animation-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# ENTERPRISE PAGE TITLE & BREADCRUMB
--------------------------------------------------------------*/
.page-title {
  position: relative;
  text-align: center;
  padding: 180px 0 100px 0;

  color: var(--contrast-color);

  /* Premium gradient background */
  background: linear-gradient(
    135deg,
    #0f172a,
    #1e293b
  );

  overflow: hidden;
}

/* Soft overlay glow */
.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(249, 115, 22, 0.15),
    transparent 60%
  );
}

/* Subtle bottom divider glow */
.page-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

/* Title */
.page-title h1 {
  position: relative;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

/* Breadcrumb */
.page-title .breadcrumbs {
  position: relative;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;

  font-size: 15px;
  font-weight: 500;
  opacity: 0.9;
}

.page-title .breadcrumbs ol li {
  color: rgba(255, 255, 255, 0.75);
}

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  padding-right: 10px;
  color: rgba(255, 255, 255, 0.4);
}

/* Active breadcrumb highlight */
.page-title .breadcrumbs ol li:last-child {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# ENTERPRISE GLOBAL SECTIONS
--------------------------------------------------------------*/
section,
.section {
  position: relative;
  padding: 90px 0;
  color: var(--default-color);
  background-color: var(--background-color);
  scroll-margin-top: 100px;
  overflow: hidden;
}

/* Clean section rhythm */
section:nth-child(even) {
  background-color: var(--surface-color);
}

/* Subtle divider spacing effect */
section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 2px;
  opacity: 0.4;
}

@media (max-width: 1199px) {
  section,
  .section {
    padding: 70px 0;
    scroll-margin-top: 70px;
  }

  .page-title {
    padding: 150px 0 80px 0;
  }

  .page-title h1 {
    font-size: 36px;
  }
}
/*--------------------------------------------------------------
# ENTERPRISE GLOBAL SECTION TITLES
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 70px;
  position: relative;
}

/* Small label (optional jika mau tambah nanti) */
.section-title span {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 12px;
}

/* Main Title */
.section-title h2 {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  color: var(--heading-color);
}

/* Premium underline system */
.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--accent-secondary)
  );
}

/* Subtle glow line */
.section-title h2::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: 110px;
  height: 10px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.25),
    transparent 70%
  );
  z-index: -1;
}

/* Description text */
.section-title p {
  max-width: 650px;
  margin: 25px auto 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    padding-bottom: 50px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .section-title p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {  
  min-height: 85vh;
  padding: 90px 0 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #0b0f19 0%,
    #111827 50%,
    #0b0f19 100%
  );
  color: #ffffff;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #d4af37;
}

.hero-subtitle {
  font-size: 17px;
  margin-top: 12px;
  margin-bottom: 25px;
  max-width: 520px;
  line-height: 1.6;
  color: #cbd5e1;
}

.hero-img {
  max-width: 650px;
  max-height: 650px;
}

.hero-stats {
  margin-top: 40px;
}

.hero-stats h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 5px;
}

.hero-stats p {
  font-size: 13px;
  margin: 0;
}

.btn-hero {
background: linear-gradient(45deg, #d4af37, #facc15);
  color: #0b0f19;
  font-weight: 600;
  border-radius: 50px;
  padding: 14px 32px;
  border: none;
  transition: all 0.3s ease;
}

.btn-hero:hover {
 transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

@media (min-width: 1024px) {
  .hero p {
    max-width: 60%;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  .hero .carousel-container {
    min-height: 90vh;
  }

  .hero h2 {
    font-size: 28px;
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/* ===============================
   ENTERPRISE SERVICES SECTION
================================= */

.services {
  background: linear-gradient(
    180deg,
    var(--background-color),
    #e2e8f0
  );
  padding: 120px 0;
}

/* Center row */
.services .row {
  justify-content: center;
}

/* Service Card */
.service-item {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  position: relative;

  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  transition: all 0.4s ease;

  text-align: center;
  padding-bottom: 30px;
  max-width: 360px;
  margin: 20px auto;
}

/* Soft top accent line */
.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--accent-secondary)
  );
}

/* Hover interaction */
.service-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

/* Image */
.service-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.service-item:hover img {
  transform: scale(1.05);
}

/* Content */
.service-item .service-content {
  padding: 30px;
}

/* Title */
.service-item .title {
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 15px;
  color: var(--heading-color);
}

/* Description */
.service-item .description {
  font-size: 14.5px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 18px;
  line-height: 1.8;
}

/* Read More Link */
.service-item .readmore {
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: var(--accent-color);
  transition: all 0.3s ease;
  position: relative;
}

.service-item .readmore::after {
  content: " →";
  transition: 0.3s;
}

.service-item .readmore:hover {
  color: var(--accent-secondary);
}

.service-item .readmore:hover::after {
  margin-left: 5px;
}


/* ===============================
   ENTERPRISE TESTIMONIAL SECTION
================================= */

.testimonial {
  position: relative;
  padding: 120px 0;
  background: url('../img/Testimoni.jpg') center/cover no-repeat;
}

/* Dark navy overlay */
.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.85),
    rgba(15, 23, 42, 0.92)
  );
}

/* Content spacing */
.testimonial .container,
.testimonial .carousel {
  position: relative;
  padding-bottom: 70px;
}

.testimonial .carousel-indicators {
  bottom: 10px;
}

/* Slide */
.testimonial-slide {
  max-width: 750px;
  margin: auto;
  text-align: center;
  color: #ffffff;
}

/* Avatar */
.testimonial-slide .avatar {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;

  border: 3px solid var(--accent-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Name */
.testimonial-slide h5 {
  margin-bottom: 4px;
  font-weight: 600;
}

/* Role */
.testimonial-slide span {
  font-size: 14px;
  opacity: 0.75;
}

/* Stars */
.testimonial-slide .stars {
  color: var(--accent-color);
  margin: 12px 0;
}

/* Text */
.testimonial-slide p {
  font-style: italic;
  line-height: 1.8;
  font-size: 16px;
  opacity: 0.9;
}

/* Section title override */
.testimonial .section-title h2 {
  color: #ffffff;
}

.testimonial .section-title p {
  color: rgba(255, 255, 255, 0.75);
}

/* ==================================================
   ENTERPRISE TESTIMONIAL TEXT CONTROL
================================================== */

/* Sudah cukup kuat tanpa !important */
.testimonial,
.testimonial h1,
.testimonial h2,
.testimonial h3,
.testimonial h4,
.testimonial h5,
.testimonial p {
  color: var(--contrast-color);
}

.testimonial span {
  color: rgba(255, 255, 255, 0.75);
}

/* Carousel indicators – brand color */
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  transition: 0.3s ease;
}

.carousel-indicators .active {
  background-color: var(--accent-color);
  transform: scale(1.2);
}


/* ==================================================
   ENTERPRISE SERVICES REFINEMENT
================================================== */

.services {
  padding: 110px 0;
}

/* Centering fix */
#services .row {
  display: flex;
  justify-content: center;
}

#services .col-lg-4 {
  display: flex;
  justify-content: center;
}

/* Service Card */
.service-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 360px;

  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.07);
  transition: all 0.4s ease;
  position: relative;
}

/* Premium top accent line */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--accent-secondary)
  );
}

/* Image */
.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

/* Content */
.service-content {
  padding: 30px;
}

.service-content h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--heading-color);
}

.service-content p {
  font-size: 14.5px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

/* Hover */
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

/* ===============================
   ENTERPRISE CTA ESTIMASI
================================= */

.cta-estimasi {
  position: relative;
  padding: 140px 0;
  text-align: center;
  color: var(--contrast-color);
  overflow: hidden;

  background: url('../img/Estimasi.jpg') center/cover no-repeat;
}

.cta-estimasi::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.85),
    rgba(15, 23, 42, 0.92)
  );
}

.cta-estimasi .container {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.cta-estimasi h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-estimasi p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* CTA Button */
.btn-cta {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 50px;
  font-weight: 600;

  background: var(--accent-color);
  color: #ffffff;

  border: none;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #ffffff;
  color: var(--accent-color);
  transform: translateY(-3px);
}


.paket-layanan {
  padding: 110px 0;
  background: var(--background-color);
}

.pricing-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 45px 35px;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;

  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  transition: 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 65px rgba(15, 23, 42, 0.12);
}

.pricing-card h4 {
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
  text-align: left;
  flex-grow: 1;
}

.pricing-card ul li {
  font-size: 14.5px;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.pricing-card ul li.check::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
}

.pricing-card ul li.cross {
  color: #9ca3af;
  text-decoration: line-through;
}

.pricing-card ul li.cross::before {
  content: "✖";
  position: absolute;
  left: 0;
  color: #ef4444;
}

/* Featured */
.pricing-card.featured {
  border: 2px solid var(--accent-color);
  transform: scale(1.05);
}

.pricing-card .btn-outline {
  margin-top: auto;
}

.btn-outline {
  padding: 11px 28px;
  border-radius: 50px;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline:hover {
  background: var(--accent-color);
  color: #fff;
}

.btn-primary {
  padding: 11px 28px;
  border-radius: 50px;
  background: var(--accent-color);
  color: #fff;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
}


.faq {
  padding: 110px 0;
}

.faq-list {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  border-radius: 14px;
  margin-bottom: 15px;
  overflow: hidden;
  background: var(--surface-color);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.faq-question {
  width: 100%;
  padding: 18px 25px;
  font-weight: 600;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between; /* INI YANG PENTING */
  cursor: pointer;
}

.faq-question .icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-right: 15px;
}

.faq-answer {
  display: none;
  padding: 0 25px 20px 66px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpFAQ 0.8s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeUpFAQ {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
/* Footer Custom */
.footer-custom {
 background: #0f172a;
  color: #ffffff;
  padding: 60px 0 30px;
}

.footer-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff; 
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #e6f7f8;
}

.footer-custom h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;   /* TAMBAHKAN INI */
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #d4f1f2;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact {
  font-size: 14px;
  line-height: 1.7;
  color: #d4f1f2;
}

.social-links {
  margin-top: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  margin-right: 8px;
  transition: 0.3s;
}

.social-links a:hover {
  background: #ffffff;
  color: #1e7c80;
}

.copyright {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  font-size: 14px;
  color: #d4f1f2;
}

.btn-primary {
  background: var(--accent-color);
  color: #00332d;
  font-weight: 600;
  border: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #0f766e;
  color: #ffffff;
}

.features {
  background: #ffffff;
  padding: 80px 0;
}

.feature-box {
  padding: 30px 20px;
  transition: all 0.3s ease;
}

.feature-box i {
  font-size: 40px;
  color: #0dcaf0;
  margin-bottom: 15px;
}

.feature-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 14px;
  color: #666;
}

.feature-box:hover {
  transform: translateY(-5px);
}

/* ==================================================
   ENTERPRISE PAGE HEADER
================================================== */

.page-header {
  position: relative;
  min-height: 520px;

  background: url('../img/Container.jpg') center center / cover no-repeat;
  margin-top: 80px; /* offset header fixed */

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  overflow: hidden;
}

/* Premium layered overlay */
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.75),
    rgba(15, 23, 42, 0.85)
  );

  z-index: 1;
}

/* Optional subtle accent glow */
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at center,
    color-mix(in srgb, var(--accent-color), transparent 85%),
    transparent 60%
  );

  z-index: 1;
}

/* Content */
.page-header .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

/* Typography */
.page-header h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: var(--contrast-color);
}

.page-header p {
  font-size: 18px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

/* ==================================================
   ENTERPRISE BREADCRUMB
================================================== */

.breadcrumbs {
  background: var(--surface-color);
  padding: 18px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

/* Wrapper */
.breadcrumbs ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* Item */
.breadcrumbs ol li {
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  position: relative;
}

/* Separator */
.breadcrumbs ol li + li::before {
  content: "/";
  margin-right: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

/* Link */
.breadcrumbs ol li a {
  text-decoration: none;
  color: var(--accent-color);
  transition: 0.3s ease;
}

.breadcrumbs ol li a:hover {
  color: var(--accent-secondary);
}

/* Active page */
.breadcrumbs ol li:last-child {
  color: var(--heading-color);
  font-weight: 600;
}

/* ==================================================
   ENTERPRISE SERVICE HERO
================================================== */

.service-hero {
  position: relative;
  min-height: 520px;

  background: url('../img/Container.jpg') center center / cover no-repeat;
  margin-top: 80px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  overflow: hidden;
}

/* Depth overlay (tidak flat hitam lagi) */
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.55),
    rgba(15, 23, 42, 0.65)
  );

  z-index: 1;
}

/* Subtle accent glow */
.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at center,
    color-mix(in srgb, var(--accent-color), transparent 85%),
    transparent 65%
  );

  z-index: 1;
}

/* Content wrapper */
.service-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

/* Heading */
.service-hero h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: var(--contrast-color);
}

/* Description */
.service-hero p {
  font-size: 18px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

/* ==================================================
   TRANSPARENT NAVBAR OVER HERO
================================================== */

/* Hero tanpa offset karena navbar overlay */
.service-hero {
  margin-top: 0;
}

/* Default state (di atas hero) */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  background: transparent;
  box-shadow: none;

  transition: all 0.35s ease;
  z-index: 1000;
}

/* Navigation links (di atas hero) */
.header .navmenu a {
  color: var(--contrast-color);
  font-weight: 500;
  transition: 0.3s ease;
}

.header .navmenu a:hover,
.header .navmenu .active {
  color: var(--accent-color);
}

/* Scrolled state */
.header.scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

/* Nav links after scroll */
.header.scrolled .navmenu a {
  color: var(--heading-color);
}

.header.scrolled .navmenu a:hover,
.header.scrolled .navmenu .active {
  color: var(--accent-color);
}

/* ==================================================
   ENTERPRISE SERVICE DETAIL SECTION
================================================== */

.service-detail-section {
  background: var(--surface-color);
  padding: 100px 0;
}

/* ================= SIDEBAR ================= */

.service-sidebar {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;

  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}

/* Menu */
.service-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.service-menu li {
  padding: 14px 18px;
  font-size: 14.5px;
  font-weight: 500;

  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  cursor: pointer;
  transition: all 0.25s ease;

  color: var(--default-color);
  background: #ffffff;
}

.service-menu li:last-child {
  border-bottom: none;
}

/* Hover */
.service-menu li:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--heading-color);
}

/* Active */
.service-menu li.active {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-weight: 600;
  position: relative;
}

/* Accent indicator line */
.service-menu li.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent-color);
}


/* ================= INFO BLOCK ================= */

.service-info h6 {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.service-info p {
  font-size: 14.5px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}


/* ================= CHECKLIST ================= */

.service-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 14.5px;
  color: var(--default-color);
}

/* Icon */
.service-checklist li::before {
  content: "\f26e";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 1px;

  color: var(--accent-color);
  font-size: 18px;
}

/* ================= SCROLLED STATE ================= */

body.scrolled #header {
  position: fixed;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);

  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
}

/* Link saat scroll */
body.scrolled #header .navmenu a {
  color: #ffffff;
}

body.scrolled #header .navmenu a:hover,
body.scrolled #header .navmenu .active {
  color: var(--accent-color);
}

.footer-custom h4,
.footer-custom h5 {
  color: #ffffff !important;
}

.footer-custom h4,
.footer-custom h5 {
  color: var(--contrast-color);
}

.contact-section {
  background: #f8fafc;
}

.contact-section {
  background: var(--surface-color);
}

.contact-section .card {
  border-radius: 16px;
  border: none;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.contact-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

/* Floating WhatsApp */
.floating-wa {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s ease;
}

.floating-wa:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
  color: white;
}

.cta-estimasi h1,
.cta-estimasi h2,
.cta-estimasi h3,
.cta-estimasi p {
  color: #ffffff !important;
}

/* ===== FIX MOBILE MENU WIDTH ===== */

@media (max-width: 1199px) {

  .navmenu ul {
    display: block;
    width: 100%;
  transform: translateY(-10px);
  opacity: 0;
  }


  .navmenu li {
    width: 100%;
  }

  .navmenu a {
    display: block;
    width: 100%;
  }

}

#truck-loader{
  position: fixed;
  top: 0;
  left: -200px;
  width: 100%;
  height: 100%;
  background: #0b0f19;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
}

/* =========================
   HERO ENTRY ANIMATION
========================= */

.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: all 1s ease;
}

.reveal-left {
  transform: translateX(-80px);
}

.reveal-right {
  transform: translateX(80px);
}

.reveal-up {
  transform: translateY(60px);
}

.show {
  opacity: 1;
  transform: translate(0,0);
}

/* Delay */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* =========================
   SCROLL REVEAL ANIMATION
========================= */

.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease;
}

.reveal-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Delay bertahap */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* FORCE UNLOCK SCROLL */
html, body {
  height: auto !important;
  overflow-y: auto !important;
}

/* FORCE ALL SECTIONS VISIBLE */
section {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
}

.main {
  overflow: visible !important;
}

body {
  overflow-y: auto !important;
}

.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 1 !important;
  transform: none !important;
}

/* Service Card Hover */
.service-card{
  transition: all 0.35s ease;
}

.service-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Feature Box Hover */
.feature-box{
  transition: all 0.35s ease;
}

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

.feature-box i{
  font-size:40px;
  transition: all 0.3s ease;
}

.feature-box:hover i{
  transform: scale(1.2);
  color:#0099ff;
}

.service-card img{
  transition: transform 0.6s ease;
}

.service-card:hover img{
  transform: scale(1.07);
}

.btn-hero,
.btn-cta{
  transition: all 0.3s ease;
}

.btn-hero:hover,
.btn-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,123,255,0.4);
}

video{
  max-width:100%;
  height:auto;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.video-box{
  position:relative;
  display:inline-block;
}

.video-box img{
  width:100%;
  border-radius:12px;
}

.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:70px;
  height:70px;
  background:#0dcaf0;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:35px;
  color:#fff;
  box-shadow:0 5px 20px rgba(0,0,0,0.3);
  transition:0.3s;
}

.video-box:hover .play-btn{
  transform:translate(-50%, -50%) scale(1.1);
}

.play-btn{
  animation: pulse 2s infinite;
}

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(13,202,240,0.7);}
  70%{box-shadow:0 0 0 20px rgba(13,202,240,0);}
  100%{box-shadow:0 0 0 0 rgba(13,202,240,0);}
}

.glightbox-container video{
  max-height:80vh;
  width:auto;
}

.video-thumbnail{
  position:relative;
  cursor:pointer;
  display:inline-block;
}

.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:70px;
  height:70px;
  background:#0dcaf0;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:35px;
  color:#fff;
}

/* overlay lebih gelap */
.video-modal{
  background:rgba(0,0,0,0.85);
  backdrop-filter:blur(4px);
}

/* hilangkan box bootstrap */
.video-modal .modal-content{
  background: relative;
}

/* video */
.video-player{
  max-height:80vh;
  width:auto;
  max-width:100%;
  border-radius:12px;
  box-shadow:0 25px 60px rgba(0,0,0,0.5);
}

/* tombol close */
/* tombol close video premium */
.video-close{
  position:absolute;
  top:15px;
  right:15px;
  width:42px;
  height:42px;
  border-radius:50%;
  border:none;
  background:rgba(0,0,0,0.55);
  backdrop-filter:blur(6px);
  color:#fff;
  font-size:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:9999;
  transition:all .25s ease;
  box-shadow:0 5px 20px rgba(0,0,0,0.4);
}

/* hover effect */
.video-close:hover{
  background:#0dcaf0;
  transform:scale(1.1) rotate(90deg);
}

.btn-close{
  filter: invert(1);
}

.modal.fade .modal-dialog{
  transform: scale(0.9);
  transition: all .3s ease;
}

.modal.show .modal-dialog{
  transform: scale(1);
}

.video-modal .modal-dialog{
  max-width:420px;
}
