/* ============= VARIABLES ============= */
:root {
  /* Main colors */
  --primary-color: #3a6ea5;
  --primary-dark: #2a5180;
  --primary-light: #5288c1;
  --secondary-color: #6c757d;
  --accent-color: #e67e22;
  --accent-dark: #d35400;
  
  /* Neutral palette */
  --neutral-100: #f8f9fa;
  --neutral-200: #e9ecef;
  --neutral-300: #dee2e6;
  --neutral-400: #ced4da;
  --neutral-500: #adb5bd;
  --neutral-600: #6c757d;
  --neutral-700: #495057;
  --neutral-800: #343a40;
  --neutral-900: #212529;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  
  /* Text */
  --text-light: #ffffff;
  --text-dark: #333333;
  --text-muted: #6c757d;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border radius */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--neutral-100);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.playfair-font {
  font-family: 'Playfair Display', serif;
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title-underline {
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 0 auto 2rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--neutral-600);
  margin-bottom: var(--spacing-md);
}

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

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

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

/* ============= BUTTONS ============= */
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
  z-index: -1;
}

.btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

.btn-outline-light:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-sm {
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
}

/* ============= HEADER ============= */
.header {
  background-color: rgba(33, 37, 41, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.header.scrolled {
  background-color: rgba(33, 37, 41, 0.98);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
  transition: all var(--transition-normal);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  transition: all var(--transition-normal);
}

.navbar-brand:hover {
  color: var(--primary-light);
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: all var(--transition-normal);
}

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

.nav-link:hover {
  color: var(--primary-light) !important;
}

.nav-link:hover::after {
  width: 80%;
}

/* ============= HERO SECTION ============= */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--text-light);
  overflow: hidden;
}

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

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

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px var(--glass-shadow);
  transform: translateY(0);
  transition: transform var(--transition-slow);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 300;
  color: var(--text-light);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(33, 37, 41, 0.8);
  backdrop-filter: blur(10px);
  padding: 1.5rem 0;
  z-index: 3;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

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

/* ============= VISION SECTION ============= */
.vision-section {
  position: relative;
  background-color: var(--neutral-100);
}

.vision-image-container {
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-normal);
}

.vision-image-container:hover {
  transform: translateY(-10px);
}

.vision-image-container img {
  transition: transform var(--transition-slow);
}

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

.vision-content {
  padding: 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px var(--glass-shadow);
}

.vision-content h3 {
  color: var(--primary-color);
  font-size: 2rem;
}

.vision-content p {
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ============= FEATURES SECTION ============= */
.features-section {
  background-color: var(--neutral-200);
  position: relative;
}

.feature-card {
  background: var(--neutral-100);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

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

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

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

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  text-align: left;
}

.feature-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* ============= BEHIND SCENES SECTION ============= */
.behind-scenes-section {
  background-color: var(--neutral-100);
  position: relative;
}

.behind-scenes-content h3 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.behind-scenes-content p {
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.behind-scenes-gallery {
  margin-top: 2rem;
}

.behind-scenes-gallery .image-container {
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.behind-scenes-gallery .image-container:hover img {
  transform: scale(1.1);
}

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

.resource-card {
  background: var(--neutral-100);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.resource-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.resource-list li {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--neutral-300);
  padding-bottom: 1rem;
  text-align: center;
}

.resource-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.resource-list a {
  display: block;
  color: var(--neutral-700);
  transition: all var(--transition-fast);
  font-weight: 500;
}

.resource-list a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

/* ============= CLIENTELE SECTION ============= */
.clientele-section {
  background-color: var(--neutral-100);
  position: relative;
}

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px var(--glass-shadow);
  padding: 2rem;
  height: 100%;
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.testimonial-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-image {
  width: 120px;
  height: 120px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--neutral-100);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.testimonial-text {
  flex: 1;
}

.testimonial-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-text h4 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.client-position {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============= NEWS SECTION ============= */
.news-section {
  background-color: var(--neutral-200);
  position: relative;
}

.news-card {
  background: var(--neutral-100);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

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

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

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

.news-card h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.news-card p {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.news-card .btn-outline-primary {
  margin-top: auto;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

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

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

.contact-info {
  padding: 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px var(--glass-shadow);
  height: 100%;
}

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

.contact-info p {
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.8;
}

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

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

.contact-item i {
  margin-right: 1rem;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.contact-form-container {
  padding: 2rem;
  background: var(--neutral-100);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
}

.form-control {
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--neutral-300);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(58, 110, 165, 0.25);
}

.form-select {
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--neutral-300);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
}

.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(58, 110, 165, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* ============= FOOTER ============= */
.footer-section {
  background-color: var(--neutral-800);
  color: var(--text-light);
  padding: 5rem 0 0;
  position: relative;
}

.footer-about h3,
.footer-links h3 {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-about h3::after,
.footer-links h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 2px;
  background-color: var(--primary-light);
}

.footer-about p {
  color: var(--neutral-400);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

.social-links a {
  color: var(--neutral-400);
  transition: all var(--transition-fast);
  text-decoration: none;
  margin-right: 1rem;
}

.social-links a:hover {
  color: var(--primary-light);
  transform: translateY(-3px);
}

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

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

.footer-links ul li a {
  color: var(--neutral-400);
  transition: all var(--transition-fast);
  position: relative;
  padding-left: 15px;
  display: inline-block;
}

.footer-links ul li a::before {
  content: '›';
  position: absolute;
  left: 0;
  top: 0;
  transition: all var(--transition-fast);
}

.footer-links ul li a:hover {
  color: var(--primary-light);
  padding-left: 20px;
}

.footer-links ul li a:hover::before {
  color: var(--primary-light);
  left: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--neutral-700);
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer-bottom p {
  margin-bottom: 0;
  color: var(--neutral-500);
}

/* ============= COOKIE POPUP ============= */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--text-light);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
  text-align: center;
}

.cookie-popup p {
  margin-bottom: 1rem;
}

.cookie-popup button {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

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

.success-content {
  max-width: 600px;
  padding: 3rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px var(--glass-shadow);
}

.success-content .icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

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

.success-content p {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

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

.privacy-content,
.terms-content {
  background: var(--neutral-100);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.privacy-content h1,
.terms-content h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.privacy-content h2,
.terms-content h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
}

.privacy-content p,
.terms-content p {
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ============= RESPONSIVE STYLES ============= */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content .lead {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .vision-content {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: var(--spacing-lg) 0;
  }
  
  .hero-section {
    min-height: 500px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-section {
    min-height: 450px;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .vision-content h3, 
  .behind-scenes-content h3, 
  .contact-info h3 {
    font-size: 1.6rem;
  }
  
  .card-content h3, 
  .news-card h3 {
    font-size: 1.3rem;
  }
  
  .testimonial-image {
    width: 100px;
    height: 100px;
  }
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.animate-fadeIn {
  animation: fadeIn 1s ease-out forwards;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* Microinteractions */
.nav-link,
.btn,
.feature-card,
.behind-scenes-gallery img,
.news-card,
.testimonial-card,
.social-links a,
.footer-links ul li a {
  transition: all var(--transition-normal);
}

/* Adaptive Typography */
@media (min-width: 1200px) {
  body {
    font-size: 1.1rem;
  }
  
  .hero-content h1 {
    font-size: 4rem;
  }
  
  .hero-content .lead {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  body {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 0.95rem;
  }
}

/* Additional utility classes */
.text-white {
  color: var(--text-light) !important;
}

.shadow-lg {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.rounded {
  border-radius: var(--border-radius-md) !important;
}

.rounded-lg {
  border-radius: var(--border-radius-lg) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-relative {
  position: relative !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}