/* Airone Travel - Static Website Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #003366;
  --primary-light: #1a5490;
  --primary-foreground: #ffffff;
  --secondary: #ff6b00;
  --secondary-hover: #e65f00;
  --secondary-foreground: #ffffff;
  --background: #ffffff;
  --foreground: #2d3748;
  --muted: #f5f7fa;
  --muted-foreground: #64748b;
  --card: #ffffff;
  --border: #e2e8f0;
  --radius: 0.5rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: var(--primary-light);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--background);
}

.header-top {
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.header-top .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-icon span:first-child {
  color: var(--secondary);
}

.logo-icon span:last-child {
  color: var(--primary);
}

.logo-text h1 {
  font-size: 1.125rem;
  color: var(--primary);
  line-height: 1.2;
}

.logo-text p {
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: 500;
}

.contact-info {
  display: none;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 107, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}

.contact-item strong {
  display: block;
  font-size: 0.875rem;
  color: var(--primary);
}

.contact-item span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon.facebook { background: #1877F2; }
.social-icon.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #bc1888); }
.social-icon.youtube { background: #FF0000; }
.social-icon.whatsapp { background: #25D366; }
.social-icon.twitter { background: #1DA1F2; }
.social-icon.linkedin { background: #0A66C2; }

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

/* Navigation */
.nav {
  background-color: var(--primary);
}

.nav-list {
  display: none;
  flex-wrap: wrap;
}

.nav-list.active {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}

.nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background-color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  background-color: var(--secondary);
}

/* ========== HERO SLIDER ========== */
.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.4), transparent);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-content .container {
  max-width: 700px;
}

.hero-title {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
  animation: slideIn 0.5s ease-out;
}

.hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  animation: slideIn 0.5s ease-out 0.1s both;
}

.hero-btn {
  animation: slideIn 0.5s ease-out 0.2s both;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.4);
}

.hero-nav.prev { left: 1rem; }
.hero-nav.next { right: 1rem; }

.hero-dots {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.hero-dot.active {
  background: var(--secondary);
}

/* Search Bar */
.search-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 100%;
  max-width: 600px;
  padding: 0 1rem;
}

.search-form {
  display: flex;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding: 0.5rem;
  gap: 0.5rem;
}

.search-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  font-size: 1rem;
  outline: none;
}

.search-btn {
  padding: 0.75rem 1.5rem;
}

/* ========== SECTIONS ========== */
.section {
  padding: 5rem 0;
}

.section-muted {
  background-color: var(--muted);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.section-subtitle {
  color: var(--muted-foreground);
}

/* ========== DESTINATIONS ========== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.destination-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.destination-card:hover img {
  transform: scale(1.05);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  transition: background 0.3s;
}

.destination-card:hover .destination-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3), transparent);
}

.destination-name {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
}

/* ========== PACKAGES ========== */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.package-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s;
}

.package-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.package-image {
  height: 200px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.package-card:hover .package-image img {
  transform: scale(1.1);
}

.package-content {
  padding: 1.25rem;
}

.package-title {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.package-duration {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.package-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.875rem;
  transition: gap 0.2s;
}

.package-link:hover {
  gap: 0.5rem;
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background-color: var(--primary);
  padding: 5rem 0;
}

.testimonials .section-title {
  color: white;
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  display: none;
}

.testimonial-card.active {
  display: block;
}

.testimonial-icon {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-stars {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.125rem;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary);
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.testimonial-nav:hover {
  background: var(--secondary-hover);
}

.testimonial-nav.prev { left: -1rem; }
.testimonial-nav.next { right: -1rem; }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.testimonial-dot.active {
  background: var(--secondary);
}

/* ========== FOOTER ========== */
.pay-banner {
  background: var(--secondary);
  padding: 1rem 0;
  text-align: center;
}

.footer {
  background: var(--foreground);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer .social-icons {
  justify-content: center;
  margin-bottom: 2rem;
}

.footer-copyright {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ========== ANIMATIONS ========== */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== RESPONSIVE ========== */
@media (min-width: 640px) {
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .contact-info {
    display: flex;
  }
  
  .hero {
    height: 600px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .destinations-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .testimonial-nav.prev { left: -3rem; }
  .testimonial-nav.next { right: -3rem; }
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .nav-list {
    display: flex;
    flex-direction: row;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .destinations-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
}

.hero::before,
.hero::after,
.hero-slide::before,
.hero-slide::after {
  content: none !important;
}


