/* =============================================
   TEZZA HOLIDAYS - Professional Travel Agency
   Refined color palette, alignment & typography
   ============================================= */

:root {
  --primary: #0d2137;
  --primary-light: #1a3654;
  --accent: #b8860b;
  --accent-light: #d4a84b;
  --accent-dark: #8b6914;
  --bg-light: #f7f8fa;
  --bg-white: #ffffff;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(13, 33, 55, 0.08);
  --shadow-lg: 0 12px 40px rgba(13, 33, 55, 0.12);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s var(--ease-out-expo);
  /* Gradient presets */
  --gradient-accent: linear-gradient(135deg, #b8860b 0%, #d4a84b 50%, #b8860b 100%);
  --gradient-accent-hover: linear-gradient(135deg, #d4a84b 0%, #e8c468 50%, #d4a84b 100%);
  --gradient-gold: linear-gradient(90deg, #b8860b, #d4a84b, #e8c468, #d4a84b);
  --gradient-primary: linear-gradient(135deg, #0d2137 0%, #1a3654 100%);
  --gradient-dark: linear-gradient(180deg, #0d2137 0%, #1a3654 100%);
  /* Dot pattern for light backgrounds */
  --dot-pattern: radial-gradient(circle, rgba(13, 33, 55, 0.06) 1.5px, transparent 1.5px);
  --dot-size: 20px;
}

/* ----- SASS-style Animations ----- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes pulse-soft {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.02); }
}

/* Gradient & Shimmer Animations */
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes gradientShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes gradientBorder {
  0%, 100% { border-image-source: linear-gradient(135deg, #b8860b, #d4a84b, #e8c468, #d4a84b); }
  50% { border-image-source: linear-gradient(135deg, #d4a84b, #e8c468, #b8860b, #d4a84b); }
}
@keyframes textGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Background travel icons - continuous move & rotate across screen */
@keyframes bgIconMoveLeft {
  0% { transform: translate(120vw, 0) rotate(0deg); opacity: 0.06; }
  100% { transform: translate(-30vw, 0) rotate(360deg); opacity: 0.08; }
}
@keyframes bgIconMoveRight {
  0% { transform: translate(-30vw, 0) rotate(0deg); opacity: 0.06; }
  100% { transform: translate(120vw, 0) rotate(-360deg); opacity: 0.08; }
}
@keyframes bgIconMoveUp {
  0% { transform: translate(0, 120vh) rotate(0deg); opacity: 0.05; }
  100% { transform: translate(0, -30vh) rotate(180deg); opacity: 0.07; }
}
@keyframes bgIconMoveDown {
  0% { transform: translate(0, -30vh) rotate(0deg); opacity: 0.05; }
  100% { transform: translate(0, 120vh) rotate(-180deg); opacity: 0.07; }
}
@keyframes bgIconDiagonal1 {
  0% { transform: translate(-20vw, -20vh) rotate(0deg); opacity: 0.06; }
  100% { transform: translate(120vw, 120vh) rotate(360deg); opacity: 0.07; }
}
@keyframes bgIconDiagonal2 {
  0% { transform: translate(120vw, -20vh) rotate(0deg); opacity: 0.06; }
  100% { transform: translate(-20vw, 120vh) rotate(-360deg); opacity: 0.07; }
}

.bg-travel-icons {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-icon {
  position: absolute;
  font-size: clamp(3.5rem, 10vw, 8rem);
  color: var(--primary);
  opacity: 0.06;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.bg-icon-1 { top: 10%; left: 0; animation: bgIconMoveLeft 35s infinite; animation-delay: 0s; }
.bg-icon-2 { top: 25%; right: 0; animation: bgIconMoveRight 40s infinite; animation-delay: -8s; }
.bg-icon-3 { top: 50%; left: 0; animation: bgIconMoveLeft 45s infinite; animation-delay: -15s; }
.bg-icon-4 { top: 70%; right: 0; animation: bgIconMoveRight 38s infinite; animation-delay: -5s; }
.bg-icon-5 { top: 0; left: 20%; animation: bgIconMoveDown 42s infinite; animation-delay: -12s; }
.bg-icon-6 { top: 0; right: 40%; animation: bgIconMoveDown 48s infinite; animation-delay: -20s; }
.bg-icon-7 { bottom: 0; left: 30%; animation: bgIconMoveUp 40s infinite; animation-delay: -10s; }
.bg-icon-8 { bottom: 0; right: 20%; animation: bgIconMoveUp 44s infinite; animation-delay: -25s; }
.bg-icon-9 { top: 35%; left: 0; animation: bgIconDiagonal1 50s infinite; animation-delay: -18s; }
.bg-icon-10 { top: 65%; right: 0; animation: bgIconDiagonal2 46s infinite; animation-delay: -30s; }

@media (prefers-reduced-motion: reduce) {
  .bg-icon { animation: none; }
}

.animate-fade-in-up { animation: fadeInUp 0.7s var(--ease-out-expo) forwards; }
.animate-fade-in-down { animation: fadeInDown 0.6s var(--ease-out-expo) forwards; }
.animate-fade-in { animation: fadeIn 0.5s ease-out forwards; }
.animate-scale-in { animation: scaleIn 0.5s var(--ease-out-expo) forwards; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background-image: var(--dot-pattern), linear-gradient(180deg, #f8fafc 0%, #fff 30%, #f8f9fb 70%, #f1f3f5 100%);
  background-size: var(--dot-size) var(--dot-size), 100% 100%;
  background-position: 0 0, 0 0;
  background-attachment: fixed, fixed;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

#main-content {
  position: relative;
  z-index: 1;
}

/* Custom Flight Cursor - position-based tilt on hover */
@media (hover: hover) {
  body, body * { cursor: none !important; }
  .cursor-flight { display: flex !important; }
}
.cursor-flight {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  pointer-events: none;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
  transition: transform 0.1s ease-out, opacity 0.2s ease;
}
.cursor-flight i {
  font-size: 1.5rem;
  color: var(--primary);
}
.cursor-flight.cursor-hover i {
  color: var(--accent);
  font-size: 1.75rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  color: var(--primary);
}

/* ----- Header (matches hero overlay) ----- */
.header-tezza {
  z-index: 1030;
  background: linear-gradient(180deg, rgba(13, 33, 55, 0.97) 0%, rgba(13, 33, 55, 0.88) 60%, rgba(13, 33, 55, 0.6) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-tezza.scrolled {
  background: rgba(13, 33, 55, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.top-bar {
  background: linear-gradient(180deg, rgba(13, 33, 55, 0.95) 0%, rgba(13, 33, 55, 0.85) 100%);
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-tezza.scrolled .top-bar {
  background: rgba(13, 33, 55, 0.92);
}

.top-bar .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.top-bar a { color: rgba(255,255,255,0.9); text-decoration: none; }
.top-bar a:hover { color: var(--accent-light); }

@media (max-width: 767px) {
  .top-bar { padding: 0.3rem 0; font-size: 0.75rem; }
}

@media (max-width: 991.98px) {
  .navbar-tezza .navbar-collapse {
    background: linear-gradient(180deg, #0d2137 0%, #1a3654 100%);
    padding: 1.25rem;
    border-radius: 12px;
    margin-top: 1rem;
  }
}

.navbar-tezza {
  padding: 0.6rem 0;
  transition: all var(--transition-smooth);
  background: transparent;
}

.navbar-tezza .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.navbar-tezza .nav-link {
  color: #fff !important;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  position: relative;
}
.navbar-tezza .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.navbar-tezza .nav-link:hover::after,
.navbar-tezza .nav-link.active::after { transform: scaleX(1); }
.navbar-tezza .nav-link:hover { color: var(--accent-light) !important; }

.navbar-tezza .navbar-brand img { height: 38px; filter: brightness(0) invert(1); }

.navbar-tezza .dropdown-menu {
  background: linear-gradient(180deg, #1a3654 0%, #0d2137 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.5rem;
}
.navbar-tezza .dropdown-menu .dropdown-item {
  color: rgba(255,255,255,0.9);
  padding: 0.5rem 1rem;
  border-radius: 6px;
}
.navbar-tezza .dropdown-menu .dropdown-item:hover {
  background: rgba(184, 134, 11, 0.2);
  color: var(--accent-light);
}

/* ----- Hero ----- */
.hero-tezza {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-tezza .hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-tezza .hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 25s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-tezza .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 33, 55, 0.5) 0%, rgba(13, 33, 55, 0.72) 40%, rgba(13, 33, 55, 0.9) 100%);
  z-index: 1;
}

.hero-tezza .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-tezza .hero-content {
  color: #fff;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-tezza .hero-badge {
  display: inline-block;
  letter-spacing: 3px;
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: var(--gradient-gold);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}

.hero-tezza .hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-tezza .btn-hero {
  background: var(--gradient-accent);
  background-size: 200% auto;
  color: #fff;
  padding: 0.9rem 2.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all var(--transition-smooth);
  text-transform: uppercase;
  font-size: 0.85rem;
  border: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.hero-tezza .btn-hero:hover {
  background: var(--gradient-accent-hover);
  background-position: 100% 50%;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.35);
}

/* ----- Layout ----- */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* =============================================
   UNIQUE LAYOUT - Hero shesham ella sections
   Bento, Editorial, Strip designs
   ============================================= */

/* ----- Moments Bento ----- */
.tezza-moments {
  padding: 5rem 24px;
  background-image: var(--dot-pattern), linear-gradient(165deg, #eef0f3 0%, #f5f6f8 50%, #fff 100%);
  background-size: var(--dot-size) var(--dot-size), 100% 100%;
}

.moments-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.moments-header {
  margin-bottom: 2.5rem;
}

.moments-label {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.moments-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--primary);
  margin: 0.25rem 0 0 0;
  font-weight: 600;
}

.moments-bento {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  grid-template-rows: 200px 200px 200px;
  gap: 16px;
}

.moments-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease;
}

.moments-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 5s ease;
}

.moments-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(13, 33, 55, 0.15);
}

.moments-item:hover img {
  transform: scale(1.08);
}

.moments-tall { grid-row: span 2; }
.moments-wide { grid-column: span 2; }
.moments-wide-end { grid-column: span 2; }

@media (max-width: 767px) {
  .moments-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
    gap: 12px;
  }
  .moments-tall { grid-row: span 2; }
  .moments-wide { grid-column: span 2; }
}

/* ----- Destinations Bento ----- */
.tezza-destinations {
  padding: 5rem 24px;
  background: linear-gradient(135deg, #0d2137 0%, #1a3654 50%, #0f2842 100%);
  color: #fff;
}

.dest-inner { max-width: 1200px; margin: 0 auto; }

.dest-header {
  text-align: center;
  margin-bottom: 3rem;
}

.dest-label {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #d4a84b, #e8c468, #d4a84b);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  animation: gradientShift 5s ease infinite;
}

.dest-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.25rem 0 0.5rem 0;
  font-weight: 600;
  color: #fff;
}

.dest-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin: 0;
}

.dest-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}

.dest-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform var(--transition-smooth);
  display: block;
  transition: transform 0.4s ease;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 6s ease;
}

.dest-card:hover { transform: scale(1.03); }
.dest-card:hover img { transform: scale(1.1); }

.dest-card-1 { grid-column: span 1; grid-row: span 2; }
.dest-card-2 { grid-column: span 2; }
.dest-card-3 { grid-column: span 1; }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 40%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.4s ease;
  color: #fff;
}

.dest-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.2) 80%);
}

.dest-region {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 0.25rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.dest-overlay h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  margin: 0;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.dest-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(10px, 10px);
  transition: all 0.4s ease;
}

.dest-card:hover .dest-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.dest-view-all {
  text-align: center;
  margin-top: 2.5rem;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gradient-accent);
  background-size: 200% auto;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background: var(--gradient-accent-hover);
  background-position: 100% 50%;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.3);
  transition: all var(--transition-smooth);
}

@media (max-width: 991px) {
  .dest-bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 240px;
    gap: 16px;
  }
  .dest-card-1 { grid-row: span 1; }
}

/* ----- About (after Hero) - New Design ----- */
.tezza-about-v2 {
  padding: 5rem 24px;
  background-image: var(--dot-pattern), linear-gradient(165deg, rgba(255,255,255,0.97) 0%, rgba(250,251,253,0.97) 40%, rgba(248,249,251,0.97) 100%);
  background-size: var(--dot-size) var(--dot-size), 100% 100%;
  border-bottom: 3px solid var(--accent);
}

.about-v2-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-v2-content { order: 1; }

.about-v2-label {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--gradient-gold);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
  animation: gradientShift 5s ease infinite;
}

.about-v2-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--primary);
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
  font-weight: 600;
}

.about-v2-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 1rem 0;
}

.about-v2-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.about-v2-feat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  transition: all 0.3s ease;
}

.about-v2-feat:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.about-v2-feat i { color: var(--accent); font-size: 1rem; }

.about-v2-image { order: 2; }

.about-v2-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13, 33, 55, 0.15);
}

.about-v2-img-wrap::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent);
  border-radius: 24px;
  z-index: 0;
}

.about-v2-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .tezza-about-v2 { padding: 3rem 24px; }
  .about-v2-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-v2-image { order: 1; }
  .about-v2-content { order: 2; }
  .about-v2-img-wrap::before { top: -8px; right: -8px; }
  .about-v2-img-wrap img { min-height: 320px; }
}

/* ----- Why Choose / Leading Agency ----- */
.tezza-why-choose {
  padding: 4rem 24px;
  background-image: var(--dot-pattern), linear-gradient(135deg, rgba(248,249,251,0.97) 0%, rgba(255,255,255,0.97) 40%, rgba(245,247,250,0.97) 80%, rgba(248,249,251,0.97) 100%);
  background-size: var(--dot-size) var(--dot-size), 100% 100%;
  color: var(--text);
  border-top: 3px solid var(--accent);
  border-bottom: 1px solid var(--border);
}

.why-inner { max-width: 900px; margin: 0 auto; text-align: center; }

.why-label {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--gradient-gold);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  animation: gradientShift 5s ease infinite;
}

.why-title {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: var(--primary);
  margin: 0.5rem 0 1.5rem 0;
  line-height: 1.35;
}

.why-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.why-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
}

.why-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.why-stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-gold);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

.why-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 575px) {
  .tezza-why-choose { padding: 3rem 20px; }
  .why-stats { gap: 1.5rem; margin-top: 2rem; padding-top: 1.5rem; }
  .why-stat-num { font-size: 1.6rem; }
}

/* ----- Services Horizontal Strip ----- */
.tezza-services {
  padding: 4rem 0;
  background-image: var(--dot-pattern), linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(250,251,253,0.97) 50%, rgba(248,249,251,0.97) 100%);
  background-size: var(--dot-size) var(--dot-size), 100% 100%;
  border-top: 3px solid var(--accent);
}

.services-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.services-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.services-label {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--gradient-gold);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  animation: gradientShift 5s ease infinite;
}

.services-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--primary);
  margin: 0.25rem 0 0 0;
  font-weight: 600;
}

.services-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0.5rem 0 1.5rem 0;
}

.services-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.service-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(180deg, #fff 0%, #fcfdfe 100%);
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary);
  transition: all 0.3s ease;
}

.service-pill:hover {
  border-color: var(--accent);
  background: linear-gradient(135deg, #fff 0%, #fefdf9 100%);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.25);
}

.service-pill i {
  font-size: 1.2rem;
}

/* ----- Testimonials ----- */
.tezza-testimonials {
  padding: 5rem 24px;
  background-image: var(--dot-pattern), linear-gradient(145deg, rgba(240,242,245,0.97) 0%, rgba(235,238,242,0.97) 50%, rgba(228,232,237,0.97) 100%);
  background-size: var(--dot-size) var(--dot-size), 100% 100%;
}

.test-inner { max-width: 1000px; margin: 0 auto; }

.test-header {
  text-align: center;
  margin-bottom: 3rem;
}

.test-label {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--gradient-gold);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  animation: gradientShift 5s ease infinite;
}

.test-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--primary);
  margin: 0.25rem 0 0 0;
  font-weight: 600;
}

/* Testimonials Carousel */
.test-slider-wrap {
  position: relative;
  padding: 0 3rem 2.5rem;
}

.test-slide {
  padding: 2rem 0;
  min-height: 200px;
}

.test-slide:not(.test-slide-featured) {
  background: linear-gradient(180deg, #fff 0%, #fcfdfe 100%);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(13, 33, 55, 0.06);
}

.test-slide:not(.test-slide-featured) .test-quote { color: var(--text); }
.test-slide:not(.test-slide-featured) .test-role { color: var(--text-muted); }

.test-slide-featured {
  background: linear-gradient(135deg, #0d2137 0%, #1a3654 100%);
  color: #fff;
  padding: 3rem;
  border-radius: 24px;
  position: relative;
}

.test-slide-featured::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 6rem;
  font-family: Cormorant Garamond, serif;
  color: var(--accent-light);
  opacity: 0.3;
  line-height: 1;
}

.test-quote {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.test-author { position: relative; z-index: 1; }
.test-name { font-weight: 600; font-size: 1.1rem; }
.test-role { opacity: 0.8; margin-left: 0.5rem; font-size: 0.9rem; }

.test-carousel-prev,
.test-carousel-next {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.9;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.test-carousel-prev { left: 0; }
.test-carousel-next { right: 0; }
.test-carousel-prev:hover,
.test-carousel-next:hover {
  background: var(--accent);
  opacity: 1;
}
.test-carousel-prev i,
.test-carousel-next i {
  font-size: 1.25rem;
  color: #fff;
}

.test-indicators {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  right: 0;
  margin: 0;
}
.test-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--text-muted);
  opacity: 0.5;
}
.test-indicators [data-bs-target].active {
  background-color: var(--accent);
  opacity: 1;
}

@media (max-width: 767px) {
  .test-slider-wrap { padding: 0 2.5rem; }
  .test-carousel-prev, .test-carousel-next { width: 40px; height: 40px; }
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.test-card {
  background: linear-gradient(180deg, #fff 0%, #fcfdfe 100%);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(13, 33, 55, 0.06);
  transition: all 0.3s ease;
}

.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13, 33, 55, 0.1);
}

.test-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 1rem 0;
  font-style: italic;
}

.test-card-author {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .test-grid { grid-template-columns: 1fr; }
}

/* ----- Gallery Masonry ----- */
.tezza-gallery {
  padding: 5rem 24px;
  background-image: var(--dot-pattern), linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(250,251,253,0.97) 50%, rgba(255,255,255,0.97) 100%);
  background-size: var(--dot-size) var(--dot-size), 100% 100%;
}

.gallery-inner { max-width: 1200px; margin: 0 auto; }

.gallery-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.gallery-label {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--gradient-gold);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  animation: gradientShift 5s ease infinite;
}

.gallery-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--primary);
  margin: 0.25rem 0 0 0;
  font-weight: 600;
}

.gallery-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0.5rem 0 0 0;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-item-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item-zoom i {
  font-size: 2rem;
  color: #fff;
}

.gallery-item:hover { transform: scale(1.05); }
.gallery-item:hover .gallery-item-zoom { opacity: 1; }

.gallery-item-1 { grid-row: span 2; }
.gallery-item-2 { grid-row: span 1; }
.gallery-item-3 { grid-column: span 2; grid-row: span 2; }
.gallery-item-4 { grid-row: span 1; }

.gallery-view-all {
  text-align: center;
  margin-top: 2rem;
}

.btn-view-gallery {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

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

.gallery-masonry-full {
  grid-auto-rows: 180px;
}

.tezza-gallery-page .gallery-masonry-full {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

@media (max-width: 991px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 12px;
  }
  .gallery-item-3 { grid-column: span 1; grid-row: span 1; }
}

/* ----- Loading Overlay (page load) ----- */
.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 33, 55, 0.96);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-overlay-inner {
  text-align: center;
  color: #fff;
}

.loading-logo {
  margin-bottom: 1rem;
}

.loading-logo img {
  max-height: 64px;
  width: auto;
  animation: loadingPulse 1.2s ease-in-out infinite;
}

.loading-text {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
  opacity: 0.9;
}

@keyframes loadingPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ----- Gallery Lightbox Popup ----- */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox.active .gallery-lightbox-backdrop {
  opacity: 1;
}

.gallery-lightbox.active .gallery-lightbox-content {
  opacity: 1;
  transform: scale(1);
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox-counter {
  text-align: center;
  color: #fff;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.gallery-lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
}

.gallery-lightbox-prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 575px) {
  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    width: 40px;
    height: 40px;
    left: 0.5rem;
    right: 0.5rem;
  }
}

/* ----- Packages Listing Page ----- */
.tezza-packages-list {
  padding: 4rem 24px 5rem;
  background-image: var(--dot-pattern), linear-gradient(180deg, rgba(247,248,250,0.97) 0%, rgba(242,244,247,0.97) 50%, rgba(247,248,250,0.97) 100%);
  background-size: var(--dot-size) var(--dot-size), 100% 100%;
}

.packages-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.packages-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.packages-label {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.packages-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--primary);
  margin: 0.25rem 0 0.5rem 0;
  font-weight: 600;
}

.packages-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.package-card {
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(13, 33, 55, 0.06);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(13, 33, 55, 0.12);
}

.package-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.package-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 5s ease;
}

.package-card:hover .package-card-img img {
  transform: scale(1.1);
}

.package-card-body {
  padding: 1.25rem;
}

.package-card-region {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.package-card-body h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.package-card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s ease;
}

.package-card:hover .package-card-link {
  gap: 0.6rem;
}

/* ----- Package detail pages ----- */
.package-hero-tezza {
  height: 50vh;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
}

.package-hero-tezza img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.package-hero-tezza .package-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 33, 55, 0.78), transparent 40%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 0;
}

.package-hero-tezza .package-hero-overlay .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.package-hero-tezza .package-hero-overlay h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.package-details-tezza h1 {
  font-size: 1.9rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.package-details-tezza .package-meta {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.package-details-tezza h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.package-details-tezza ul {
  list-style: none;
  padding: 0;
}

.package-details-tezza ul li {
  padding-left: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
}

.package-details-tezza .inclusion-list li::before {
  content: '✓';
  color: #16a34a;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.package-details-tezza .exclusion-list li::before {
  content: '✖';
  color: #dc2626;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.package-form-tezza {
  background: linear-gradient(180deg, #fff 0%, #fcfdfe 100%);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.package-form-tezza .form-control,
.package-form-tezza .form-select {
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 0.7rem 1rem;
}

.package-form-tezza .form-control:focus,
.package-form-tezza .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
}

.package-form-tezza .btn-contact {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  transition: background 0.3s ease;
}

.package-form-tezza .btn-contact:hover {
  background: var(--primary-light);
}

.package-form-tezza .whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff !important;
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
  transition: background 0.3s ease;
}

/* ===== PACKAGE SINGLE - Professional Design ===== */
.pkg-breadcrumb {
  background-image: var(--dot-pattern), linear-gradient(90deg, #f1f3f5 0%, #f8f9fb 50%, #f1f3f5 100%);
  background-size: var(--dot-size) var(--dot-size), 100% 100%;
  padding: 0.85rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.pkg-breadcrumb .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pkg-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pkg-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

.pkg-breadcrumb li:not(:last-child)::after {
  content: '/';
  color: var(--border);
  font-weight: 300;
}

.pkg-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.pkg-breadcrumb a:hover {
  color: var(--accent);
}

.pkg-breadcrumb li[aria-current="page"] {
  color: var(--accent);
  font-weight: 600;
}

/* Package Hero */
.pkg-single-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.pkg-hero-bg {
  position: absolute;
  inset: 0;
}

.pkg-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pkg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 33, 55, 0.92) 0%, rgba(13, 33, 55, 0.6) 40%, transparent 70%);
}

.pkg-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3rem 0;
}

.pkg-hero-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pkg-hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #d4a84b, #e8c468, #d4a84b);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  margin-bottom: 0.5rem;
  animation: gradientShift 5s ease infinite;
}

.pkg-hero-content h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.pkg-hero-meta {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0 0 1.5rem 0;
}

.pkg-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-pkg-inquiry {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.75rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-pkg-inquiry:hover {
  background: var(--accent-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.35);
}

.btn-pkg-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-pkg-whatsapp:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-2px);
}

/* Package Content Layout */
.pkg-single-content {
  padding: 4rem 0;
  background-image: var(--dot-pattern), linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(248,250,252,0.97) 50%, rgba(245,247,250,0.97) 100%);
  background-size: var(--dot-size) var(--dot-size), 100% 100%;
}

.pkg-single-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pkg-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

/* Article */
.pkg-article {
  background: linear-gradient(180deg, #fff 0%, #fcfdfe 100%);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(13, 33, 55, 0.06);
  border: 1px solid var(--border);
}

.pkg-article-intro h2 {
  font-size: 1.6rem;
  color: var(--primary);
  margin: 0 0 1rem 0;
}

.pkg-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.pkg-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.pkg-section h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  color: var(--primary);
  margin: 0 0 1rem 0;
}

.pkg-section h3 i {
  color: var(--accent);
}

.pkg-highlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pkg-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(180deg, #f8f9fb 0%, #f1f3f5 100%);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.pkg-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.pkg-section-grid .pkg-section-card:only-child {
  grid-column: 1 / -1;
}

.pkg-section-card {
  background: linear-gradient(180deg, #f8f9fb 0%, #f1f3f5 100%);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.pkg-section-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  margin: 0 0 1rem 0;
}

.pkg-inclusions h3 i { color: #16a34a; }
.pkg-exclusions h3 i { color: #dc2626; }

.pkg-section-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pkg-section-card ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pkg-inclusions ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: #16a34a;
  border-radius: 50%;
}

.pkg-exclusions ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: #dc2626;
  border-radius: 50%;
}

/* Sidebar Inquiry Card */
.pkg-sidebar {
  position: sticky;
  top: 100px;
}

.pkg-inquiry-card {
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(13, 33, 55, 0.1);
  border: 2px solid var(--accent);
}

.pkg-inquiry-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pkg-inquiry-header h4 {
  font-size: 1.25rem;
  color: var(--primary);
  margin: 0 0 0.35rem 0;
}

.pkg-inquiry-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.pkg-alert {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.pkg-alert-success { background: #dcfce7; color: #166534; }
.pkg-alert-warning { background: #fef3c7; color: #92400e; }
.pkg-alert-danger { background: #fee2e2; color: #991b1b; }

.pkg-alert-link {
  display: block;
  margin-top: 0.5rem;
  color: #166534;
  font-weight: 600;
}

.pkg-inquiry-form .pkg-form-group {
  margin-bottom: 1rem;
}

.pkg-inquiry-form .pkg-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pkg-inquiry-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.pkg-inquiry-form label span { color: #dc2626; }

.pkg-inquiry-form .form-control,
.pkg-inquiry-form .form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
}

.pkg-inquiry-form .form-control:focus,
.pkg-inquiry-form .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
  outline: none;
}

.btn-pkg-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-pkg-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 33, 55, 0.25);
}

.pkg-inquiry-footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.pkg-inquiry-footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem 0;
}

.btn-pkg-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-pkg-wa:hover {
  background: #1da851;
  color: #fff;
}

/* CTA Section */
.pkg-cta-section {
  padding: 3rem 24px;
  background: linear-gradient(135deg, #0d2137 0%, #1a3654 50%, #0f2842 100%);
  color: #fff;
}

.pkg-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.pkg-cta-inner h3 {
  color: #fff;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin: 0 0 0.5rem 0;
}

.pkg-cta-inner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0 0 1.5rem 0;
}

.pkg-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-pkg-cta {
  display: inline-flex;
  padding: 0.9rem 1.75rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.btn-pkg-outline {
  display: inline-flex;
  padding: 0.9rem 1.75rem;
  background: transparent;
  color: #fff;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-pkg-outline:hover {
  border-color: #fff;
  color: #fff;
}

@media (max-width: 991px) {
  .pkg-layout {
    grid-template-columns: 1fr;
  }

  .pkg-sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 767px) {
  .pkg-single-hero {
    min-height: 50vh;
  }

  .pkg-section-grid {
    grid-template-columns: 1fr;
  }

  .pkg-article {
    padding: 1.5rem;
  }

  .pkg-inquiry-form .pkg-form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== CONTACT PAGE - Professional Design ===== */
.tezza-contact-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
}

.contact-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 33, 55, 0.88) 0%, rgba(13, 33, 55, 0.75) 50%, rgba(13, 33, 55, 0.6) 100%);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 24px;
}

.contact-hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #d4a84b, #e8c468, #d4a84b);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  margin-bottom: 0.75rem;
  animation: gradientShift 5s ease infinite;
}

.contact-hero-content h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin: 0 0 0.5rem 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.contact-hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin: 0;
}

.tezza-contact-main {
  padding: 4rem 24px;
  background-image: var(--dot-pattern), linear-gradient(145deg, rgba(255,255,255,0.97) 0%, rgba(250,251,253,0.97) 40%, rgba(248,249,251,0.97) 80%, rgba(255,255,255,0.97) 100%);
  background-size: var(--dot-size) var(--dot-size), 100% 100%;
}

.tezza-contact-main .container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-label {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--gradient-gold);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  animation: gradientShift 5s ease infinite;
}

.contact-intro h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--primary);
  margin: 0.5rem 0 1rem 0;
  line-height: 1.35;
}

.contact-intro p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-card {
  display: block;
  padding: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #fcfdfe 50%, #f8f9fb 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(13, 33, 55, 0.04);
}

.contact-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.12);
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  border-radius: 10px;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.contact-card-whatsapp .contact-card-icon {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 0.35rem 0;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem 0;
  line-height: 1.5;
}

.contact-card-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.contact-social {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.contact-social span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: block;
  margin-bottom: 0.75rem;
}

.contact-social-links {
  display: flex;
  gap: 0.75rem;
}

.contact-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f1f3f5 0%, #e8ebef 100%);
  color: var(--primary);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-social-link:hover {
  background: var(--accent);
  color: #fff;
}

.tezza-contact-form-card {
  background: linear-gradient(180deg, #fff 0%, #fcfdfe 100%);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(13, 33, 55, 0.08);
  border: 1px solid var(--border);
}

.contact-form-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--accent);
}

.contact-form-header h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 0 0.5rem 0;
}

.contact-form-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

.tezza-contact-form .form-group {
  margin-bottom: 1.25rem;
}

.tezza-contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.tezza-contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.tezza-contact-form .required {
  color: #dc2626;
}

.tezza-contact-form .form-control,
.tezza-contact-form .form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.tezza-contact-form .form-control:focus,
.tezza-contact-form .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
  outline: none;
}

.tezza-contact-form textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-contact-submit:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 33, 55, 0.25);
}

.btn-contact-submit i {
  font-size: 1.1rem;
}

.contact-form-footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.contact-form-footer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.whatsapp-cta {
  color: #25D366;
  font-weight: 600;
  text-decoration: none;
}

.whatsapp-cta:hover {
  color: #128C7E;
}

.tezza-contact-main .alert {
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-col {
    order: -1;
  }
}

@media (max-width: 575px) {
  .tezza-contact-hero {
    min-height: 35vh;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .tezza-contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .tezza-contact-form-card {
    padding: 1.5rem;
  }
}

/* ----- Footer ----- */
.footer-tezza {
  background: linear-gradient(180deg, #0d2137 0%, #122940 40%, #0d2137 100%);
  color: #fff;
  padding: 3.5rem 0 2rem;
}

.footer-tezza .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-tezza .row {
  align-items: flex-start;
}

.footer-tezza .col-lg-3 {
  margin-bottom: 0;
}

.footer-tezza .footer-logo {
  display: block;
  max-height: 42px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tezza h5 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
  display: block;
}

.footer-tezza ul.list-unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-tezza ul.list-unstyled li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.footer-tezza ul.list-unstyled li:last-child {
  margin-bottom: 0;
}

.footer-tezza a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-tezza a:hover { color: var(--accent-light); }

.footer-tezza .input-group {
  max-width: 100%;
}

.footer-tezza .input-group .form-control {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

.footer-tezza .input-group .form-control::placeholder {
  color: rgba(255,255,255,0.5);
}

.footer-tezza .footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.75;
}

.footer-tezza .footer-credit a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-tezza .footer-credit a:hover {
  color: var(--accent-light);
}

@media (max-width: 991.98px) {
  .footer-tezza .row > [class*="col-"] {
    margin-bottom: 2rem;
  }
  .footer-tezza .row > [class*="col-"]:last-of-type {
    margin-bottom: 0;
  }
}

/* ----- Floating buttons ----- */
.floating-btn {
  position: fixed;
  bottom: 20px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.floating-btn.btn-back-top {
  right: 20px;
  background: linear-gradient(135deg, #0d2137 0%, #1a3654 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.floating-btn.btn-back-top:hover {
  background: linear-gradient(135deg, #1a3654 0%, #0d2137 100%);
  transform: translateY(-3px);
}

.floating-btn.btn-whatsapp {
  right: 78px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
}

.floating-btn.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-3px);
}

/* ----- Utility ----- */
.text-secondary { color: var(--text-muted) !important; }
