/* Reset & Custom Properties */
:root {
  --primary: #0F382C;
  --primary-dark: #0A261E;
  --primary-light: #164E3D;
  --accent: #E68A2E;
  --accent-hover: #D97706;
  --bg-light: #F4F7F4;
  --bg-card: #FFFFFF;
  --text-main: #1A2E26;
  --text-muted: #556B61;
  --text-light: #F9FAF8;
  --border-color: #E2E8F0;
  --shadow-sm: 0 4px 6px -1px rgba(15, 56, 44, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 56, 44, 0.1);
  --shadow-lg: 0 20px 35px -10px rgba(15, 56, 44, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --font-family: 'Be Vietnam Pro', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

button, input, select, textarea {
  font-family: var(--font-family) !important;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

::-webkit-scrollbar-thumb {
  background: #0F382C;
  border-radius: 5px;
}

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

body {
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: 0.1px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header Decorator */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-light);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  background-color: #48BB78;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  outline: none;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 56, 44, 0.25);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent);
  color: white;
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* ----------------------------------------------------
   1. HEADER / NAVIGATION
---------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #02251A;
  color: white;
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.header-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.site-logo-img:hover {
  opacity: 0.92;
  transform: scale(1.02);
}

.footer-logo-img {
  height: 50px;
  margin-bottom: 12px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFFFFF;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
  cursor: pointer;
}

.nav-link:hover {
  color: #68D391;
}

.nav-arrow {
  font-size: 0.62rem;
  transition: transform 0.25s ease;
  color: #CBD5E0;
  margin-left: 2px;
}

.nav-item:hover .nav-arrow {
  transform: rotate(180deg);
  color: #68D391;
}

/* Dropdown Menu Styles */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background-color: #04261D;
  border-radius: var(--radius-sm);
  padding: 10px 0;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 100;
}

.nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #E2E8F0;
  transition: var(--transition);
  white-space: nowrap;
}

.dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #68D391;
  padding-left: 24px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn-simple {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.15rem;
  cursor: pointer;
  padding: 6px;
  position: relative;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn-simple:hover {
  color: #68D391;
  transform: scale(1.1);
}

.badge-dot {
  position: absolute;
  top: -2px;
  right: -6px;
  background-color: var(--accent);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-link:hover, .nav-link.active {
  color: #68D391;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #68D391;
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-icon-btn,
.icon-btn-simple {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.header-icon-btn:hover,
.icon-btn-simple:hover {
  opacity: 0.85;
  transform: scale(1.1);
}

.header-icon-btn i,
.icon-btn-simple i {
  color: #FFFFFF !important;
}

/* Universal Red Cart Badge Counter (Only appears when totalQty > 0 with numbers 1,2,3...) */
.global-cart-badge,
#cartBadgeCount {
  position: absolute !important;
  top: -4px !important;
  right: -8px !important;
  background-color: #EF4444 !important;
  color: #FFFFFF !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  font-family: 'Be Vietnam Pro', sans-serif !important;
  min-width: 18px !important;
  height: 18px !important;
  padding: 0 4px !important;
  border-radius: 9999px !important;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
  z-index: 10;
}

/* Hide badge completely when cart is empty */
.global-cart-badge.hidden,
#cartBadgeCount.hidden,
.global-cart-badge[style*="display: none"],
#cartBadgeCount[style*="display: none"] {
  display: none !important;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ----------------------------------------------------
   2. HERO SECTION
---------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - 60px);
  max-height: 720px;
  background-color: #030F0B;
  background-image: url('images/hero_lion.jpg');
  background-position: right 30%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Seamless dark background fade from left to right */
  background: linear-gradient(90deg, #030F0B 0%, #030F0B 35%, rgba(3, 15, 11, 0.5) 60%, transparent 100%);
}

.hero-container {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  padding: 0 36px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 540px;
  color: white;
  padding: 60px 0;
}

.hero-title-emerald {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 0.9;
  color: #FFFFFF;
  margin: 0;
  text-transform: uppercase;
}

.hero-subtitle-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
  margin-bottom: 32px;
}

.hero-title-zoo {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 0.9;
  color: #FFFFFF;
  text-transform: uppercase;
}

.hero-tagline-block {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 1px;
}

.btn-hero-green {
  background-color: #033927;
  color: #FFFFFF;
  padding: 13px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-hero-green:hover {
  background-color: #075238;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(3, 57, 39, 0.5);
}

.hero-subtitle::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
}

/* ----------------------------------------------------
   3. ABOUT THE ZOO SECTION
---------------------------------------------------- */
.about-section {
  padding: 80px 0 60px;
  background-color: #FFFFFF;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text-content h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #000000;
  line-height: 1.25;
  margin-bottom: 28px;
}

.about-text-content p {
  color: #2D3748;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 24px;
  text-align: justify;
}

.about-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 28px;
}

.thumb-card {
  height: 140px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.thumb-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.btn-see-more {
  background-color: #FFFFFF;
  color: #003829;
  border: 2px solid #003829;
  border-radius: 0;
  padding: 10px 48px;
  font-size: 1.15rem;
  font-weight: 700;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
}

.btn-see-more:hover {
  background-color: #003829;
  color: #FFFFFF;
}

.about-elephant-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  height: 580px;
  box-shadow: var(--shadow-md);
}

.about-elephant-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-elephant-overlay {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 100%);
  color: white;
  text-align: center;
}

.about-elephant-overlay h3 {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.35;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  text-align: center;
}

/* ----------------------------------------------------
   4. EXPLORE WILDLIFE SECTION
---------------------------------------------------- */
.explore-section {
  padding: 50px 0 70px;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.explore-tag-bar {
  width: 55px;
  height: 4px;
  background-color: #008037;
  border-radius: 2px;
  margin-bottom: 24px;
}

.explore-grid {
  display: grid;
  grid-template-columns: 5.5fr 6.5fr;
  gap: 50px;
  align-items: center;
}

.explore-img-wrap {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 380px;
}

.explore-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.explore-info {
  padding-right: 40px;
}

.explore-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2D3748;
  line-height: 1.2;
  margin-bottom: 20px;
}

.explore-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2D3748;
  margin: 28px 0 12px;
}

.explore-info p {
  color: #4A5568;
  font-size: 0.92rem;
  line-height: 1.65;
  text-align: justify;
}

/* Right Tropical Floral Leaf Border */
.explore-leaf-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  object-position: right top;
  pointer-events: none;
  z-index: 5;
}

.explore-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Decorative leaf */
.leaf-accent-right {
  position: absolute;
  right: -20px;
  bottom: 20px;
  width: 160px;
  opacity: 0.85;
  pointer-events: none;
}

/* ----------------------------------------------------
   5. ANIMAL GALLERY & CAROUSEL SECTION
---------------------------------------------------- */
.animals-section {
  padding: 80px 0 60px;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.animal-corner-leaf {
  position: absolute;
  bottom: -10px;
  max-width: 240px;
  width: 25%;
  height: auto;
  pointer-events: none;
  z-index: 5;
  transition: var(--transition);
}

.animal-corner-leaf.leaf-left {
  left: -10px;
}

.animal-corner-flower.flower-right {
  position: absolute;
  bottom: -15px;
  right: -5px;
  max-width: 170px;
  width: 18%;
  height: auto;
  pointer-events: none;
  z-index: 5;
}

.animals-carousel-wrapper {
  position: relative;
  padding: 0 40px;
}

.animals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.animal-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.animal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.animal-img-container {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.animal-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.animal-card:hover .animal-img-container img {
  transform: scale(1.06);
}

.animal-card-body {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FAFAFA;
}

.animal-info h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-dark);
  text-transform: uppercase;
}

.animal-info span {
  font-size: 0.8rem;
  color: #718096;
}

.animal-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #EBF8FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #3182CE;
}

.animal-badge.gold {
  background: #FEFCBF;
  color: #D69E2E;
}

.animal-badge.red {
  background: #FED7D7;
  color: #E53E3E;
}

/* Nav arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-dark);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 10;
  transition: var(--transition);
}

.carousel-arrow:hover {
  background-color: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
  left: 0;
}

.carousel-arrow.next {
  right: 0;
}

/* ----------------------------------------------------
   6. ANIMAL FEEDING EXPERIENCE SECTION
---------------------------------------------------- */
.feeding-section {
  padding: 70px 0;
  background-color: #0F382C;
}

.feeding-card {
  background-color: #D6E0DA;
  border-radius: 24px;
  padding: 60px 80px 56px;
  color: #1A2E26;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
}

.feeding-card h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #0A3326;
  letter-spacing: 0.5px;
}

.feeding-card p.subtitle {
  max-width: 820px;
  margin: 0 auto 20px;
  color: #2D3748;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
}

.feeding-desc-full {
  max-width: 780px;
  margin: 0 auto 32px;
  color: #4A5568;
  font-size: 0.88rem;
  line-height: 1.65;
  text-align: center;
}

.feeding-card h3.flow-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #0A3326;
  margin-bottom: 28px;
}

.feeding-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.step-card-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 210px;
}

.step-item-box {
  background: #FFFFFF;
  border: 1px solid #E68A2E;
  border-radius: 6px;
  width: 155px;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.step-card-wrap:hover .step-item-box {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.step-icon-img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  transition: var(--transition);
}

.step-card-wrap p {
  font-size: 0.88rem;
  font-weight: 700;
  color: #2D3748;
  margin-top: 14px;
  line-height: 1.4;
  text-align: center;
}

.step-arrow-line {
  color: #4A5568;
  font-size: 1.8rem;
  margin-top: 55px;
  opacity: 0.7;
}

.feeding-btn-wrap {
  margin-top: 48px;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  width: 100%;
  clear: both;
}

.btn-feeding-cta {
  background-color: #053724;
  color: #FFFFFF;
  padding: 13px 44px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: inline-block;
  text-transform: uppercase;
}

.btn-feeding-cta:hover {
  background-color: #095237;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 55, 36, 0.4);
}

/* ----------------------------------------------------
   7. SPECIAL SERVICES SECTION
---------------------------------------------------- */
.services-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.services-header-left h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 16px;
  max-width: 500px;
}

.services-banner-right {
  background-color: #04281E;
  color: white;
  padding: 24px 28px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  max-width: 600px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: var(--transition);
}

.services-banner-right:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(4, 40, 30, 0.35);
  background-color: #063528;
}

.banner-icon-phone {
  width: 72px;
  height: 72px;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #FFFFFF;
  flex-shrink: 0;
  padding: 4px;
}

.banner-icon-phone i {
  border: 2px solid #FFFFFF;
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 1.5rem;
}

.banner-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.banner-text p {
  font-size: 0.86rem;
  line-height: 1.5;
  color: #E2E8F0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid #E2E8F0;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.service-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #E6F4EA;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card .btn {
  width: 100%;
  font-size: 0.82rem;
  padding: 10px 16px;
}

/* ----------------------------------------------------
   8. CUSTOMER REVIEWS / TESTIMONIALS SECTION
---------------------------------------------------- */
.testimonials-section {
  padding: 80px 0;
  background-color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #2B3A33;
  margin-bottom: 40px;
}

.testimonials-slider-wrapper {
  position: relative;
  margin-bottom: 28px;
  padding: 0 40px;
}

.testimonials-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 16px;
  padding: 10px 4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonials-grid::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background-color: #F1F4F1;
  border: 1.5px solid #6E887B;
  border-radius: 12px;
  padding: 22px 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 270px;
  flex: 0 0 calc(25% - 12px);
  min-width: 250px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #04281E;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 10;
  transition: var(--transition);
}

.testi-arrow:hover {
  background-color: #E68A2E;
  transform: translateY(-50%) scale(1.1);
}

.testi-arrow.prev {
  left: -10px;
}

.testi-arrow.next {
  right: -10px;
}

.user-info-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-icon-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #6E887B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #5C786A;
  background-color: #E2E8E2;
}

.user-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #6E887B;
}

.user-details h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1A2E26;
  margin-bottom: 2px;
}

.sub-meta {
  font-size: 0.78rem;
  color: #83978B;
}

.sub-meta .dot {
  margin: 0 3px;
}

.review-text {
  font-size: 0.84rem;
  color: #4A5568;
  line-height: 1.55;
  margin: 0;
}

.progress-bar-container {
  width: 420px;
  max-width: 90%;
  height: 4px;
  background-color: #DDE4DF;
  border-radius: 2px;
  margin: 0 auto 28px;
  overflow: hidden;
}

.progress-bar-fill {
  width: 25%;
  height: 100%;
  background-color: #04281E;
  border-radius: 2px;
  transition: width 0.2s ease;
}

.star-rating-green {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 2.4rem;
  margin-bottom: 28px;
}

.star-btn {
  color: #CBD5E0;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.star-btn.active,
.star-btn.hovered {
  color: #04281E;
}

.star-btn:hover {
  transform: scale(1.25);
}

.feedback-form-wrap {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feedback-textarea {
  width: 100%;
  height: 130px;
  background-color: #F1F4F1;
  border: none;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #2D3748;
  outline: none;
  resize: none;
  margin-bottom: 24px;
}

.feedback-textarea::placeholder {
  color: #A0AEC0;
}

.feedback-btn-wrap {
  display: flex;
  justify-content: center;
}

.btn-feedback-submit {
  background-color: #04281E;
  color: #FFFFFF;
  padding: 12px 42px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-feedback-submit:hover {
  background-color: #083D2F;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(4, 40, 30, 0.3);
}

.testimonial-right-leaf {
  position: absolute;
  right: -25px;
  bottom: 12%;
  max-width: 220px;
  width: 20%;
  height: auto;
  pointer-events: none;
  z-index: 5;
}

/* ----------------------------------------------------
   9. FOOTER
---------------------------------------------------- */
.footer {
  background-color: #02251A;
  color: white;
  padding: 60px 0 50px;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.6fr 1.5fr;
  gap: 36px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-top: 14px;
}

.footer-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #CCCCCC;
  font-size: 0.88rem;
  margin-bottom: 14px;
  line-height: 1.4;
}

.footer-contact-list i {
  font-size: 1.1rem;
  color: #FFFFFF;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

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

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

.footer-links a {
  color: #CCCCCC;
  font-size: 0.88rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.social-circles {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 0.85rem;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-btn:hover {
  transform: scale(1.15);
  opacity: 0.9;
}

.social-btn.facebook {
  background-color: #1877F2;
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.youtube {
  background-color: #FF0000;
}

.social-btn.tiktok {
  background-color: #000000;
}

.social-icon:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  color: #718096;
  font-size: 0.82rem;
}

/* Modal Popup Styling */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 24px;
  max-width: 480px;
  width: 92%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 24px;
  position: relative;
  animation: modalFade 0.3s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #0F382C;
  border-radius: 4px;
}

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

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #718096;
}

/* ----------------------------------------------------
   10. TICKETS PAGE STYLING (tickets.html)
---------------------------------------------------- */
.tickets-hero-section {
  position: relative !important;
  width: 100% !important;
  height: 540px !important;
  background-color: #04281E !important;
  background-image: url('images/ticket_hero_lion.jpg') !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: right 18% center !important;
  display: flex !important;
  align-items: center !important;
  border-bottom-right-radius: 170px !important;
  overflow: hidden !important;
}

.tickets-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 100%);
  z-index: 2;
}

.tickets-hero-container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.tickets-hero-content {
  max-width: 680px;
  color: #FFFFFF;
  text-align: left;
  padding: 40px 0;
}

.tickets-hero-content h1 {
  font-size: 4.6rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #FFFFFF;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.5px;
}

.tickets-hero-sub {
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 36px;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.btn-tickets-datve {
  background-color: #04281E;
  color: #FFFFFF;
  padding: 16px 54px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 9999px;
  border: none;
  display: inline-block;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.btn-tickets-datve:hover {
  background-color: #083D2F;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(4, 40, 30, 0.4);
}

.tickets-dashed-divider {
  border-bottom: 2.5px dashed #0F382C;
  opacity: 0.85;
  margin: 60px auto 45px;
  max-width: 1280px;
}

.tickets-main-section {
  padding: 10px 0 80px;
  background-color: #FFFFFF;
}

.tickets-layout-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar Styling */
.tickets-sidebar {
  text-align: left;
  position: sticky;
  top: 100px;
}

.sidebar-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0F382C;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-group {
  margin-bottom: 28px;
}

.sidebar-group-title {
  font-size: 1rem;
  font-weight: 800;
  color: #0F382C;
  margin-bottom: 12px;
}

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

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

.sidebar-link {
  color: #4A5568;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  display: block;
}

.sidebar-link:hover,
.sidebar-link.active {
  color: #0F382C;
  font-weight: 700;
  padding-left: 4px;
}

/* Ticket List Container */
.tickets-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ticket-row-card {
  background-color: #FAFCFA;
  border: 1.5px solid #EAF0EA;
  border-radius: 20px;
  padding: 30px 34px;
  display: flex;
  gap: 36px;
  align-items: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.ticket-row-card:hover {
  box-shadow: 0 12px 28px rgba(15, 56, 44, 0.08);
  border-color: #D5E2D5;
  transform: translateY(-2px);
}

/* Ticket Graphic Stub */
.ticket-graphic-stub {
  width: 410px;
  min-width: 410px;
  height: 175px;
  border-radius: 14px;
  position: relative;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  color: #04281E;
}

.ticket-graphic-stub::before,
.ticket-graphic-stub::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #FAFCFA;
  border-radius: 50%;
  right: 90px;
  z-index: 5;
}

.ticket-graphic-stub::before {
  top: -8px;
}

.ticket-graphic-stub::after {
  bottom: -8px;
}

.day-ticket, .kid-ticket-day {
  background-color: #F1F4EE;
  color: #04281E;
}

.night-ticket {
  background: linear-gradient(135deg, #0F172A 0%, #020617 100%);
  color: #FFFFFF;
}

.kid-ticket-night {
  background: linear-gradient(135deg, #2E1065 0%, #0F172A 100%);
  color: #FFFFFF;
}

.stub-main-content {
  padding: 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  position: relative;
  text-align: left;
}

.stub-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 6px;
  text-transform: uppercase;
  width: fit-content;
  letter-spacing: 0.5px;
}

.green-badge {
  background-color: #386641;
  color: #FFFFFF;
}

.yellow-badge {
  background-color: #D97706;
  color: #FFFFFF;
}

.dark-badge {
  background-color: #1E293B;
  border: 1px solid #475569;
  color: #FFFFFF;
}

.purple-badge {
  background-color: #4C1D95;
  color: #FFFFFF;
}

.stub-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #04281E;
  margin-top: 4px;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}

.night-ticket .stub-title,
.kid-ticket-night .stub-title {
  color: #FFFFFF;
}

.stub-time {
  font-size: 1.1rem;
  font-weight: 800;
  color: #04281E;
}

.night-ticket .stub-time,
.kid-ticket-night .stub-time {
  color: #F1F5F9;
}

.stub-time i {
  color: #E68A2E;
  margin-left: 4px;
}

.stub-desc {
  font-size: 0.76rem;
  font-weight: 700;
  color: #2D3748;
  line-height: 1.3;
  margin-top: 2px;
}

.night-ticket .stub-desc,
.kid-ticket-night .stub-desc {
  color: #CBD5E0;
}

.stub-icons {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.stub-icon-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #1C4035;
}

.night-ticket .stub-icon-item,
.kid-ticket-night .stub-icon-item {
  color: #E2E8F0;
}

.stub-icon-item i {
  font-size: 0.82rem;
  color: #386641;
}

.night-ticket .stub-icon-item i,
.kid-ticket-night .stub-icon-item i {
  color: #60A5FA;
}

.stub-animal-img {
  position: absolute;
  right: 98px;
  top: 0;
  width: 160px;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.stub-animal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  mask-image: linear-gradient(to right, transparent 0%, black 35%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 35%);
}

.stub-perforate {
  width: 2px;
  height: 100%;
  border-left: 2px dashed #B8C4B0;
  position: relative;
  z-index: 3;
}

.night-ticket .stub-perforate,
.kid-ticket-night .stub-perforate {
  border-left-color: rgba(255, 255, 255, 0.3);
}

.stub-right-barcode {
  width: 98px;
  background-color: #E2E8DB;
  color: #04281E;
  padding: 14px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}

.stub-right-barcode.dark-bar {
  background-color: #0F172A;
  color: #FFFFFF;
}

.stub-right-barcode.purple-bar {
  background-color: #2E1065;
  color: #FFFFFF;
}

.stub-brand-logo {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #04281E;
  text-align: center;
  line-height: 1.1;
}

.night-ticket .stub-brand-logo,
.kid-ticket-night .stub-brand-logo {
  color: #FFFFFF;
}

.stub-tag {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1C4035;
  margin: 4px 0;
}

.night-ticket .stub-tag,
.kid-ticket-night .stub-tag {
  color: #94A3B8;
}

.stub-barcode-lines {
  display: flex;
  gap: 2.5px;
  height: 38px;
  align-items: center;
}

.stub-barcode-lines span {
  display: inline-block;
  background-color: #04281E;
  height: 100%;
  width: 2px;
}

.night-ticket .stub-barcode-lines span,
.kid-ticket-night .stub-barcode-lines span {
  background-color: #FFFFFF;
}

.stub-barcode-lines span:nth-child(2) { width: 4px; }
.stub-barcode-lines span:nth-child(4) { width: 3px; }
.stub-barcode-lines span:nth-child(6) { width: 4px; }

.stub-code {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #04281E;
}

.night-ticket .stub-code,
.kid-ticket-night .stub-code {
  color: #FFFFFF;
}

/* Sidebar Filter Links Active & Hover States */
.sidebar-link {
  color: #4A5568;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  display: block;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-link:hover,
.sidebar-link.active {
  color: #0F382C !important;
  font-weight: 800 !important;
  background-color: #E8F3EE;
  transform: translateX(4px);
}

/* Ticket Info Right Box & Bottom-Right Details Link */
.ticket-info-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  text-align: left;
  padding: 6px 0 2px 10px;
}

.ticket-info-box h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0F382C;
  margin-bottom: 10px;
}

.ticket-info-box p {
  font-size: 0.95rem;
  color: #4A5568;
  line-height: 1.65;
  margin-bottom: 16px;
}

.ticket-details-link {
  align-self: flex-end;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0F2C59 !important;
  text-decoration: none;
  margin-top: auto;
  transition: all 0.2s ease;
  cursor: pointer;
}

.ticket-details-link:hover {
  color: #1E3A8A !important;
  text-decoration: underline;
}

.profile-avatar-wrap {
  position: relative;
  cursor: pointer;
}

.profile-avatar-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(4, 40, 30, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.profile-avatar-wrap:hover .profile-avatar-overlay {
  opacity: 1;
}

/* ----------------------------------------------------
   AUTHENTICATION MODAL STYLES (MATCHING IMAGES 1, 2, 3, 4)
---------------------------------------------------- */
.auth-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.auth-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.auth-modal-card {
  background: #FAFAFA;
  width: 90%;
  max-width: 390px;
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 24px;
  padding: 22px 24px 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  position: relative;
  font-family: 'Be Vietnam Pro', sans-serif !important;
  box-sizing: border-box;
  animation: authPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-modal-card::-webkit-scrollbar {
  width: 5px;
}

.auth-modal-card::-webkit-scrollbar-thumb {
  background: #0F382C;
  border-radius: 4px;
}

@keyframes authPop {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.auth-close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.5rem;
  color: #475569;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
}

.auth-close-btn:hover {
  color: #0F382C;
}

.auth-back-btn {
  position: absolute;
  top: 16px;
  left: 18px;
  font-size: 1rem;
  color: #334155;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}

.auth-back-btn:hover {
  color: #0F382C;
}

/* Tabs Header */
.auth-tabs-header {
  display: flex;
  justify-content: space-around;
  border-bottom: 2px solid #E2E8F0;
  margin-bottom: 16px;
  position: relative;
}

.auth-tab-btn {
  font-family: 'Be Vietnam Pro', sans-serif !important;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  padding-bottom: 8px;
  cursor: pointer;
  color: #64748B;
  background: none;
  border: none;
  border-bottom: 3.5px solid transparent;
  width: 50%;
  text-align: center;
  transition: all 0.2s ease;
  margin-bottom: -2px;
  letter-spacing: 0.5px;
}

.auth-tab-btn.active {
  color: #04281E;
  border-bottom: 3.5px solid #04281E;
}

/* Forms & Fields */
.auth-form-body {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.auth-field-group {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}

.auth-field-label {
  font-family: 'Be Vietnam Pro', sans-serif !important;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 4px;
}

.auth-input {
  font-family: 'Be Vietnam Pro', sans-serif !important;
  background-color: #F1F5F9;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: #1E293B;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s, background-color 0.2s;
}

.auth-input::placeholder {
  color: #94A3B8;
}

.auth-input:focus {
  background-color: #FFFFFF;
  border-color: #0F382C;
}

.auth-pwd-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.auth-pwd-wrapper .auth-input {
  padding-right: 44px;
}

.auth-eye-icon {
  position: absolute;
  right: 16px;
  color: #64748B;
  cursor: pointer;
  font-size: 1.05rem;
  transition: color 0.2s;
}

.auth-eye-icon:hover {
  color: #0F382C;
}

.auth-checkbox-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 22px;
}

.auth-checkbox-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.88rem;
  color: #475569;
  margin-bottom: 18px;
}

/* Custom Circle Choice Button (Matching Image 2) */
.custom-auth-radio {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #888888;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  margin: 2px 0 0 0;
  flex-shrink: 0;
  transition: all 0.2s ease;
  position: relative;
  background-color: #FFFFFF;
}

.custom-auth-radio:checked {
  border-color: #555555;
  background-color: #FFFFFF;
}

.custom-auth-radio:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #555555;
}

.auth-radio-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #334155;
  font-family: 'Be Vietnam Pro', sans-serif !important;
  line-height: 1.45;
  text-align: left;
}

.auth-radio-label span {
  font-family: 'Be Vietnam Pro', sans-serif !important;
}

.auth-forgot-link {
  color: #10B981;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  font-family: 'Be Vietnam Pro', sans-serif !important;
  transition: color 0.2s;
}

.auth-forgot-link:hover {
  color: #0F382C;
}

.auth-green-text {
  color: #10B981 !important;
  text-decoration: none;
  font-weight: 500;
  display: inline;
  white-space: nowrap;
}

.auth-forgot-link {
  color: #10B981;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.auth-forgot-link:hover {
  color: #0F382C;
}

.auth-green-text {
  color: #10B981;
  text-decoration: none;
  font-weight: 600;
}

.auth-submit-btn {
  background-color: #04281E;
  color: #FFFFFF;
  border-radius: 30px;
  padding: 13px;
  font-size: 1.05rem;
  font-weight: 700;
  width: 100%;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(4, 40, 30, 0.2);
}

.auth-submit-btn:hover {
  background-color: #0F382C;
  transform: translateY(-1px);
}

/* Divider & Socials */
.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #94A3B8;
  font-size: 0.85rem;
  margin: 22px 0 18px;
  font-weight: 500;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #CBD5E0;
}

.auth-divider span {
  padding: 0 12px;
}

.auth-social-row {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.auth-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.auth-social-btn:hover {
  transform: translateY(-2px);
}

.auth-social-btn.fb {
  background-color: #1877F2;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.25);
}

.auth-social-btn.gg {
  background-color: #FFFFFF;
  color: #4285F4;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.auth-social-btn.ap {
  background-color: #000000;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Step Views Header */
.auth-step-header {
  text-align: left;
  margin-bottom: 24px;
}

.auth-step-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0F382C;
  margin-bottom: 8px;
}

.auth-step-sub {
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}

/* ====================================================
   COMPREHENSIVE MOBILE RESPONSIVE SYSTEM
   (@media max-width: 1024px, 768px, 480px)
   Tối ưu toàn diện cho thiết bị di động & Tablet,
   triệt tiêu 100% lỗi tràn ngang và khoảng trắng thừa.
==================================================== */

/* --- 1. TABLET & SMALL LAPTOPS (<= 1024px) --- */
@media (max-width: 1024px) {
  .hero-title-emerald,
  .hero-title-zoo {
    font-size: 3.5rem;
  }

  .tickets-hero-content h1 {
    font-size: 3.6rem;
  }

  .tickets-layout-grid {
    grid-template-columns: 200px 1fr;
    gap: 24px;
  }

  .about-grid,
  .explore-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .highlights-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stores-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .checkout-layout-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .profile-dashboard-layout {
    flex-direction: column;
  }

  .profile-sidebar-card {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* --- 2. SMARTPHONES & TABLETS (<= 768px) --- */
@media (max-width: 768px) {
  /* Global viewport lock - Chặn tràn ngang 100% */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
  }

  *, *::before, *::after {
    box-sizing: border-box !important;
  }

  .container {
    padding: 0 16px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 2.1. Header & Mobile Menu */
  .header {
    padding: 10px 0 !important;
  }

  .header-container {
    padding: 0 16px !important;
  }

  .site-logo-img {
    height: 38px !important;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.45rem;
    cursor: pointer;
    padding: 4px;
  }

  .nav-menu {
    display: none;
    position: fixed !important;
    top: 58px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background-color: #02251A !important;
    flex-direction: column !important;
    padding: 24px 20px 32px !important;
    gap: 14px !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45) !important;
    z-index: 9999 !important;
    max-height: calc(100vh - 58px) !important;
    overflow-y: auto !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .nav-item {
    width: 100% !important;
    text-align: left !important;
  }

  .nav-link {
    font-size: 0.95rem !important;
    padding: 10px 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .dropdown-menu {
    position: static !important;
    width: 100% !important;
    background-color: #011811 !important;
    border-radius: 8px !important;
    padding: 8px 0 !important;
    box-shadow: none !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: block !important;
    margin-top: 6px !important;
  }

  .dropdown-item {
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
  }

  .header-actions {
    gap: 12px !important;
  }

  /* 2.2. Homepage (index.html) */
  .hero {
    min-height: 480px !important;
    max-height: none !important;
    padding: 50px 0 !important;
    background-position: center right 25% !important;
  }

  .hero-content {
    max-width: 100% !important;
    padding: 0 !important;
    text-align: left !important;
  }

  .hero-title-emerald {
    font-size: 2.8rem !important;
    line-height: 1.1 !important;
  }

  .hero-title-zoo {
    font-size: 2.8rem !important;
    line-height: 1.1 !important;
  }

  .hero-subtitle-row {
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
  }

  .hero-tagline-block {
    font-size: 0.82rem !important;
  }

  .btn-hero-green {
    padding: 12px 34px !important;
    font-size: 0.95rem !important;
  }

  .about-section {
    padding: 40px 0 !important;
  }

  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .about-text-content h2 {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
  }

  .about-thumbnails {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    margin: 20px 0 !important;
  }

  .thumb-card {
    height: 90px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }

  .thumb-card img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  .about-elephant-card {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 240px !important;
    border-radius: 18px !important;
  }

  .about-elephant-card img {
    height: 240px !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  .about-elephant-overlay h3 {
    font-size: 1.1rem !important;
    padding: 16px !important;
  }

  .explore-section {
    padding: 40px 0 !important;
  }

  .explore-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .explore-info h2 {
    font-size: 1.75rem !important;
  }

  .explore-leaf-img {
    display: none !important;
  }

  .animals-section {
    padding: 40px 0 !important;
    overflow: hidden !important;
  }

  .animal-corner-leaf,
  .animal-corner-flower {
    display: none !important;
  }

  .animals-carousel-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .animals-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 14px !important;
    padding: 8px 4px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .animals-grid::-webkit-scrollbar {
    display: none !important;
  }

  .animal-card {
    flex: 0 0 260px !important;
    scroll-snap-align: center !important;
    border-radius: 18px !important;
  }

  .carousel-arrow {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.9rem !important;
  }

  .feeding-section {
    padding: 40px 0 !important;
  }

  .feeding-card {
    padding: 24px 16px !important;
    border-radius: 20px !important;
  }

  .feeding-card h2 {
    font-size: 1.6rem !important;
  }

  .feeding-steps {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: center !important;
  }

  .step-card-wrap {
    width: 100% !important;
    max-width: 280px !important;
  }

  .step-item-box {
    width: 100% !important;
    height: 120px !important;
  }

  .step-arrow-line {
    transform: rotate(90deg) !important;
    margin: 4px 0 !important;
  }

  .btn-feeding-cta {
    padding: 12px 28px !important;
    font-size: 0.92rem !important;
    width: 100% !important;
    max-width: 320px !important;
  }

  /* Services Section on Mobile */
  .services-section {
    padding: 40px 0 !important;
  }

  .services-header {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 20px !important;
    margin-bottom: 28px !important;
  }

  .services-header-left {
    max-width: 100% !important;
    text-align: left !important;
  }

  .services-header-left h2 {
    font-size: 1.6rem !important;
    max-width: 100% !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
  }

  .services-banner-right {
    max-width: 100% !important;
    width: 100% !important;
    flex-direction: row !important;
    padding: 16px 18px !important;
    gap: 14px !important;
    box-sizing: border-box !important;
    border-radius: 16px !important;
  }

  .banner-icon-phone {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.4rem !important;
  }

  .banner-text h3 {
    font-size: 1.05rem !important;
  }

  .banner-text p {
    font-size: 0.8rem !important;
    line-height: 1.45 !important;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .service-card {
    padding: 20px 16px !important;
    border-radius: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .service-card .btn {
    width: 100% !important;
    padding: 12px 16px !important;
    border-radius: 9999px !important;
  }

  .testimonials-section {
    padding: 40px 0 !important;
  }

  .testimonials-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  .testimonial-card {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 20px 18px !important;
  }

  /* 2.3. Tickets Page (tickets.html) */
  .tickets-hero-section {
    height: auto !important;
    min-height: 300px !important;
    padding: 40px 0 !important;
    border-bottom-right-radius: 50px !important;
    background-position: center right 20% !important;
  }

  .tickets-hero-content h1 {
    font-size: 2.2rem !important;
  }

  .tickets-hero-sub {
    font-size: 1.25rem !important;
    margin-bottom: 24px !important;
  }

  .btn-tickets-datve {
    padding: 12px 32px !important;
    font-size: 1rem !important;
  }

  .tickets-dashed-divider {
    margin: 30px auto 25px !important;
  }

  .tickets-layout-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .tickets-sidebar {
    position: static !important;
    width: 100% !important;
    margin-bottom: 10px !important;
  }

  .sidebar-links-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  .sidebar-link {
    background-color: #F1F5F9 !important;
    border-radius: 20px !important;
    padding: 6px 14px !important;
    font-size: 0.82rem !important;
    display: inline-block !important;
  }

  .sidebar-link.active,
  .sidebar-link:hover {
    background-color: #E8F3EE !important;
    transform: none !important;
  }

  .ticket-row-card {
    flex-direction: column !important;
    padding: 16px !important;
    gap: 16px !important;
    border-radius: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .ticket-graphic-stub {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 155px !important;
    box-sizing: border-box !important;
  }

  .ticket-graphic-stub::before,
  .ticket-graphic-stub::after {
    right: 75px !important;
  }

  .stub-main-content {
    padding: 12px 10px !important;
  }

  .stub-title {
    font-size: 1.1rem !important;
  }

  .stub-time {
    font-size: 0.95rem !important;
  }

  .stub-animal-img {
    width: 100px !important;
    right: 75px !important;
  }

  .stub-right-barcode {
    width: 75px !important;
    padding: 10px 4px !important;
  }

  .stub-brand-logo {
    font-size: 0.65rem !important;
  }

  .stub-barcode-lines {
    height: 28px !important;
  }

  .ticket-info-box {
    padding: 0 !important;
    width: 100% !important;
  }

  .ticket-info-box h3 {
    font-size: 1.15rem !important;
  }

  .ticket-info-box p {
    font-size: 0.88rem !important;
    margin-bottom: 10px !important;
  }

  .ticket-details-link {
    align-self: flex-start !important;
  }

  /* 2.4. Ticket Detail Page (ticket-detail.html) */
  .detail-page-container {
    padding: 24px 16px 60px !important;
  }

  .detail-main-wrapper {
    flex-direction: column !important;
    padding: 20px 16px !important;
    gap: 20px !important;
    border-radius: 18px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .detail-stub-preview {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: 180px !important;
    border-radius: 14px !important;
  }

  .detail-title {
    font-size: 1.5rem !important;
  }

  .detail-price {
    font-size: 1.4rem !important;
    margin-bottom: 16px !important;
  }

  .detail-actions-row {
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .btn-buy-now,
  .btn-add-cart {
    width: 100% !important;
    max-width: 100% !important;
    padding: 13px 20px !important;
    font-size: 0.95rem !important;
  }

  /* 2.5. Souvenir Pages (souvenir.html & souvenir-detail.html) */
  .souvenir-page-container,
  .souvenir-detail-container {
    padding: 24px 16px 60px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .souvenir-title,
  .page-title {
    font-size: 1.8rem !important;
    margin-bottom: 20px !important;
  }

  .souvenir-card,
  .souvenir-detail-card {
    flex-direction: column !important;
    border-radius: 18px !important;
    padding: 14px !important;
    gap: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .souvenir-card-img-wrapper,
  .souvenir-card-img-box {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: 190px !important;
    border-radius: 14px !important;
  }

  .souvenir-card-content,
  .souvenir-card-info {
    padding: 0 !important;
    width: 100% !important;
  }

  .souvenir-heading,
  .souvenir-card-title {
    font-size: 1.25rem !important;
  }

  /* 2.6. Animals Pages (animals.html & animal-detail-*.html) */
  .animals-page-container {
    padding: 24px 16px 60px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .animals-title {
    font-size: 1.8rem !important;
    margin-bottom: 20px !important;
  }

  .animal-card {
    flex-direction: column !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .animal-card-img-wrapper {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: 190px !important;
    border-radius: 14px !important;
  }

  .animal-card-content {
    padding: 12px 0 0 !important;
    width: 100% !important;
  }

  .animal-heading {
    font-size: 1.2rem !important;
  }

  .mammals-hero,
  .animal-hero {
    min-height: 280px !important;
    padding: 40px 16px !important;
  }

  .hero-title-top,
  .hero-title-left {
    font-size: 2.2rem !important;
  }

  .hero-title-right {
    font-size: 0.95rem !important;
  }

  .mammals-info-container {
    padding: 24px 16px !important;
    margin: 24px auto 40px !important;
    border-radius: 18px !important;
  }

  .sec2-top-grid {
    flex-direction: column !important;
    gap: 18px !important;
  }

  .sec2-vdivider {
    display: none !important;
  }

  .sec2-features-right {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .sec2-feat-col::after {
    display: none !important;
  }

  .sec2-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .sec2-card-img-box {
    height: 110px !important;
  }

  .sec2-card-info {
    padding: 10px 8px 14px !important;
  }

  .sec2-card-title {
    font-size: 0.9rem !important;
  }

  .spotlight-section {
    padding: 0 16px !important;
    margin: 24px auto 60px !important;
    gap: 24px !important;
  }

  .spotlight-card {
    grid-template-columns: 1fr !important;
    padding: 18px 16px !important;
    gap: 16px !important;
    border-radius: 18px !important;
  }

  .spotlight-card.reverse .spotlight-img-box {
    order: -1 !important;
  }

  .spotlight-img-box {
    height: 220px !important;
    border-radius: 14px !important;
  }

  .spotlight-info-box {
    padding: 0 !important;
  }

  .spotlight-badge {
    font-size: 1.15rem !important;
    padding: 6px 18px !important;
    margin-bottom: 14px !important;
  }

  /* 2.7. About Page (about.html) */
  .brand-story-section {
    padding: 40px 16px !important;
  }

  .story-title {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }

  .highlights-section {
    padding: 40px 16px !important;
  }

  .highlights-title {
    font-size: 1.8rem !important;
    margin-bottom: 24px !important;
  }

  .highlights-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .highlight-card {
    height: 380px !important;
    border-radius: 18px !important;
  }

  .core-values-section {
    flex-direction: column !important;
    padding: 24px 16px !important;
    gap: 20px !important;
    margin: 30px auto 60px !important;
    border-radius: 18px !important;
  }

  .core-img-box {
    width: 100% !important;
    height: 230px !important;
    border-radius: 14px !important;
  }

  .core-info-right {
    padding: 0 !important;
  }

  .core-main-title {
    font-size: 1.8rem !important;
  }

  .core-subhead {
    font-size: 0.92rem !important;
  }

  /* 2.8. Contact Page (contact.html) */
  .stores-section,
  .support-section {
    padding: 0 16px !important;
    margin: 30px auto 50px !important;
  }

  .stores-title,
  .support-title {
    font-size: 1.8rem !important;
    margin-bottom: 20px !important;
  }

  .stores-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .map-container-box {
    min-height: 300px !important;
    height: 300px !important;
    border-radius: 18px !important;
  }

  .map-container-box iframe {
    min-height: 300px !important;
    height: 300px !important;
  }

  .form-row-2 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .btn-submit-contact {
    width: 100% !important;
    padding: 12px 24px !important;
  }

  /* 2.9. Profile Page (profile.html) */
  .profile-page-container {
    padding: 24px 16px 60px !important;
  }

  .profile-dashboard-layout {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .profile-sidebar-card {
    width: 100% !important;
    border-radius: 18px !important;
    padding: 20px !important;
  }

  .profile-content-card {
    width: 100% !important;
    border-radius: 18px !important;
    padding: 20px 16px !important;
    box-sizing: border-box !important;
  }

  .profile-form-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .order-filter-bar {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    padding-bottom: 8px !important;
    justify-content: flex-start !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 8px !important;
  }

  .order-filter-tab {
    flex-shrink: 0 !important;
    padding: 8px 14px !important;
    font-size: 0.82rem !important;
  }

  /* 2.10. Cart Page (cart.html) */
  .cart-page-container {
    padding: 24px 16px 60px !important;
  }

  .cart-title {
    font-size: 1.8rem !important;
    margin-bottom: 20px !important;
  }

  .cart-card-box {
    border-radius: 18px !important;
  }

  .cart-table-header {
    display: none !important;
  }

  .cart-item-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    padding: 16px !important;
    position: relative !important;
    border-bottom: 1px solid #EDF2F7 !important;
  }

  .cart-item-info {
    width: calc(100% - 36px) !important;
    gap: 12px !important;
  }

  .cart-item-thumb {
    width: 70px !important;
    height: 44px !important;
  }

  .cart-item-name {
    font-size: 0.88rem !important;
  }

  .cart-item-price {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #0F382C !important;
  }

  .cart-qty-ctrl {
    align-self: flex-start !important;
  }

  .cart-item-total {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #10B981 !important;
  }

  .btn-delete-item {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
  }

  .cart-summary-footer {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: stretch !important;
    padding: 20px 16px !important;
    text-align: center !important;
  }

  .btn-checkout-now {
    width: 100% !important;
    padding: 14px 20px !important;
  }

  /* 2.11. Checkout Page (checkout.html) */
  .checkout-container {
    padding: 24px 16px 60px !important;
  }

  .checkout-layout-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .checkout-card {
    padding: 20px 16px !important;
    border-radius: 18px !important;
  }

  /* 2.12. Modals (infoModal & authModal) */
  .modal-content {
    width: 92% !important;
    max-width: 380px !important;
    padding: 20px 16px !important;
    border-radius: 20px !important;
  }

  .auth-modal-card {
    width: 92% !important;
    max-width: 370px !important;
    padding: 20px 18px 18px !important;
    border-radius: 20px !important;
  }

  /* 2.13. Footer (all pages) */
  .footer {
    padding: 40px 0 24px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    text-align: left !important;
  }

  .social-circles {
    justify-content: flex-start !important;
  }
}

/* --- 3. EXTRA SMALL PHONES (<= 480px) --- */
@media (max-width: 480px) {
  .hero-title-emerald,
  .hero-title-zoo {
    font-size: 2.2rem !important;
  }

  .tickets-hero-content h1 {
    font-size: 1.85rem !important;
  }

  .about-thumbnails {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
  }

  .thumb-card {
    height: 75px !important;
  }

  .sec2-features-right {
    grid-template-columns: 1fr 1fr !important;
  }

  .sec2-cards-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .ticket-graphic-stub::before,
  .ticket-graphic-stub::after {
    right: 60px !important;
  }

  .stub-right-barcode {
    width: 60px !important;
  }

  .stub-animal-img {
    width: 80px !important;
    right: 60px !important;
  }

  .stub-title {
    font-size: 0.95rem !important;
  }

  .stub-time {
    font-size: 0.85rem !important;
  }

  .stub-desc {
    display: none !important;
  }
}
