/* ========== ROOT VARIABLES ========== */
:root {
  /* Color Scheme - Analogous colors based on blue-green */
  --primary-color: #2c7a99;
  --primary-color-dark: #1c5a79;
  --primary-color-light: #4c9ab9;
  
  --secondary-color: #2a9d8f;
  --secondary-color-dark: #1a7d6f;
  --secondary-color-light: #4abdaf;
  
  --accent-color: #264653;
  --accent-color-light: #365663;
  --accent-color-dark: #163643;
  
  --success-color: #2cb67d;
  --warning-color: #ff9e00;
  --danger-color: #e76f51;
  
  /* Text Colors */
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-muted: #6c757d;
  
  /* Background Colors */
  --bg-light: #f8f9fa;
  --bg-dark: #212529;
  --bg-muted: #e9ecef;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Container Width */
  --container-max-width: 1200px;
  --container-padding: 1rem;
}

/* ========== GLOBAL STYLES ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

ul, ol {
  list-style: none;
}

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

section {
  padding: var(--spacing-lg) 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
}

/* ========== BUTTONS ========== */
.button,
button,
input[type="submit"],
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  border-radius: var(--border-radius-md);
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button:hover,
button:hover,
input[type="submit"]:hover,
.btn:hover {
  background-color: var(--primary-color-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  color: var(--text-light);
}

.button:active,
button:active,
input[type="submit"]:active,
.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
}

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

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

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

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

.accent-button {
  background-color: var(--accent-color);
}

.accent-button:hover {
  background-color: var(--accent-color-dark);
}

.outline-button {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.outline-button:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.read-more {
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.read-more::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

.read-more:hover::after {
  width: 100%;
}

.read-more:hover {
  color: var(--primary-color-dark);
}

/* ========== GLASSMORPHISM CARD ========== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: var(--spacing-md);
  transition: transform var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-5px);
}

/* ========== HEADER & NAVIGATION ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-normal);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.logo a {
  display: block;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.5rem;
}

.logo a h1 {
  margin: 0;
  font-size: 1.8rem;
}

.desktop-nav ul {
  display: flex;
}

.desktop-nav ul li {
  margin-left: 1.5rem;
}

.desktop-nav ul li a {
  color: var(--accent-color);
  font-weight: 600;
  transition: color var(--transition-normal);
}

.desktop-nav ul li a:hover {
  color: var(--primary-color);
}

.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(--accent-color);
  border-radius: 3px;
}

.mobile-nav {
  display: none;
  background-color: var(--bg-light);
  padding: 1.5rem 0;
}

.mobile-nav ul li {
  margin-bottom: 1rem;
}

.mobile-nav ul li:last-child {
  margin-bottom: 0;
}

.mobile-nav ul li a {
  display: block;
  padding: 0.5rem 0;
  color: var(--accent-color);
  font-weight: 600;
  transition: color var(--transition-normal);
}

.mobile-nav ul li a:hover {
  color: var(--primary-color);
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-content {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  min-height: calc(100vh - 80px);
}

.hero-title {
  color: var(--text-light);
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease-out;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-buttons {
  animation: fadeIn 1s ease-out 0.4s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-buttons .button {
  margin: 0 0.5rem;
}

/* ========== ABOUT SECTION ========== */
.about-section {
  position: relative;
  background-color: var(--bg-light);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.about-image {
  flex: 1 1 40%;
  min-width: 300px;
}

.about-image .image-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.about-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.about-text h3 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--primary-color);
}

.progress-indicators {
  margin-top: 2rem;
}

.progress-item {
  margin-bottom: 1.5rem;
}

.progress-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.progress-bar {
  height: 8px;
  width: 100%;
  background-color: var(--bg-muted);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 4px;
  transition: width 1.5s ease;
}

.progress-percentage {
  text-align: right;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 0.25rem;
}

/* ========== SERVICES SECTION ========== */
.services-section {
  background-color: var(--bg-muted);
  position: relative;
}

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

.services-description {
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  text-align: center;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 220px;
}

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

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

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

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

.service-price {
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 700;
  color: var(--accent-color);
}

/* ========== METHODOLOGY SECTION ========== */
.methodology-section {
  position: relative;
  background-color: var(--bg-light);
}

.methodology-steps {
  max-width: 800px;
  margin: 0 auto;
}

.methodology-step {
  display: flex;
  margin-bottom: 2.5rem;
  position: relative;
}

.methodology-step:last-child {
  margin-bottom: 0;
}

.methodology-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 25px;
  width: 2px;
  height: calc(100% + 2.5rem);
  background-color: var(--primary-color-light);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--text-light);
  font-weight: 700;
  border-radius: 50%;
  margin-right: 1.5rem;
  z-index: 1;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
  background-color: var(--bg-muted);
  position: relative;
}

.gallery-description {
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  text-align: center;
}

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

.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-normal);
  background-color: var(--bg-light);
}

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

.gallery-item .image-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

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

.gallery-caption {
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  width: 100%;
  background-color: var(--bg-light);
  color: var(--accent-color);
}

/* ========== SUCCESS STORIES SECTION ========== */
.success-stories-section {
  position: relative;
  background-color: var(--bg-light);
}

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

.success-stories-grid .card {
  text-align: center;
}

.success-stories-grid .card-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
}

.success-stories-grid .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rating {
  margin-bottom: 1rem;
  color: var(--warning-color);
  font-size: 1.25rem;
}

/* ========== EXTERNAL RESOURCES SECTION ========== */
.external-resources-section {
  background-color: var(--bg-muted);
  position: relative;
}

.resources-description {
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  text-align: center;
}

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

.resource-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-normal);
  text-align: center;
}

.resource-card:hover {
  transform: translateY(-10px);
}

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

.resource-card p {
  margin-bottom: 1.5rem;
}

.resource-card a {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition-normal);
}

.resource-card a:hover {
  border-bottom-color: var(--primary-color);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  position: relative;
  background-color: var(--bg-light);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

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

.contact-form-container {
  flex: 1 1 50%;
  min-width: 300px;
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.contact-item {
  margin-bottom: 1rem;
}

.contact-item strong {
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-map {
  margin-top: 2rem;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--accent-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--bg-muted);
  border-radius: var(--border-radius-md);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 122, 153, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  text-align: right;
}

/* ========== BLOG SECTION ========== */
.blog-section {
  background-color: var(--bg-muted);
  position: relative;
}

.blog-description {
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  text-align: center;
}

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

.blog-date {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-style: italic;
}

/* ========== HISTORY SECTION ========== */
.history-section {
  position: relative;
  background-color: var(--bg-light);
}

.history-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.history-image {
  flex: 1 1 40%;
  min-width: 300px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.history-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.history-text p {
  margin-bottom: 1.5rem;
}

/* ========== MEDIA SECTION ========== */
.media-section {
  background-color: var(--bg-muted);
  position: relative;
}

.media-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.media-item {
  flex: 1 1 calc(33.333% - 2rem);
  min-width: 280px;
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.media-logo {
  width: 160px;
  margin-bottom: 1.5rem;
}

.media-quote p {
  font-style: italic;
  margin-bottom: 0.5rem;
}

.quote-source {
  font-weight: 700;
  color: var(--accent-color);
}

/* ========== EVENTS SECTION ========== */
.events-section {
  position: relative;
  background-color: var(--bg-light);
}

.events-description {
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  text-align: center;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.event-card {
  display: flex;
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-normal);
  border-left: 5px solid var(--primary-color);
}

.event-card:hover {
  transform: translateX(10px);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 1rem;
  border-radius: var(--border-radius-md);
  margin-right: 2rem;
}

.event-date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.event-date .month {
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.event-details {
  flex: 1;
}

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

.event-location,
.event-time {
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ========== FOOTER ========== */
.footer {
  background-color: var(--accent-color);
  color: var(--text-light);
  padding: var(--spacing-lg) 0 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  flex: 1 1 100%;
  max-width: 300px;
}

.footer-logo h2 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.footer-links,
.footer-contact,
.footer-social {
  flex: 1 1 0;
  min-width: 200px;
}

.footer h3 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: var(--text-light);
  opacity: 0.8;
  transition: opacity var(--transition-normal);
}

.footer-links ul li a:hover {
  opacity: 1;
}

.footer-contact p {
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  color: var(--text-light);
  opacity: 0.8;
  transition: opacity var(--transition-normal);
  padding: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  min-width: 100px;
  text-align: center;
}

.social-links a:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.2);
}

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

.footer-bottom p {
  margin-bottom: 0;
  opacity: 0.6;
}

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

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

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

.success-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--success-color);
}

.success-message {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

/* ========== PRIVACY & TERMS PAGES ========== */
.privacy-page,
.terms-page {
  padding-top: 100px;
}

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

.content-container h1 {
  margin-bottom: 2rem;
}

.content-container h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.content-container p {
  margin-bottom: 1.5rem;
}

.content-container ul {
  list-style-type: disc;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.content-container ul li {
  margin-bottom: 0.5rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* ========== MEDIA QUERIES ========== */
@media screen and (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-image, 
  .about-text, 
  .history-image, 
  .history-text, 
  .contact-info, 
  .contact-form-container {
    flex: 1 1 100%;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    margin-right: 0;
    margin-bottom: 1.5rem;
    width: 100px;
  }
  
  .media-item {
    flex: 1 1 100%;
  }
  
  .methodology-step {
    flex-direction: column;
  }
  
  .step-number {
    margin-bottom: 1rem;
    margin-right: 0;
  }
  
  .methodology-step:not(:last-child)::after {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons .button {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}

/* Mobile nav open/close */
.mobile-nav-active .mobile-nav {
  display: block;
}

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

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

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