/* Variables */
:root {
  /* Primary Colors */
  --primary-color: #3a5bb3;
  --primary-dark: #274292;
  --primary-light: #5a79c9;
  
  /* Secondary Colors (Complementary) */
  --secondary-color: #e67e22;
  --secondary-dark: #d35400;
  --secondary-light: #f39c12;
  
  /* Neutral Colors */
  --dark-color: #333333;
  --darker-color: #222222;
  --light-color: #f8f9fa;
  --lighter-color: #ffffff;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  
  /* Background colors */
  --bg-light: #f8f9fa;
  --bg-dark: #343a40;
  --bg-primary: #ebf0ff;
  --bg-secondary: #fff5eb;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  /* Text shadows */
  --text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  
  /* Border radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Typography */
  --font-heading: 'Archivo Black', sans-serif;
  --font-body: 'Roboto', sans-serif;
  
  /* Grid Breakpoints */
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--darker-color);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--space-md);
}

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

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

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

ul, ol {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Section Styles */
section {
  padding: var(--space-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  color: var(--dark-color);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: var(--space-sm) auto 0;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray-color);
  margin-bottom: var(--space-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius-md);
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  outline: none;
  box-shadow: var(--shadow-sm);
}

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

.btn:active {
  transform: translateY(-1px);
}

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

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

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: white;
}

/* Card Styles */
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--lighter-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
}

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

.card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  text-align: center;
}

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

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

.card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  width: 100%;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
  color: var(--darker-color);
}

.card p {
  color: var(--gray-color);
  margin-bottom: var(--space-sm);
}

.card .price {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
  margin: var(--space-md) 0;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
}

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

.main-nav ul {
  display: flex;
}

.main-nav li {
  margin-left: var(--space-lg);
}

.main-nav a {
  color: var(--dark-color);
  font-weight: 500;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--dark-color);
  transition: all var(--transition-normal);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: var(--lighter-color);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  z-index: 999;
  transform: translateY(-100%);
  transition: transform var(--transition-normal);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
}

.mobile-menu li {
  margin-bottom: var(--space-md);
}

.mobile-menu a {
  display: block;
  padding: var(--space-sm) 0;
  font-size: 1.2rem;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 0;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--lighter-color);
  margin-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-lg);
  color: var(--lighter-color);
  text-shadow: var(--text-shadow);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: var(--space-xl);
  color: var(--lighter-color);
  text-shadow: var(--text-shadow);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
}

/* Statistics Section */
.statistics {
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.statistics-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
}

.statistic-item {
  flex: 1 1 200px;
  margin: var(--space-md);
  padding: var(--space-lg);
  background-color: var(--lighter-color);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.statistic-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.statistic-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.statistic-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.statistic-label {
  color: var(--gray-color);
  font-size: 1.1rem;
}

/* Process Section */
.process {
  background-color: var(--bg-primary);
  position: relative;
}

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

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

.timeline-item {
  position: relative;
  display: flex;
  margin-bottom: var(--space-xl);
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 2;
}

.timeline-content {
  width: 45%;
  padding: var(--space-lg);
  background-color: var(--lighter-color);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background-color: var(--lighter-color);
  transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  left: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  right: -10px;
}

/* Gallery Section */
.gallery {
  background-color: var(--bg-light);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
  gap: var(--space-md);
}

.filter-btn {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  font-weight: 500;
  transition: all var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: white;
}

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

/* External Resources Section */
.external-resources {
  background-color: var(--bg-secondary);
}

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

.resource-item {
  background-color: var(--lighter-color);
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.resource-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.resource-item h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  color: var(--darker-color);
  min-height: 50px;
}

.resource-item p {
  color: var(--gray-color);
  margin-bottom: var(--space-lg);
  min-height: 100px;
}

.resource-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 500;
  position: relative;
  padding-right: 20px;
}

.resource-link::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-normal);
}

.resource-link:hover::after {
  transform: translate(5px, -50%);
}

/* Team Section */
.team {
  background-color: var(--lighter-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.team-member {
  height: 100%;
}

.team-member .card-image {
  height: 300px;
}

.member-position {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.member-description {
  margin-bottom: var(--space-lg);
}

.member-contact {
  border-top: 1px solid var(--light-gray);
  padding-top: var(--space-md);
  margin-top: auto;
}

.member-contact p {
  margin-bottom: var(--space-xs);
}

/* Behind the Scenes Section */
.behind-scenes {
  background-color: var(--bg-primary);
}

.scenes-content {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.scenes-image {
  flex: 1;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.scenes-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}

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

.scenes-text {
  flex: 1;
}

/* Press Section */
.press {
  background-color: var(--lighter-color);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.press-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-lg);
  background-color: var(--bg-light);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.press-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.press-logo {
  margin-bottom: var(--space-lg);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

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

.press-quote p {
  font-style: italic;
  color: var(--gray-color);
}

.press-source {
  font-weight: 500;
  color: var(--primary-color);
  margin-top: var(--space-md);
}

/* Sustainability Section */
.sustainability {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--lighter-color);
  padding: var(--space-xxl) 0;
}

.sustainability::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
  z-index: 1;
}

.sustainability .container {
  position: relative;
  z-index: 2;
}

.sustainability .section-title {
  color: var(--lighter-color);
}

.sustainability-content {
  display: flex;
  justify-content: flex-end;
}

.sustainability-text {
  max-width: 600px;
}

.sustainability-text h3 {
  color: var(--lighter-color);
  text-shadow: var(--text-shadow);
}

.sustainability-text p {
  color: var(--light-color);
  margin-bottom: var(--space-md);
}

/* Contact Section */
.contact {
  background-color: var(--bg-light);
}

.contact-content {
  display: flex;
  gap: var(--space-xl);
}

.contact-form {
  flex: 1;
  background-color: var(--lighter-color);
  padding: var(--space-xl);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.contact-info {
  flex: 1;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--dark-color);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 35px;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-custom {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--light-gray);
  border-radius: var(--border-radius-sm);
  transition: background-color var(--transition-fast);
}

.checkbox-container:hover input ~ .checkbox-custom {
  background-color: #ccc;
}

.checkbox-container input:checked ~ .checkbox-custom {
  background-color: var(--primary-color);
}

.checkbox-custom:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkbox-custom:after {
  display: block;
}

.checkbox-container .checkbox-custom:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.info-icon {
  margin-right: var(--space-md);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-text h4 {
  margin-bottom: var(--space-xs);
  color: var(--primary-color);
}

.map-container {
  margin-top: var(--space-xl);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Footer Styles */
.footer {
  background-color: var(--bg-dark);
  color: var(--light-color);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer-logo {
  flex: 1 1 300px;
}

.footer-logo h2 {
  color: var(--lighter-color);
  margin-bottom: var(--space-sm);
}

.footer-nav,
.footer-services,
.footer-contact {
  flex: 1 1 200px;
}

.footer h3 {
  color: var(--lighter-color);
  margin-bottom: var(--space-lg);
  position: relative;
}

.footer h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary-color);
}

.footer ul {
  margin-bottom: var(--space-lg);
}

.footer li {
  margin-bottom: var(--space-sm);
}

.footer a {
  color: var(--light-color);
}

.footer a:hover {
  color: var(--secondary-light);
}

.social-links {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.social-links a {
  color: var(--light-color);
  transition: color var(--transition-normal);
}

.social-links a:hover {
  color: var(--secondary-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: var(--space-lg);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.success-content {
  max-width: 600px;
  padding: var(--space-xl);
  background-color: var(--lighter-color);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  color: white;
  border-radius: 50%;
  font-size: 2rem;
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 100px;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: var(--space-xl);
}

.page-content h1 {
  margin-bottom: var(--space-xl);
}

.page-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.page-content ul {
  list-style: disc;
  margin-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.page-content ul li {
  margin-bottom: var(--space-sm);
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-content p {
    font-size: 1.3rem;
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .scenes-content {
    flex-direction: column;
  }
  
  .scenes-image {
    margin-bottom: var(--space-lg);
  }
  
  .timeline-content {
    width: 85%;
  }
  
  .process-timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: column;
    margin-left: 40px;
  }
  
  .timeline-item:nth-child(odd) {
    flex-direction: column;
  }
  
  .timeline-number {
    left: 0;
  }
  
  .timeline-content::before {
    display: none;
  }
}

@media (max-width: 768px) {
  section {
    padding: var(--space-lg) 0;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .footer-top {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
}

/* Animation Utilities */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

/* Animation Durations */
[data-aos] {
  transition-duration: 800ms;
}

[data-aos][data-aos-delay="100"] {
  transition-delay: 100ms;
}

[data-aos][data-aos-delay="200"] {
  transition-delay: 200ms;
}

[data-aos][data-aos-delay="300"] {
  transition-delay: 300ms;
}

[data-aos][data-aos-delay="400"] {
  transition-delay: 400ms;
}