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

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #fafafa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Color Variables */
:root {
  --primary-color: #1f2937; /* Graphite */
  --secondary-color: #fdf6e3; /* Beige */
  --accent-color: #84cc16; /* Lime Green */
  --background-color: #fafafa; /* Milk */
  --text-color: #1f2937;
  --white: #ffffff;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

h1 {
  font-size: 1.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(132, 204, 22, 0.3);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background-color: #65a30d;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(132, 204, 22, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(31, 41, 55, 0.1);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(31, 41, 55, 0.3);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: var(--primary-color);
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  color: var(--white);
  max-width: 900px;
  padding: 20px;
  z-index: 1000;
  display: none;
}

.cookie-popup.show {
  display: block;
}

.cookie-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.cookie-content a {
  color: var(--accent-color);
  text-decoration: underline;
}

.btn-accept {
  background-color: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(132, 204, 22, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-accept::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.btn-accept:hover::before {
  width: 200px;
  height: 200px;
}

.btn-accept:hover {
  background-color: #65a30d;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(132, 204, 22, 0.4);
}

/* Header */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo a {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 8px 12px;
  border-radius: 6px;
}

.nav-link:hover {
  color: var(--accent-color);
  background-color: rgba(132, 204, 22, 0.1);
  transform: translateY(-1px);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

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

.nav-link.active {
  color: var(--accent-color);
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: url("../images/hero-sports-science.jpg") no-repeat center
    center/cover;
  padding: 80px 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--white);
  opacity: 0.8;
}

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

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--white);
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

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

.feature-card {
  background-color: var(--background-color);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #65a30d);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
  background-color: var(--white);
}

.feature-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon svg {
  filter: drop-shadow(0 4px 8px rgba(132, 204, 22, 0.3));
}

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

.feature-card p {
  margin-bottom: 1.5rem;
  color: var(--text-color);
  opacity: 0.8;
}

.feature-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 8px;
  border-radius: 4px;
}

.feature-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #65a30d;
  transition: width 0.3s ease;
}

.feature-link:hover::before {
  width: 100%;
}

.feature-link:hover {
  color: #65a30d;
  background-color: rgba(101, 163, 13, 0.1);
  transform: translateY(-1px);
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background-color: var(--white);
}

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

.benefit-card {
  background-color: var(--background-color);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(132, 204, 22, 0.1) 0%,
    transparent 70%
  );
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.benefit-card:hover::after {
  width: 300px;
  height: 300px;
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
  background-color: var(--white);
}

.benefit-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.15) translateY(-5px);
}

.benefit-icon svg {
  transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon svg {
  filter: drop-shadow(0 6px 12px rgba(132, 204, 22, 0.4));
  transform: rotate(-5deg);
}

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

.benefit-card p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
}

/* Innovation Section */
.innovation {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

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

.innovation-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.innovation-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-color);
  background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
}

.innovation-icon {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  transition: all 0.4s ease;
}

.innovation-card:hover .innovation-icon {
  transform: scale(1.2) rotate(10deg);
}

.innovation-icon svg {
  transition: all 0.4s ease;
}

.innovation-card:hover .innovation-icon svg {
  filter: drop-shadow(0 8px 16px rgba(132, 204, 22, 0.5));
}

.innovation-card h3 {
  margin-bottom: 1.2rem;
  color: var(--primary-color);
  font-size: 1.4rem;
}

.innovation-card p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  color: var(--white);
  text-align: center;
}

.cta-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.cta-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cta-stat-icon {
  margin-bottom: 0.5rem;
}

.cta-stat h3 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.cta-stat p {
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background-color: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--white);
}

.cta-buttons .btn-primary:hover {
  background-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cta-buttons .btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.footer-contact {
  margin-top: 1rem;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section ul li a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
  opacity: 1;
  color: var(--accent-color);
}

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

.footer-bottom p {
  color: var(--white);
  opacity: 0.7;
  margin: 0;
}

/* Thank You Page Styles */
.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.success-icon {
    font-size: 5rem;
    color: #10b981;
    margin-bottom: 2rem;
    display: inline-block;
    animation: successPulse 2s ease-in-out infinite;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

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

.thank-you-content h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1f2937, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #6b7280;
    line-height: 1.6;
}

.confirmation-details {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2.5rem;
    border-radius: 16px;
    margin: 2rem 0;
    text-align: left;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.confirmation-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #84cc16, #10b981, #3b82f6);
}

.confirmation-details h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.confirmation-details ul {
    list-style: none;
    padding: 0;
}

.confirmation-details li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.confirmation-details li:hover {
    background-color: rgba(132, 204, 22, 0.05);
    transform: translateX(5px);
}

.confirmation-details li span:first-child {
    color: #84cc16;
    font-weight: bold;
    margin-right: 0.75rem;
    background: linear-gradient(135deg, #84cc16, #65a30d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
}

.action-buttons {
    margin: 2.5rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.action-buttons .btn-primary,
.action-buttons .btn-secondary {
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-buttons .btn-primary {
    background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(132, 204, 22, 0.3);
}

.action-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #65a30d 0%, #4d7c0f 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(132, 204, 22, 0.4);
}

.action-buttons .btn-secondary {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #374151;
    border: 2px solid #e2e8f0;
}

.action-buttons .btn-secondary:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Newsletter Signup Styles */
.newsletter-signup {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.newsletter-signup::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.newsletter-signup > * {
    position: relative;
    z-index: 2;
}

.newsletter-signup h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 200px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #84cc16;
    box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.1);
}

.newsletter-form button {
    background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #65a30d 0%, #4d7c0f 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(132, 204, 22, 0.3);
}

/* Contact Options Styles */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-option {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(132, 204, 22, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-option:hover::before {
    left: 100%;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #84cc16;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-option:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-option h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

/* FAQ Styles */
.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #84cc16, #10b981);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #84cc16;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Minimalist Form Styles */
.contact-form {
  background: #ffffff;
  padding: 3rem;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.form-group label {
  margin-bottom: 0.75rem;
  font-weight: 400;
  font-size: 0.9rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 0;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  background: transparent;
  font-size: 1rem;
  color: #1f2937;
  transition: all 0.2s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-bottom-color: #1f2937;
  background: #fafafa;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
  font-style: italic;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-bottom-color: #ef4444;
}

.error-message {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: none;
  font-weight: 300;
}

.form-group.error .error-message {
  display: block;
}

/* Character count */
.character-count {
  text-align: right;
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 0.5rem;
}

/* Minimalist checkbox styles */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #6b7280;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #1f2937;
  border-color: #1f2937;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  display: block;
  color: white;
  font-size: 12px;
  text-align: center;
  line-height: 16px;
}

.checkbox-label:hover .checkmark {
  border-color: #9ca3af;
}

/* Submit button minimalist style */
.contact-form .btn-primary {
  background: #1f2937;
  color: white;
  border: none;
  padding: 1rem 3rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1rem;
  font-weight: 400;
}

.contact-form .btn-primary:hover {
  background: #374151;
  transform: translateY(-1px);
}

.contact-form .btn-primary:active {
  transform: translateY(0);
}

/* Responsive form */
@media (max-width: 768px) {
  .thank-you-content {
    padding: 1.5rem;
  }
  
  .success-icon {
    font-size: 4rem;
  }
  
  .thank-you-content h1 {
    font-size: 2rem;
  }
  
  .confirmation-details {
    padding: 2rem 1.5rem;
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .action-buttons .btn-primary,
  .action-buttons .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
  
  .newsletter-signup {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 1rem;
  }
  
  .newsletter-form input {
    min-width: auto;
  }
  
  .contact-options {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-option {
    padding: 2rem 1.5rem;
  }
  
  .faq-item {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .checkbox-label {
    font-size: 0.85rem;
  }
}

/* Page Header */
.page-header {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--background-color) 100%
  );
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Content Section */
.content-section {
  padding: 20px 0;
}

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

.content-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-left: 4px solid var(--accent-color);
}

.content-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.content-card p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.content-card a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

/* Enhanced Content Blocks */
.info-block {
  background-color: var(--secondary-color);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  border: 1px solid rgba(31, 41, 55, 0.1);
}

.info-block h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.5rem;
}

.info-block p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.info-block ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.info-block ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Highlight Boxes */
.highlight-box {
  background: linear-gradient(135deg, var(--accent-color), #65a30d);
  color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 8px 25px rgba(132, 204, 22, 0.3);
}

.highlight-box h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.highlight-box p {
  color: var(--white);
  opacity: 0.95;
  margin-bottom: 1rem;
}

/* Statistics Block */
.stats-block {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
  border-top: 4px solid var(--primary-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background-color: var(--background-color);
  border-radius: 8px;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent-color);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-color);
  opacity: 0.8;
  margin-top: 0.5rem;
}

/* Process Steps */
.process-steps {
  margin: 2rem 0;
}

.step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--accent-color);
}

.step-number {
  background-color: var(--accent-color);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.step-content p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

/* Quote Block */
.quote-block {
  background-color: var(--secondary-color);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  border-left: 6px solid var(--accent-color);
  position: relative;
}

.quote-block::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent-color);
  position: absolute;
  top: -10px;
  left: 20px;
  opacity: 0.3;
}

.quote-text {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.quote-author {
  font-weight: bold;
  color: var(--primary-color);
  text-align: right;
  margin: 0;
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
  align-items: start;
}

.column {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.column h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.5rem;
}

/* Accordion Style */
.accordion-item {
  background-color: var(--white);
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.accordion-header {
  background-color: var(--secondary-color);
  padding: 1.5rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(31, 41, 55, 0.1);
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: rgba(253, 246, 227, 0.8);
}

.accordion-header h4 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.accordion-content {
  padding: 1.5rem;
  display: none;
}

.accordion-content.active {
  display: block;
}

/* Alert Boxes */
.alert {
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 4px solid;
}

.alert-info {
  background-color: #ebf8ff;
  border-color: #3182ce;
  color: #2a4a6b;
}

.alert-success {
  background-color: #f0fff4;
  border-color: var(--accent-color);
  color: #22543d;
}

.alert-warning {
  background-color: #fffbeb;
  border-color: #f59e0b;
  color: #92400e;
}

.alert h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.alert p {
  margin: 0;
  line-height: 1.6;
}

/* Map Container */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  margin: 2rem 0;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.2rem;
  border: 2px solid #e5e7eb;
}

/* Gallery Carousel Section */
.gallery {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.gallery-carousel {
  position: relative;
  margin-top: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-container {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
  min-width: 100%;
  position: relative;
}

.gallery-item {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.4);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.7) contrast(1.1);
}

.gallery-text {
  padding: 20px;
  background: var(--white);
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-text h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.gallery-text p {
  font-size: 1rem;
  color: var(--text-color);
  margin: 0;
  line-height: 1.5;
}

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

/* Navigation buttons */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-nav:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.gallery-prev {
  left: -25px;
}

.gallery-next {
  right: -25px;
}

/* Dots indicators */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(132, 204, 22, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot:hover {
  background: rgba(132, 204, 22, 0.6);
  transform: scale(1.2);
}

.gallery-dot.active {
  background: var(--accent-color);
  transform: scale(1.3);
}

/* Responsive design for gallery */
@media (max-width: 768px) {
  .gallery-carousel {
    max-width: 100%;
    margin: 30px 0 0 0;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .gallery-text {
    padding: 15px;
  }

  .gallery-text h3 {
    font-size: 1.1rem;
  }

  .gallery-text p {
    font-size: 0.9rem;
  }
}

/* Testimonials Grid Styles */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #f3f4f6;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
  border-color: var(--accent-color);
  background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
}

.testimonial-icon {
  margin-bottom: 1.5rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-icon {
  opacity: 1;
  transform: scale(1.1);
}

.testimonial-icon svg {
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-icon svg {
  filter: drop-shadow(0 4px 8px rgba(132, 204, 22, 0.3));
}

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

.testimonial-author {
  border-top: 1px solid #f3f4f6;
  padding-top: 1rem;
}

.testimonial-author h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.testimonial-author span {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Tech Card Styles */
.technology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tech-card {
  background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #65a30d);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tech-card:hover::before {
  transform: scaleX(1);
}

.tech-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
  background: linear-gradient(135deg, var(--white) 0%, #f0f9ff 100%);
}

.tech-icon {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.4s ease;
}

.tech-card:hover .tech-icon {
  transform: scale(1.15) translateX(5px);
}

.tech-icon svg {
  transition: all 0.4s ease;
}

.tech-card:hover .tech-icon svg {
  filter: drop-shadow(0 6px 12px rgba(132, 204, 22, 0.4));
  transform: rotate(-3deg);
}

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

.tech-card p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 1rem;
}

/* Methodology Card Styles */
.methodologies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.methodology-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  border-left: 4px solid transparent;
  border-image: linear-gradient(45deg, var(--accent-color), #65a30d) 1;
}

.methodology-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-left-color: var(--accent-color);
  background: linear-gradient(135deg, var(--white) 0%, #fefce8 100%);
}

.methodology-icon {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s ease;
}

.methodology-card:hover .methodology-icon {
  transform: scale(1.1) translateX(3px);
}

.methodology-icon svg {
  transition: all 0.3s ease;
}

.methodology-card:hover .methodology-icon svg {
  filter: drop-shadow(0 4px 8px rgba(132, 204, 22, 0.3));
  transform: rotate(2deg);
}

.methodology-card h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.methodology-card p {
  color: #4b5563;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Page-specific Enhanced Hover Effects */
.page-header {
  transition: all 0.3s ease;
}

.page-header:hover {
  transform: translateY(-2px);
}

.page-header-icon {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-header-icon:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 8px 16px rgba(132, 204, 22, 0.3));
}

.page-header-icon svg {
  transition: all 0.3s ease;
}

.page-header-icon:hover svg {
  fill: var(--primary-color);
  stroke: var(--primary-color);
}

.content-section {
  transition: all 0.3s ease;
}

.content-card {
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.content-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(132, 204, 22, 0.1),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
}

.content-card:hover::before {
  left: 100%;
}

.content-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.content-card:hover h3 {
  color: var(--primary-color);
  transform: translateX(5px);
}

.content-card h3 {
  transition: all 0.3s ease;
}

.section-icon {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-icon:hover {
  transform: scale(1.15) rotate(10deg);
  filter: drop-shadow(0 8px 16px rgba(132, 204, 22, 0.4));
}

.section-icon svg {
  transition: all 0.3s ease;
}

.section-icon:hover svg {
  fill: var(--primary-color);
  stroke: var(--primary-color);
}

.card-icon {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.card-icon:hover {
  transform: scale(1.2) rotate(-5deg);
  filter: drop-shadow(0 6px 12px rgba(132, 204, 22, 0.3));
}

.card-icon svg {
  transition: all 0.3s ease;
}

.card-icon:hover svg {
  fill: var(--primary-color);
  stroke: var(--primary-color);
}

.info-block {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-block::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: width 0.4s ease;
}

.info-block:hover::before {
  width: 100%;
}

.info-block:hover {
  transform: translateX(5px);
  background: linear-gradient(
    135deg,
    rgba(132, 204, 22, 0.05),
    rgba(34, 197, 94, 0.05)
  );
}

.highlight-box {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.highlight-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(132, 204, 22, 0.1),
    transparent
  );
  transition: left 0.8s ease;
}

.highlight-box:hover::before {
  left: 100%;
}

.highlight-box:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(132, 204, 22, 0.2);
  border-color: var(--primary-color);
}

.stats-block {
  transition: all 0.3s ease;
}

.stats-block:hover {
  background: linear-gradient(
    135deg,
    rgba(132, 204, 22, 0.05),
    rgba(34, 197, 94, 0.05)
  );
  transform: translateX(10px);
}

.stats-block ul li {
  transition: all 0.2s ease;
  position: relative;
  padding-left: 20px;
}

.stats-block ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  transition: all 0.2s ease;
}

.stats-block ul li:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.stats-block ul li:hover::before {
  transform: scale(1.2);
}

.content-grid {
  transition: all 0.3s ease;
}

.section-header {
  transition: all 0.3s ease;
}

.section-header:hover {
  transform: translateY(-2px);
}

.section-header h2 {
  transition: all 0.3s ease;
}

.section-header:hover h2 {
  color: var(--primary-color);
  transform: translateX(5px);
}

/* Scroll Animations for All Pages */
.animate-on-scroll {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate {
  opacity: 1;
}

/* Fade Animations */
.fade-up {
  transform: translateY(30px);
}

.fade-up.animate {
  transform: translateY(0);
}

.fade-down {
  transform: translateY(-30px);
}

.fade-down.animate {
  transform: translateY(0);
}

.fade-left {
  transform: translateX(-30px);
}

.fade-left.animate {
  transform: translateX(0);
}

.fade-right {
  transform: translateX(30px);
}

.fade-right.animate {
  transform: translateX(0);
}

/* Scale Animations */
.scale-up {
  transform: scale(0.8);
}

.scale-up.animate {
  transform: scale(1);
}

.scale-down {
  transform: scale(1.2);
}

.scale-down.animate {
  transform: scale(1);
}

/* Slide Animations */
.slide-left {
  transform: translateX(-50px);
}

.slide-left.animate {
  transform: translateX(0);
}

.slide-right {
  transform: translateX(50px);
}

.slide-right.animate {
  transform: translateX(0);
}

/* Rotate Animations */
.rotate-in {
  transform: rotate(-10deg) scale(0.8);
}

.rotate-in.animate {
  transform: rotate(0deg) scale(1);
}

/* Staggered Animations */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}

.stagger-6 {
  transition-delay: 0.6s;
}

/* Page-specific Animation Classes */
.page-header.animate-on-scroll {
  transition-duration: 1s;
}

.content-card.animate-on-scroll {
  transition-duration: 0.6s;
}

.info-block.animate-on-scroll {
  transition-duration: 0.7s;
}

.highlight-box.animate-on-scroll {
  transition-duration: 0.8s;
}

.stats-block.animate-on-scroll {
  transition-duration: 0.5s;
}

.section-icon.animate-on-scroll {
  transition-duration: 0.9s;
}

.card-icon.animate-on-scroll {
  transition-duration: 0.4s;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* Mobile Optimizations */
/* Burger Menu for tablets and smaller desktops */
@media (max-width: 1050px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    z-index: 998;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

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

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .animate-on-scroll {
    transition-duration: 0.4s;
  }

  .fade-up,
  .fade-down {
    transform: translateY(20px);
  }

  .fade-left,
  .fade-right {
    transform: translateX(20px);
  }

  .slide-left,
  .slide-right {
    transform: translateX(30px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content p {
    min-width: auto;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .features h2,
  .cta-content h2 {
    font-size: 2rem;
  }

  /* Responsive adjustments for new classes */
  .content-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Responsive styles for testimonials, tech and methodology cards */
  .testimonials-grid,
  .technology-grid,
  .methodologies-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .testimonial-card,
  .tech-card,
  .methodology-card {
    padding: 1.5rem;
  }

  .tech-card {
    padding: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-item.gallery-large,
  .gallery-item.gallery-wide {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

  .gallery-overlay {
    padding: 20px 15px 15px;
  }

  .gallery-overlay h3 {
    font-size: 1.1rem;
  }

  .gallery-overlay p {
    font-size: 0.85rem;
  }

  .content-card {
    padding: 1.5rem;
  }

  .info-block,
  .highlight-box,
  .stats-block,
  .quote-block {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .column {
    padding: 1.5rem;
  }

  .step-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .quote-block::before {
    font-size: 3rem;
    top: -5px;
    left: 15px;
  }

  .quote-text {
    padding-left: 1rem;
    font-size: 1rem;
  }

  .accordion-header,
  .accordion-content {
    padding: 1rem;
  }

  .alert {
    padding: 1rem;
    margin: 1rem 0;
  }

  .map-container {
    height: 300px;
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-visible {
  opacity: 1;
}

/* Fade animations */
.animate-fade-up {
  transform: translateY(30px);
}

.animate-fade-up.animate-visible {
  transform: translateY(0);
}

.animate-fade-down {
  transform: translateY(-30px);
}

.animate-fade-down.animate-visible {
  transform: translateY(0);
}

.animate-fade-left {
  transform: translateX(-30px);
}

.animate-fade-left.animate-visible {
  transform: translateX(0);
}

.animate-fade-right {
  transform: translateX(30px);
}

.animate-fade-right.animate-visible {
  transform: translateX(0);
}

/* Slide animations */
.animate-slide-left {
  transform: translateX(-50px);
}

.animate-slide-left.animate-visible {
  transform: translateX(0);
}

.animate-slide-right {
  transform: translateX(50px);
}

.animate-slide-right.animate-visible {
  transform: translateX(0);
}

/* Scale animations */
.animate-scale {
  transform: scale(0.8);
}

.animate-scale.animate-visible {
  transform: scale(1);
}

/* Rotate animations */
.animate-rotate {
  transform: rotate(-5deg) scale(0.9);
}

.animate-rotate.animate-visible {
  transform: rotate(0deg) scale(1);
}

/* Stagger animation delays for grouped elements */
.animate-on-scroll:nth-child(1) {
  animation-delay: 0s;
}
.animate-on-scroll:nth-child(2) {
  animation-delay: 0.1s;
}
.animate-on-scroll:nth-child(3) {
  animation-delay: 0.2s;
}
.animate-on-scroll:nth-child(4) {
  animation-delay: 0.3s;
}
.animate-on-scroll:nth-child(5) {
  animation-delay: 0.4s;
}
.animate-on-scroll:nth-child(6) {
  animation-delay: 0.5s;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 40px 0;
  }

  .features,
  .about,
  .cta,
  .content-section {
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 200px;
    text-align: center;
  }

  /* Reduce animation intensity on mobile */
  .animate-fade-up,
  .animate-fade-down {
    transform: translateY(15px);
  }

  .animate-fade-left,
  .animate-fade-right,
  .animate-slide-left,
  .animate-slide-right {
    transform: translateX(15px);
  }
}

/* Training page specific styles */
.training-principles {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.training-grid {
  gap: 2rem;
}

.content-card.elevated {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.content-card.bordered {
  border: 2px solid #84cc16;
  border-radius: 12px;
}

.content-card.highlighted {
  background: linear-gradient(135deg, #f7fee7 0%, #ecfccb 100%);
  border-left: 4px solid #84cc16;
}

.content-card.gradient {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-header h3 {
  margin: 0;
  color: #1f2937;
}

/* Physiology page specific styles */
.physiology-systems {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.physiology-grid {
  gap: 1.5rem;
}

.content-card.rounded {
  border-radius: 16px;
  border: 1px solid #fecaca;
}

/* Nutrition page specific styles */
.nutrition-focus {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.nutrition-grid {
  gap: 1.8rem;
}

.content-card.compact {
  padding: 1.5rem;
  border-radius: 8px;
  border-top: 3px solid #f59e0b;
}

.content-card.modern {
  background: linear-gradient(135deg, #ffffff 0%, #fefbf3 100%);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.1);
}

.content-card.premium {
  background: linear-gradient(135deg, #fefbf3 0%, #fef7ed 100%);
  border: 2px solid #fed7aa;
  position: relative;
  overflow: hidden;
}

.content-card.premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
}

/* FAQ Styles for contacts.html */
.contacts-faq .faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.contacts-faq .faq-item {
  background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
  margin-bottom: 1.5rem;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contacts-faq .faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-color), #65a30d);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.contacts-faq .faq-item:hover::before {
  transform: scaleY(1);
}

.contacts-faq .faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(132, 204, 22, 0.15);
  border-left-color: var(--primary-color);
}

.contacts-faq .faq-item h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contacts-faq .faq-item:hover h3 {
  color: var(--primary-color);
}

.contacts-faq .faq-item p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}
