/* 
  Travento Travel Agency - Main Styles 
*/

:root {
  /* Colors - Premium Dark Theme */
  --bg-main: #0a0b10;
  --bg-card: rgba(20, 22, 35, 0.6);
  --text-primary: #ffffff;
  --text-secondary: #a0a3bd;
  --accent-1: #ff6b6b;
  --accent-2: #ff8e53;
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.03);

  /* Typography */
  --font-main: 'Outfit', sans-serif;

  /* Effects */
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(255, 107, 107, 0.3);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Utilities */
.gradient-text {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

p {
  color: var(--text-secondary);
}

a {
  text-decoration: none;
  color: var(--text-primary);
}

/* Base Layout Classes */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 100px 0;
  position: relative;
  z-index: 10;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.5);
}

.glass-btn {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: white;
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(10, 11, 16, 0.9);
  backdrop-filter: blur(15px);
  padding: 15px 0;
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo i {
  color: var(--accent-1);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-1);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-1);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
}

.hero-bg {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: translateZ(-200px) scale(1.2);
  /* Parallax Base */
  transition: transform 0.1s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(10, 11, 16, 0.3) 0%, var(--bg-main) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Floating 3D Elements */
.float-elements {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.float-item {
  position: absolute;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.8);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

.float-item.plane {
  top: 20%;
  right: 15%;
  font-size: 4rem;
  animation: float1 6s ease-in-out infinite;
  color: var(--accent-1);
}

.float-item.compass {
  bottom: 25%;
  left: 10%;
  font-size: 5rem;
  animation: float2 8s ease-in-out infinite;
}

.float-item.cloud-1 {
  top: 15%;
  left: 20%;
  font-size: 6rem;
  opacity: 0.3;
  animation: float1 12s ease-in-out infinite reverse;
}

.float-item.cloud-2 {
  bottom: 30%;
  right: 20%;
  font-size: 5rem;
  opacity: 0.2;
  animation: float2 10s ease-in-out infinite;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-20px) rotate(-5deg);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mouse-icon {
  width: 26px;
  height: 40px;
  border: 2px solid var(--text-secondary);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--accent-1);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 15px);
    opacity: 0;
  }
}

/* Destinations Section */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  perspective: 1000px;
}

.dest-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  transition: transform 0.1s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  cursor: pointer;
}

.card-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.dest-card:hover .card-image img {
  transform: scale(1.1);
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-1);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-glow);
}

.card-content {
  padding: 25px;
  transform: translateZ(30px);
  /* 3D pop effect for content */
}

.location {
  color: var(--accent-2);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dest-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.dest-card .highlight {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.link-btn i {
  color: var(--accent-1);
  transition: transform 0.3s ease;
}

.link-btn:hover {
  color: var(--accent-1);
}

.link-btn:hover i {
  transform: translateX(5px);
}

/* Tour Packages */
.packages-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.package-card {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  transition: transform 0.1s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  min-height: 280px;
}

.pkg-image {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
}

.pkg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.package-card:hover .pkg-image img {
  transform: scale(1.05);
}

.pkg-details {
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateZ(20px);
}

.pkg-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}

.pkg-header h3 {
  font-size: 1.8rem;
  color: var(--text-primary);
}

.pkg-header h3 i {
  color: var(--accent-1);
  margin-right: 10px;
}

.pkg-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-2);
  text-align: right;
  line-height: 1;
}

.pkg-price span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.pkg-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
}

.pkg-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pkg-features i {
  color: var(--accent-1);
}

.pkg-details p {
  margin-bottom: 30px;
}

.pkg-actions {
  margin-top: auto;
}

/* Text Colors */
.pt-0 {
  padding-top: 0;
}

.text-green {
  color: #00d2ff;
  /* Using cyan for futuristic/premium look instead of raw green */
  font-size: 1.2rem;
}

/* Masonry Gallery */
.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

/* Animations (Scroll Reveal) */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Travel Tips */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.tip-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-10px);
}

.tip-image {
  height: 200px;
  position: relative;
}

.tip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tip-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-1);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.tip-content {
  padding: 25px;
}

.tip-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.tip-content h3 a {
  transition: color 0.3s ease;
}

.tip-content h3 a:hover {
  color: var(--accent-1);
}

.tip-meta {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--glass-border);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.stars {
  color: #fbbf24;
  margin-bottom: 20px;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 25px;
  color: var(--text-primary);
}

.author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* About Section */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.stat-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.stat-item h3 {
  font-size: 3rem;
  margin-bottom: 10px;
  line-height: 1;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  background: var(--bg-card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question i {
  color: var(--accent-1);
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 25px 20px;
}

/* Contact Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-1);
  background: rgba(255, 255, 255, 0.08);
}

.form-group option {
  background: var(--bg-light);
  color: var(--text-primary);
}

.contact-map {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.map-container {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  transform-style: preserve-3d;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 11, 16, 0.1), transparent);
  pointer-events: none;
}



/* FAQ Accordion Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.faq-question i {
  color: var(--accent-1);
  transition: transform 0.3s ease;
}

.faq-question.active {
  background: rgba(255, 255, 255, 0.03);
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-answer p {
  padding: 0 25px 20px;
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Footer Section */
.footer {
  background: #050508;
  padding: 80px 0 20px;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-bottom: 25px;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.social-links a:hover {
  background: var(--accent-1);
  transform: translateY(-3px);
}

.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: white;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--accent-1);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }
}

@media (max-width: 992px) {

  /* Navigation */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 11, 16, 0.95);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
  }

  .nav-links.active {
    display: flex;
  }

  .navbar .btn {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  /* Grid breaking */
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Feature cards & Subpages */
  .row {
    grid-template-columns: 1fr !important;
  }

  .dest-stat {
    grid-template-columns: 1fr !important;
  }

  .package-sidebar {
    position: static !important;
    margin-top: 40px;
  }

  /* Package Cards */
  .package-card {
    flex-direction: column;
  }

  .pkg-image {
    width: 100%;
    height: 350px;
  }
}

@media (max-width: 768px) {

  /* General Spacing */
  .section {
    padding: 70px 0;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  /* Hero */
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  /* Grids */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-map {
    height: 350px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto 25px auto;
  }

  .social-links {
    justify-content: center;
  }

  /* Tour Packages */
  .pkg-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .pkg-price {
    text-align: left;
  }

  /* Destinations & Other Grids */
  .destinations-grid,
  .testimonials-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }

  /* Masonry */
  .masonry-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
}

@media (max-width: 480px) {

  /* Ultra small screens */
  .hero-title {
    font-size: 2.5rem;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }

  .pkg-actions {
    flex-direction: column;
  }

  .pkg-actions .btn {
    width: 100%;
  }

  .pkg-price {
    font-size: 1.8rem;
  }
}