/* Dreamweaver Travels - Main Stylesheet */

:root {
  /* Color Palette - Vibrant & Premium */
  --primary-color: #4facfe;
  --secondary-color: #00f2fe;
  --accent-color: #ff9a9e;
  --accent-secondary: #fecfef;
  --text-dark: #1a1a2e;
  --text-light: #f8f9fa;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --section-bg-light: #ffffff;
  --section-bg-off: #f4f7f6;

  /* Gradients */
  --primary-gradient: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  --accent-gradient: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    #fad0c4 100%
  );
  --text-gradient: linear-gradient(to right, #30cfd0 0%, #330867 100%);
  --overlay-gradient: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.7)
  );

  /* Spacing & Layout */
  --container-width: 1200px;
  --header-height: 90px;
  --border-radius: 16px;

  /* Shadows */
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  /* Animated Background */
  background: linear-gradient(-45deg, #ffffff, #f0f8ff, #e6e6fa, #fff0f5);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  overflow-x: hidden;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  margin-bottom: 1rem;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* Ensure no horizontal scroll */
html,
body {
  overflow-x: hidden;
  width: 100%;
}

.section {
  padding: 60px 0;
  position: relative;
  width: 100%;
}

@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
}

.section-bg {
  background-color: rgba(244, 247, 246, 0.7);
  /* translucent for bg effect */
  backdrop-filter: blur(10px);
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: "Poppins", sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #ff512f 0%, #dd2476 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(221, 36, 118, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(221, 36, 118, 0.6);
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: var(--primary-color);
}

.section-header {
  margin-bottom: 40px;
  text-align: center;
}

.section-sub {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #4facfe;
  /* Fallback */
  color: transparent;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a2e;
}

/* Navbar Premium Redesign - Dark Mode */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(15, 12, 41, 0.85);
  /* Dark Deep Blue/Black */
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 55px;
  /* Slightly smaller for better fit */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: rotate(-3deg) scale(1.1);
}

.nav-links {
  display: flex;
  gap: 10px;
  /* Reduced gap for pill spacing */
}

.nav-link {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  /* White text */
  position: relative;
  font-size: 0.8rem;
  /* Slightly smaller for more items */
  padding: 8px 15px;
  border-radius: 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
  letter-spacing: 0.5px;
  /* Better readability */
  text-transform: uppercase;
  /* More premium look */
}

/* Glass Thickness Effect */
.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

/* Remove old underline */
.nav-link::after {
  display: none;
}

.nav-link:hover,
.nav-link.active {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle (Hidden by default on Desktop) */
#nav-check {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
  /* Updated for Dark Header */
}

/* 3D Hero Section */
/* 3D Hero Section - Enhanced */
.hero {
  min-height: 100vh;
  width: 100%;
  /* Deep Space Gradient + Stars Pattern */
  background:
    radial-gradient(1px 1px at 20% 30%, white 100%, transparent 100%) center /
      25% 25%,
    radial-gradient(1px 1px at 40% 70%, white 100%, transparent 100%) center /
      20% 20%,
    radial-gradient(circle at 50% 50%, #1a1a2e 0%, #0f0c29 100%);
  background-blend-mode: overlay, overlay, normal;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);
  perspective: 1000px;
}

/* Background Blobs */
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.4), transparent 60%);
  filter: blur(100px);
  z-index: 0;
  animation: blobFloat 15s infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(255, 154, 158, 0.3),
    transparent 60%
  );
  filter: blur(100px);
  z-index: 0;
  animation: blobFloat 18s infinite alternate-reverse;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(50px, 30px) scale(1.1);
  }
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  text-align: left;
  color: white;
}

.hero-content h1 {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 800;
  text-transform: uppercase;
  /* Neo-Gradient Text */
  background: linear-gradient(135deg, #e2e2e2 0%, #ffffff 50%, #a4e5ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  transform: translateZ(20px);
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  color: #e0e0e0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

/* 3D Visuals Area */
.hero-visuals {
  flex: 1;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.hero:hover .hero-visuals {
  transform: rotateY(0deg) rotateX(0deg);
}

/* Glass Cards */
.glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: white;
  padding: 20px;
  transform-style: preserve-3d;
}

/* Main Card */
.card-main {
  width: 320px;
  height: 500px;
  /* Increased height from 420px to fit 2nd image */
  z-index: 2;
  transform: translateZ(50px);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: floatMain 6s ease-in-out infinite;
}

/* Floating Elements */
.card-float-1 {
  width: 180px;
  top: 50px;
  right: -20px;
  transform: translateZ(80px);
  z-index: 3;
  animation: float1 5s ease-in-out infinite;
  background: linear-gradient(
    135deg,
    rgba(79, 172, 254, 0.2),
    rgba(0, 0, 0, 0)
  );
}

.card-float-2 {
  width: 160px;
  bottom: 40px;
  left: -40px;
  transform: translateZ(100px);
  z-index: 4;
  animation: float2 7s ease-in-out infinite;
  background: linear-gradient(
    135deg,
    rgba(255, 154, 158, 0.2),
    rgba(0, 0, 0, 0)
  );
}

/* Animations */
@keyframes floatMain {
  0%,
  100% {
    transform: translateZ(50px) translateY(0);
  }

  50% {
    transform: translateZ(50px) translateY(-15px);
  }
}

@keyframes float1 {
  0%,
  100% {
    transform: translateZ(80px) translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateZ(80px) translateY(-20px) rotate(0deg);
  }
}

/* New Floating Destinations */
.card-float-3 {
  width: 140px;
  top: 20px;
  left: -30px;
  transform: translateZ(60px);
  z-index: 2;
  animation: float3 6s ease-in-out infinite;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15),
    rgba(0, 0, 0, 0)
  );
}

.card-float-4 {
  width: 150px;
  bottom: 80px;
  right: -40px;
  transform: translateZ(70px);
  z-index: 2;
  animation: float4 8s ease-in-out infinite;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.15),
    rgba(0, 0, 0, 0)
  );
}

.img-placeholder-small img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 5px;
}

.card-title-small {
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

@keyframes float3 {
  0%,
  100% {
    transform: translateZ(60px) translateY(0) rotate(5deg);
  }

  50% {
    transform: translateZ(60px) translateY(15px) rotate(0deg);
  }
}

@keyframes float4 {
  0%,
  100% {
    transform: translateZ(70px) translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateZ(70px) translateY(-15px) rotate(2deg);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translateZ(100px) translateY(0) rotate(5deg);
  }

  50% {
    transform: translateZ(100px) translateY(-15px) rotate(10deg);
  }
}

/* Icons/Shapes inside cards */
.card-icon {
  font-size: 3rem;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.card-sub {
  font-size: 0.8rem;
  opacity: 0.7;
}

.img-placeholder {
  width: 100%;
  height: 150px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Hero */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: 20px;
    /* Reduced for mobile */
  }

  .hero-content {
    text-align: center;
    margin-bottom: 50px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visuals {
    height: 400px;
    width: 100%;
    transform: none;
    /* Disable complex rotation on mobile for performance/layout */
  }

  .card-main {
    width: 280px;
    height: 350px;
  }
}

/* Destinations */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.destination-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 400px;
  cursor: pointer;
  box-shadow: var(--box-shadow);
}

.destination-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-img {
  transform: scale(1.1);
}

.destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.destination-card:hover .destination-info {
  transform: translateY(0);
}

.destination-info h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.destination-price {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 1.1rem;
}

/* Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.package-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-gradient);
}

.package-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.package-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.package-price span {
  font-size: 1rem;
  color: #777;
  font-weight: 400;
}

.package-features {
  margin-bottom: 30px;
  text-align: left;
}

.package-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #555;
}

.package-features li i {
  color: var(--primary-color);
  margin-right: 10px;
}

/* Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-box {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(255, 154, 158, 0.4);
}

.feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.feature-box p {
  color: #666;
  font-size: 0.95rem;
}

/* About Section Premium Redesign */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  z-index: 1;
}

/* Decorative backdrop for image */
.about-img-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 5px solid var(--primary-color);
  /* Fallback color */
  border-image: var(--primary-gradient) 1;
  z-index: -1;
  transform: translate(-10px, -10px);
  transition: 0.3s;
}

.about-img-wrapper::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: repeating-radial-gradient(
    circle,
    var(--primary-color),
    var(--primary-color) 2px,
    transparent 2px,
    transparent 10px
  );
  opacity: 0.2;
  z-index: -2;
}

.about-img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.about-container:hover .about-img {
  transform: translateY(-10px);
}

.about-container:hover .about-img-wrapper::before {
  transform: translate(0, 0);
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-content p {
  color: #555;
  margin-bottom: 20px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  z-index: 1;
}

/* Gradient accent bar */
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--primary-gradient);
  transition: 0.3s;
}

/* Large decorative quote */
.testimonial-card::after {
  content: "\201C";
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 8rem;
  font-family: serif;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  pointer-events: none;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover::after {
  color: rgba(79, 172, 254, 0.1);
  transform: translateY(10px);
}

.stars {
  color: #ffc107;
  margin-bottom: 20px;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
  font-style: italic;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-name h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.client-name span {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact Section Revamp */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.contact-info {
  padding: 50px;
  background: linear-gradient(135deg, #ff512f 0%, #dd2476 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.contact-info::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 20px;
  flex-shrink: 0;
  transition: 0.3s;
}

.info-item:hover .info-icon {
  background: white;
  color: var(--primary-color);
  transform: scale(1.1);
}

.info-content h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.info-content p {
  color: white;
  font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  background: white;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #eee;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: 0.3s;
  background: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group textarea {
  height: 150px;
  resize: none;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 40px;
  }

  .contact-form {
    padding: 40px;
  }
}

/* Footer */
footer {
  background: #1a1a2e;
  color: white;
  padding-top: 70px;
  padding-bottom: 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  display: inline-block;
  background: linear-gradient(to right, #fff, #aaa);
  /* Light gradient for dark bg */
  -webkit-background-clip: text;
}

/* Call Floating Button */
.call-btn {
  position: fixed;
  bottom: 90px;
  /* Positioned above WhatsApp button (30px + 50px + 10px gap) */
  right: 35px;
  /* Aligned center with WhatsApp button (which is right:30px, width:50px. Center is 55px from right. If this is smaller (40px), right should be 35px) */
  width: 40px;
  height: 40px;
  background-color: #007bff;
  /* Standard blue for call */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.call-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 15px rgba(0, 123, 255, 0.4);
  background-color: #0069d9;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 15px rgba(37, 211, 102, 0.4);
  background-color: #20bd5a;
}

/* Footer */
footer {
  background: linear-gradient(to bottom, #1a1a2e, #16213e);
  color: white;
  padding-top: 80px;
  padding-bottom: 20px;
  position: relative;
  clip-path: ellipse(150% 100% at 50% 100%);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  display: inline-block;
  background: linear-gradient(to right, #fff, #4facfe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b0b0b0;
  transition: 0.3s;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
  text-shadow: 0 0 10px rgba(79, 172, 254, 0.5);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: var(--primary-gradient);
  transform: translateY(-3px) rotate(360deg);
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(221, 36, 118, 0.4);
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  position: relative;
  margin-top: 15px;
}

.newsletter-form input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 30px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  outline: none;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.newsletter-form input:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  background: var(--primary-gradient);
  color: white;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.newsletter-form button:hover {
  transform: scale(1.1);
}

.copyright {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #666;
  font-size: 0.9rem;
}

/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.popup-content {
  background: rgba(255, 255, 255, 0.95);
  width: 90%;
  max-width: 450px;
  padding: 40px;
  border-radius: 30px;
  position: relative;
  transform: scale(0.7) translateY(50px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.popup-overlay.active .popup-content {
  transform: scale(1) translateY(0);
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
}

.popup-tag {
  background: var(--primary-gradient);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
}

.popup-inner h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.popup-inner p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.popup-form input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 12px;
  margin-bottom: 15px;
  font-family: inherit;
  transition: border 0.3s ease;
}

.popup-form input:focus {
  border-color: #ff512f;
  outline: none;
}

.popup-footer {
  font-size: 0.8rem;
  color: #999 !important;
  margin-top: 20px;
  margin-bottom: 0 !important;
}

/* Animations */
@keyframes popupFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .about-img-wrapper {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15, 12, 41, 0.95);
    /* Dark background for mobile menu */
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-100%);
    /* Add JS toggle logic or checkbox hack later if needed, assume basic for now */
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 999;
  }

  /* Simple CSS hover menu for check, or use JS */
  .navbar:hover .nav-links {
    /* Usually requires JS for click, but for pure css valid hover can work for demo */
    /* I'll rely on a checkbox hack in HTML for mobile menu without JS if strictly NO JS, 
        but request said "No JavaScript" logic, but often basic toggles are ok. 
        I'll stick to a simple hover or visible mobile layout if no JS allowed.
        Actually, I will implement a CSS-only checkbox toggle.
     */
  }

  .nav-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Checkbox Hack CSS */
  #nav-check:checked ~ .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
}

/* Why Choose Us Redesign */
.why-us-container {
  display: grid;
  /* Image slightly smaller than grid */
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

.why-us-image {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.why-img-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  padding: 30px;
  border-radius: 20px;
  color: white;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.f-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-card p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* Gradients for cards */
.card-cyan {
  background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
}

.card-purple {
  background: linear-gradient(135deg, #b721ff 0%, #21d4fd 100%);
}

.card-purple-alt {
  background: linear-gradient(135deg, #21d4fd 0%, #b721ff 100%);
}

.card-cyan-alt {
  background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
}

@media (max-width: 992px) {
  .why-us-container {
    grid-template-columns: 1fr;
  }

  .why-us-image {
    /* specific height for mobile view */
    height: 400px;
  }
}

@media (max-width: 576px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Global Animations --- */

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 172, 254, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(79, 172, 254, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(79, 172, 254, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* Scroll-driven Animations (Modern Browsers) */
@supports (animation-timeline: view()) {
  .section-title,
  .section-sub,
  .destination-card,
  .package-card,
  .feature-box,
  .testimonial-card,
  .why-us-image,
  .feature-card {
    animation: fadeInUp 0.8s ease-out both;
    animation-timeline: view();
    animation-range: entry 10% cover 20%;
  }
}

/* Button Animations */
.btn-primary {
  position: relative;
  overflow: hidden;
  animation: pulseGlow 2s infinite;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-20deg);
  animation: shimmer 3s infinite linear;
  pointer-events: none;
}

/* Navbar Float Entrance */
.navbar {
  animation: fadeInUp 0.8s ease-out backwards;
}

/* Destination Card Hover Detail */
.destination-card {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.destination-card:hover {
  transform: scale(1.05) translateY(-10px);
  z-index: 10;
}

/* Feature Icons Spin */
.feature-box:hover .feature-icon,
.feature-card:hover .f-icon {
  transform: rotateY(180deg);
  transition: transform 0.6s ease;
}

/* Package Card Highlight */
.package-card:hover {
  border-color: var(--primary-color);
}
