/* Base Styles */
:root {
  --primary-color: #FF6B6B;
  --secondary-color: #4ECDC4;
  --tertiary-color: #1A535C;
  --accent-color: #FFE66D;
  --light-color: #F7FFF7;
  --dark-color: #2F2F2F;
  --gray-color: #6C757D;
  --background-color: #fff;
  --card-bg-color: #f8f9fa;
  --section-padding: 80px 0;
  --border-radius: 12px;
  --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: var(--tertiary-color);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

section {
  padding: var(--section-padding);
}

/* Button Styles */
.btn, button, input[type="submit"] {
  border-radius: var(--border-radius);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn:after, button:after, input[type="submit"]:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.btn:hover:after, button:hover:after, input[type="submit"]:hover:after {
  transform: scaleX(1);
}

.btn-primary, input[type="submit"] {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.btn-primary:hover, input[type="submit"]:hover {
  background-color: var(--tertiary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

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

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
  transform: translateY(-3px);
}

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

.btn-outline-light:hover {
  background-color: var(--light-color);
  color: var(--tertiary-color);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Section Styles */
.section-title {
  position: relative;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--tertiary-color);
  font-weight: 700;
}

.separator {
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 0 auto 2rem;
  position: relative;
}

.separator:before, .separator:after {
  content: "";
  position: absolute;
  height: 4px;
  width: 10px;
  background-color: var(--accent-color);
}

.separator:before {
  left: -15px;
}

.separator:after {
  right: -15px;
}

.section-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--gray-color);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar-brand {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--tertiary-color);
  position: relative;
}

.navbar-brand:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.navbar-brand:hover:after {
  width: 100%;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover:after, .nav-link.active:after {
  width: 60%;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  font-size: 1.25rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--light-color);
  overflow: hidden;
  margin-top: 0;
  padding: 0;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  transform: scale(1.05);
  transition: transform 3s ease;
}

.hero-section:hover .hero-image {
  transform: scale(1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26, 83, 92, 0.7), rgba(26, 83, 92, 0.9));
  z-index: -1;
}

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

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--light-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.hero-section p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease 0.3s;
  animation-fill-mode: both;
  color: var(--light-color);
}

.cta-buttons {
  animation: fadeInUp 1s ease 0.6s;
  animation-fill-mode: both;
}

.cta-buttons .btn {
  margin: 0 0.5rem 1rem;
}

/* Vision Section */
.vision-section {
  position: relative;
  overflow: hidden;
  background-color: var(--light-color);
}

.vision-content {
  padding: 2rem;
}

.vision-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--tertiary-color);
}

.vision-image-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transform: translateY(0);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-image-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.vision-image-container img {
  width: 100%;
  height: auto;
  transition: transform 1s ease;
  object-fit: cover;
  margin: 0 auto;
}

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

.stats-container {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-color);
}

/* Workshops Section */
.workshops-section {
  background-color: var(--background-color);
}

.workshop-card {
  margin-bottom: 2rem;
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card-image {
  overflow: hidden;
  height: 250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
  margin: 0 auto;
}

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

.card-content {
  padding: 1.5rem;
  background-color: var(--card-bg-color);
  width: 100%;
  text-align: center;
}

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

.progress-container {
  margin: 1.5rem 0;
}

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

.progress {
  height: 8px;
  border-radius: 4px;
  background-color: #e9ecef;
  overflow: hidden;
}

.progress-bar {
  background-color: var(--primary-color);
  transition: width 1.5s ease;
}

/* Research Section */
.research-section {
  background-color: var(--light-color);
  position: relative;
}

.research-content {
  padding: 2rem;
}

.research-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--tertiary-color);
}

.research-image-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transform: translateY(0);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.research-image-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.research-image-container img {
  width: 100%;
  height: auto;
  transition: transform 1s ease;
  object-fit: cover;
  margin: 0 auto;
}

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

.research-stats {
  display: flex;
  margin-top: 2rem;
}

.research-stats .stat-item {
  display: flex;
  align-items: center;
  margin-right: 2rem;
}

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

.stat-info h4 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: var(--tertiary-color);
}

.stat-info p {
  font-size: 0.875rem;
  margin-bottom: 0;
  color: var(--gray-color);
}

/* Resources Section */
.resources-section {
  background-color: var(--background-color);
}

.resource-card {
  background-color: var(--card-bg-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: var(--transition);
  margin-bottom: 2rem;
  text-align: center;
}

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

.resource-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.resource-card h3 a {
  color: var(--tertiary-color);
  transition: var(--transition);
}

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

.resource-card p {
  font-size: 0.9rem;
  color: var(--gray-color);
  margin-bottom: 0;
}

/* Stories Section */
.stories-section {
  background-color: var(--light-color);
}

.story-card {
  margin-bottom: 2rem;
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: var(--primary-color);
  opacity: 0.3;
  font-family: Georgia, serif;
  margin-bottom: -20px;
}

.testimonial-text {
  font-style: italic;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  font-size: 0.875rem;
  color: var(--gray-color);
  margin-bottom: 0;
}

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

.contact-info {
  padding: 2rem;
  height: 100%;
}

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

.contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.contact-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

.contact-list li i {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-right: 1rem;
}

.contact-map {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
}

.contact-form-container {
  background-color: var(--card-bg-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
}

.contact-form-container h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--tertiary-color);
}

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

.form-control {
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(78, 205, 196, 0.25);
}

/* Footer */
.footer {
  background-color: var(--tertiary-color);
  color: var(--light-color);
  padding: 5rem 0 2rem;
}

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

.footer h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

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

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  color: var(--light-color);
  padding-left: 5px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--light-color);
  padding-left: 5px;
}

.footer address p {
  margin-bottom: 0.5rem;
}

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

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

.legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.legal-links li {
  margin-left: 1.5rem;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: var(--transition);
}

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

/* Page Hero */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  color: var(--light-color);
  overflow: hidden;
  margin-top: 0;
  padding: 0;
}

.small-hero {
  height: 30vh;
  min-height: 300px;
}

.page-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* About Page */
.about-intro {
  padding: 5rem 0;
}

.lead-paragraph {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--tertiary-color);
}

.team-section {
  background-color: var(--light-color);
  padding: 5rem 0;
}

.team-card {
  margin-bottom: 2rem;
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.mission-section {
  padding: 5rem 0;
}

.mission-content {
  padding: 2rem;
}

.mission-image-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
}

.values-section {
  background-color: var(--light-color);
  padding: 5rem 0;
}

.value-card {
  text-align: center;
  padding: 2rem;
  height: 100%;
}

.value-icon {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cta-section {
  background-color: var(--tertiary-color);
  color: var(--light-color);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--light-color);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

/* Contact Page */
.contact-page-section {
  padding: 5rem 0;
}

.contact-info-detailed {
  padding: 2rem;
}

.contact-info-detailed h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-card {
  display: flex;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--card-bg-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.contact-details h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-details p {
  margin-bottom: 0.25rem;
}

.contact-details p.small {
  font-size: 0.875rem;
  color: var(--gray-color);
}

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

.social-links-horizontal {
  display: flex;
  list-style: none;
  padding: 0;
}

.social-links-horizontal li {
  margin-right: 1.5rem;
}

.contact-page-form {
  height: auto;
}

.map-section {
  background-color: var(--light-color);
  padding: 5rem 0;
}

.map-container {
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
}

.map-info {
  padding: 2rem;
  background-color: var(--card-bg-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.map-info h3 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.transportation-info {
  text-align: center;
  padding: 1rem;
}

.transportation-info h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Privacy & Terms Pages */
.privacy-section, .terms-section {
  padding-top: 100px;
}

.privacy-content, .terms-content {
  padding: 2rem;
}

.privacy-card, .terms-card {
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: var(--card-bg-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.privacy-card h2, .terms-card h2 {
  color: var(--tertiary-color);
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.privacy-card h3, .terms-card h3 {
  color: var(--secondary-color);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.privacy-card ul, .terms-card ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.privacy-card ul li, .terms-card ul li {
  margin-bottom: 0.5rem;
}

/* Success Page */
.success-section {
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-content {
  background-color: var(--card-bg-color);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.success-icon {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto;
}

.success-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--tertiary-color);
}

.success-content .lead {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--gray-color);
}

.success-actions {
  margin-top: 2rem;
}

.success-actions .btn {
  margin: 0 0.5rem 1rem;
}

.related-tours {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.tour-card {
  margin-bottom: 2rem;
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.newsletter-section {
  padding: 5rem 0;
  background-color: var(--card-bg-color);
}

.newsletter-form {
  max-width: 600px;
  margin: 2rem auto 0;
}

/* Read More Links */
.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  padding-right: 1.5rem;
}

.read-more:after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}

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

.read-more:hover:after {
  right: -5px;
}

/* Social Icons */
.social-links a {
  position: relative;
  padding-left: 1.5rem;
}

.social-links a:before {
  font-family: "Font Awesome 5 Brands";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
}

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

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

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

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

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

.fadeInUp {
  animation-name: fadeInUp;
}

.scaleIn {
  animation-name: scaleIn;
}

.slideInLeft {
  animation-name: slideInLeft;
}

.slideInRight {
  animation-name: slideInRight;
}

/* Media Queries */
@media (max-width: 991.98px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section p {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .vision-content, .research-content, .mission-content {
    padding: 1rem 0;
    margin-bottom: 2rem;
  }
  
  .stats-container {
    flex-wrap: wrap;
  }
  
  .stat-item {
    width: 50%;
    margin-bottom: 1.5rem;
  }
  
  .research-stats {
    flex-direction: column;
  }
  
  .research-stats .stat-item {
    margin-bottom: 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    margin-top: 1rem;
    justify-content: center;
  }
  
  .legal-links li {
    margin: 0 0.75rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    height: 80vh;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section p {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .contact-card {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .social-links-horizontal {
    justify-content: center;
  }
  
  .map-info .row {
    flex-direction: column;
  }
  
  .transportation-info {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }
  
  .cta-buttons .btn {
    width: 100%;
    margin: 0 0 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .success-content {
    padding: 2rem 1rem;
  }
  
  .success-content h1 {
    font-size: 1.75rem;
  }
}