/* home.css */

/* === ROOT VARIABLES (from your main style.css for consistency) === */
:root {
  --bg-color: #121212;
  --surface-color: #1e1e1e;
  --primary-text: #e0e0e0;
  --secondary-text: #a0a0a0;
  --brand-color-main: #00a9ff;
  --accent-color: var(--brand-color-main);
  --accent-hover: #0087cc; /* A slightly darker shade for hover */
  --error-color: #ff5252;
  --border-color: #333333;
  /* NEW: Gradient Variable */
  --brand-gradient: linear-gradient(120deg, #5f00ff, #00a9ff);
}

/* === BASE & TYPOGRAPHY === */
body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-color);
  color: var(--primary-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === GENERAL & HELPERS === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative; /* Ensure container content stays on top of overlays */
  z-index: 2;
}

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

.btn {
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none; /* For <a> tags styled as buttons */
  display: inline-block; /* For <a> tags */
  transition: background-color 0.3s, transform 0.1s, color 0.3s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--accent-color);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
}

.btn-secondary {
  background-color: var(--surface-color);
  color: var(--primary-text);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: #333;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* NEW: Light button for dark/gradient backgrounds */
.btn-light {
    background-color: #ffffff;
    color: #121212;
    font-weight: 700;
}
.btn-light:hover {
    background-color: #e0e0e0;
}


.logo-title {
 width:100px;
 height: 50px;
 background-image: url("https://www.poshcloud.co.uk/vuro/assets/SVG/SVG/vuro-logo-colour.svg");
 background-position: center;
 background-repeat: no-repeat;
 background-size: contain;
}

/* === HEADER & NAVIGATION === */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(18, 18, 18, 1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.main-nav {
  display: flex;
  flex-direction: row;
  
  align-items: center;
  height: 70px;
}

.nav-menu{
  width:100%;
    display: flex;
  flex-direction: row;
 justify-content: space-between;
  align-items: center;
  gap:50px;
}
.nav-links {
  display: flex;
  flex-direction: row;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--secondary-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary-text);
}

.nav-actions {
  display: flex;
  gap: 15px;
}

/* === HERO SECTION (UPDATED FOR VIDEO) === */
.hero-section {
  position: relative;
  height: 100vh; /* Full viewport height */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; 
}

.hero-video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 100%;
    object-fit: cover; /* This is key: it covers the area, cropping as needed */
    transform: translate(-50%, -50%);
    z-index: -2; /* Place it behind the overlay */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay for better text readability and style */
    background: linear-gradient(to top, rgba(18, 18, 18, 0.8) 0%, rgba(18, 18, 18, 0.4) 100%);
    z-index: -1; /* Place it between video and content */
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem); /* Slightly larger for more impact */
  font-weight: 800;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto 20px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4); /* Add shadow for readability */
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--primary-text); /* Brighter for better contrast on video */
  max-width: 700px;
  margin: 0 auto 40px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-cta {
    margin-top: 40px;
}

.cta-subtext {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--secondary-text);
}

/* === SECTION STYLING === */
.features-section,
.feature-details-section,
.pricing-section,
.faq-section,
.contact-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--secondary-text);
  line-height: 1.6;
}

/* === FEATURES GRID === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.feature-icon {
  margin-bottom: 20px;
  height: 64px; /* Set a fixed height */
}

.feature-icon img {
    height: 100%;
    width: auto;
    border-radius: 8px; /* Optional: if you want rounded corners on icons */
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--secondary-text);
  line-height: 1.6;
}

/* === DETAILED FEATURES SECTION (UPDATED) === */
.feature-details-section {
    padding-top: 40px; 
}
.feature-detail-row {
    display: flex;
    align-items: center;
    gap: 5%; 
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 16px;
    background-color: var(--surface-color);
    position: relative; /* For the gradient border */
    z-index: 1;
    overflow: hidden; /* To contain the pseudo-element border */
}

/* NEW: Gradient Border effect */
.feature-detail-row::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
    margin: -2px; /* Border width */
    border-radius: inherit;
    background: var(--brand-gradient);
}


.feature-detail-row.reverse {
    flex-direction: row-reverse;
}
.feature-detail-image, .feature-detail-content {
    flex: 1;
}
.feature-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.feature-detail-content h4 {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.feature-detail-content h3 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 20px;
}
.feature-detail-content p {
    color: white;
    line-height: 1.7;
    margin-bottom: 30px;
}
@media (max-width: 820px) {
    .feature-detail-row {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .feature-detail-row.reverse {
        flex-direction: column; /* Keep it column on mobile */
    }
    .feature-detail-content {
        margin-top: 30px;
    }
}
/* NEW: Gradient Text Helper */
.gradient-text {
    /* background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text; */
    -webkit-text-fill-color: white;
    display: inline-block; /* Fix for some browsers */
}


/* home.css (ADD THIS NEW BLOCK) */

/* === FEATURED TOURS SECTION === */
.featured-tours-section {
  display:none;
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tour-card {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden; /* Crucial for the zoom effect */
    aspect-ratio: 4 / 3; /* Maintain a consistent shape */
    background-color: var(--surface-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.tour-card-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.tour-card:hover .tour-card-visual {
    transform: scale(1.05); /* Zoom effect on the container */
}

.tour-card-poster, .tour-card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-card-video {
    opacity: 0;
    transition: opacity 0.5s ease 0.1s; /* Fade in video on hover */
}

.tour-card:hover .tour-card-video {
    opacity: 1;
}

.tour-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
    z-index: 2;
}

.tour-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
    z-index: 3;
}

.tour-card-info h3 {
    font-size: 1.4rem;
    margin: 0;
    text-shadow: 0 2px 5px rgba(0,0,0,0.7);
}

.tour-card-info p {
    margin: 4px 0 0;
    color: var(--primary-text);
    opacity: 0.9;
    font-weight: 500;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #fff;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform-origin: center;
}

.tour-card:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* --- Main CTA at the bottom of the section --- */
.section-cta {
    margin-top: 60px;
}


/* === PRICING SECTION === */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.pricing-card {
  background-color: var(--surface-color);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}

.pricing-card.current {
  border-color: var(--accent-color);
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 169, 255, 0.2);
}

.pricing-card h3 {
  font-size: 1.5rem;
}

.pricing-card .price {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 15px 0;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--secondary-text);
}

.pricing-card ul {
  list-style: none;
  margin: 20px 0;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  flex-grow: 1; /* Pushes button to the bottom */
}

.pricing-card li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card li svg {
  color: var(--accent-color);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto; /* Pushes button to the bottom */
}


/* === FAQ SECTION === */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 20px;
  overflow: hidden; /* For smooth animation */
}

.faq-item summary {
  font-weight: 500;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none; /* Remove default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none; /* Safari */
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.2s ease-in-out;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 15px;
  color: var(--secondary-text);
  line-height: 1.6;
}

/* === CONTACT FORM SECTION === */
.contact-section {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 100px;
}
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-text);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--primary-text);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 169, 255, 0.2);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* === FINAL CTA & FOOTER (REVAMPED) === */
.final-cta-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
}
/* NEW: Gradient background for CTA */
.final-cta-section.gradient-background {
    background-image: var(--brand-gradient);
    color: #ffffff; /* White text on gradient */
}
.final-cta-section.gradient-background h2 {
    color: #ffffff;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 15px;
}
.final-cta-section.gradient-background p {
    color: rgba(255, 255, 255, 0.85); /* Slightly off-white for subtext */
    margin-bottom: 30px;
}


.site-footer-bottom {
  padding: 30px 0;
  background-color: var(--bg-color); /* Change to main bg for contrast */
}

.site-footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--secondary-text);
  flex-wrap: wrap; /* For small screens */
  gap: 10px;
}

.site-footer-bottom a {
  color: var(--secondary-text);
  text-decoration: none;
}

.site-footer-bottom a:hover {
  color: var(--primary-text);
}


/* === MOBILE NAVIGATION === */
#mobile-nav-toggle {
  display: none; /* Hidden by default */
  z-index: 1001; /* Make sure it's above the nav panel */
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }
  
  .main-nav.active{
    width:100vw;
    height:100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .main-nav.active .logo-title{
    width:150px;
  }
  .main-nav.active .nav-menu{
    width:100%;
    height:100%;
     display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
 
  }
  .main-nav.active .nav-links,
  .main-nav.active .nav-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
   
    width: 100%;
 
    background-color: var(--bg-color); /* Solid background */
    
    gap: 25px;
    font-size: 1.2rem;
  }
  .main-nav.active .nav-actions .btn {
      width: 100%;
      max-width: 250px;
      text-align: center;
  }

  #mobile-nav-toggle {
    position: absolute;
    top:20px;
    right:20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
  }

  #mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-text);
    border-radius: 3px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }

  .main-nav.active #mobile-nav-toggle span {
    background-color: #fff; /* Ensure it's visible on dark bg */
  }

  .main-nav.active #mobile-nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .main-nav.active #mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .main-nav.active #mobile-nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* === FADE-IN ANIMATION === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered fade-in for grid items */
.features-grid .fade-in:nth-child(1) { transition-delay: 100ms; }
.features-grid .fade-in:nth-child(2) { transition-delay: 200ms; }
.features-grid .fade-in:nth-child(3) { transition-delay: 300ms; }
.features-grid .fade-in:nth-child(4) { transition-delay: 150ms; }
.features-grid .fade-in:nth-child(5) { transition-delay: 250ms; }
.features-grid .fade-in:nth-child(6) { transition-delay: 350ms; }

/* Staggered fade-in for detailed feature rows */
.feature-details-section .fade-in:nth-child(1) { transition-delay: 100ms; }
.feature-details-section .fade-in:nth-child(2) { transition-delay: 200ms; }
.feature-details-section .fade-in:nth-child(3) { transition-delay: 300ms; }