/* BarCIE Landing Page Styles - Production Ready */

/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, "Helvetica Neue", sans-serif;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(18, 39, 74, 0.55), rgba(18, 39, 74, 0.55)),
    url("../../public/images/imageBg/BarCIE-0.jpg") center/cover fixed no-repeat;
  background-color: #12274a;
}

section {
  position: relative;
}

section:not(.hero-section) {
  background-color: rgba(248, 249, 250, 0.86);
}

section.animated-bg {
  background: rgba(28, 58, 109, 0.82) !important;
  animation: none;
}

section.bg-light {
  background-color: rgba(248, 249, 250, 0.9) !important;
}

section.bg-dark {
  background-color: rgba(16, 28, 52, 0.9) !important;
}

@media (max-width: 991px) {
  body {
    background-attachment: scroll;
  }
}

/* CSS Variables */
:root {
  --primary-color: #1e3c72;
  --secondary-color: #2a5298;
  --accent-color: #ffdd57;
  --text-dark: #2c3e50;
  --text-light: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
}

/* Utility Classes */
.container {
  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: 1320px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col,
.col-6,
.col-md-6,
.col-lg-4,
.col-lg-6,
.col-lg-8,
.col-lg-12,
.col-sm-6 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex: 1 0 0%;
}
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Text Utilities */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-white {
  color: #ffffff !important;
}
.text-dark {
  color: #2c3e50 !important;
}
.text-muted {
  color: #6c757d !important;
}
.text-primary {
  color: var(--primary-color) !important;
}
.text-warning {
  color: var(--accent-color) !important;
}
.text-success {
  color: var(--success-color) !important;
}
.text-danger {
  color: var(--danger-color) !important;
}
.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

@media (min-width: 768px) {
  .text-md-end {
    text-align: right;
  }
}

/* Typography */
.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-5 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
}
.lead {
  font-size: 1.25rem;
  font-weight: 300;
}
.h2 {
  font-size: 2rem;
}
.fw-bold {
  font-weight: 700 !important;
}

@media (max-width: 768px) {
  .display-3 {
    font-size: 2.5rem;
  }
  .display-5 {
    font-size: 2rem;
  }
}

/* Spacing */
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.me-1 {
  margin-right: 0.25rem !important;
}
.me-2 {
  margin-right: 0.5rem !important;
}
.me-3 {
  margin-right: 1rem !important;
}
.ms-auto {
  margin-left: auto !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.p-4 {
  padding: 1.5rem !important;
}
.pe-lg-4 {
  padding-right: 1.5rem !important;
}

.section-padding {
  padding: 80px 0;
}

/* Display */
.d-flex {
  display: flex !important;
}
.d-block {
  display: block !important;
}
.d-inline-block {
  display: inline-block !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-start {
  align-items: flex-start !important;
}

/* Background Classes */
.bg-light {
  background-color: #f8f9fa !important;
}
.bg-dark {
  background-color: #343a40 !important;
}

/* Animations */
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animated-bg {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color),
    var(--accent-color)
  );
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

/* Navigation */
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar-dark .navbar-brand,
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--accent-color);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: bold;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0 0.15rem;
}

.nav-link {
  padding: 0.5rem 0.65rem;
  transition: color 0.3s ease;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-link.active {
  color: var(--accent-color) !important;
}

.navbar-custom {
  background: rgba(30, 60, 114, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

.navbar-custom.scrolled {
  background: rgba(30, 60, 114, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-toggler {
  border: none;
  background: transparent;
  color: white;
  font-size: 1.25rem;
  padding: 0.25rem 0.5rem;
}

.hero-section {
  height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(30, 60, 114, 0.78),
    rgba(42, 82, 152, 0.72)
  );
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 221, 87, 0.1);
  animation: float 20s infinite ease-in-out;
}

.hero-bg-shapes .shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -100px;
  animation-delay: 0s;
}

.hero-bg-shapes .shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -50px;
  animation-delay: 5s;
}

.hero-bg-shapes .shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 30%;
  animation-delay: 10s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(120deg);
  }
  66% {
    transform: translateY(30px) rotate(240deg);
  }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 221, 87, 0.2);
  border: 1px solid rgba(255, 221, 87, 0.4);
  border-radius: 50px;
  padding: 8px 20px;
  backdrop-filter: blur(10px);
  animation: fadeInDown 1s ease;
}

/* Hero Title */
.hero-title {
  animation: fadeInUp 1s ease 0.2s both;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(45deg, #ffdd57, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(20deg);
  }
}

/* Hero Description */
.hero-description {
  animation: fadeInUp 1s ease 0.4s both;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

/* Booking CTA Box */
.booking-cta-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(
    135deg,
    rgba(255, 221, 87, 0.15),
    rgba(255, 215, 0, 0.15)
  );
  border-left: 4px solid var(--accent-color);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(10px);
  animation:
    fadeInUp 1s ease 0.6s both,
    pulse 2s ease infinite;
}

.cta-icon {
  font-size: 2rem;
  color: var(--accent-color);
  animation: bounce 2s infinite;
}

.cta-content {
  color: white;
}

.cta-content strong {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 5px;
}

.cta-content p {
  font-size: 0.9rem;
  opacity: 0.9;
}

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

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 221, 87, 0.4);
  }
  50% {
    box-shadow: 0 0 20px 5px rgba(255, 221, 87, 0.1);
  }
}

/* Hero Buttons */
.hero-buttons {
  animation: fadeInUp 1s ease 0.8s both;
}

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

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 4px 15px rgba(255, 221, 87, 0.3);
  }
  50% {
    box-shadow: 0 8px 30px rgba(255, 221, 87, 0.6);
  }
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-logo-card {
  animation: logoFloat 6s ease-in-out infinite;
}

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

.hero-section .glass-card img {
  max-width: 100%;
  max-height: 400px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.hero-section .glass-card:hover img {
  transform: scale(1.05);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-primary-custom {
  background: linear-gradient(45deg, var(--accent-color), #ffd700);
  border: none;
  color: var(--text-dark);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(255, 221, 87, 0.3);
}

.btn-primary-custom:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 221, 87, 0.5);
  color: var(--text-dark);
}

.btn-outline-custom {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
}

.btn-outline-custom:hover {
  background: var(--accent-color);
  color: var(--text-dark);
  transform: scale(1.05);
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

/* Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 221, 87, 0.3);
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 221, 87, 0.2);
}

/* Images */
.img-fluid {
  max-width: 100%;
  height: auto;
}

.rounded-3 {
  border-radius: 0.5rem;
}

.rounded-circle {
  border-radius: 50%;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

/* Statistics */
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 0.25rem;
}

/* About Section */
.about-section {
  background: rgba(248, 249, 250, 0.88);
  position: relative;
  overflow: hidden;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 221, 87, 0.15);
  border: 1px solid rgba(255, 221, 87, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
}

.section-title {
  color: var(--text-dark);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.2rem;
}

/* About Image */
.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  /* Keep the image from growing too large on wide screens while
     remaining responsive on small devices */
  max-width: 400px; /* preferred max width */
  margin-left: 0; /* left-align within the column on wide screens */
}

/* Make the about image fill its column on smaller screens and center it */
@media (max-width: 991.98px) {
  .about-image-wrapper {
    max-width: 100%;
    margin: 0 auto;
  }
}

.about-image-wrapper img {
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

.image-overlay-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.badge-large {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-small {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 5px;
}

.about-content {
  padding-left: 2rem;
}

.content-title {
  color: var(--primary-color);
  line-height: 1.3;
}

.content-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #495057;
  margin-bottom: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(30, 60, 114, 0.15);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 12px;
  display: flex;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.stat-info {
  flex: 1;
}

@media (max-width: 991px) {
  .about-content {
    padding-left: 0;
    margin-top: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.gap-3 {
  gap: 1rem;
}

.h-100 {
  height: 100%;
}

input,
textarea,
select {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 221, 87, 0.25);
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.hidden {
  display: none !important;
}

.content-section {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.loading-spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--accent-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.375rem;
  color: white;
  transition: all 0.3s ease;
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(255, 221, 87, 0.25);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Alert styles */
.alert {
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

/* Responsive utilities */
@media (max-width: 767px) {
  .navbar-nav {
    flex-direction: column;
    width: 100%;
  }

  .hero-section {
    height: auto;
    padding: 100px 0 50px;
  }

  .display-3 {
    font-size: 2rem;
  }

  .section-padding {
    padding: 40px 0;
  }

  .gap-3 {
    gap: 0.5rem;
  }
}

/* Vision, Mission & History Section Styles */
#vision-mission {
  position: relative;
  overflow: hidden;
}

#vision-mission .glass-card {
  transition: all 0.4s ease;
  min-height: 100%;
}

#vision-mission .glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 221, 87, 0.3);
  border: 1px solid rgba(255, 221, 87, 0.4);
}

.vision-icon,
.mission-icon,
.history-icon {
  display: inline-block;
  animation: iconFloat 3s ease-in-out infinite;
}

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

.mission-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.mission-list li {
  padding-left: 0;
  position: relative;
  line-height: 1.6;
}

.mission-list i {
  vertical-align: top;
  margin-top: 2px;
}

.timeline-badge {
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Responsive adjustments for vision-mission */
@media (max-width: 991px) {
  #vision-mission .glass-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  #vision-mission .h2 {
    font-size: 1.5rem;
  }

  .mission-list li {
    font-size: 0.95rem;
  }
}

/* Brochure Section Styles */
.brochure-container {
  max-width: 1200px;
  margin: 0 auto;
}

.brochure-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.brochure-nav .btn {
  min-width: 150px;
  transition: all 0.3s ease;
}

.brochure-viewer {
  position: relative;
  padding: 0 60px;
}

.brochure-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.brochure-image {
  width: 100%;
  height: auto;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  display: block;
}

.brochure-image.active {
  animation: fadeInScale 0.5s ease;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.brochure-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-color);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.brochure-arrow:hover {
  background: #ffd700;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 221, 87, 0.4);
}

.brochure-arrow-left {
  left: 0;
}

.brochure-arrow-right {
  right: 0;
}

.brochure-indicator {
  margin-top: 1.5rem;
}

.brochure-indicator .badge {
  background: linear-gradient(45deg, var(--accent-color), #ffd700) !important;
  color: var(--text-dark);
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
}

.bg-primary-custom {
  background: linear-gradient(45deg, var(--accent-color), #ffd700);
  color: var(--text-dark);
}

.justify-content-center {
  justify-content: center !important;
}

/* Responsive adjustments for brochure */
@media (max-width: 768px) {
  .brochure-viewer {
    padding: 0 40px;
  }

  .brochure-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .brochure-nav .btn {
    min-width: 120px;
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

@media (max-width: 576px) {
  .brochure-viewer {
    padding: 0 30px;
  }

  .brochure-arrow {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .brochure-nav {
    gap: 0.5rem;
  }

  .brochure-nav .btn {
    min-width: 100px;
    font-size: 0.85rem;
    padding: 6px 12px;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffd700;
}
