/* ================= RESET ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ================= NAVBAR ================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  color: #000 ! important;

  width: 100%;
  max-width: 100%;

  padding: 16px 55px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-radius: 0;

  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);

  transition: all 0.3s ease;
  z-index: 999;
}


/* .navbar.scrolled {
      top: 0;
      left: 0;
      transform: none;

      width: 100%;
      max-width: 100%;

      padding: 16px 55px;

      border-radius: 0;

      background: #fff;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    } */


/* Logo */

.logo {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.navbar.scrolled .logo {
  color: #000;
}

/* Menu */

.menu {
  display: flex;
  list-style: none;
  gap: 35px;
}

.menu a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
}

.navbar.scrolled .menu a {
  color: #000;
}

/* Right */

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

.search {
  cursor: pointer;
  color: #fff;
}

.navbar.scrolled .search {
  color: #000;
}

/* Button */

.btn {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 22px;

  background: #39b54c;
  /* Normal Color */
  color: #fff;

  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;

  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.btn:hover {
  background: #ea580b;
  /* Hover Color */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(234, 88, 11, 0.35);
}

/* Icon Circle */
.btn span {
  width: 26px;
  height: 26px;

  background: #fff;
  color: #39b54c;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: bold;

  transition: all 0.35s ease;
}

/* Icon Animation on Hover */
.btn:hover span {
  background: #fff;
  color: #ea580b;
  transform: translateX(4px) rotate(5deg);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}


/* Mobile */

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ================= HERO ================= */

.hero {
  min-height: 100vh;

  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("https://images.unsplash.com/photo-1585914285280-72bae40d4b3a?q=80&w=1740&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") center/cover;

  display: flex;
  align-items: center;

  padding-top: 110px;
  padding-bottom: 60px;
}


.hero-container {
  width: 100%;
  max-width: 1280px;
  margin: auto;

  padding: 0 35px;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 45px;

  align-items: center;
}

/* Left Content */

.hero-content {
  color: #fff;
}

.hero-content .small {
  color: #3ab54b;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-content h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 30px;
  font-family: Georgia, serif;
}

.hero-content span {
  color: #3ab54b;
}

/* .hero-btn{
    background:#3ab54b;
    color:#fff;

    padding:14px 32px;

    border-radius:6px;

    text-decoration:none;
    font-weight:600;
} */

.hero-btn {
  background: #3ab54b;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  animation: breathing 2.5s infinite ease-in-out;
}

/* Breathing Animation */
@keyframes breathing {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(58, 181, 75, 0.6);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 15px 5px rgba(58, 181, 75, 0.4);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(58, 181, 75, 0.6);
  }
}

/* Hover Effect */
.hero-btn:hover {
  cursor: pointer;
  background: #ea580c;
  /* slightly darker green */
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* ================= WHITE HERO FORM ================= */

.hero-white-form {
  background: #fff;
  padding: 35px 30px 40px;
  border-radius: 22px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);

  color: #111;
}

/* Title */

.hero-white-form h3 {
  color: #16a34a;
  font-size: 28px;
  margin-bottom: 6px;
}

.form-subtitle {
  color: #666;
  font-size: 14px;
  margin-bottom: 25px;
}

/* Form */

.plan-form {
  display: grid;
  gap: 16px;
}

.plan-form input,
.plan-form select {
  width: 100%;

  padding: 13px 15px;

  border: 1px solid #ddd;
  border-radius: 14px;

  font-size: 14px;
  outline: none;

  transition: 0.3s;
}

/* Focus */

.plan-form input:focus,
.plan-form select:focus {
  border-color: #16a34a;
}

/* Rows */

.plan-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Button */

.plan-btn {
  width: 100%;
  padding: 15px;

  background: linear-gradient(to right, #05377b, #006cff);
  color: #fff;

  border: none;
  border-radius: 30px;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  margin-top: 10px;
  transition: 0.3s;
}

.plan-btn:hover {
  background: linear-gradient(to right, #006cff, #05377b);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #026cff5d;
}

/* Secure */

.secure-text {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  color: #777;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px) {

  .plan-row {
    grid-template-columns: 1fr;
  }

  .hero-white-form {
    padding: 28px 22px 32px;
  }

}


/* ================= RESPONSIVE ================= */

@media(max-width:992px) {

  .hero-container {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 0 25px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 46px;
  }

}

@media(max-width:768px) {

  body {
    padding-top: 70px;
  }

  .hero {
    min-height: calc(100vh - 70px);
    margin-top: -70px;
    padding-top: 100px;
  }

  .menu,
  .btn {
    display: none;
  }

  .hamburger {
    display: block;
    color: #000000;
  }

  .navbar.scrolled .hamburger {
    color: #000;
  }

}

@media(max-width:600px) {

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

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

}

/* ================= DESTINATIONS ================= */

.destinations {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.dest-head {
  max-width: 1300px;
  margin: auto;
  padding: 0 40px 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge {
  background: #ebfff2;
  color: #17a34a;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.dest-head h2 {
  margin-top: 12px;
  font-size: 36px;
}

.arrows button {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #f3f4f6;
  font-size: 20px;
  cursor: pointer;
}

/* Slider */

.slider-container {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 28px;
  padding-left: 40px;
  will-change: transform;
}

/* Slide */

.slide {
  width: 320px;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: #000;
}

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

/* Info */

.slide-info {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;

  background: #fff;
  padding: 12px 16px;
  border-radius: 14px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-weight: 600;
}

/* Mobile */

@media(max-width:768px) {

  .dest-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .slide {
    width: 260px;
    height: 320px;
  }

  .slider-track {
    padding-left: 25px;
  }

}



/* ================= PACKAGES ================= */

.packages {
  padding: 90px 40px;
  background: #fff;
}

.packages-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.badge-gray {
  background: #ebfff2;
  color: #17a34a;
  padding: 6px 18px;
  border-radius: 25px;
  font-size: 14px;
}

.packages-head h2 {
  margin-top: 20px;
  font-size: 42px;
  color: #16a34a;
}

/* Grid */

.packages-grid {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Card */

.package-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  transition: 0.4s ease;
}

/* Hover Lift */

.package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* Image */

.package-img {
  height: 220px;
  overflow: hidden;
}

.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: 0.5s ease;
}

/* Zoom on Hover */

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

/* Body */

.package-body {
  padding: 22px;
}

/* Top Row */

.package-top {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.rating {
  color: #16a34a;
  font-weight: 600;
}

/* Title */

.package-body h3 {
  font-size: 18px;
  margin: 12px 0;
}

/* Text */

.package-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.package-body p span {
  color: #17a34a;
  font-weight: 600;
}

/* Actions */

.package-actions {
  margin-top: 20px;

  display: flex;
  gap: 15px;
}

/* Call */

.call-btn {
  width: 45px;
  height: 45px;

  border: 2px solid #16a34a;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #16a34a;
  text-decoration: none;

  transition: 0.3s;
}

.call-btn:hover {
  background: #16a34a;
  color: #fff;
  transform: translateY(-3px);
}

/* Enquiry Button */

.enquiry-btn {
  flex: 1;

  background: linear-gradient(to right, #05377b, #006cff);

  color: #fff;

  text-align: center;

  padding: 12px;

  border-radius: 10px;

  text-decoration: none;
  font-weight: 600;

  transition: 0.3s;
}

/* Button Hover */

.enquiry-btn:hover {
  background: linear-gradient(to right, #006cff, #05377b);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px #006aff54;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px) {

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

}

@media(max-width:600px) {

  .packages {
    padding: 70px 20px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .packages-head h2 {
    font-size: 32px;
  }

}

/* ================= ABOUT ================= */

.about {
  padding: 100px 40px;
  /* EVEN TOP & BOTTOM */
  background: #fff;
}

.about-container {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;

  align-items: center;
}

/* Left */

.about-tag {
  color: #17a34a;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.about-text h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 35px;
}

.about-sub {
  color: #17a34a;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.about-text h3 {
  font-size: 32px;
  margin-bottom: 15px;
}

.about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* List */

.about-text ul {
  list-style: none;
  margin-bottom: 35px;
}

.about-text li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  font-weight: 500;
}

.about-text li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #17a34a;
}

/* Button */

.about-btn {
  display: inline-block;

  background: #3ab54b;
  color: #fff;

  padding: 14px 34px;

  border-radius: 10px;

  font-weight: 600;
  text-decoration: none;

  transition: 0.3s;
}

.about-btn:hover {
  background: #ea580c;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.4);
}

/* Right Image */

.about-img {
  border-radius: 20px;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px) {

  .about {
    padding: 90px 30px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-text {
    text-align: center;
  }

  .about-text ul {
    display: inline-block;
    text-align: left;
  }

}

@media(max-width:600px) {

  .about {
    padding: 70px 20px;
  }

  .about-text h2 {
    font-size: 32px;
  }

  .about-text h3 {
    font-size: 24px;
  }

}

/* Mobile: Image on Top */

@media(max-width:992px) {

  .about-img {
    order: 1;
  }

  .about-text {
    order: 2;
  }

}

/* ================= CONTACT ================= */

.contact {
  padding: 100px 40px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("https://images.unsplash.com/photo-1584878549510-56029e4fa927?q=80&w=2232&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") center/cover;
}

.contact-container {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;

  align-items: center;
}

/* Left */

.contact-text {
  color: #fff;
}

.contact-tag {
  display: inline-block;

  background: #ebfff2;
  color: #17a34a;
  padding: 6px 16px;
  border-radius: 20px;

  font-size: 14px;
  margin-bottom: 20px;
}

.contact-text h2 {
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-text p {
  max-width: 450px;
  color: #ddd;
  line-height: 1.6;
}

/* Form Box */

.contact-form-box {
  background: #fff;

  border-radius: 20px;

  padding: 35px 30px 40px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.contact-form-box h3 {
  color: #16a34a;
  font-size: 28px;
  margin-bottom: 5px;
}

.form-sub {
  color: #666;
  margin-bottom: 25px;
}

/* Form */

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;

  border: 1px solid #ddd;
  border-radius: 10px;

  font-size: 14px;
  outline: none;

  transition: 0.3s;
}

.form-group textarea {
  min-height: 120px;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #16a34a;
}

.full {
  grid-column: 1/-1;
}

/* Button */

.contact-btn {
  margin-top: 10px;

  background: linear-gradient(to right, #05377b, #006cff);

  color: #fff;

  border: none;

  padding: 14px;

  border-radius: 12px;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.contact-btn:hover {
  background: linear-gradient(to right, #006cff, #05377b);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px #006aff61;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px) {

  .contact {
    padding: 90px 30px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-text {
    text-align: center;
  }

  .contact-text p {
    margin: auto;
  }

}

@media(max-width:600px) {

  .contact {
    padding: 70px 20px;
  }

  .contact-text h2 {
    font-size: 34px;
  }

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

  .contact-form-box {
    padding: 28px 22px 32px;
  }

}

/* ================= TESTIMONIALS ================= */

.testimonials {
  padding: 100px 0;
  background: #eee;
  overflow: hidden;
}

.testi-title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 60px;
}

/* Slider */

.testi-slider {
  overflow: hidden;
  width: 100%;
}

.testi-track {
  display: flex;
  gap: 30px;
  padding-left: 40px;
  will-change: transform;
}

/* Card */

.testi-card {
  background: #fff;

  width: 340px;
  min-height: 220px;
  /* SAME HEIGHT */

  border-radius: 20px;

  padding: 28px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  flex-shrink: 0;
}

.testi-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* User */

.testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.testi-user img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.testi-user h4 {
  font-size: 15px;
}

.testi-user span {
  font-size: 13px;
  color: #777;
}

/* Mobile */

@media(max-width:768px) {

  .testi-card {
    width: 280px;
    min-height: 210px;
  }

  .testi-title {
    font-size: 34px;
  }

}

/* Testimonials Tag */

.testi-tag {
  display: inline-block;

  background: #ebfff2;
  color: #17a34a;

  padding: 6px 18px;

  border-radius: 20px;

  font-size: 14px;
  font-weight: 500;

  margin: 0 auto 15px;
  /* CENTER */

  text-align: center;
}

.testi-header {
  text-align: center;
  margin-bottom: 60px;
}



/* ================= FOOTER ================= */

.footer {
  background: #021b24;
  color: #fff;
  padding-top: 90px;
}

/* Main Grid */

.footer-container {
  max-width: 1300px;
  margin: auto;

  padding: 0 40px 60px;

  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1.2fr;
  gap: 50px;
}

/* About */

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.footer-about p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Social */

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;

  background: rgba(255, 255, 255, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: #fff;
  text-decoration: none;

  transition: 0.3s;
}

.footer-social a:hover {
  background: #17a34a;
}

/* Titles */

.footer h4 {
  font-size: 20px;
  margin-bottom: 25px;
}

/* Links */

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

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

.footer-links a {
  color: #ccc;
  text-decoration: none;

  transition: 0.3s;
}

.footer-links a:hover {
  color: #17a34a;
  padding-left: 5px;
}

/* Contact */

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;

  margin-bottom: 15px;
  color: #ccc;
}

/* CTA */

.footer-btn {
  display: inline-block;

  background: linear-gradient(to right, #05377b, #006cff);

  color: #fff;

  padding: 14px 35px;

  border-radius: 30px;

  text-decoration: none;
  font-weight: 600;

  transition: 0.3s;
}

.footer-btn:hover {
  background: linear-gradient(to right, #006cff, #05377b);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px #006aff5c;
}

/* Bottom */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  padding: 20px 40px;

  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

  max-width: 1300px;
  margin: auto;

  color: #aaa;
}

.footer-bottom span {
  color: #fff;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px) {

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

}

@media(max-width:600px) {

  .footer {
    padding-top: 70px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 0 25px 50px;
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

}

/* ================= MOBILE MENU ================= */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;

  width: 80%;
  max-width: 320px;
  height: 100vh;

  background: #fff;

  z-index: 2000;

  transform: translateX(-100%);
  transition: 0.4s ease;
}

/* Active */

.mobile-menu.active {
  transform: translateX(0);
}

/* Header */

.mobile-header {
  background: #ffffff;

  color: #fff;

  padding: 18px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-logo {
  font-size: 22px;
  font-weight: 700;
}

.close-menu {
  font-size: 22px;
  cursor: pointer;
}

/* Links */

.mobile-links {
  list-style: none;
  padding: 20px;
}

.mobile-links li {
  padding: 14px 0;

  border-bottom: 1px solid #eee;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-links a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.mobile-links span {
  width: 26px;
  height: 26px;

  background: #000;
  color: #fff;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
}

/* Overlay */

.menu-overlay {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.6);

  z-index: 1500;

  opacity: 0;
  pointer-events: none;

  transition: 0.3s;
}

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


/* Trigger Button */
.pmx-open-btn {
  padding: 10px 22px;
  background: #4f9f5b;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.pmx-open-btn:hover {
  background: #3e8649;
  transform: translateY(-2px);
}

/* Overlay */
.pmx-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 9999;
}

/* Show State */
.pmx-overlay.pmx-active {
  opacity: 1;
  visibility: visible;
}

/* Container */
.pmx-container {
  width: 420px;
  background: #f7f7f7;
  padding: 35px 30px;
  border-radius: 25px;
  position: relative;
  transform: translateY(40px);
  transition: 0.4s ease;
}

.pmx-overlay.pmx-active .pmx-container {
  transform: translateY(0);
}

/* Close */
.pmx-close-btn {
  position: absolute;
  top: 15px;
  right: 18px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* Title */
.pmx-title {
  color: #4f9f5b;
  font-size: 28px;
  margin-bottom: 8px;
}

.pmx-subtitle {
  color: #777;
  font-size: 14px;
  margin-bottom: 25px;
}

/* Form */
.pmx-form input,
.pmx-form select {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 18px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  background: #fff;
  transition: 0.3s;
}

.pmx-form input:focus,
.pmx-form select:focus {
  border-color: #4f9f5b;
  box-shadow: 0 0 0 2px rgba(79, 159, 91, 0.2);
}

/* Row */
.pmx-row {
  display: flex;
  gap: 12px;
}

/* Submit Button */
.pmx-submit-btn {
  width: 100%;
  padding: 15px;
  border-radius: 40px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to right, #05377b, #006cff);
  cursor: pointer;
  transition: 0.3s ease;
}

.pmx-submit-btn:hover {
  background: linear-gradient(to right, #006cff, #05377b);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Secure */
.pmx-secure {
  margin-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #777;
}