/* Reset and font styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
html,body { height: 100%; }
body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #111;
  background: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Navigation Bar */
.nav {
  width: 100%;
  position: relative;
  top: 0;
  z-index: 60; /* Ensure nav is beneath shape */
  background: transparent;
  border-bottom: none;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 36px;
  width: auto;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-menu a {
  font-family: 'Mulish', sans-serif;
  font-weight: 800; /* ExtraBold */
  font-size: 16px;
  text-decoration: none;
  color: hsl(0, 0%, 100%);
  opacity: 0.9;
}

.nav-menu a:hover { opacity: 1; }

/* Mobile Nav Menu (Hamburger) */
.nav-menu-mobile {
  display: none; /* Hidden by default */
}

.hamburger-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* Overlapping Gradient Shape */
.bg-shape-zone {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 0;
  pointer-events: none;
  z-index: 3;
}

.bg-shape {
  position: absolute;
  top: -80px;    /* Adjust for visual overlap */
  right: 0;
  width: 55%;
  max-width: 900px;
  height: auto;
  z-index: 12;
  pointer-events: none;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
  display: flex;
  align-items: center;
}

.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 32px;
}

/* Text Column */
.left {
  max-width: 620px;
  text-align: left;
  padding: 8px;
}

.left h1 {
  font-size: 57px;
  line-height: 1.08;
  font-weight: 800;
  color: #0b0b0b;
  margin-bottom: 18px;
}

.left h1 span { color: #000; }

.sub {
  color: #555;
  font-size: 57px;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 560px;
}

/* Buttons */
.actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 18px; }

.btn {
  border: none;
  cursor: pointer;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 28px;
  font-size: 0.98rem;
}
.btn.primary {
  background: #ff5a5f;
  color: white;
  box-shadow: 0 6px 18px rgba(255,90,95,0.18);
}
.btn.primary:hover { transform: translateY(-2px); transition: transform 0.15s ease; }
.btn.demo {
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111;
  font-weight: 600;
}

/* Play icon circle */
.play {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 0.9rem;
}

/* Store buttons */
.stores {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.store {
  width: 140px;
  height: 46px;
  display: grid;
  place-items: center;
  background: #f3f3f3;
  border-radius: 10px;
  font-weight: 700;
  color: #555;
}

/* Image Column */
.right {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 13;
}
.people {
  height: 600px; /* Increase height */
  width: auto; /* Maintain aspect ratio */
  object-fit: contain;
  filter: drop-shadow(0 25px 30px rgba(16,24,40,0.12));
  margin-right: -40px; /* Overlap to the right column */
  
}


/* Responsive Layouts */
@media (min-width: 992px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
  }
  .left { width: 47%; max-width: 640px; }
  .right { width: 53%; justify-content: flex-end; }
  .left h1 { font-size: 2.7rem; }
  .sub { font-size: 1.05rem; }
  .people { width: 100%; max-width: 100%; }
  
}

/* Small Screens */
@media (max-width: 520px) {
  .left h1 { font-size: 1.6rem; }
  .nav-inner { padding: 10px 16px; }
  .nav-menu { gap: 12px; display: none; }
  .nav-menu { display: none; }
  .nav-menu-mobile {
    display: block;
  }
  .bg-shape { display: none; }
  .bg-shape-zone {right: 90px;}
  .nav-inner { gap: 5rem; }
  
}

/* Section grid layout */
.easy-fast-section {
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.easy-fast-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  padding: 0 24px;
  width: 100%;
}

/* Travel card styles */
.travel-card {
  position: relative;
  background: #fff;
  border-radius: 28px;

  padding: 24px 24px 40px 24px;
  min-width: 340px;
}



.travel-card-title {
  font-family: 'Mulish', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.travel-card-meta {
  color: #888;
  font-size: 0.97rem;
  margin-bottom: 14px;
}

.travel-card-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.icon {
  font-size: 1.18rem;
}

/* travel card info count */
.travel-card-count {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f4f4f8;
  border-radius: 8px;
  padding: 7px 15px;
  margin-top: 16px;
  font-size: 1rem;
  color: #555;
  width: fit-content;
}

/* Overlapping progress card */
.progress-card {
  position: absolute;
  left: 30px;
  bottom: -46px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(25,32,50,0.11);
  padding: 18px 22px;
  display: flex;
  gap: 16px;
  align-items: center;
  width: 258px;
}

.progress-thumb {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  object-fit: cover;
}

.progress-meta {
  font-size: 0.97rem;
  color: #a58dd2;
}

.progress-title {
  font-family: 'Mulish', sans-serif;
  font-weight: 800;
  margin-bottom: 0px;
  font-size: 1.04rem;
  color: #363568;
}

.progress-bar-wrap {
  margin-top: 4px;
}

.progress-percentage {
  color: #8d69be;
  font-weight: 900;
  font-size: 0.97rem;
  display: inline-block;
  margin-bottom: 2px;
}

.progress-bar-bg {
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: #f3e7fa;
  margin-top: 2px;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 5px;
  background: #a167cf;
  width: 40%;
  transition: width 0.3s;
}

/* Steps texts */
.easy-fast-steps {
  padding-left: 0;
}

.easy-fast-caption {
  color: #444;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  font-size: 1.14rem;
}

.easy-fast-heading {
  font-size: 2.45rem;
  font-family: 'Mulish', sans-serif;
  font-weight: 900;
  color: #222;
  margin-bottom: 34px;
  line-height: 1.16;
}

.easy-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 34px;
}

.easy-step-num {
  background: #fa6469;
  color: #fff;
  border-radius: 12px;
  font-family: 'Mulish', sans-serif;
  font-weight: 900;
  font-size: 2.1rem;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  box-shadow: 0 6px 20px rgba(250,100,105,0.05);
  flex-shrink: 0;
}

.easy-step-title {
  font-family: 'Mulish', sans-serif;
  font-weight: 900;
  font-size: 1.14rem;
  color: #111;
  margin-bottom: 6px;
}

.easy-step-desc {
  font-size: 1.02rem;
  color: #555;
  max-width: 460px;
}

/* Responsive */
@media (max-width: 900px) {
  .easy-fast-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    justify-items: center;
    padding: 0 24px;
  }
  .easy-fast-steps {
    padding-left: 0;
  }
  .travel-card { min-width: 260px; }
}

@media (max-width: 520px) {
  .easy-fast-section {
    padding: 60px 0; 
  }
  .easy-fast-heading { font-size: 1.42rem; }
  .easy-step-num { font-size: 1.46rem; width: 38px; height: 38px; }
}

/* NEW Left Card Gradient and Image Layering */
.left-card-wrapper {
  position: relative;
  width: 420px;      /* Adjust width as needed for your layout */
  min-height: 320px; /* Ensures enough space for gradient + image */
}

.card-bg-img {
  position: absolute;
  top: -40px;
  left: -60px;
  width: 340px;      /* Size for background effect; adjust as needed */
  height: auto;
  opacity: 0.8;      /* Soft, lightly faded background */
  filter: blur(18px); /* Blurred gradient effect */
  z-index: 1;
  pointer-events: none;
}

/* Card image sits above gradient as main image */

.travel-card-img {
  width: 100%;
  position: relative;
  z-index: 2;
  border-radius: 14px;
  margin-bottom: 16px;
}


.airmove-container {
  position: relative;
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}

/* Decorative top-right grid/star placeholder */
.airmove-decoration {
  position: absolute;
  top: 28px;
  right: 40px;
  width: 80px;
  height: 80px;
  background: url('decor_star_placeholder.png') no-repeat center/contain;
  z-index: 2;
  pointer-events: none;
}

/* Left background gradient placeholder */
.airmove-gradient {
  position: absolute;
  left: 0;
  top: 0;
  width: 330px;
  height: 100%;
  background: url('gradient_placeholder.jpg') no-repeat left top/cover;
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
}

.airmove-title {
  position: relative;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #22223a;
  margin-bottom: 48px;
  z-index: 3;
}

/* Card Grid */
.airmove-features {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: stretch;
  position: relative;
  z-index: 3;
}

.airmove-card {
  background: #fff;
  box-shadow: 0 12px 30px 0 rgba(24,53,78,.07), 0 2px 4px 0 rgba(70,78,87,.06);
  border-radius: 24px;
  width: 260px;
  position: relative;
  padding: 40px 18px 38px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 340px;
}

.card-top-shape {
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 48px;
  background: url('assets/cardshape_bg.png') no-repeat center/contain;
  z-index: 2;
  pointer-events: none;
}

.card-bottom-shape {
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 48px;
  background: url('assets/cardshape_bg.png') no-repeat center/contain;
  z-index: 2;
  pointer-events: none;
}

.card-icon {
  margin: 24px 0 18px 0;
  width: 54px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.card-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.airmove-card h3 {
  margin: 12px 0 10px 0;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #22223a;
  line-height: 1.3;
}

.airmove-card p {
  text-align: center;
  color: #55587a;
  font-size: 0.99rem;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .airmove-features {
    flex-wrap: wrap;
    gap: 20px;
  }
  .airmove-card {
    width: 42vw;
    max-width: 340px;
  }
}

@media (max-width: 750px) {
  .airmove-features {
    flex-direction: column;
    align-items: center;
  }
  .airmove-card {
    width: 92vw;
    max-width: 350px;
  }
}

/* This pseudo-element creates the decorative shape behind the icon */
        .icon-container::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: #ef4444; /* red-500 */
            border-radius: 0.75rem; /* rounded-xl */
            top: -6px;
            left: 6px;
            z-index: 1;
            transform: rotate(10deg);
        }
        /* Styles for the fade transition */
        .testimonial-card {
            transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
        }
        /* Custom styles for pagination dots */
        .dot {
            transition: all 0.3s ease;
        }
        .dot.active {
            background-color: #374151; /* gray-700 */
            width: 2rem; /* w-8 */
        }

        /* Custom styles for the accordion animation */
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .accordion-item.active .accordion-content {
            /* max-height is set by JS to the content's scrollHeight */
        }
        .accordion-item.active .arrow-icon {
            transform: rotate(180deg);
        }
        .arrow-icon {
            transition: transform 0.3s ease-in-out;
        }

        .cta-section {
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -200px;
            width: 500px;
            height: 500px;
            background-image: url('assets/bg-gredinet.png');
            background-repeat: no-repeat;
            background-size: contain;
            opacity: 0.5;
            z-index: 0;
            pointer-events: none;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -200px;
            left: -250px;
            width: 500px;
            height: 500px;
            background-image: url('bg-gredinet.png');
            background-repeat: no-repeat;
            background-size: contain;
            opacity: 0.5;
            z-index: 0;
            pointer-events: none;
        }
        .input-email:focus {
            outline: none;
            box-shadow: 0 0 0 2px #fca5a5;
        }