
:root {
    --primary-color: #6366f1;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --gray-50: #f8fafc;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-2xl: 1.5rem;
    --border-radius-full: 9999px;
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --gradient-1: linear-gradient(135deg, var(--primary-color), #8b5cf6);
}

.choice-bar-section {
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(99,102,241,0.03), rgba(99,102,241,0.01));
  border: 1px solid rgba(99,102,241,0.08);
  border-radius: 12px;
  margin: 2rem auto;
}

.choice-bar {
  max-width: 1200px;   
  margin: 0 auto;      
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center; 
  padding: 12px;
}

.choice-item {
  display: flex;
  gap: 14px;
  align-items: center;
  flex: 1;
  min-width: 220px;
  padding: 12px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 6px rgba(16,24,40,0.03);
}

.choice-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff; 
  flex-shrink: 0;
}

.choice-content strong {
  display: block;
  font-size: 1rem;
  color: var(--gray-900);
  font-weight: 700;
}

.choice-content span {
  display: block;
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-top: 4px;
}

.choice-contact {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(99,102,241,0.12);
  padding-bottom: 1px;
}


@media (max-width: 992px) {
  .choice-bar { flex-direction: column; gap: 12px; }
  .choice-item { width: 100%; }
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #333;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-header {
    background-color: white;
    padding: 28px 0;  /* increased height */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    
    text-decoration: none;
    display: flex; 
    align-items: center;
}


.img-logo {

    height: auto; 
     
    width: auto;
    max-height: 180px;
    transition: transform 0.3s ease;
}

.img-logo:hover {
    transform: scale(1.05);
}


.logo.text-logo { 
    font-size: 1.5rem;
    font-weight: 900;
    color: #007BFF;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
  
    font-weight: 700;
     font-size: 1.05rem;
    padding: 0 6px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007BFF;
}

.cta-button {
    text-decoration: none;
    color: white;
    background: linear-gradient(90deg, #00C9FF, #92FE9D);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 25px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.4s;
}


.slideshow-container {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    animation: kenburns 20s infinite;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.active {
    display: block;
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

@keyframes kenburns {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.2) translate(-5%, 5%); }
    100% { transform: scale(1) translate(0, 0); }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 2;
}

.slide-overlay h1 {
    font-size: 2.8rem;              
    font-weight: 900;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.9);
    letter-spacing: 1px;
}

.slide-overlay p {
       font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.3);
    z-index: 3;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}


main {
    position: relative;
}


.partners-section {
    background-color: #f8f9fa;
    padding: 30px 20px;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.partners-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #555;
    flex-shrink: 0;
    margin-right: 20px;
}

.partners-logos {
    display: flex;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
    justify-content: center;
}

.partners-logos img {
    max-height: 25px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partners-logos img:hover {
    opacity: 1;
}



.stats-section {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    padding: 70px 20px;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00C9FF, #92FE9D);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    color: white;
}

.stat-number, .stat-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: #222;
}

.stat-label {
    font-size: 1rem;
    color: #777;
    margin-top: 5px;
}


.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}


.destinations-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}

.destination-card {
    position: relative;
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.destination-card.large {
    grid-row: span 2;
}

.card-image {
    width: 100%;
    height: 100%;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.price {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.explore-btn {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: var(--border-radius-full);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: scale(1.1);
}


.packages-section {
    padding: 5rem 0;
    background: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.package-card {
    background: white;
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--gray-200);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.package-card.featured {
    border: 2px solid var(--primary-color);
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
}

.package-image {
    height: 250px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-content {
    padding: 2rem;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--warning-color);
    font-weight: 600;
}

.package-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.package-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.package-features span {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.375rem 0.75rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.package-features i {
    color: var(--primary-color);
}

.package-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--gray-400);
    font-size: 1rem;
}

.current-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
}

.discount {
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-md);
    font-size: 0.75rem;
    font-weight: 600;
}

.book-btn {
    width: 100%;
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}


.why-choose-us-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #4c51bf, #6b46c1);
}

.section-title-light {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.features-grid {
    display: grid;
    
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem;
}

.feature-card {
    background: white;
    color: var(--gray-700);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f87171, #fb923c);
    color: white;
    font-size: 1.75rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
}



.testimonials-section {
    padding: 5rem 0;
    background-color: var(--gray-50);
}



.testimonial-slider-component {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-slider-container {
    overflow: hidden; 
}

.testimonial-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    width: 100%;
    flex-shrink: 0;
    padding: 0 10px; 
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    grid-template-rows: auto auto;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--gray-600);
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
    margin: 0 0 1rem 0;
    flex-grow: 1;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details p {
    margin: 0;
    line-height: 1.4;
}

.author-name {
    font-weight: 700;
    color: var(--gray-900);
}

.author-location {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background-color: #4f46e5;
    transform: translateY(-50%) scale(1.05);
    box-shadow: var(--shadow-2xl);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}


footer {
    background-color: #111827;
    color: white;
}

.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(45deg, #2bdece, #ff5e9a);
    text-align: center;
}
.newsletter-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.newsletter-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}
.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}
.newsletter-form input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    outline: none;
}
.newsletter-form button {
    padding: 0.9rem 2rem;
    border: none;
    background-color: #ffc107;
    color: #333;
    font-weight: bold;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.newsletter-form button:hover {
    background-color: #ffda73;
}

/* Newsletter + Offer Merge Styling */
.promo-form button {
    background-color: #4e46e5 !important;
    color: #fff !important;
}
.promo-form button:hover {
    background-color: #372fcc !important;
}

/* Offer footer inside newsletter */
.offer-footer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #fff;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.offer-footer small {
    opacity: 0.9;
}
.offer-link {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
}
.offer-link:hover {
    color: #ffe58f;
}




.footer-bottom {
    padding: 3rem 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}
.footer-column p {
    color: var(--gray-400);
    line-height: 1.7;
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 0.8rem;
}
.footer-column ul li a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-column ul li a:hover {
    color: white;
}
.footer-column ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}
.social-icons {
    margin-top: 1rem;
}
.social-icons a {
    color: white;
    font-size: 1.2rem;
    margin-right: 1rem;
    transition: color 0.3s;
}
.social-icons a:hover {
    color: var(--primary-color);
}


.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-item i {
  margin-right: 10px;
  color: #8A2BE2; 
}

.contact-item span {
  color: #FFFFFF; 
}


.slide-overlay {
        justify-content: flex-start;
    padding-top: 18vh;
}


.flight-search-widget {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-2xl);
    width: 100%;
    max-width: 1100px;
    margin: 2.5rem auto 0;
    color: var(--gray-900);
    z-index: 5;
}

.widget-tabs {
    display: flex;
    background-color: #f0f2f5;
    padding: 0.25rem 1.5rem 0;
    border-top-left-radius: var(--border-radius-lg);
    border-top-right-radius: var(--border-radius-lg);
}

.widget-tabs .tab-link {
    background: none;
    border: none;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.widget-tabs .tab-link:hover {
    color: var(--primary-color);
}

.widget-tabs .tab-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background-color: white;
    border-top-left-radius: var(--border-radius-md);
    border-top-right-radius: var(--border-radius-md);
}

.widget-content {
    padding: 1.5rem;
}

.flight-options {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.option-select select {
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: none;
    padding: 0.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
}

.search-form-container {
    position: relative;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr 40px 1fr 180px 180px auto;
    gap: 1rem;
    align-items: center;
}

.input-group {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    padding: 0.75rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.input-group i {
    color: var(--gray-400);
    margin-right: 0.75rem;
}

.input-group input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
    background: transparent;
}
input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}


.swap-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    background-color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: all 0.3s ease;
}

.swap-btn:hover {
    background-color: var(--gray-100);
    color: var(--primary-color);
    transform: rotate(180deg);
}

.search-btn {
    background-color: #f97316; 
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    padding: 0.85rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    height: 100%;
}

.search-btn:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
}

.direct-flights {
    position: absolute;
    bottom: -35px;
    right: 0;
    display: flex;
    align-items: center;
}

.direct-flights label {
    margin-left: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}


@media (max-width: 1150px) {
    .search-form {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
        gap: 0.75rem;
    }
    .input-group:nth-of-type(1) { grid-column: 1 / 2; }
    .swap-btn { grid-column: 2 / 3; grid-row: 1 / 2; }
    .input-group:nth-of-type(2) { grid-column: 3 / 4; }
    .input-group.date-group:nth-of-type(3) { grid-column: 1 / 2; grid-row: 2/3; }
    .input-group.date-group:nth-of-type(4) { grid-column: 2 / 4; grid-row: 2/3;}
    .search-btn { grid-column: 1 / 4; grid-row: 3/3; }
    
    .direct-flights {
       position: static;
       margin-top: 0.75rem;
       justify-content: flex-end;
       color: var(--gray-700);
    }
     .direct-flights label {
        color: var(--gray-700);
        text-shadow: none;
    }
}

@media (max-width: 768px) {
    .slide-overlay { padding-top: 5vh; }
    .flight-search-widget { margin-top: 1.5rem; }
    .widget-tabs { padding: 0.25rem 0.5rem 0; }
    .widget-tabs .tab-link { padding: 0.75rem; font-size: 0.8rem; }
    
    .search-form {
        display: flex;
        flex-direction: column;
    }
    .swap-btn { display: none; }
     .flight-options { flex-wrap: wrap; gap: 0.75rem 1.5rem;}
}



.footer-legal {
    padding: 2rem 0;
    background-color: #0c121e; 
    border-top: 1px solid var(--gray-700);
}

.footer-legal h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--gray-100);
    font-weight: 600;
}

.legal-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    padding: 0;
    margin: 0;
}

.legal-links li a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.legal-links li a:hover {
    color: white;
    text-decoration: underline;
}

.footer-copyright {
    background-color: #0c121e;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
}



.privacy-policy-container {
    max-width: 800px;
    margin: 120px auto 50px; 
    padding: 2rem;
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    color: var(--gray-700);
    line-height: 1.8;
}

.privacy-policy-container h1 {
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.privacy-policy-container h2 {
    font-size: 1.75rem;
    color: var(--gray-800);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 0.5rem;
}

.privacy-policy-container p {
    margin-bottom: 1rem;
}

.privacy-policy-container ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 1rem;
}

.privacy-policy-container ul li {
    margin-bottom: 0.5rem;
}

.privacy-policy-container a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.privacy-policy-container a:hover {
    text-decoration: underline;
}

.privacy-policy-container strong {
    font-weight: 700;
    color: var(--gray-800);
}



.privacy-policy-container {
    max-width: 800px;
    margin: 120px auto 50px; 
    padding: 2rem;
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    color: var(--gray-700);
    line-height: 1.8;
}

.privacy-policy-container h1 {
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
    text-align: center;
}

.privacy-policy-container h2 {
    font-size: 1.75rem;
    color: var(--gray-800);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 0.5rem;
}

.privacy-policy-container p {
    margin-bottom: 1rem;
}

.privacy-policy-container ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 1rem;
}

.privacy-policy-container ul li {
    margin-bottom: 0.5rem;
}

.privacy-policy-container a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.privacy-policy-container a:hover {
    text-decoration: underline;
}

.privacy-policy-container strong {
    font-weight: 700;
    color: var(--gray-800);
}


.privacy-policy-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.privacy-policy-container th,
.privacy-policy-container td {
    border: 1px solid var(--gray-200);
    padding: 0.75rem 1rem;
    text-align: left;
    vertical-align: top;
}

.privacy-policy-container th {
    background-color: var(--gray-100);
    font-weight: 600;
    color: var(--gray-800);
}

.privacy-policy-container td ul {
    margin-top: 0.5rem;
    margin-bottom: 0;
}





.privacy-policy-container {
    max-width: 800px;
    margin: 120px auto 50px;
    padding: 2rem;
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    color: var(--gray-700);
    line-height: 1.8;
}

.privacy-policy-container h1, .privacy-policy-container h2 {
    color: var(--gray-900);
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.privacy-policy-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.privacy-policy-container th,
.privacy-policy-container td {
    border: 1px solid var(--gray-200);
    padding: 0.75rem 1rem;
    text-align: left;
    vertical-align: top;
}

.privacy-policy-container th {
    background-color: var(--gray-100);
    font-weight: 600;
}



.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center; 
    align-items: center; 
    z-index: 9999;
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-modal {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    
    
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-overlay.show .popup-modal {
    transform: scale(1); 
}

.close-popup-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-400);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.close-popup-btn:hover {
    color: var(--gray-700);
}

.popup-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), #8b5cf6);
    color: white;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: var(--shadow-md);
}

.popup-modal h2 {
    font-size: 1.8rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.popup-modal p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.popup-features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 1.5rem;
    display: inline-block; 
}

.popup-features-list li {
    margin-bottom: 0.5rem;
    color: var(--gray-700);
    font-weight: 500;
}

.popup-features-list i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

.popup-call-btn {
    display: block;
    text-decoration: none;
    background: #ffc107; 
    color: var(--gray-900);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.popup-call-btn:hover {
    background: #ffda73;
    transform: translateY(-2px);
}


@media (max-width: 600px) {
    .popup-modal {
        padding: 20px;
    }
    .popup-modal h2 {
        font-size: 1.5rem;
    }
    .popup-call-btn {
        font-size: 1.1rem;
        padding: 12px 15px;
    }
}


.offer-promo-section {
    padding: 2rem 0;
     margin-top: -35px;
}

.offer-box {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    border: 1px solid var(--gray-200);
    max-width: 900px;
    margin: 0 auto;
}

/* Ribbon */
.offer-ribbon {
    position: absolute;
    top: -12px;
    left: 60%;
    transform: translateX(-50%); /* centers the ribbon */
    background: #d35400;
    color: white;
    padding: 6px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 6px;
}


/* Icon */
.offer-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
}

/* Content */
.offer-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.offer-content h3 span {
    color: var(--primary-color);
}

.offer-content p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

/* Form */
.offer-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.offer-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    outline: none;
}

.offer-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(99,102,241,0.2);
}

.offer-form button {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.4rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.offer-form button:hover {
    background: #4f46e5;
    transform: translateY(-1px);
}

/* Footer */
.offer-footer {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.offer-footer small {
    color: var(--gray-500);
}

.offer-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.offer-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .offer-box {
        flex-direction: column;
        text-align: center;
    }

    .offer-form {
        flex-direction: column;
    }

    .offer-form button {
        width: 100%;
    }

    .offer-ribbon {
        left: 50%;
        transform: translateX(-50%);
    }
}
/* ====== Mobile-first adjustments (add near end of style.css) ====== */

/* Make base typography slightly larger for small screens */
html { font-size: 15px; }

/* Header / nav responsive */
.nav-container {
  gap: 12px;
  padding: 12px;
}
.nav-links { 
  gap: 18px;
  align-items: center;
}

/* Hide full nav on small screens and show hamburger */
@media (max-width: 900px) {
  .nav-links {
    display: none; /* toggled by JS */
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 10px 20px;
    box-shadow: 0 8px 30px rgba(3, 7, 18, 0.12);
    z-index: 2000;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }

  .nav-links a {
    display: block;
    padding: 14px 6px;
    font-size: 1rem;
  }

  .menu-toggle { display: flex; }

  /* call & book buttons collapse into a small row */
  .call-now-btn, .cta-button {
    padding: 10px 14px;
    font-size: 0.95rem;
    border-radius: 10px;
    margin-left: 8px;
  }

  .nav-container { align-items: center; position: relative; }

  .img-logo { max-height: 48px; }
}

/* Slideshow / overlay */
@media (max-width: 900px) {
  .slideshow-container { height: 60vh; }
  .slide-overlay { padding-top: 6vh; text-align: left; align-items: flex-start; padding-left: 6vw; padding-right: 6vw; }
  .slide-overlay h1 { font-size: 2rem; line-height: 1.05; text-align: left; }
  .slide-overlay p { font-size: 1rem; text-align: left; max-width: 100%; }

  .prev, .next { padding: 10px; font-size: 18px; }
}

/* Flight search widget responsive */
@media (max-width: 1150px) {
  .flight-search-widget { max-width: 95%; padding: 0.5rem; margin-top: 1.2rem; }
  .widget-content { padding: 1rem; }
  .search-form { grid-template-columns: 1fr; gap: 0.6rem; }
  .input-group { padding: 0.6rem; }
  .swap-btn { display: none; }
  .search-btn { width: 100%; padding: 0.9rem; }
}

/* Destinations grid -> single column on small screens */
@media (max-width: 900px) {
  .destinations-grid { display: block; }
  .destination-card { margin-bottom: 1rem; border-radius: 12px; }
  .destination-card.large { grid-row: auto; }
  .card-image { height: 220px; }
}

/* Partners logos scale */
@media (max-width: 700px) {
  .partners-logos img { max-height: 30px; margin: 6px; opacity: 0.9; }
  .partners-container { padding: 0 10px; }
}

/* Testimonial & packages -> single column */
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}

/* Footer stack */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.2rem; padding: 1.5rem; }
  .footer-column h4 { display: block; }
}

/* Improve tap targets & spacing */
a, button {
  -webkit-tap-highlight-color: rgba(0,0,0,0.08);
  touch-action: manipulation;
}
.cta-button, .call-now-btn, .search-btn, .book-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Small tweaks to avoid breaking layout when fonts load */
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
/* ---------- Header sizing (bigger) + mobile floating call button ---------- */

/* taller header on all screens */
.site-header {
  padding: 22px 0;              /* was 8px 0 → makes header much taller */
  transition: padding 0.18s ease;
}

/* more breathing room around content */
.nav-container {
  padding: 0 24px;              /* was 0 14px */
  gap: 20px;
}

/* bigger logo */
.img-logo {
  max-height: 70px;             /* was 44px */
}

/* make call button flexible on desktop/tablet */
.call-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00b300;
  color: #fff;
  padding: 8px 14px;
  border-radius: 18px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* hide call icon text on tiny screens and make button smaller */
.call-now-btn .call-text { display: inline; }
.call-now-btn .call-icon { display: inline; }

/* floating round phone button (hidden on desktop) */
.floating-call {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #00b300;
  color: #fff;
  align-items: center;
  justify-content: center;
  z-index: 2200;
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
  text-decoration: none;
  display: inline-flex;
}

/* visually-hidden helper */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden; clip: rect(1px,1px,1px,1px);
  white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

/* MOBILE BEHAVIOR */
@media (max-width: 900px) {
  /* hide the big header call button to save space (floating remains) */
  .call-now-btn { display: none; }

  /* show floating round call button on mobile */
  .floating-call { display: inline-flex; }

  /* reduce space for nav links / enable hamburger (your JS already toggles .nav-links) */
  .nav-container { align-items: center; }

  /* ensure slide overlay starts below header (avoid overlap) */
  .slide-overlay { padding-top: 10vh; }

  /* make CTA Book button smaller on mobile */
  .cta-button {
    padding: 8px 12px;
    font-size: 0.95rem;
    border-radius: 12px;
  }
}

/* small tweak for very small phones */
@media (max-width: 420px) {
  .img-logo { max-height: 140px; }
  .floating-call { width: 50px; height: 50px; right: 12px; bottom: 12px; }
  .slide-overlay { padding-top: 9vh; }
}




/* ===== Trip Inquiry Section ===== */

.trip-inquiry-section {
    padding: 5rem 0;
    background: #ffffff;
}

.trip-inquiry-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 3rem;
    align-items: flex-start;
}

.trip-inquiry-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.trip-inquiry-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.trip-inquiry-text ul li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--gray-600);
}

.trip-inquiry-text ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: var(--success-color);
    font-size: 0.9rem;
}

.trip-inquiry-note {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.trip-inquiry-note a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}
.trip-inquiry-note a:hover {
    text-decoration: underline;
}

.trip-inquiry-form {
    background: var(--gray-50);
    border-radius: var(--border-radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.trip-inquiry-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.trip-inquiry-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.trip-inquiry-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
}

.trip-inquiry-form input,
.trip-inquiry-form select,
.trip-inquiry-form textarea {
    border-radius: var(--border-radius-md);
    border: 1px solid var(--gray-200);
    padding: 0.7rem 0.9rem;
    font-size: 0.95rem;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: #fff;
}

.trip-inquiry-form input:focus,
.trip-inquiry-form select:focus,
.trip-inquiry-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15);
}

.trip-inquiry-form textarea {
    resize: vertical;
    min-height: 120px;
}

.trip-inquiry-submit {
    margin-top: 0.5rem;
    width: 100%;
    border: none;
    border-radius: var(--border-radius-lg);
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gradient-1);
    color: #fff;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trip-inquiry-submit:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-2xl);
}

.trip-inquiry-submit i {
    font-size: 0.95rem;
}

.form-disclaimer {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Responsive for inquiry section */
@media (max-width: 992px) {
    .trip-inquiry-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .trip-inquiry-form {
        padding: 1.5rem 1.25rem;
    }

    .trip-inquiry-form .form-row {
        grid-template-columns: 1fr;
    }
}

