:root {
  /* Main Colors */
  --primary-color: #64a4c8;
  --primary-dark: #4a89b3;
  --primary-light: #8ebfdf;
  --secondary-color: #f9a26c;
  --secondary-dark: #e68c50;
  --secondary-light: #ffb78d;
  
  /* Pastel Palette */
  --pastel-blue: #dde8f0;
  --pastel-green: #d1e8db;
  --pastel-yellow: #fff8e6;
  --pastel-pink: #f9e0e3;
  --pastel-purple: #e6e6fa;
  
  /* Neutrals */
  --neutral-dark: #333333;
  --neutral-medium: #666666;
  --neutral-light: #999999;
  --neutral-lighter: #f4f4f8;
  
  /* Shadows & Effects */
  --shadow-soft: 0.3rem 0.3rem 0.6rem var(--neutral-light), -0.2rem -0.2rem 0.5rem rgba(255, 255, 255, 0.8);
  --shadow-pressed: inset 0.2rem 0.2rem 0.5rem var(--neutral-light), inset -0.2rem -0.2rem 0.5rem rgba(255, 255, 255, 0.8);
  --shadow-hover: 0.4rem 0.4rem 0.8rem var(--neutral-light), -0.3rem -0.3rem 0.7rem rgba(255, 255, 255, 0.8);
  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Merriweather', serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border Radius */
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-round: 50%;
  
  /* Transitions */
  --transition-fast: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-medium: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-slow: 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === Base Styles === */
body {
  font-family: var(--font-body);
  color: var(--neutral-dark);
  background-color: var(--neutral-lighter);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
  color: var(--neutral-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  position: relative;
  display: inline-block;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
  margin-bottom: var(--spacing-md);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

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

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

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

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

/* === Neuromorphic Elements === */
.neuromorphic-card {
  background: var(--neutral-lighter);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--spacing-md);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.btn-neuromorphic {
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: all var(--transition-fast);
  border: none;
  background-color: var(--neutral-lighter);
  color: var(--primary-color);
}

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

.btn-neuromorphic:active {
  box-shadow: var(--shadow-pressed);
  transform: translateY(0);
}

.neuromorphic-input {
  background: var(--neutral-lighter);
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pressed);
  padding: 1rem;
  font-family: var(--font-body);
  transition: box-shadow var(--transition-fast);
  width: 100%;
  margin-bottom: var(--spacing-sm);
}

.neuromorphic-input:focus {
  outline: none;
  box-shadow: var(--shadow-soft);
}

/* === Header & Navigation === */
.header-neuromorphic {
  background-color: rgba(244, 244, 248, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all var(--transition-fast);
  z-index: 1000;
}

.header-neuromorphic .navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

.header-neuromorphic .navbar-brand:hover {
  color: var(--primary-dark);
}

.header-neuromorphic .nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--neutral-dark);
  margin: 0 0.5rem;
  padding: 0.5rem 0.75rem;
  position: relative;
  transition: color var(--transition-fast);
}

.header-neuromorphic .nav-link:hover {
  color: var(--primary-color);
}

.header-neuromorphic .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-color);
  transition: all var(--transition-fast);
}

.header-neuromorphic .nav-link:hover::after {
  width: 100%;
  left: 0;
}

/* === Hero Section === */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--spacing-xl) 0;
  margin-top: -76px; /* Adjust based on header height */
  padding-top: 156px; /* Adjust based on header height */
}

.hero-section::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.5));
}

.hero-title {
  color: white;
  margin-bottom: var(--spacing-md);
  position: relative;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  color: white;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: var(--spacing-lg);
  position: relative;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  position: relative;
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  justify-content: center;
}

/* === About Section === */
.about-section {
  background-color: var(--pastel-blue);
}

.about-image {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.about-content h3 {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-md);
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.stat-item {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: var(--spacing-sm);
}

.stat-item h4 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* === Mission Section === */
.mission-section {
  background-color: var(--pastel-green);
}

.mission-content {
  height: 100%;
}

.mission-content h3 {
  color: var(--primary-dark);
}

.mission-image {
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.value-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--spacing-md);
}

.value-pill {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--primary-dark);
  background-color: white;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-fast);
}

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

/* === Methodology Section === */
.methodology-section {
  background-color: var(--pastel-yellow);
}

.methodology-container {
  margin-top: var(--spacing-lg);
}

.methodology-card {
  position: relative;
  padding-top: 60px;
  height: 100%;
}

.card-number {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.methodology-card h3 {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-sm);
}

/* === Research Section === */
.research-section {
  background-color: var(--pastel-pink);
}

.research-content h3 {
  color: var(--primary-dark);
}

.research-image {
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.research-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.research-stats {
  margin-top: var(--spacing-md);
}

.stat-row {
  margin-bottom: 1rem;
}

.stat-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stat-bar {
  height: 10px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 5px;
}

.research-papers {
  padding: var(--spacing-md);
}

.research-papers h4 {
  margin-bottom: var(--spacing-md);
  color: var(--primary-dark);
}

.research-papers ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.research-papers li {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.research-papers li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.paper-date {
  font-weight: 600;
  color: var(--primary-color);
  margin-right: var(--spacing-sm);
  min-width: 100px;
}

.paper-title {
  flex: 1;
}

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

.resources-container {
  margin-top: var(--spacing-md);
}

.resource-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.resource-title {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-sm);
}

.resource-description {
  flex-grow: 1;
  margin-bottom: var(--spacing-md);
}

.resource-link {
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  display: inline-block;
  transition: all var(--transition-fast);
}

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

.resource-link::after {
  content: '→';
  margin-left: 5px;
  transition: all var(--transition-fast);
}

.resource-link:hover::after {
  margin-left: 10px;
}

/* === Clientele Section === */
.clientele-section {
  background-color: var(--pastel-blue);
}

.testimonial-card {
  position: relative;
  padding-top: 40px;
  height: 100%;
}

.quote-icon {
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-light);
  line-height: 1;
  opacity: 0.5;
}

.testimonial-text {
  margin-bottom: var(--spacing-md);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-round);
  object-fit: cover;
  margin-right: var(--spacing-sm);
  box-shadow: var(--shadow-soft);
}

.author-info h4 {
  margin-bottom: 0;
  font-size: 1rem;
}

.author-info p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--neutral-medium);
}

/* === Partners Section === */
.partners-section {
  background-color: var(--pastel-green);
}

.partners-grid {
  margin-top: var(--spacing-lg);
}

.partner-card {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-card img {
  height: 120px;
  width: 180px;
  object-fit: contain;
  margin-bottom: var(--spacing-sm);
}

.partner-card h4 {
  margin-bottom: var(--spacing-xs);
  color: var(--primary-dark);
}

.partner-card p {
  font-size: 0.875rem;
  margin-bottom: 0;
  color: var(--neutral-medium);
}

/* === News Section === */
.news-section {
  background-color: var(--pastel-yellow);
}

.news-container {
  margin-top: var(--spacing-lg);
}

.news-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-image {
  position: relative;
  margin-bottom: var(--spacing-sm);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.news-date {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

.card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  color: var(--primary-dark);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.read-more {
  margin-top: auto;
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  display: inline-block;
  transition: all var(--transition-fast);
}

.read-more:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

.read-more::after {
  content: '→';
  margin-left: 5px;
  transition: all var(--transition-fast);
}

.read-more:hover::after {
  margin-left: 10px;
}

/* === Behind the Scenes Section === */
.behind-scenes-section {
  background-color: var(--pastel-pink);
}

.process-timeline {
  margin-top: var(--spacing-lg);
  position: relative;
}

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

.timeline-item {
  margin-bottom: var(--spacing-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  z-index: 2;
}

.timeline-content {
  width: 100%;
  max-width: 800px;
  z-index: 2;
}

.timeline-content h3 {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-sm);
}

.timeline-content img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-top: var(--spacing-md);
}

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

.contact-info {
  height: 100%;
}

.contact-info h3 {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-md);
}

.info-item {
  display: flex;
  margin-bottom: var(--spacing-md);
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item i {
  width: 40px;
  height: 40px;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--spacing-sm);
}

.info-item h4 {
  margin-bottom: 0.25rem;
  color: var(--primary-dark);
}

.info-item p {
  margin-bottom: 0;
  color: var(--neutral-medium);
}

.contact-map {
  height: 250px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

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

.contact-form h3 {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-md);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

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

.form-check-label {
  color: var(--neutral-medium);
  font-size: 0.875rem;
}

/* === Footer === */
.footer {
  background-color: var(--neutral-dark);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

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

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

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-md);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.social-links a {
  color: white;
  transition: all var(--transition-fast);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.4rem 0.8rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
}

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

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
  position: relative;
  display: inline-block;
  padding-left: 15px;
}

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

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-md);
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
}

.footer-bottom {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* === Cookie Consent === */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--neutral-lighter);
  padding: var(--spacing-md);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin-bottom: 0;
}

.btn-cookie-accept {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.5rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-cookie-accept:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

/* === Responsive Adjustments === */
@media (max-width: 991px) {
  .process-timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .timeline-number {
    margin-right: var(--spacing-md);
    margin-bottom: 0;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .about-image {
    margin-bottom: var(--spacing-md);
  }
  
  .contact-info {
    margin-bottom: var(--spacing-md);
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: var(--spacing-lg) 0;
  }
  
  .stat-item {
    flex: 0 0 calc(50% - var(--spacing-sm));
  }
  
  .footer-about, .footer-links, .footer-newsletter {
    margin-bottom: var(--spacing-lg);
  }
}

@media (max-width: 575px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    margin-bottom: var(--spacing-sm);
  }
  
  .value-pills {
    justify-content: center;
  }
}

/* === Additional Pages === */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--pastel-blue);
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-md);
}

.success-content {
  max-width: 600px;
  padding: var(--spacing-lg);
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

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

.privacy-page, .terms-page {
  padding-top: 100px;
  padding-bottom: var(--spacing-xl);
}

.privacy-content, .terms-content {
  background-color: white;
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.privacy-content h2, .terms-content h2 {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid var(--pastel-blue);
}

/* === Button Styles === */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

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

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

.btn-outline-light {
  color: white;
  border-color: white;
}

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

/* === Section Header === */
.section-header {
  margin-bottom: var(--spacing-lg);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--primary-color);
  font-style: italic;
  margin-top: 0.5rem;
}

/* === Animations === */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* === CSS Custom Icon Classes === */
.icon-location::before {
  content: '📍';
  font-size: 1.5rem;
}

.icon-phone::before {
  content: '📞';
  font-size: 1.5rem;
}

.icon-email::before {
  content: '✉️';
  font-size: 1.5rem;
}

.icon-hours::before {
  content: '⏰';
  font-size: 1.5rem;
}