:root {
  --primary-color: #0d3050;
  --secondary-color: #fec329;
  --accent-color: #2a7cc7;
  --text-color: #333333;
  --text-light: #6c757d;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.1);
  /* New variables from second stylesheet */
  --purple: #8b5cf6;
  --pink: #ec4899;
  --green: #10b981;
  --emerald: #059669;
  --cyan: #06b6d4;
  --foreground: #1f2937;
  --muted-foreground: #4b5563;
  --border: #e5e7eb;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-strong: 0 20px 40px rgba(0, 0, 0, 0.1);
  --radius-lg: 16px; /* Renamed to avoid conflict */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  z-index: 1000;
  padding: 18px 5%;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  padding: 12px 5%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo-img {
  width: 115px;
  height: 38px;
}

.logo span {
  color: var(--secondary-color);
}

.logo i {
  margin-right: 10px;
  font-size: 28px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
nav ul li a.active {
  color: var(--secondary-color);
  font-weight: 700;
}
nav ul li a.active::after {
  transform: scaleX(1);
}
nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2.5px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--accent-color)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
nav ul li a:hover::after,
nav ul li a:focus::after {
  transform: scaleX(1);
}
nav ul li a:hover,
nav ul li a:focus {
  color: var(--secondary-color);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-switch {
  display: flex;
  align-items: center;
}

.language-switch input[type="checkbox"] {
  display: none;
}

.language-switch .switch {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e0e0e0;
  border-radius: 20px;
  width: 60px;
  height: 30px;
  position: relative;
  cursor: pointer;
  padding: 2px;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

.language-switch .switch::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 26px;
  height: 26px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.language-switch input:checked + .switch::before {
  transform: translateX(30px);
}

.language-switch .lang {
  flex: 1;
  font-size: 12px;
  text-align: center;
  z-index: 1;
  font-weight: 500;
  color: #555;
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.language-switch input:not(:checked) + .switch .en {
  color: var(--secondary-color);
  font-weight: 700;
}

.language-switch input:checked + .switch .bn {
  color: var(--secondary-color);
  font-weight: 700;
}

.btn {
  padding: 12px 28px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
}

.btn-primary:hover {
  background-color: #e6af24;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.hero-slider {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(13, 48, 80, 0.8) 0%,
    rgba(13, 48, 80, 0.5) 100%
  );
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  padding: 0 20px;
  color: var(--white);
}

.slide-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.slide-content p {
  font-size: 20px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--white);
}

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

.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: var(--secondary-color);
  transform: scale(1.2);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 10;
}

.arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--white);
  font-size: 20px;
}

.arrow:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

/* Features Section */
.features {
  padding: 120px 0;
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 20px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}

/* Feature Icon */
.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #1e5a7a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--secondary-color), #e6af24);
  transform: rotate(15deg) scale(1.1);
}

.feature-icon i {
  font-size: 24px;
  color: var(--white);
}

@keyframes iconTilt {
  0% {
    transform: scale(1) rotate(0deg) skew(0deg, 0deg);
  }
  30% {
    transform: scale(1.05) rotate(3deg) skew(2deg, 1deg);
  }
  60% {
    transform: scale(1.03) rotate(-2deg) skew(-1deg, 0deg);
  }
  100% {
    transform: scale(1) rotate(0deg) skew(0deg, 0deg);
  }
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.feature-card p {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}

.feature-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.feature-link:hover {
  color: var(--secondary-color);
}

.feature-link i {
  transition: var(--transition);
}

.feature-link:hover i {
  transform: translateX(4px);
}

/* Statistics Section */
.statistics {
  padding: 80px 0;
  background: var(--primary-color);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-block;
}

.stat-suffix {
  font-size: 32px;
  font-weight: 700;
  display: inline-block;
}

.stat-label {
  font-size: 16px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hotel Review Section  */
/* Background gradient */
.bg-gradient {
  background: linear-gradient(135deg, #ffffff, #f9fafb, #f0f9ff);
}

/* Background decorations */
.bg-deco {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  z-index: 0;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(40px);
  animation: float 12s infinite ease-in-out;
}

.bg-blue {
  top: 20%;
  right: 20%;
  width: 256px;
  height: 256px;
  background-color: #bfdbfe;
}

.bg-purple {
  bottom: 20%;
  left: 20%;
  width: 256px;
  height: 256px;
  background-color: #d8b4fe;
  animation-delay: 2s;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(-10px) translateX(-10px);
  }
  75% {
    transform: translateY(15px) translateX(5px);
  }
}

@keyframes slide-right {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-left {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes fade-left {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-slide-right {
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: slide-right 0.8s ease-out forwards;
}

.animate-slide-left {
  animation: slide-left 0.8s ease-out forwards;
}

.animate-scale-up {
  animation: scale-up 0.5s ease-out forwards;
}

.animate-fade-left {
  animation: fade-left 0.5s ease-out forwards;
}

/* Grid layout */
.grid {
  display: grid;
  gap: 64px;
}

@media (min-width: 1024px) {
  .lg-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  h2 {
    font-size: 3.75rem;
  }
  .container {
    padding: 30px;
  }
}

.text-gradient {
  background: linear-gradient(90deg, #16a34a, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Tag */
.tag {
  display: inline-block;
  padding: 8px 16px;
  background-color: #dcfce7;
  color: #15803d;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
}

/* Quote card */
.quote-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05),
    0 8px 10px -6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

blockquote {
  font-size: 1.125rem;
  font-style: italic;
  color: #1a202c;
  margin-bottom: 16px;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quote-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-author-info div:first-child {
  font-weight: 600;
  color: #1a202c;
}

.quote-author-info div:last-child {
  font-size: 0.875rem;
  color: #718096;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.btn-cta {
  background: linear-gradient(90deg, #16a34a, #2563eb);
  color: white;
  position: relative;
  overflow: hidden;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -5px rgba(22, 163, 74, 0.4);
}

.btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.btn-cta:hover::before {
  left: 100%;
}

.btn-cta .arrow {
  transition: transform 0.3s ease;
  margin-left: 8px;
}

.btn-cta:hover .arrow {
  transform: translateX(5px);
}

/* Metrics section */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05),
    0 8px 10px -6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.metric-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-5px);
}

.metric-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.metric-card:hover .metric-icon {
  transform: scale(1.1);
}

.metric-value {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.metric-label {
  font-weight: 500;
  color: #718096;
}

/* Colors */
.text-green-600 {
  color: #16a34a;
}
.bg-green-100 {
  background-color: #dcfce7;
}

.text-blue-600 {
  color: #2563eb;
}
.bg-blue-100 {
  background-color: #dbeafe;
}

.text-purple-600 {
  color: #7e22ce;
}
.bg-purple-100 {
  background-color: #f3e8ff;
}

.text-yellow-600 {
  color: #ca8a04;
}
.bg-yellow-100 {
  background-color: #fef9c3;
}

/* Timeline */
.timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 24px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.timeline-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.timeline-content {
  flex: 1;
}

.timeline-header {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.timeline-phase {
  font-weight: 600;
  color: #1a202c;
}

.timeline-title-item {
  color: #2563eb;
  font-weight: 500;
}

.timeline-desc {
  font-size: 0.875rem;
  color: #718096;
}

/* how-it-works */

.how-it-work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Text Styles */
.text-center {
  text-align: center;
}

.gradient-text {
  background: linear-gradient(to right, #0d3050, var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.step-card {
  position: relative;
  transition: all 0.5s ease;
}

.step-card:hover {
  transform: translateY(-0.5rem);
}

/* Connection Line */
.connection-line {
  display: none;
}

@media (min-width: 1024px) {
  .connection-line {
    display: block;
    position: absolute;
    top: 80px;
    right: -1.5rem;
    width: 3rem;
    height: 2px;
    background: linear-gradient(to right, #0d3050, var(--purple));
    z-index: 10;
  }
}

/* Number Badge */
.number-badge {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  z-index: 20;
}

.step-card:hover .number-badge {
  transform: scale(1.1);
}

.badge-blue {
  background: linear-gradient(to right, #0d3050, var(--cyan));
}

.badge-purple {
  background: linear-gradient(to right, var(--purple), var(--pink));
}

.badge-green {
  background: linear-gradient(to right, var(--green), var(--emerald));
}

/* Card */
.card {
  background: var(--background);
  border-radius: var(--radius);
  padding: 2rem;
  padding-top: 3rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.step-card:hover .card {
  box-shadow: var(--shadow-strong);
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.step-card:hover .card h3 {
  color: #0d3050;
}

.card p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.features-list {
  margin: 1.5rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.feature-icon-work {
  color: var(--secondary-color);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.learn-more {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  color: #0d3050;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.step-card:hover .learn-more {
  color: var(--secondary-color);
}

.learn-more i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.step-card:hover .learn-more i {
  transform: translateX(0.25rem);
}

/* Button */
.cta-container {
  text-align: center;
  margin-top: 4rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #fec329, #0d3050);
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-strong);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-button:hover i {
  transform: translateX(0.25rem);
}

.cta-button i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.cta-button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 1.5rem;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(30deg);
  transition: all 0.6s;
}

.cta-button:hover::after {
  left: 120%;
}

/* Animations */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

.animate-fade-down {
  animation: fadeDown 0.8s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out forwards;
  opacity: 0;
}

.animate-fade-up {
  animation: fadeUp 0.8s ease-out forwards;
  opacity: 0;
}

.animate-fade-right {
  animation: fadeRight 0.5s ease-out forwards;
  opacity: 0;
}

/* Testimonials Section */
.testimonials {
  padding: 120px 0;
  background-color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-card {
  background: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 40px;
  position: relative;
  transition: var(--transition);
}

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

.quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 60px;
  color: rgba(254, 195, 41, 0.1);
  z-index: 0;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-img i {
  font-size: 24px;
  color: var(--text-light);
}

.author-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.author-info p {
  color: var(--text-light);
  font-size: 14px;
  font-style: normal;
  margin: 0;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 50px 0 10px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo-img {
  width: 190px;
  height: 60px;
}

.footer-logo-text span {
  color: var(--secondary-color);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--accent-color)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.footer-links a:hover::after,
.footer-links a:focus::after {
  transform: scaleX(1);
}
.footer-links a:hover,
.footer-links a:focus {
  color: var(--secondary-color);
  text-decoration: none;
  transform: none;
}
.footer-links a i {
  font-size: 12px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* Button styles */
.button-group {
  display: flex;
  gap: 12px;
  padding-top: 16px;
}

.button {
  flex: 1;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.button-outline {
  background-color: white;
  border: 1px solid #cbd5e1;
  color: #334155;
}

.button-outline:hover {
  background-color: #f8fafc;
  border-color: #94a3b8;
}

.button-hero {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: white;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.button-hero:hover {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  box-shadow: 0 4px 6px rgba(59, 130, 246, 0.4);
}

/* Dialog header styles */
.dialog-header {
  padding: 5px 0 5px 0;
}

.dialog-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.dialog-description {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--white);
  border-radius: var(--border-radius);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px 25px;
  position: relative;
  transform: translateY(-40px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.modal.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--primary-color);
}

.dialog-header {
  text-align: center;
  margin-bottom: 25px;
}

.dialog-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.dialog-description {
  font-size: 14px;
  color: var(--text-light);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--text-color);
  font-size: 14px;
}

.form-control {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--border-radius);
  border: 1px solid #ddd;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--secondary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(254, 195, 41, 0.2);
}

.hotel-details-group {
  display: flex;
  gap: 15px;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  border-radius: var(--border-radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
}

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

/* Succe*


      /* Success state styles */
.success-content {
  text-align: center;
  padding: 40px 24px;
  display: none;
}

.success-icon {
  width: 64px;
  height: 64px;
  color: #10b981;
  margin: 0 auto 20px;
}

.success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.success-message {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

/* Toast notification */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 16px;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-left: 4px solid #10b981;
  transform: translateY(-100px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  z-index: 99999999;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 4px;
  color: #1e293b;
}

.toast-description {
  color: #64748b;
  font-size: 0.875rem;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  transition: var(--transition);
}

.whatsapp-button:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  nav {
    display: none;
  }

  .hero {
    height: 90vh;
  }

  .slide-content h1 {
    font-size: 42px;
  }

  .slide-content p {
    font-size: 18px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .modal {
    padding: 20px;
  }
  .modal-content {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .header-right {
    display: none;
  }

  .hero {
    height: 85vh;
  }

  .slide-content h1 {
    font-size: 36px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  h2 {
    font-size: 36px;
  }
  .container {
    padding: 30px;
  }

  .modal {
    padding: 20px;
  }
  .modal-content {
    padding: 20px;
  }

  .form-control {
    padding: 12px;
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    padding: 0 8px;
    gap: 24px;
  }
  .footer-logo-img {
    width: 140px;
    height: 44px;
  }
  .footer-heading {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .footer-links li {
    margin-bottom: 10px;
  }
  .social-links a {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  .footer-bottom {
    font-size: 12px !important;
    padding-top: 18px;
  }
  h2 {
    font-size: 36px;
  }
  .container {
    padding: 30px;
  }

  .modal {
    padding: 20px;
  }
  .modal-content {
    padding: 20px;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Hamburger Button (mobile only) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--primary-color);
  margin: 3px 0;
  border-radius: 2px;
  transition: 0.3s;
}
@media (max-width: 992px) {
  nav {
    display: none;
  }
  .header-right {
    display: none !important;
  }
  .header-mobile {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }
  .header-mobile .logo {
    flex: 0 0 auto;
  }
  .header-mobile .header-btn {
    flex: 1 1 auto;
    margin: 0 10px;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 8px;
    max-width: 130px;
    width: 100%;
  }
  .hamburger {
    display: flex;
  }
}
@media (min-width: 993px) {
  .header-mobile {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
}
/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--white);
  box-shadow: -2px 0 16px rgba(0, 0, 0, 0.08);
  z-index: 2001;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 24px 16px 16px 16px;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.close-mobile-menu {
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.2s;
}
.close-mobile-menu:hover {
  color: var(--primary-color);
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
.mobile-menu ul li {
  margin-bottom: 18px;
}
.mobile-menu ul li:last-child {
  margin-bottom: 0;
}
.mobile-menu ul li a {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  overflow: hidden;
}
.mobile-menu ul li a.active {
  color: var(--secondary-color);
  font-weight: 700;
}
.mobile-menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2.5px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--accent-color)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.mobile-menu ul li a.active::after {
  transform: scaleX(1);
}
.mobile-menu-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.mobile-lang-switch {
  margin-top: 10px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.logo {
  /* Default: visible */
}
@media (max-width: 992px) {
  .header-container > .logo {
    display: none !important;
  }
  .header-mobile .logo {
    display: block !important;
  }
}
@media (min-width: 993px) {
  .header-mobile .logo {
    display: none !important;
  }
  .header-container > .logo {
    display: block !important;
  }
}
@media (min-width: 993px) {
  .footer-container {
    gap: 80px;
    padding-bottom: 0;
    align-items: flex-start;
  }
  .footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
    font-size: 15px;
  }
  .footer-bottom span {
    display: flex;
    align-items: center;
  }
  .footer-bottom a {
    margin-left: 18px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    transition: color 0.2s;
  }
  .footer-bottom a:hover {
    color: var(--secondary-color);
  }
  .social-links a {
    transition: background 0.2s, color 0.2s, transform 0.2s;
  }
  .social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.15);
  }
  .footer-links a {
    transition: color 0.2s, text-decoration 0.2s;
  }
  .footer-links a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
}
