/* 991px → font-size: 60%; ,

768px, 

450px → font-size: 55%; */

@media (max-width: 991px) {
  html {
    font-size: 60%;
  }

  .footer-container {
    flex-direction: column;
    row-gap: 6rem;
  }

  .link-newletter-container {
    width: 100%;
    margin-left: 0;
  }

  .promotion-packages-container {
    flex-direction: column;
  }

  .cardp {
    width: 100%;
  }

  .promotion-container::after {
    display: none;
  }

  .imgs-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .imgs-container img {
    width: 25rem;
  }

  .text-content {
    width: 80%;
  }

  .fast-easy-container {
    flex-direction: column;
  }

  .text-container {
    width: 80%;
  }

  .img-container {
    width: 80%;
    margin-inline: auto;
  }

  .honeymoon-special-container {
    flex-direction: column;
    row-gap: 6rem;
  }

  .honeymoon-special-container img {
    width: 70%;
    margin-inline: auto;
    order: 2;
    transform: translateX(0);
  }

  .text-container {
    margin-inline: 0;
  }

  .content-container h1 {
    margin-right: 30%;
  }

  .navigation {
    gap: 2rem;
  }

  /* Form responsive styles for tablets */
  .hero-content-wrapper {
    flex-direction: column;
    gap: 3rem;
  }

  .content-container {
    max-width: 100%;
  }

  .query-form-container {
    flex: 0 0 auto;
    width: 100%;
    max-width: 60rem;
    margin: 0 auto;
  }

  .form-card {
    padding: 1.4rem;
  }
}

@media (max-width: 768px) {
  .review-para-container {
    width: 50rem;
    padding-inline: 6rem;
  }

  .review-wrapper {
    max-width: 50rem;
  }

  .previous-btn,
  .next-btn {
    width: 6rem;
  }

  .next-btn {
    right: -3rem;
  }

  .previous-btn {
    left: -3rem;
  }

  .link-newletter-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 4rem;
  }

  /* Hide Company menu on mobile */
  .link-container:first-child {
    display: none;
  }

  .link-container:last-child {
    width: 100%;
    grid-column: 1 / 3;
  }

  .newsletter-form {
    width: 90%;
  }

  .text-content {
    width: 100%;
  }

  .banner-text-container {
    margin-inline: 0;
  }

  .banner-text-container img {
    right: -5%;
  }

  .text-container {
    width: 100%;
  }

  .img-container {
    width: 100%;
  }

  .honeymoon-special-container img {
    width: 100%;
  }

  .btns-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
  }

  .btn-box:first-child {
    padding-left: 4rem;
  }

  .btn-box:nth-child(2)::before {
    left: 0;
  }

  .divo {
    align-items: start;
    row-gap: 1rem;
    margin-top: 4rem;
    flex-direction: column;
  }

  .content-container h1 {
    margin-right: 10%;
  }

  .nav-btn {
    display: none;
  }

  .phone-nav-btn {
    display: inline-block !important;
  }

  /* Hide navigation on mobile */
  .navigation {
    display: none;
  }

  /* Mobile-only animations */
  .hero-container {
    animation: mobileSlideInUp 0.8s ease-out;
  }

  .content-container {
    animation: mobileFadeInLeft 1s ease-out 0.2s both;
  }

  .query-form-container {
    animation: mobileFadeInRight 1s ease-out 0.4s both;
  }

  .logo {
    animation: mobileBounceIn 0.8s ease-out;
    margin: auto;
  }

  .nav-btn {
    animation: mobilePulse 2s ease-in-out infinite;
  }

  .navbar-container {
    position: relative;
    padding-block: 3rem;
  }

  /* Mobile-specific visual enhancements */
  .hero-container {
    padding-top: 8rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
  }

  .hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
    animation: mobileParallax 4s ease-in-out infinite;
  }

  .content-container h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .form-card {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: mobileFloat 3s ease-in-out infinite;
  }

  .package-card {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 20px;
  }

  .package-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  }

  .navigation {
    position: absolute;
    width: 70%;
    height: 100vh;
    padding-top: 6rem;
    background-color: white;
    top: 100%;
    right: -100%;
    flex-direction: column;
    align-items: start;
    row-gap: 2.4rem;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav-menu {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }

  .navigation-on {
    right: -2.8rem;
  }

  .navigation .navigation-link {
    font-size: 2.4rem;
    font-weight: 400;
    color: #1e1d4c;
    line-height: 150%;
    width: 100%;
    padding-inline: 4rem;
  }

  .navigation .navigation-link::after {
    display: none;
  }

  .phone-nav-btn {
    margin-inline: auto;
    margin-top: 2rem;
    padding-inline: 3rem;
  }

  .menu-btn {
    display: inline-block;
  }

  .dropdown {
    position: relative;
    transform: translate(0, 0);
    width: 100%;
    margin-left: 4rem;
    background-color: transparent;
    row-gap: 2.4rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .linkcontainer:hover .dropdown {
    padding-top: 3rem;
  }

  .dropdown::after {
    display: none;
  }

  .linkcontainer:hover {
    padding-top: 0;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 55%;
  }

  .review-para-container {
    width: 40rem;
    padding-inline: 5rem;
  }

  .review-wrapper {
    max-width: 40rem;
  }

  .previous-btn,
  .next-btn {
    width: 6rem;
  }

  .next-btn {
    right: -2rem;
  }

  .previous-btn {
    left: -2rem;
  }

  .link-newletter-container {
    grid-template-columns: 1fr;
  }

  /* Hide Company menu on small mobile screens */
  .link-container:first-child {
    display: none;
  }

  .link-container:last-child {
    grid-column: auto;
  }

  .newsletter-form {
    width: 100%;
  }

  .banner-text-container img {
    right: 0;
  }

  .imgs-container img {
    width: 100%;
  }

  .content-container h1 {
    margin-right: 0;
  }

  .newsletter-form .email {
    width: 95%;
  }

  .navigation {
    width: 90%;
    display: none;
  }

  /* Enhanced mobile animations for small screens */
  .hero-container {
    animation: mobileSlideInUp 0.6s ease-out;
  }

  .content-container {
    animation: mobileFadeInLeft 0.8s ease-out 0.1s both;
  }

  .query-form-container {
    animation: mobileFadeInRight 0.8s ease-out 0.3s both;
  }

  .package-card {
    animation: mobileScaleIn 0.7s ease-out;
  }

  .form-card {
    animation: mobileSlideUp 0.8s ease-out;
  }

  /* Form responsive styles */
  .hero-content-wrapper {
    flex-direction: column;
    gap: 3rem;
  }

  .content-container {
    max-width: 100%;
  }

  .query-form-container {
    flex: 0 0 auto;
    width: 100%;
    max-width: 50rem;
    margin: 0 auto;
  }

  .form-card {
    padding: 1.25rem;
  }

  .form-header h3 {
    font-size: 2.2rem;
  }

  .form-group input,
  .form-group select {
    padding: 0.65rem 3rem 0.9rem;
  }

  .form-submit-btn {
    padding: 0.8rem 0.9rem;
    font-size: 1.5rem;
  }

  /* Packages section responsive styles */
  .package-header {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .package-header .global-heading {
    text-align: center;
    font-size: 3.2rem;
    line-height: 4rem;
  }

  .packages-slider {
    gap: 2rem;
  }

  .package-card {
    flex: 0 0 30rem;
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  }

  .packages-slider-container {
    margin: 0 -1rem;
    padding: 0 1rem;
  }

  .package-content {
    padding: 2rem;
  }

  .package-title {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  .current-price {
    font-size: 2rem;
  }

  .original-price {
    font-size: 1.4rem;
  }
}

/* Package Card Responsive Styles */
.package-card {
  margin-bottom: 2rem;
}

/* Responsive styles for expanded content */
@media (max-width: 768px) {
  .package-expanded-content {
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .package-expanded-content.expanded {
    max-height: 1000px;
  }

  .expanded-content-inner {
    padding: 1.5rem;
  }

  .package-highlights h4,
  .package-inclusions h4,
  .package-info h4 {
    font-size: 1.4rem;
  }

  .package-highlights li,
  .package-inclusions li,
  .package-info li {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }

  .package-actions {
    flex-direction: column;
    gap: 0.8rem;
  }

  .enquire-btn,
  .read-more-btn {
    min-width: auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .package-expanded-content.expanded {
    max-height: 1200px;
  }

  .expanded-content-inner {
    padding: 1rem;
  }

  .package-highlights,
  .package-inclusions,
  .package-info {
    margin-bottom: 1.5rem;
  }
}

.package-header .global-heading {
  font-size: 3.2rem;
  line-height: 4.2rem;
}

/* Enhanced title responsive styles */
@media (max-width: 768px) {
  .title-container {
    padding: 3rem 1.5rem;
    max-width: 95%;
  }

  .package-header .main-title {
    font-size: 3.8rem;
    line-height: 1.3;
  }

  .title-subtitle {
    font-size: 1.6rem;
  }

  .decoration-line {
    max-width: 5rem;
  }

  .decoration-icon svg {
    width: 24px;
    height: 24px;
  }

  .title-decoration.bottom .decoration-icon svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .title-container {
    padding: 2.5rem 1rem;
  }

  .package-header .main-title {
    font-size: 3.2rem;
  }

  .title-subtitle {
    font-size: 1.4rem;
  }

  .decoration-line {
    max-width: 3rem;
  }

  .title-decoration {
    gap: 1.5rem;
  }
}

/* Mobile-only keyframe animations */
@keyframes mobileSlideInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes mobileBounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes mobilePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes mobileScaleIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes mobileSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mobileFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes mobileGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes mobileParallax {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
    opacity: 0.3;
  }
}

@keyframes mobileFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes mobileSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile-specific hover effects */
@media (max-width: 768px) {
  .package-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }

  .form-submit-btn:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
  }

  /* Mobile services section animations */
  .services-section {
    animation: mobileFadeIn 1s ease-out;
  }

  .services-header {
    animation: mobileSlideDown 0.8s ease-out;
  }

  .service-card {
    animation: mobileScaleIn 0.6s ease-out;
  }

  .service-card:nth-child(1) { animation-delay: 0.1s; }
  .service-card:nth-child(2) { animation-delay: 0.2s; }
  .service-card:nth-child(3) { animation-delay: 0.3s; }
  .service-card:nth-child(4) { animation-delay: 0.4s; }

  .cta-button {
    animation: mobilePulse 2s ease-in-out infinite;
  }

  /* Mobile form input animations */
  .form-group input:focus,
  .form-group select:focus {
    transform: scale(1.02);
    box-shadow: 0 0 0 3px rgba(223, 105, 81, 0.2);
    transition: all 0.3s ease;
  }

  /* Mobile button hover effects */
  .form-submit-btn {
    background: linear-gradient(45deg, #df6951, #e67e22);
    background-size: 200% 200%;
    animation: mobileGradient 3s ease infinite;
  }
}

  .nav-btn:active {
    transform: scale(0.9);
    transition: transform 0.1s ease;
  }
}
