/* ========================================
   GOJALANJALAN - MAIN STYLESHEET
   ======================================== */

:root {
  --primary: #F9BB3D;
  --primary-dark: #e0a930;
  --secondary: #014D78;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --text-muted: #6c757d;
  --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 15px 40px rgba(0,0,0,0.15);
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-header {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 60px;
  width: auto;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: #fff;
  color: #2d3436;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.text-custom { color: var(--primary); }

.container {
  width: 100%;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container { max-width: 540px; }
}

@media (min-width: 768px) {
  .container { max-width: 720px; }
}

@media (min-width: 992px) {
  .container { max-width: 960px; }
}

@media (min-width: 1200px) {
  .container { max-width: 1140px; }
}

#main-site, main, section, .content-wrap {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Promo Section Title Badge */
.promo-title-badge {
  background: linear-gradient(135deg, #F9BB3D, #e0a930);
  color: #FF0000;
  display: inline-block;
  padding: 8px 24px;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(249, 187, 61, 0.4);
  transition: var(--transition);
}

.promo-title-badge:hover {
  box-shadow: 0 6px 20px rgba(249, 187, 61, 0.6);
  transform: translateY(-2px);
}

.promo-title-badge .text-custom {
  color: #014D78;
}

/* Header & Navigation */
.main-header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1020;
  width: 100%;
  max-width: 100vw;
  transition: all 0.4s ease;
}

.main-header.scrolled {
  background: #014D78;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.main-header .menu-header .menu li a {
  color: white;
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  border-radius: 30px;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  display: block;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.main-header .menu-header .menu li a:hover {
  background: rgba(249,187,61,0.3);
  color: var(--primary);
}

.main-header.scrolled .menu-header .menu li a {
  text-shadow: none;
}

.logo-header {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}

.logo-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  flex-shrink: 0;
}

.logo-icon::after {
  content: "✈";
  color: white;
  font-size: 18px;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.logo-type {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.main-header.scrolled .logo-type {
  text-shadow: none;
}

/* Navigation */
.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  width: 100%;
  position: relative;
}

.menu-header {
  transition: all 0.3s ease;
}

.menu-header .menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  min-width: 200px;
  background: white;
}

.dropdown-menu li a {
  padding: 0.5rem 1.5rem !important;
  border-radius: 0 !important;
  color: var(--dark) !important;
  text-shadow: none !important;
}

.dropdown-menu li a:hover {
  background: rgba(249,187,61,0.15) !important;
  color: var(--secondary) !important;
}

/* Burger Menu */
.burger-menu {
  display: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1021;
  background: transparent;
  border: none;
  outline: none;
}

.burger-icon {
  width: 28px;
  height: 20px;
  position: relative;
  display: block;
}

.burger-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
  left: 0;
}

.burger-icon span:nth-child(1) { top: 0; }
.burger-icon span:nth-child(2) { top: 8px; }

/* Banner */
.banner-area {
  position: relative;
  height: 100vh;
  max-height: 750px;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.banner-img {
  height: 100%;
  width: 100%;
}

.banner-img .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-img .overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 5;
}

.banner-caption {
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  text-align: center;
  color: white;
  z-index: 10;
  padding: 0 20px;
}

.quote-text-d1 {
  font-style: italic;
  font-size: 1.7rem;
  opacity: 0.9;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

.main-title h1.title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -1px;
  text-shadow: 2px 4px 15px rgba(0,0,0,0.5);
  line-height: 1.2;
  word-wrap: break-word;
}

.caption-txt {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* Reservation Form */
.reservation-form {
  margin-top: -70px;
  position: relative;
  z-index: 100;
}

.reservation-wrapper {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  width: 100%;
}

.reservation-wrapper .row {
  margin-left: -8px;
  margin-right: -8px;
}

.reservation-wrapper .row > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}

.btn-submit {
  background: var(--primary);
  border: none;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-weight: 700;
  color: #1a1a2e;
  box-shadow: 0 6px 20px rgba(249,187,61,0.4);
  transition: var(--transition);
  width: 100%;
  cursor: pointer;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: #1a1a2e;
}

/* Quote Section */
.quote-section {
  background: #fef9f2;
  padding: 3rem 0;
  margin: 2rem 0;
  width: 100%;
}

.quote-block {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  border-left: 6px solid var(--primary);
  padding: 0.5rem 1.5rem;
  margin: 0 auto;
  max-width: 800px;
}

.quote-author {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Product Card */
.single-product {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.single-product:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.18), 0 8px 18px rgba(0,0,0,0.08);
}

.product-img .thumb img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.single-product:hover .product-img .thumb img {
  transform: scale(1.05);
}

.product-caption {
  padding: 1rem;
  flex-grow: 1;
}

.product-name { font-weight: 700; margin: 0; font-size: 1.1rem; }
.product-loc { color: var(--text-muted); font-size: 0.9rem; }

.product-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-top: 1px solid #eee;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.price { font-weight: 800; font-size: 1.3rem; color: var(--primary); }

.btn-custom {
  background: var(--secondary);
  color: white;
  border-radius: 30px;
  padding: 0.4rem 1.5rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.btn-custom:hover { background: #013a5a; color: white; text-decoration: none; }

/* Promo Cards */
.promo-card {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15), 0 5px 12px rgba(0,0,0,0.08);
  transition: var(--transition);
  overflow: hidden;
  margin-bottom: 20px;
  background: #f0f0f0;
}

.promo-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.promo-card:hover img { transform: scale(1.03); }

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 38px rgba(0,0,0,0.2), 0 8px 18px rgba(0,0,0,0.1);
}

/* Team Card */
.team-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
  transition: var(--transition);
  height: 100%;
  width: 100%;
}

.team-card:hover { box-shadow: 0 18px 32px rgba(0,0,0,0.15); }

.team-img {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--primary);
}

/* Service Card */
.service-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 26px rgba(0,0,0,0.1);
  transition: var(--transition);
  height: 100%;
  width: 100%;
}

.service-card:hover { background: var(--primary); color: #1a1a2e; }
.service-icon { font-size: 2.8rem; color: var(--primary); margin-bottom: 1rem; }
.service-card:hover .service-icon { color: #1a1a2e; }

/* Video Card */
.video-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 14px 26px rgba(0,0,0,0.12);
  transition: var(--transition);
  margin-bottom: 20px;
  width: 100%;
}

.video-card:hover { transform: translateY(-5px); box-shadow: 0 20px 32px rgba(0,0,0,0.16); }
.video-caption { padding: 1rem; }
.video-caption h5 { font-weight: 700; }

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive-16by9::before { padding-top: 56.25%; }

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Partner Brand */
.brand-item {
  display: inline-block;
  margin: 8px 12px;
}

.brand-item img {
  max-width: 100px;
  height: auto;
  opacity: 0.7;
  transition: var(--transition);
}

.brand-item img:hover { opacity: 1; transform: scale(1.1); }

/* Client Slider */
.client-item img {
  max-width: 130px;
  height: auto;
  margin: 0 auto;
  opacity: 0.8;
  transition: var(--transition);
  display: block;
}

.client-item img:hover { opacity: 1; }

/* Testimonial */
.testimonials { background: #f8f9fa; }

.testimonial-slider {
  padding: 15px 5px 55px;
}

.testimonial-slider .swiper-slide {
  height: auto;
  display: flex;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 1.2rem 0.9rem;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08), 0 3px 8px rgba(0,0,0,0.04);
  transition: var(--transition);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  min-height: 240px;
}

.testimonial-card:hover {
  box-shadow: 0 18px 30px rgba(0,0,0,0.12), 0 6px 14px rgba(0,0,0,0.06);
  transform: translateY(-5px);
}

.testimonial-card::before {
  content: '\201C';
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: 2px; left: 12px;
  font-family: serif;
  line-height: 1;
}

.testimonial-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.6rem;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.1rem;
  color: var(--dark);
}

.testimonial-position {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 0.6rem;
  font-style: italic;
}

.testimonial-rating { margin-top: auto; }

.testimonial-rating i {
  color: #f1c40f;
  margin: 0 1px;
  font-size: 0.65rem;
}

/* Mobile App */
.get-mobile {
  background: transparent;
  color: #1a1a2e;
  border-radius: 0;
  padding: 4rem 0;
  margin-top: 3rem;
  width: 100%;
}

.get-mobile .title {
  color: var(--dark);
}

.get-mobile .text-white-50 {
  color: #6c757d !important;
}

.btn-download {
  background: var(--secondary);
  color: white;
  border-radius: 50px;
  padding: 0.7rem 1.5rem;
  font-weight: 700;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid var(--secondary);
}

.btn-download:hover {
  background: var(--primary);
  color: #1a1a2e;
  transform: translateY(-3px);
  text-decoration: none;
  border-color: var(--primary);
}

/* FAQ */
.faq-section .card {
  border: none;
  margin-bottom: 10px;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.faq-section .card-header {
  background: white;
  border-bottom: none;
  padding: 0;
}

.faq-section .btn-link {
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
  width: 100%;
  text-align: left;
  padding: 1.2rem 1.5rem;
  font-size: 1rem;
  border: none;
  background: none;
  white-space: normal;
  word-wrap: break-word;
  cursor: pointer;
}

.faq-section .btn-link:hover { color: var(--secondary); text-decoration: none; }
.faq-section .btn-link:focus { outline: none; text-decoration: none; }

.faq-section .card-body {
  background: #f8f9fa;
  padding: 1.2rem 1.5rem;
  color: #555;
  font-size: 0.9rem;
}

/* Footer */
.main-footer {
  background: #014D78;
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 2rem;
  margin-top: 3rem;
  width: 100%;
}

.footer-title { color: white; font-weight: 700; margin-bottom: 1.5rem; }

.footer-links { list-style: none; padding: 0; }

.footer-links li { margin-bottom: 0.5rem; }

.footer-links li a {
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.footer-links li a:hover {
  color: var(--primary);
  padding-left: 5px;
  text-decoration: none;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: white;
  margin-right: 8px;
  transition: var(--transition);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-3px);
  color: #1a1a2e;
  text-decoration: none;
}

/* Gallery */
.gallery-card { width: 100%; margin-bottom: 20px; }

.gallery-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 24px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.gallery-card img:hover { box-shadow: 0 20px 32px rgba(0,0,0,0.15); }

/* Articles */
.home-blog .single-product { box-shadow: 0 14px 26px rgba(0,0,0,0.1); }

.home-blog .product-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Swiper */
.swiper-container { width: 100%; overflow: hidden; }
.swiper-slide { width: 100%; max-width: 100%; }
.swiper-slide img { width: 100%; height: 100%; object-fit: cover; }

/* Link Icon */
.link-icon {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 600;
  white-space: nowrap;
}

.link-icon:hover { text-decoration: none; color: var(--primary); }

/* Form */
.form-control { max-width: 100%; }
.form-label { margin-bottom: 0.3rem; font-weight: 600; }
.list-unstyled { list-style: none; padding-left: 0; }

/* ======================================== */
/* PROMO MODAL */
/* ======================================== */
.promo-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.promo-modal.show {
  display: flex;
}

.promo-modal-content {
  position: relative;
  max-width: 480px;
  width: 100%;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  animation: modalSlideIn 0.4s ease;
  cursor: pointer;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-60px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.promo-modal-image {
  width: 100%;
  display: block;
  line-height: 0;
}

.promo-modal-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.promo-modal-close-hint {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(0,0,0,0.5);
  color: white;
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 0.8rem;
  font-weight: 600;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.3);
}

.promo-modal-badge {
  position: absolute;
  top: 15px;
  left: 20px;
  background: #F9BB3D;
  color: #1a1a2e;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 575.98px) {
  .promo-modal-content {
    max-width: 95%;
    border-radius: 16px;
  }
  .promo-modal-close-hint {
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    font-size: 0.7rem;
  }
  .promo-modal-badge {
    top: 10px;
    left: 10px;
    padding: 4px 12px;
    font-size: 0.75rem;
  }
}

/* ======================================== */
/* CUSTOMER SERVICE FLOATING BUTTON */
/* ======================================== */
.cs-floating-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9997;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.cs-main-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F9BB3D, #e0a930);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(249,187,61,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.cs-main-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(249,187,61,0.7);
}

.cs-main-btn i {
  font-size: 28px;
  color: #1a1a2e;
  animation: csPulse 2s infinite;
}

@keyframes csPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.cs-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.cs-options.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.cs-option-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  text-decoration: none;
  position: relative;
}

.cs-option-btn:hover {
  transform: scale(1.15);
}

.cs-option-btn .cs-tooltip {
  position: absolute;
  right: 65px;
  background: rgba(0,0,0,0.85);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.cs-option-btn:hover .cs-tooltip {
  opacity: 1;
}

.cs-instagram {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
}

.cs-instagram i {
  color: white;
  font-size: 22px;
}

.cs-email {
  background: linear-gradient(135deg, #014D78, #012f4a);
}

.cs-email i {
  color: white;
  font-size: 22px;
}

.cs-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.cs-whatsapp i {
  color: white;
  font-size: 24px;
}

.cs-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 9996;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cs-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ======================================== */
/* ========== RESPONSIVE STYLES ========== */
/* ======================================== */

@media (max-width: 991.98px) {
  .burger-menu {
    display: block !important;
  }

  .menu-header {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #014D78;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 1019;
    display: block;
  }

  .menu-header.active {
    max-height: 80vh;
    overflow-y: auto;
  }

  .menu-header .menu {
    flex-direction: column;
    padding: 1rem;
    display: flex;
  }

  .menu-header .menu li {
    margin: 0.3rem 0;
  }

  .menu-header .menu li a {
    display: block;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    color: white;
    text-shadow: none;
  }

  .dropdown-menu {
    position: static !important;
    float: none;
    border: none;
    box-shadow: none;
    padding-left: 1.5rem;
    width: 100%;
    display: none;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    background: rgba(255,255,255,0.1);
  }

  .dropdown-menu.show {
    display: block;
  }

  .dropdown-menu li a {
    padding: 0.5rem 1rem !important;
    color: white !important;
    text-shadow: none !important;
  }
}

@media (min-width: 992px) {
  .burger-menu { display: none !important; }
  .menu-header {
    display: block !important;
    max-height: none !important;
    position: static;
    overflow: visible;
  }
  .menu-header .menu { flex-direction: row; display: flex; }
  .dropdown-menu {
    display: none;
  }
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

@media (max-width: 575.98px) {
  .main-title h1.title { font-size: 1.8rem; }
  .banner-area { height: 60vh; max-height: 500px; border-radius: 0 0 30px 30px; }
  .reservation-form { margin-top: -30px; }
  .reservation-wrapper { padding: 1.2rem; border-radius: 20px; }
  .reservation-wrapper .row { margin-left: -6px; margin-right: -6px; }
  .reservation-wrapper .row > [class*="col-"] { padding-left: 6px; padding-right: 6px; }
  .quote-text-d1 { font-size: 1.1rem; }
  .quote-block { font-size: 1.1rem; border-left-width: 4px; padding: 0.3rem 0.8rem; margin: 0 10px; }
  .quote-author { font-size: 0.9rem; }
  .quote-section { padding: 2rem 0; margin: 1.5rem 0; }
  .logo-type { font-size: 1.1rem; }
  .logo-icon { width: 30px; height: 30px; }
  .nav-header { padding: 0.5rem 0; }
  .get-mobile { border-radius: 0; padding: 2.5rem 0; }
  .main-footer { border-radius: 30px 30px 0 0; padding: 2.5rem 0 1.5rem; }
  .btn-download { display: block; width: 100%; text-align: center; margin-right: 0; }
  .product-info { flex-direction: column; align-items: flex-start; }
  .testimonial-card { min-height: auto; padding: 1rem 0.8rem; }
  .testimonial-img { width: 35px; height: 35px; }
  .testimonial-text { font-size: 0.7rem; }
  .brand-item { margin: 5px 6px; }
  .brand-item img { max-width: 60px; }
  .client-item img { max-width: 80px; }
  .service-card { padding: 1.5rem; }
  .team-card { padding: 1.5rem 1rem; }
  .caption-txt { font-size: 0.9rem; }
  .product-name { font-size: 1rem; }
  .price { font-size: 1.1rem; }
  .btn-custom { padding: 0.35rem 1.2rem; font-size: 0.85rem; }
  h2.title { font-size: 1.5rem; }
  .video-caption h5 { font-size: 1rem; }
  .faq-section .btn-link { font-size: 0.9rem; padding: 1rem 1.2rem; }
  .footer-title { font-size: 1rem; }

  /* CS Button Mobile */
  .cs-floating-container {
    bottom: 20px;
    right: 20px;
  }

  .cs-main-btn {
    width: 50px;
    height: 50px;
  }

  .cs-main-btn i {
    font-size: 24px;
  }

  .cs-option-btn {
    width: 42px;
    height: 42px;
  }

  .cs-option-btn i {
    font-size: 18px;
  }

  .cs-option-btn .cs-tooltip {
    right: 55px;
    font-size: 10px;
    padding: 4px 10px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .main-title h1.title { font-size: 2.5rem; }
  .banner-area { height: 70vh; }
  .reservation-form { margin-top: -40px; }
  .quote-block { font-size: 1.3rem; }
  .logo-type { font-size: 1.4rem; }
  .brand-item img { max-width: 80px; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .main-title h1.title { font-size: 3rem; }
  .banner-area { height: 80vh; }
  .quote-block { font-size: 1.4rem; }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .main-title h1.title { font-size: 3.5rem; }
}

@supports (-webkit-touch-callout: none) {
  .banner-area { height: -webkit-fill-available; }
}

@media print {
  .main-header, .reservation-form, .get-mobile, .main-footer, .banner-area, .cs-floating-container, .cs-overlay, .promo-modal { display: none; }
}

/* Marquee Animation */
@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}