/* ========================================================
   LOTTE GROSIR - PREMIUM LANDING PAGE STYLES
   Custom CSS with Bootstrap 5 integration
   ======================================================== */

:root {
  --lotte-red: #ED1B24;
  --lotte-red-dark: #C8102E;
  --lotte-red-deep: #9E0C22;
  --lotte-red-light: #FFF1F2;
  --lotte-blue: #004B9B;
  --lotte-blue-light: #EBF3FC;
  --lotte-yellow: #FFC20E;
  --lotte-yellow-light: #FFF9E6;
  --lotte-dark: #1E293B;
  --lotte-gray-dark: #475569;
  --lotte-gray: #64748B;
  --lotte-gray-light: #F1F5F9;
  --lotte-border: #E2E8F0;
  --lotte-white: #FFFFFF;
  --lotte-success: #10B981;
  
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.12);
  --shadow-red: 0 10px 25px rgba(237, 27, 36, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base & Typography */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--lotte-dark);
  background-color: #F8FAFC;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--lotte-dark);
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* Utilities & Animations */
.bg-lotte-red {
  background-color: var(--lotte-red) !important;
}

.bg-lotte-red-light {
  background-color: var(--lotte-red-light) !important;
}

.bg-lotte-blue {
  background-color: var(--lotte-blue) !important;
}

.text-lotte-red {
  color: var(--lotte-red) !important;
}

.text-lotte-blue {
  color: var(--lotte-blue) !important;
}

.border-lotte-red {
  border-color: var(--lotte-red) !important;
}

.rounded-4-custom {
  border-radius: var(--radius-lg) !important;
}

.rounded-5-custom {
  border-radius: var(--radius-xl) !important;
}

.shadow-custom-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-custom-md {
  box-shadow: var(--shadow-md);
}

.shadow-custom-lg {
  box-shadow: var(--shadow-lg);
}

.shadow-red-glow {
  box-shadow: var(--shadow-red);
}

/* Pulse animation */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(237, 27, 36, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(237, 27, 36, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(237, 27, 36, 0);
  }
}

.animate-pulse {
  animation: pulseGlow 2s infinite;
}

@keyframes floatAnim {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.animate-float {
  animation: floatAnim 4s ease-in-out infinite;
}

/* Top Notification Ribbon */
.top-ribbon {
  background: linear-gradient(90deg, #9E0C22 0%, #ED1B24 50%, #C8102E 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 0;
  position: relative;
  z-index: 1040;
}

.top-ribbon a {
  color: var(--lotte-yellow);
  text-decoration: underline;
}

/* Navbar */
.main-navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 10px 0;
}

.main-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--lotte-red);
  color: #fff;
  border-radius: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(237, 27, 36, 0.25);
  flex-shrink: 0;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
  border: 1.5px solid rgba(237, 27, 36, 0.2);
}

.brand-text-title {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.5px;
  color: var(--lotte-red);
  line-height: 1.1;
}

.brand-text-subtitle {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--lotte-gray);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.main-navbar .navbar-toggler {
  border: 1.5px solid var(--lotte-border);
  border-radius: 10px;
  padding: 7px 11px;
  font-size: 1.15rem;
  color: var(--lotte-dark);
  background: #fff;
  transition: var(--transition);
  line-height: 1;
}

.main-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(237, 27, 36, 0.15);
  border-color: var(--lotte-red);
}

.main-navbar .navbar-toggler:hover {
  background: var(--lotte-red-light);
  color: var(--lotte-red);
}

@media (min-width: 992px) {
  .main-navbar .navbar-toggler {
    display: none !important;
  }
  .navbar-nav .nav-link {
    white-space: nowrap;
  }
}

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--lotte-dark);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover {
  color: var(--lotte-red);
  background-color: var(--lotte-red-light);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  padding: 40px 0 60px;
  overflow: hidden;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: var(--lotte-red-light);
  border: 1px solid rgba(237, 27, 36, 0.2);
  color: var(--lotte-red);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 20px;
}

.hero-highlight {
  color: var(--lotte-red);
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(255, 194, 14, 0.35);
  z-index: -1;
  border-radius: 4px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--lotte-gray-dark);
  margin-bottom: 28px;
  line-height: 1.65;
}

.hero-banner-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
  transition: var(--transition);
}

.hero-banner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-banner-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.btn-lotte {
  background: linear-gradient(135deg, var(--lotte-red) 0%, #D4141D 100%);
  color: #fff;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(237, 27, 36, 0.3);
}

.btn-lotte:hover {
  background: linear-gradient(135deg, #D4141D 0%, #B9141B 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(237, 27, 36, 0.4);
}

.btn-lotte-outline {
  background: transparent;
  color: var(--lotte-red);
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 50px;
  border: 2px solid var(--lotte-red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-lotte-outline:hover {
  background: var(--lotte-red-light);
  color: var(--lotte-red-dark);
  border-color: var(--lotte-red-dark);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%);
  color: #fff;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #1EBE5D 0%, #159C4B 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.45);
}

.btn-submit-form {
  background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 13px 24px;
  border-radius: 12px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn-submit-form:hover {
  background: linear-gradient(135deg, #1EBE5D 0%, #159C4B 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.38);
}

.btn-submit-form i {
  font-size: 1.35rem;
  line-height: 1;
}

/* Section Header */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--lotte-gray);
  max-width: 720px;
  margin: 0 auto 36px;
}

/* Trust / Feature Cards */
.feature-box {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--lotte-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-4px);
  border-color: rgba(237, 27, 36, 0.3);
  box-shadow: var(--shadow-md);
}

.feature-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

/* Package Cards */
.package-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 2px solid var(--lotte-border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: var(--lotte-red);
  box-shadow: 0 16px 36px rgba(237, 27, 36, 0.15);
}

.package-card.featured-card {
  border-color: var(--lotte-red);
  box-shadow: 0 12px 30px rgba(237, 27, 36, 0.18);
}

.package-ribbon {
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--lotte-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 5px 36px;
  transform: rotate(45deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 5;
}

.package-img-wrap {
  position: relative;
  background: #F1F5F9;
  cursor: pointer;
  overflow: hidden;
  border-bottom: 1px solid var(--lotte-border);
}

.package-img-wrap img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-img-wrap:hover img {
  transform: scale(1.04);
}

.package-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.package-img-wrap:hover .package-img-overlay {
  opacity: 1;
}

.package-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-name {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.package-price {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--lotte-red);
  line-height: 1.1;
  margin-bottom: 14px;
}

.package-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lotte-yellow-light);
  border: 1px solid rgba(255, 194, 14, 0.4);
  color: #92400E;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.package-facilities {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 0.92rem;
  flex-grow: 1;
}

.package-facilities li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--lotte-gray-dark);
}

.package-facilities li i {
  color: var(--lotte-red);
  margin-top: 4px;
  font-size: 0.9rem;
}

/* ========================================================
   PRICELIST SLIDER COMPONENT (IMAGES 15 - 34)
   "bisa dilihat gambarnya secara utuh"
   ======================================================== */
.pricelist-slider-wrapper {
  background: #0B132B;
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  color: #fff;
  box-shadow: 0 20px 48px rgba(11, 19, 43, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.slider-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.slider-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(237, 27, 36, 0.2);
  border: 1px solid rgba(237, 27, 36, 0.4);
  color: #FF8A8A;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Uncropped image container */
.slider-stage-container {
  position: relative;
  background: #070D1F;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.slider-image-card {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  cursor: zoom-in;
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-image-card:hover {
  transform: scale(1.01);
}

/* The image is rendered ENTIRELY (contain, uncropped) */
.slider-image-card img {
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

/* Controls */
.slider-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  cursor: pointer;
  z-index: 10;
}

.slider-nav-btn:hover {
  background: var(--lotte-red);
  border-color: var(--lotte-red);
  color: #fff;
  transform: scale(1.1);
}

.slider-floating-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.slider-floating-btn.prev-btn {
  left: 24px;
}

.slider-floating-btn.next-btn {
  right: 24px;
}

/* Quick Jump Category Pills */
.category-filter-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--lotte-red) transparent;
}

.category-filter-scroll::-webkit-scrollbar {
  height: 6px;
}

.category-filter-scroll::-webkit-scrollbar-thumb {
  background: rgba(237, 27, 36, 0.4);
  border-radius: 10px;
}

.category-pill-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #E2E8F0;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
  cursor: pointer;
}

.category-pill-btn:hover,
.category-pill-btn.active {
  background: var(--lotte-red);
  border-color: var(--lotte-red);
  color: #fff;
}

/* Zoom Lightbox Modal */
.lightbox-modal .modal-content {
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: #fff;
}

.lightbox-modal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-modal-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}

/* Alur Pendaftaran (Steps) */
.step-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--lotte-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  height: 100%;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--lotte-red);
  box-shadow: var(--shadow-md);
}

.step-num-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lotte-red) 0%, #B9141B 100%);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
  box-shadow: 0 4px 10px rgba(237, 27, 36, 0.3);
}

/* Registration Form Card */
.reg-form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--lotte-border);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.reg-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--lotte-red) 0%, var(--lotte-yellow) 50%, var(--lotte-blue) 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.form-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--lotte-dark);
  margin-bottom: 6px;
}

.form-control, .form-select {
  border-radius: 12px;
  padding: 12px 16px;
  border: 1.5px solid var(--lotte-border);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--lotte-red);
  box-shadow: 0 0 0 4px rgba(237, 27, 36, 0.12);
}

.form-check-input:checked {
  background-color: var(--lotte-red);
  border-color: var(--lotte-red);
}

/* Branch List Section */
.branch-pill {
  background: #fff;
  border: 1px solid var(--lotte-border);
  border-radius: 12px;
  padding: 12px 16px;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.branch-pill:hover {
  border-color: var(--lotte-red);
  background: var(--lotte-red-light);
  transform: translateY(-2px);
}

.branch-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(237, 27, 36, 0.1);
  color: var(--lotte-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Floating WhatsApp Button */
.floating-wa-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1020;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.floating-wa-btn:hover {
  color: #fff;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}

.floating-wa-icon {
  font-size: 1.5rem;
  line-height: 1;
}

/* Footer */
.main-footer {
  background: #0B132B;
  color: #94A3B8;
  padding: 60px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.main-footer h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
}

.main-footer a {
  color: #CBD5E1;
}

.main-footer a:hover {
  color: var(--lotte-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  margin-top: 40px;
  font-size: 0.85rem;
}

/* Responsive Tweaks */
@media (max-width: 991.98px) {
  .main-navbar .navbar-brand {
    max-width: calc(100% - 60px);
    margin-right: 0;
  }
  
  .brand-text-subtitle {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .main-navbar .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-navbar .navbar-collapse {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--lotte-border);
  }

  .hero-section {
    padding: 24px 0 40px;
  }
  
  .slider-floating-btn {
    display: none;
  }
  
  .pricelist-slider-wrapper {
    padding: 24px 16px;
  }
  
  .slider-stage-container {
    min-height: 420px;
    padding: 10px;
  }
  
  .reg-form-card {
    padding: 24px 18px;
  }
  
  .floating-wa-btn span {
    display: none;
  }
  
  .floating-wa-btn {
    padding: 14px;
    border-radius: 50%;
  }
}

@media (max-width: 575.98px) {
  .main-navbar {
    padding: 7px 0;
  }
  
  .brand-badge {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
    border-radius: 8px;
  }

  .brand-logo-img {
    width: 36px;
    height: 36px;
  }
  
  .brand-text-title {
    font-size: 1.05rem;
  }
  
  .brand-text-subtitle {
    font-size: 0.58rem;
    letter-spacing: 0.2px;
  }
  
  .main-navbar .navbar-toggler {
    padding: 5px 9px;
    font-size: 0.95rem;
  }

  .btn-submit-form {
    padding: 12px 16px;
    font-size: 0.92rem;
    border-radius: 10px;
  }

  .btn-submit-form i {
    font-size: 1.2rem;
  }

  .slider-stage-container {
    min-height: 340px;
  }
}
