:root {
  --primary-orange: #ff6b35;
  --dark-orange: #e55a2b;
  --light-orange: #ffb199;
  --accent-orange: #ff8c69;
  --text-dark: #1a1a1a;
  --text-gray: #6b7280;
  --text-light: #9ca3af;
  --light-bg: #fafafa;
  --white: #ffffff;
  --border-light: #e5e7eb;
  --shadow-light: rgba(255, 107, 53, 0.1);
  --shadow-medium: rgba(255, 107, 53, 0.2);
  --shadow-heavy: rgba(255, 107, 53, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* Football Loading Animation */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-orange) 0%,
    var(--dark-orange) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.loader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
}

.football-loader {
  position: relative;
  width: 100px;
  height: 100px;
}

.football {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  position: relative;
  animation: bounce 1.5s infinite ease-in-out;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.football::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(
      45deg,
      transparent 40%,
      var(--text-dark) 40%,
      var(--text-dark) 60%,
      transparent 60%
    ),
    linear-gradient(
      -45deg,
      transparent 40%,
      var(--text-dark) 40%,
      var(--text-dark) 60%,
      transparent 60%
    );
  border-radius: 50%;
}

.football-emoji {
  font-size: 100px;
  animation: bounce 1.5s infinite ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.football-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 8px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  animation: shadowPulse 1.5s infinite ease-in-out;
}
.loader-text {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 2px;
  animation: textFade 2s infinite ease-in-out;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

@keyframes shadowPulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-50%) scale(0.8);
    opacity: 0.1;
  }
}

@keyframes textFade {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Navigation with Orange Accents */
.navbar {
  background: var(--white);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px var(--shadow-light);
  padding: 1.2rem 0;
  border-bottom: 2px solid var(--primary-orange);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.8rem 0;
  box-shadow: 0 5px 40px var(--shadow-medium);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-dark) !important;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.logo-placeholder {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border: 3px solid var(--white);
  border-radius: 12px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 5px 20px var(--shadow-medium);
  transition: all 0.3s ease;
}

.navbar-brand:hover .logo-placeholder {
  transform: rotate(360deg);
  box-shadow: 0 8px 30px var(--shadow-heavy);
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--text-dark) !important;
  margin: 0 1.5rem;
  transition: all 0.3s ease;
  font-size: 15px;
  position: relative;
  padding: 0.5rem 0 !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  transition: width 0.3s ease;
  border-radius: 3px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-orange) !important;
  transform: translateY(-2px);
}

/* Hero Section with Enhanced Orange Elements */
.hero-section {
  background: linear-gradient(135deg, var(--light-bg) 0%, #fff5f2 100%);
  padding: 8rem 0 6rem;
  margin-top: 90px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    45deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  opacity: 0.05;
  transform: rotate(15deg);
  border-radius: 50px;
}

.hero-content {
  animation: slideInLeft 1s ease-out;
}

.hero-content h1 {
  font-weight: 900;
  font-size: 4.5rem;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 2rem;
  position: relative;
}

.hero-content .highlight {
  color: var(--primary-orange);
  display: block;
  position: relative;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .highlight::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 3px;
  animation: expandWidth 2s ease-out 0.5s both;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  max-width: 550px;
  line-height: 1.8;
  font-weight: 400;
}

.cta-primary {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--dark-orange)
  );
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px var(--shadow-heavy);
  position: relative;
  overflow: hidden;
}

.cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px var(--shadow-heavy);
  color: white;
}

.cta-secondary {
  background: transparent;
  color: var(--primary-orange);
  padding: 18px 30px;
  border: 2px solid var(--primary-orange);
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 1.5rem;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: var(--primary-orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--shadow-medium);
}

.hero-image {
  position: relative;
  animation: slideInRight 1s ease-out;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

@media (max-width: 425px) {
  .navbar-brand span {
    display: none;
  }
}
.hero-image:hover img {
  transform: scale(1.02) rotate(1deg);
}

/* Enhanced Goals Section */
.goals-section {
  padding: 8rem 0;
  background: var(--white);
  position: relative;
}

.section-title {
  text-align: center;
  font-weight: 900;
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  font-size: 1.2rem;
  margin-bottom: 5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px var(--shadow-medium);
  border-color: var(--primary-orange);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 1.8rem;
  color: white;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px var(--shadow-light);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 20px 40px var(--shadow-heavy);
}

.feature-title {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-description {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
}

/* Enhanced Programs Section */
.programs-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, #fff8f5 100%);
  position: relative;
}

.program-card {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-light);
  position: relative;
}

.program-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.program-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 80px var(--shadow-medium);
}

.program-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.program-card:hover .program-image {
  transform: scale(1.1);
}

.program-content {
  padding: 2.5rem;
  position: relative;
  z-index: 2;
}

.program-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px var(--shadow-light);
}

.program-title {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.program-description {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 400;
}

.program-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.program-features li {
  padding: 0.5rem 0;
  font-size: 14px;
  color: var(--text-dark);
  position: relative;
  padding-left: 2rem;
  font-weight: 500;
}

.program-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-orange);
  font-weight: bold;
  font-size: 16px;
  width: 20px;
  height: 20px;
  background: var(--light-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.program-cta {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--dark-orange)
  );
  color: white;
  padding: 16px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 25px var(--shadow-light);
}

.program-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px var(--shadow-medium);
  color: white;
}

/* Enhanced Video Section */
.video-section {
  padding: 8rem 0;
  background: var(--white);
}

.video-content h2 {
  font-weight: 900;
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  position: relative;
}

.video-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 2px;
}

.video-content p {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 400;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-radius: 28px;
  overflow: hidden;
}

.video-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.video-item.large {
  grid-row: span 2;
}

.video-item:hover {
  transform: scale(1.03);
}

.video-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-item:hover img {
  transform: scale(1.1);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px var(--shadow-heavy);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 15px 40px var(--shadow-heavy);
}

/* Footer with Orange Accents */
.footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #0f0f0f 100%);
  color: white;
  padding: 5rem 0 2rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
}

.footer h5 {
  color: var(--primary-orange);
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 1.2rem;
}

.footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 400;
}

.footer a:hover {
  color: var(--primary-orange);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
}

/* Floating animation for cards */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Glitch effect for title */
@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 107, 53, 0.1);
  z-index: 10000;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  width: 0%;
  transition: width 0.3s ease;
}

/* Enhanced button animations */
.cta-primary {
  position: relative;
  overflow: hidden;
}

.cta-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-primary:active::after {
  width: 300px;
  height: 300px;
}

/* Additional modern animations */
.feature-icon {
  position: relative;
}

.feature-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(
    45deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 25px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::before {
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Enhanced program card effects */
.program-card {
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 53, 0.1),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
}

.program-card:hover::before {
  left: 100%;
}

/* Modern loading states */
.loading-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Interactive hover states */
.navbar-brand:hover {
  filter: drop-shadow(0 0 20px var(--primary-orange));
}

/* Enhanced footer styling */
.footer {
  position: relative;
}

.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
}

/* Responsive enhancements */
@media (max-width: 768px) {
  .scroll-progress {
    height: 3px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .feature-card,
  .program-card {
    margin-bottom: 2rem;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
    margin: 0.5rem 0;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --text-dark: #ffffff;
    --text-gray: #b0b0b0;
    --light-bg: #1a1a1a;
    --white: #2a2a2a;
    --border-light: #404040;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .navbar-nav .nav-link {
    margin: 0 0.5rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-item.large {
    grid-row: span 1;
  }

  .cta-secondary {
    margin-left: 0;
    margin-top: 1rem;
  }

  .hero-section {
    padding: 6rem 0 4rem;
  }

  .goals-section,
  .programs-section,
  .video-section {
    padding: 5rem 0;
  }
}

/* //mainsections */

:root {
  --iefa-primary-orange: #ff6b35;
  --iefa-secondary-orange: #ff8c42;
  --iefa-tertiary-orange: #ffab73;
  --iefa-quaternary-orange: #ffc299;
  --iefa-dark-orange: #e55a2b;
  --iefa-burnt-orange: #cc4a1f;
  --iefa-light-orange-bg: #fff5f2;
  --iefa-orange-gradient: linear-gradient(135deg, #ff6b35, #ff8c42, #ffab73);
  --iefa-orange-gradient-reverse: linear-gradient(
    135deg,
    #ffab73,
    #ff8c42,
    #ff6b35
  );
  --iefa-text-primary: #1a1a1a;
  --iefa-text-secondary: #4a4a4a;
  --iefa-text-tertiary: #666666;
  --iefa-surface-primary: #ffffff;
  --iefa-surface-secondary: #fafafa;
  --iefa-surface-tertiary: #f5f5f5;
  --iefa-glass-primary: rgba(255, 255, 255, 0.15);
  --iefa-glass-secondary: rgba(255, 255, 255, 0.25);
  --iefa-glass-border: rgba(255, 171, 115, 0.3);
  --iefa-shadow-light: 0 8px 32px rgba(255, 107, 53, 0.1);
  --iefa-shadow-medium: 0 16px 64px rgba(255, 107, 53, 0.15);
  --iefa-shadow-heavy: 0 24px 80px rgba(255, 107, 53, 0.2);
  --iefa-border-radius-sm: 12px;
  --iefa-border-radius-md: 20px;
  --iefa-border-radius-lg: 28px;
  --iefa-border-radius-xl: 36px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.iefa-body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: var(--iefa-text-primary);
  overflow-x: hidden;
  background: var(--iefa-surface-primary);
  scroll-behavior: smooth;
}

/* Enhanced Scroll Progress Indicator */
.iefa-scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(255, 107, 53, 0.1),
    rgba(255, 140, 66, 0.1)
  );
  z-index: 9999;
  backdrop-filter: blur(20px);
}

.iefa-scroll-progress-bar {
  height: 100%;
  background: var(--iefa-orange-gradient);
  width: 0%;
  transition: width 0.1s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
  border-radius: 0 2px 2px 0;
}

/* Modern Hero Section with Orange Themes */
.iefa-hero-banner {
  height: 70vh;
  background: linear-gradient(
      135deg,
      rgba(255, 107, 53, 0.95) 0%,
      rgba(255, 140, 66, 0.9) 35%,
      rgba(255, 171, 115, 0.85) 70%,
      rgba(255, 194, 153, 0.8) 100%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 107, 53, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 140, 66, 0.3) 0%,
      transparent 50%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="iefa-dots" patternUnits="userSpaceOnUse" width="60" height="60"><circle cx="30" cy="30" r="3" fill="rgba(255,255,255,0.4)"/></pattern><pattern id="iefa-lines" patternUnits="userSpaceOnUse" width="100" height="100"><path d="M0,50 L100,50" stroke="rgba(255,255,255,0.2)" stroke-width="1"/><path d="M50,0 L50,100" stroke="rgba(255,255,255,0.2)" stroke-width="1"/></pattern></defs><rect fill="url(%23iefa-dots)" width="1200" height="600"/><rect fill="url(%23iefa-lines)" width="1200" height="600"/></svg>');
  background-size: cover, contain, contain, 400px 400px;
  background-position: center, 20% 80%, 80% 20%, center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.iefa-hero-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%
    ),
    conic-gradient(
      from 45deg,
      transparent 0deg,
      rgba(255, 171, 115, 0.2) 90deg,
      transparent 180deg
    );
  animation: iefa-hero-rotate 20s linear infinite;
}

@keyframes iefa-hero-rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.iefa-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 2rem;
}

.iefa-hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  animation: iefa-slide-up 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -2px;
  line-height: 0.9;
  background: linear-gradient(135deg, #ffffff, #fff5f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.iefa-hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  opacity: 0.95;
  animation: iefa-slide-up 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s
    both;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.iefa-breadcrumb-navigation {
  position: absolute;
  top: 30px;
  left: 30px;
  color: white;
  font-size: 1rem;
  backdrop-filter: blur(20px);
  background: var(--iefa-glass-primary);
  padding: 15px 25px;
  border-radius: 50px;
  border: 1px solid var(--iefa-glass-border);
  font-weight: 500;
  box-shadow: var(--iefa-shadow-light);
}

.iefa-breadcrumb-navigation a {
  color: white;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.iefa-breadcrumb-navigation a:hover {
  color: var(--iefa-tertiary-orange);
  text-shadow: 0 0 10px rgba(255, 171, 115, 0.5);
}

@keyframes iefa-slide-up {
  from {
    opacity: 0;
    transform: translateY(100px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Enhanced Contact Info Section with Orange Themes */
.iefa-contact-info-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--iefa-light-orange-bg) 0%,
    rgba(255, 171, 115, 0.08) 25%,
    rgba(255, 194, 153, 0.05) 50%,
    var(--iefa-surface-secondary) 75%,
    var(--iefa-surface-tertiary) 100%
  );
  position: relative;
  overflow: hidden;
}

.iefa-contact-info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: radial-gradient(
      ellipse at top,
      rgba(255, 107, 53, 0.15) 0%,
      transparent 70%
    ),
    linear-gradient(135deg, rgba(255, 140, 66, 0.1) 0%, transparent 50%);
}

.iefa-contact-info-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 171, 115, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.iefa-contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

.iefa-contact-info-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 245, 242, 0.9) 100%
  );
  backdrop-filter: blur(30px);
  padding: 3.5rem 2.5rem;
  border-radius: var(--iefa-border-radius-lg);
  text-align: center;
  box-shadow: var(--iefa-shadow-medium);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--iefa-glass-border);
  position: relative;
  overflow: hidden;
}

.iefa-contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 171, 115, 0.15),
    transparent
  );
  transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.iefa-contact-info-card:hover::before {
  left: 100%;
}

.iefa-contact-info-card:hover {
  transform: translateY(-20px) scale(1.03);
  box-shadow: var(--iefa-shadow-heavy);
  border-color: var(--iefa-secondary-orange);
}

.iefa-contact-card-icon {
  width: 90px;
  height: 90px;
  background: var(--iefa-orange-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
  font-size: 2.2rem;
  color: white;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3),
    inset 0 2px 10px rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.iefa-contact-info-card:hover .iefa-contact-card-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4),
    inset 0 2px 10px rgba(255, 255, 255, 0.3);
}

.iefa-contact-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--iefa-text-primary);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
  letter-spacing: -0.5px;
}

.iefa-contact-card-description {
  color: var(--iefa-text-tertiary);
  line-height: 1.8;
  position: relative;
  z-index: 2;
  font-weight: 500;
}

.iefa-contact-card-link {
  color: var(--iefa-primary-orange);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.iefa-contact-card-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--iefa-orange-gradient);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.iefa-contact-card-link:hover {
  color: var(--iefa-dark-orange);
  transform: translateY(-1px);
}

.iefa-contact-card-link:hover::after {
  width: 100%;
}

/* Main Contact Section with Enhanced Orange Theming */
.iefa-main-contact-section {
  padding: 120px 0;
  background: linear-gradient(
      135deg,
      var(--iefa-surface-primary) 0%,
      rgba(255, 245, 242, 0.3) 25%,
      rgba(255, 235, 225, 0.2) 50%,
      var(--iefa-surface-primary) 75%
    ),
    radial-gradient(
      circle at 30% 70%,
      rgba(255, 107, 53, 0.05) 0%,
      transparent 50%
    );
  position: relative;
}

.iefa-contact-main-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6rem;
  align-items: start;
}

/* Enhanced Contact Form */
.iefa-contact-form-wrapper {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 245, 242, 0.95) 100%
  );
  backdrop-filter: blur(30px);
  padding: 4rem;
  border-radius: var(--iefa-border-radius-xl);
  box-shadow: var(--iefa-shadow-heavy);
  border: 1px solid var(--iefa-glass-border);
  position: relative;
  overflow: hidden;
}

.iefa-contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 45deg,
    transparent 0deg,
    rgba(255, 171, 115, 0.05) 90deg,
    transparent 180deg,
    rgba(255, 140, 66, 0.03) 270deg,
    transparent 360deg
  );
  animation: iefa-form-rotate 30s linear infinite;
  pointer-events: none;
}

@keyframes iefa-form-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.iefa-form-title {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--iefa-orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: -1px;
  line-height: 1.1;
  position: relative;
  z-index: 2;
}

.iefa-form-subtitle {
  text-align: center;
  color: var(--iefa-text-secondary);
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
  font-weight: 500;
}

.iefa-form-group {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.iefa-form-label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: var(--iefa-text-primary);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.iefa-form-input {
  width: 100%;
  padding: 18px 24px;
  border: 2px solid rgba(255, 171, 115, 0.25);
  border-radius: var(--iefa-border-radius-sm);
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 250, 248, 0.8) 100%
  );
  backdrop-filter: blur(10px);
  font-weight: 500;
  color: var(--iefa-text-primary);
}

.iefa-form-input:focus {
  outline: none;
  border-color: var(--iefa-primary-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15),
    0 8px 25px rgba(255, 107, 53, 0.2);
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-2px);
}

.iefa-form-input::placeholder {
  color: var(--iefa-text-tertiary);
  font-weight: 400;
}

.iefa-form-textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

.iefa-submit-button {
  background: var(--iefa-orange-gradient);
  color: white;
  padding: 22px 50px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3),
    inset 0 2px 10px rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

.iefa-submit-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.iefa-submit-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4),
    inset 0 2px 15px rgba(255, 255, 255, 0.3);
}

.iefa-submit-button:hover::before {
  left: 100%;
}

.iefa-submit-button:active {
  transform: translateY(-1px) scale(0.98);
}

/* Enhanced Contact Info Sidebar */
.iefa-contact-sidebar {
  position: sticky;
  top: 2rem;
}

.iefa-sidebar-card {
  background: linear-gradient(
    135deg,
    rgba(255, 171, 115, 0.12) 0%,
    rgba(255, 194, 153, 0.08) 50%,
    rgba(255, 245, 242, 0.6) 100%
  );
  backdrop-filter: blur(25px);
  padding: 3rem;
  border-radius: var(--iefa-border-radius-md);
  margin-bottom: 2.5rem;
  border: 1px solid var(--iefa-glass-border);
  box-shadow: var(--iefa-shadow-medium);
  position: relative;
  overflow: hidden;
}

.iefa-sidebar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--iefa-orange-gradient);
  border-radius: var(--iefa-border-radius-md) var(--iefa-border-radius-md) 0 0;
}

.iefa-sidebar-title {
  color: var(--iefa-primary-orange);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.iefa-info-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(255, 250, 248, 0.5) 100%
  );
  border-radius: var(--iefa-border-radius-sm);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 171, 115, 0.15);
}

.iefa-info-item:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 245, 242, 0.7) 100%
  );
  transform: translateX(8px);
  box-shadow: var(--iefa-shadow-light);
}

.iefa-info-icon {
  width: 48px;
  height: 48px;
  background: var(--iefa-orange-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.iefa-info-content {
  flex: 1;
}

.iefa-info-label {
  display: block;
  color: var(--iefa-text-primary);
  margin-bottom: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.iefa-info-value {
  color: var(--iefa-text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

.iefa-info-link {
  color: var(--iefa-primary-orange);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.iefa-info-link:hover {
  color: var(--iefa-dark-orange);
  text-shadow: 0 0 8px rgba(255, 107, 53, 0.3);
}

/* Enhanced Social Media Section */
.iefa-social-media-section {
  margin-top: 2rem;
}

.iefa-social-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.iefa-social-link {
  width: 56px;
  height: 56px;
  background: var(--iefa-orange-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3),
    inset 0 2px 8px rgba(255, 255, 255, 0.2);
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
}

.iefa-social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.iefa-social-link:hover {
  transform: translateY(-8px) scale(1.15);
  color: white;
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4),
    inset 0 2px 12px rgba(255, 255, 255, 0.3);
}

.iefa-social-link:hover::before {
  transform: scale(1);
}

/* Enhanced Map Section */
.iefa-map-section {
  margin: 4rem 0 0;
}

.iefa-map-container {
  width: 100%;
  height: 450px;
  border-radius: var(--iefa-border-radius-md);
  overflow: hidden;
  box-shadow: var(--iefa-shadow-heavy);
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.iefa-map-container:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(255, 107, 53, 0.25),
    0 0 40px rgba(255, 107, 53, 0.1);
}

.iefa-google-map {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--iefa-border-radius-md);
}

.iefa-map-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 245, 242, 0.9) 100%
  );
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-radius: var(--iefa-border-radius-sm);
  box-shadow: var(--iefa-shadow-medium);
  border: 1px solid var(--iefa-glass-border);
  max-width: 300px;
}

.iefa-map-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.iefa-map-info-icon {
  width: 40px;
  height: 40px;
  background: var(--iefa-orange-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.iefa-map-info-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--iefa-text-primary);
  margin-bottom: 0.5rem;
}

.iefa-map-info-content p {
  font-size: 0.85rem;
  color: var(--iefa-text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.iefa-map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--iefa-primary-orange);
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.iefa-map-directions-btn:hover {
  background: var(--iefa-dark-orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Enhanced FAQ Section */
.iefa-faq-section {
  background: linear-gradient(
    135deg,
    var(--iefa-light-orange-bg) 0%,
    rgba(255, 235, 225, 0.4) 25%,
    var(--iefa-surface-secondary) 50%,
    rgba(255, 245, 242, 0.3) 75%,
    var(--iefa-surface-tertiary) 100%
  );
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.iefa-faq-section::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.iefa-faq-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.iefa-section-title {
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 900;
  background: var(--iefa-orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.iefa-section-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: var(--iefa-orange-gradient);
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.iefa-faq-item {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 250, 248, 0.9) 100%
  );
  backdrop-filter: blur(25px);
  border-radius: var(--iefa-border-radius-md);
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--iefa-glass-border);
  box-shadow: var(--iefa-shadow-light);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.iefa-faq-item:hover {
  box-shadow: var(--iefa-shadow-medium);
  transform: translateY(-2px);
}

.iefa-faq-question {
  padding: 2rem 2.5rem;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--iefa-text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.3px;
}

.iefa-faq-question:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 171, 115, 0.1) 0%,
    rgba(255, 194, 153, 0.08) 100%
  );
}

.iefa-faq-icon {
  width: 32px;
  height: 32px;
  background: var(--iefa-orange-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.iefa-faq-question.iefa-faq-active .iefa-faq-icon {
  transform: rotate(180deg);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.iefa-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.iefa-faq-answer.iefa-faq-active {
  max-height: 250px;
}

.iefa-faq-answer-content {
  padding: 0 2.5rem 2rem;
  color: var(--iefa-text-secondary);
  line-height: 1.8;
  font-weight: 500;
  font-size: 1.05rem;
}

/* Success Message Enhancement */
.iefa-success-message {
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.95) 0%,
    rgba(102, 187, 106, 0.9) 100%
  );
  color: white;
  padding: 1.5rem 2rem;
  border-radius: var(--iefa-border-radius-sm);
  margin-bottom: 2rem;
  display: none;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  font-weight: 600;
}

.iefa-success-message.iefa-show {
  display: flex;
  animation: iefa-slide-in 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes iefa-slide-in {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Enhanced Fade In Animation */
.iefa-fade-in {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.iefa-fade-in.iefa-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
  .iefa-contact-main-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .iefa-contact-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .iefa-hero-banner {
    height: 60vh;
  }

  .iefa-breadcrumb-navigation {
    top: 20px;
    left: 20px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .iefa-contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .iefa-contact-info-card {
    padding: 2.5rem 2rem;
  }

  .iefa-contact-form-wrapper {
    padding: 2.5rem;
  }

  .iefa-form-title {
    font-size: 2rem;
  }

  .iefa-sidebar-card {
    padding: 2rem;
  }

  .iefa-map-container {
    height: 350px;
  }

  .iefa-social-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .iefa-map-overlay {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .iefa-contact-form-wrapper {
    padding: 2rem;
  }

  .iefa-form-title {
    font-size: 1.8rem;
  }

  .iefa-submit-button {
    padding: 18px 40px;
    font-size: 1rem;
  }

  .iefa-sidebar-card {
    padding: 1.5rem;
  }

  .iefa-contact-info-card {
    padding: 2rem 1.5rem;
  }

  .iefa-faq-question {
    padding: 1.5rem;
    font-size: 1.1rem;
  }

  .iefa-faq-answer-content {
    padding: 0 1.5rem 1.5rem;
  }
}

/* Enhanced Loading States */
.iefa-loading {
  position: relative;
  overflow: hidden;
}

.iefa-loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 171, 115, 0.3),
    transparent
  );
  animation: iefa-loading-shimmer 1.5s infinite;
}

@keyframes iefa-loading-shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* Print Styles */
@media print {
  .iefa-scroll-progress-container,
  .iefa-hero-banner,
  .iefa-social-media-section,
  .iefa-submit-button {
    display: none !important;
  }

  .iefa-contact-form-wrapper,
  .iefa-sidebar-card {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --iefa-primary-orange: #cc4a1f;
    --iefa-text-primary: #000000;
  }

  .iefa-contact-info-card,
  .iefa-contact-form-wrapper,
  .iefa-sidebar-card {
    border: 2px solid var(--iefa-primary-orange) !important;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Additional animations for enhanced user experience */
@keyframes iefa-confetti-fall {
  to {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

@keyframes iefa-shake {
  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }
}

@keyframes iefa-map-bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-15px);
  }

  60% {
    transform: translateY(-8px);
  }
}
