/* === VARIABLES AND BASE STYLES === */
:root {
  /* Brutalist Design System with Eco-Minimalism */
  /* Triadic Color Scheme */
  --primary: #E94E1B;      /* Vibrant orange */
  --primary-dark: #C63B12; /* Darker orange */
  --secondary: #0E7C7B;    /* Teal */
  --secondary-dark: #076564; /* Darker teal */
  --tertiary: #6C2DC7;     /* Purple */
  --tertiary-dark: #561FA3; /* Darker purple */
  
  /* Neutrals */
  --black: #0D0D0D;
  --dark-gray: #333333;
  --mid-gray: #666666;
  --light-gray: #EEEEEE;
  --off-white: #F7F7F2;
  --white: #FFFFFF;
  
  /* Accent */
  --accent: #41EAD4;       /* Bright turquoise */
  --accent-dark: #26D4BE;  /* Darker turquoise */
  --error: #E74C3C;
  --success: #27AE60;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
  --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  --gradient-tertiary: linear-gradient(135deg, var(--tertiary), var(--tertiary-dark));
  --gradient-dark: linear-gradient(135deg, rgba(13, 13, 13, 0.9), rgba(13, 13, 13, 0.7));
  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Merriweather', serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  
  /* Borders & Shadows */
  --border-radius: 0;           /* Brutalist style - sharp edges */
  --border-width: 2px;
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 25px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  /* Container */
  --container-width: 1200px;
  --container-padding: 1.5rem;
}

/* === RESET & GLOBAL STYLES === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--off-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--secondary-dark);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

section {
  padding: 4rem 0;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--black);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  margin: 1rem auto 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

/* === BUTTONS === */
.btn-primary,
button,
input[type='submit'] {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 1.5rem;
  border: var(--border-width) solid var(--primary);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
}

.btn-primary:hover,
button:hover,
input[type='submit']:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary) !important;
  border: var(--border-width) solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white) !important;
}

/* === HEADER / NAVIGATION === */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  padding: 1rem 0;
}

.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo h1 {
  font-size: 1.75rem;
  margin-bottom: 0;
  color: var(--primary);
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark-gray);
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--black);
  margin: 3px 0;
  transition: var(--transition-fast);
}

/* === HERO SECTION === */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 74px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.hero-content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-content h2::after {
  background-color: var(--white);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--white);
}

/* === VISION SECTION === */
.vision-section {
  background-color: var(--white);
}

.vision-content {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.vision-image {
  flex: 1;
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.vision-text {
  flex: 1;
}

.vision-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* === PORTFOLIO / DESTINATIONS SECTION === */
.portfolio-section {
  background-color: var(--off-white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.card {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

/* === PROCESS / TRAVEL TIPS SECTION === */
.process-section {
  background-color: var(--white);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 4px;
  background-color: var(--light-gray);
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
}

.timeline-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.timeline-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.timeline-content {
  position: relative;
  width: 45%;
  padding: 1.5rem;
  background-color: var(--off-white);
  box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(odd) .timeline-content {
  left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
  left: 0;
}

.timeline-content h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* === STATISTICS SECTION === */
.statistics-section {
  background-color: var(--secondary);
  color: var(--white);
  padding: 5rem 0;
}

.statistics-section h2 {
  color: var(--white);
}

.statistics-section h2::after {
  background-color: var(--white);
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-box {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.stat-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.stat-icon img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.stat-text {
  font-size: 1.1rem;
}

/* === GALLERY SECTION === */
.gallery-section {
  background-color: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* === RESOURCES SECTION === */
.resources-section {
  background-color: var(--white);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.resource-card {
  padding: 1.5rem;
  background-color: var(--off-white);
  box-shadow: var(--shadow-sm);
}

.resource-card h3 {
  color: var(--tertiary);
  margin-bottom: 1rem;
}

.resource-card ul {
  margin-left: 1rem;
}

.resource-card ul li {
  margin-bottom: 0.5rem;
}

.resource-card ul li::before {
  content: "•";
  color: var(--primary);
  display: inline-block;
  width: 1rem;
  margin-left: -1rem;
}

/* === CASE STUDIES / BUDGET ROUTES SECTION === */
.case-studies-section {
  background-color: var(--off-white);
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 1rem;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  cursor: pointer;
  background-color: var(--light-gray);
  transition: background-color var(--transition-fast);
}

.accordion-header:hover {
  background-color: var(--primary);
  color: var(--white);
}

.accordion-header:hover h3 {
  color: var(--white);
}

.accordion-header h3 {
  margin-bottom: 0;
  font-size: 1.3rem;
  transition: color var(--transition-fast);
}

.accordion-icon {
  font-size: 1.5rem;
  transition: transform var(--transition-normal);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
}

.case-study-content {
  display: flex;
  flex-wrap: wrap;
  padding: 1.5rem;
  gap: 2rem;
}

.case-image {
  flex: 1;
  min-width: 300px;
}

.case-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.case-text {
  flex: 2;
  min-width: 300px;
}

.case-text p {
  margin-bottom: 1rem;
}

/* === CLIENTELE SECTION === */
.clientele-section {
  background-color: var(--white);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.client-box {
  text-align: center;
  padding: 2rem;
  background-color: var(--off-white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-box:hover {
  transform: translateY(-10px);
}

.client-icon {
  margin-bottom: 1.5rem;
}

.client-icon img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}

.client-box h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--tertiary);
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
  background-color: var(--tertiary);
  color: var(--white);
}

.testimonials-section h2 {
  color: var(--white);
}

.testimonials-section h2::after {
  background-color: var(--white);
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-item {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.testimonial-image {
  flex: 0 0 150px;
  margin-right: 2rem;
}

.testimonial-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}

.testimonial-content {
  flex: 1;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-content h4 {
  color: var(--white);
  margin-bottom: 0.25rem;
}

.testimonial-location {
  opacity: 0.8;
  margin-bottom: 0;
}

/* === CONTACT SECTION === */
.contact-section {
  background-color: var(--off-white);
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  color: var(--tertiary);
  margin-bottom: 1.5rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: var(--primary);
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--light-gray);
  background-color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

/* === FOOTER === */
.main-footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-nav h4,
.footer-legal h4,
.footer-social h4 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.footer-nav h4::after,
.footer-legal h4::after,
.footer-social h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
  margin-top: 0.5rem;
}

.footer-nav ul li,
.footer-legal ul li,
.footer-social ul li {
  margin-bottom: 0.5rem;
}

.footer-nav a,
.footer-legal a,
.footer-social a {
  color: var(--light-gray);
  transition: color var(--transition-fast);
}

.footer-nav a:hover,
.footer-legal a:hover,
.footer-social a:hover {
  color: var(--primary);
}

.footer-social a {
  display: inline-block;
  margin-right: 1rem;
  font-size: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* === SUCCESS PAGE === */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--off-white);
  padding: 2rem;
}

.success-content {
  max-width: 600px;
}

.success-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: 2rem;
}

/* === PRIVACY & TERMS PAGES === */
.privacy-page,
.terms-page {
  padding-top: 100px;
  background-color: var(--white);
}

.privacy-content,
.terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.privacy-content h2,
.terms-content h2 {
  color: var(--secondary);
  text-align: left;
}

.privacy-content h2::after,
.terms-content h2::after {
  margin-left: 0;
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeIn {
  animation-name: fadeIn;
}

.slideIn {
  animation-name: slideIn;
}

.scaleIn {
  animation-name: scaleIn;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .vision-content {
    flex-direction: column;
  }
  
  .vision-image {
    width: 100%;
    height: 350px;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-icon {
    left: 30px;
    transform: translateX(-50%);
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    left: 0;
  }
  
  .testimonial-item {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonial-image {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .main-nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 1rem;
  }
  
  .main-nav.active ul {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .portfolio-grid,
  .gallery-grid,
  .resources-grid,
  .client-grid {
    grid-template-columns: 1fr;
  }
  
  .case-study-content {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .stat-box {
    min-width: 100%;
  }
}

/* JS Classes */
.burger-menu.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active .bar:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* ScrollReveal Utility Classes */
.reveal-left {
  visibility: hidden;
}

.reveal-right {
  visibility: hidden;
}

.reveal-bottom {
  visibility: hidden;
}

.reveal-top {
  visibility: hidden;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: var(--space-sm);
}

.mb-2 {
  margin-bottom: var(--space-md);
}

.mb-3 {
  margin-bottom: var(--space-lg);
}

.mb-4 {
  margin-bottom: var(--space-xl);
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: var(--space-sm);
}

.pt-2 {
  padding-top: var(--space-md);
}

.pt-3 {
  padding-top: var(--space-lg);
}

.pt-4 {
  padding-top: var(--space-xl);
}
html,body{
  overflow-x: hidden;
}