@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sekuya&display=swap");
/* ============================================
   CSS COLOR VARIABLES
   Root, Light Mode, and Dark Mode Variables
   ============================================ */

/* =========================================
   ROOT — Base Tokens (never change)
========================================= */
:root {
  /* Brand */
  --primary: #667eea;
  --accent: #f39c12;
  --secondary: #0069d9;

  /* Neutral gray scale */
  --gray-0: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-900: #1a1a1a;

  /* Global UI tokens */
  --radius: 20px;
  --transition: 0.3s ease;
}

/* =========================================
   LIGHT MODE
========================================= */
[data-theme="light"],
:root {
  --bg: var(--gray-0);
  --bg-secondary: var(--gray-50);

  --text: #333333;
  --text-muted: #6c757d;

  --card-bg: var(--gray-0);
  --border: var(--gray-200);

  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(0, 0, 0, 0.2);
}

/* =========================================
   DARK MODE
========================================= */
[data-theme="dark"] {
  --bg: #1a1a1a;
  --bg-secondary: #2a2a2a;

  --text: #e0e0e0;
  --text-muted: #9e9e9e;

  --card-bg: #2d2d2d;
  --border: #404040;

  --shadow: rgba(0, 0, 0, 0.45);
  --shadow-hover: rgba(0, 0, 0, 0.65);
}

/* Global Styles - These apply to EVERYTHING on the page */
* {
  margin: 0; /* Remove default spacing around elements */
  padding: 0; /* Remove default padding inside elements */
  box-sizing: border-box; /* Make sizing calculations easier */
  scroll-behavior: smooth !important; /*Makes scrolling smother*/
}

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
  scroll-behavior: smooth !important; /*Makes scrolling smother*/
}

/* Body ID Styling - The main container for our whole page */
#EoBody {
  min-height: 100vh; /* Make it at least the full height of the screen */
  display: flex; /* Use flexbox layout */
  flex-direction: column; /* Stack items vertically */
  overflow-x: hidden; /* Prevent horizontal scrolling */
  max-width: 100vw; /* Ensure body doesn't exceed viewport width */
}

/* ============================================
 HEADER & NAVBAR STYLES - The top menu bar-for all pages
 ============================================ */

/* Navbar Custom Styling - Make the navigation bar look nice */
.EoNavbar {
  background: var(
    --EoBgOverlay
  ); /* Use our semi-transparent dark background variable */
  padding: 1rem 0; /* Add space around the navbar */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow underneath */
}

/* Logo Styling - The gym logo image */
.Eo-Logo {
  max-width: 100px; /* Don't let it get wider than 100px */
  height: 80px; /* Height is 80px */
  transform: scale(0.1); /* Make it 10% of its original size */
}
.EoLogoImage {
  display: flex; /* Use flexbox to center it */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  margin-top: -250px; /* Move it up (negative margin) */
  margin-left: -500px; /* Move it left */
}

/* Navbar Links Styling - The menu items in the navbar */
.EoNavLinks .nav-link {
  color: rgba(255, 255, 255, 0.9) !important; /* Almost white text */
  font-weight: 500; /* Make text a bit thicker */
  margin: 0 0.5rem; /* Add space on left and right */
  transition: color 0.3s ease; /* Smoothly change color when hovering */
  position: relative; /* Needed for the line effect below */
}

/* When you hover over or click a link, make it brighter white */
.EoNavLinks .nav-link:hover,
.EoNavLinks .nav-link.active {
  color: #fff !important;
}

/* Add a line underneath the links when you hover or click them */
.EoNavLinks .nav-link::after {
  content: ""; /* Create an empty element using ::after */
  position: absolute; /* Position it relative to the link */
  bottom: 0; /* Put it at the bottom */
  left: 50%; /* Start from the middle */
  width: 0; /* Start with no width */
  height: 2px; /* Make it 2px tall */
  background: #fff; /* White color */
  transition: all 0.3s ease; /* Smoothly animate it */
  transform: translateX(-50%); /* Move it left so it grows from center */
}

/* When hovering or on the active link, make the line grow */
.EoNavLinks .nav-link:hover::after,
.EoNavLinks .nav-link.active::after {
  width: 65%;
}
/* Mobile view - full width line */
@media (max-width: 768px) {
  .EoNavLinks .nav-link:hover::after,
  .EoNavLinks .nav-link.active::after {
    width: 100%; /* Make the line 100% of the link width on mobile */
  }
}

/* Dropdown Menu Styling */
.EoDropdownMenu .dropdown-item {
  color: #333; /* Dark text */
  padding: 0.75rem 1.5rem; /* Space inside each item */
  transition: background-color 0.3s ease; /* Smoothly change background on hover */
}

.EoDropdownMenu .dropdown-item:hover {
  color: #fff; /* White text on hover */
}
.navbar-toggler {
  margin-right: 15px;
}

/* Hamburger Menu - Mobile menu button styling */

/* Hide the close icon by default (show hamburger lines instead) */
.navbar-toggler .close-icon {
  display: none;
}

/* Show the hamburger icon when the navbar is closed (collapsed state) */
.navbar-toggler.collapsed .hamburger-icon {
  display: inline;
}

/* Hide the hamburger icon when the navbar is open (not collapsed) */
.navbar-toggler:not(.collapsed) .hamburger-icon {
  display: none;
}

/* Show the close icon (X) when the navbar is open, with slight bottom padding */
.navbar-toggler:not(.collapsed) .close-icon {
  display: block;
  padding-bottom: 5px;
}

/* Style the toggle icons (hamburger and X) - make them big and centered */
.toggler-icon {
  font-size: 30px; /* Make them large */
  display: flex; /* Use flexbox */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

/* Media query for tablets and larger screens - adjust logo position */
@media screen and (max-width: 980px) {
  .EoLogoImage {
    margin-left: auto;
    margin-right: auto;
    margin-top: -200px;
  }
}

/* Mobile view - fix logo positioning */
@media (max-width: 768px) {
  .EoLogoImage {
    margin-left: auto;
    margin-right: auto;
    margin-top: -200px;
  }
}

#Eo-main-Section {
  background-image: url(../images/HomeBanner.jpg); /* Use the home banner image */
  background-repeat: no-repeat; /* Don't repeat the image */
  background-size: cover; /* Make the image cover the whole area */
  background-position: center; /* Center the image */
  height: 90vh; /* Make it fill the full viewport height */
  overflow-x: hidden; /* Prevent horizontal overflow */
  width: 100%; /* Ensure section doesn't exceed viewport */
  position: relative; /* For proper positioning of child elements */
}
.Eo-main-title {
  font-family: "Sekuya", sans-serif;
  margin-left: 850px;
  margin-top: 40px;
  color: var(--gray-0);
  opacity: 0;
  transform: translateX(-30px); /* or translateX, scale, etc. */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.Eo-main-p {
  font-family: "Bebas Neue", sans-serif;
  font-size: x-large;
  color: var(--gray-50);
  width: 545px;
  height: 300px;
  overflow: hidden;
  margin-left: 900px;
  margin-top: -35px;
  padding-left: 50px;
  background: rgba(0, 0, 0, 0.527);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  opacity: 0;
  transform: translateY(30px); /* Different direction for variety */
  transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s; /* 0.2s delay */
}
/* Animation state when element becomes visible */
.Eo-main-title.is-visible {
  opacity: 1;
  transform: translateY(0); /* Reset to original position */
}

.Eo-main-p.is-visible {
  opacity: 1;
  transform: translateY(0); /* Reset to original position */
}
/* Responsive styles for title and paragraph */

/* Tablets (Landscape view) & Small Laptops: 992px - 1024px */
@media (min-width: 992px) and (max-width: 1024px) {
  #Eo-main-Section {
    height: 85vh;
    padding: 2rem 1.5rem !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .Eo-main-title {
    margin-left: 0;
    margin-top: 0;
    width: 85%;
    max-width: 700px;
    text-align: center !important;
    transform: translateX(0);
    font-size: 2.5rem;
    padding: 1rem 1.5rem !important;
  }

  .Eo-main-p {
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    width: 80%;
    max-width: 600px;
    padding: 2rem 2.5rem !important;
    height: auto;
    min-height: auto;
    font-size: 1.3rem;
    border-radius: 40px;
    text-align: center !important;
  }
}

/* Tablets (Portrait view) */
@media (min-width: 768px) and (max-width: 991px) {
  #Eo-main-Section {
    height: 80vh;
    padding: 2rem 1rem !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .Eo-main-title {
    margin-left: 0;
    margin-top: 0;
    width: 90%;
    max-width: 650px;
    text-align: center !important;
    transform: translateX(0);
    font-size: 2.2rem;
    padding: 1rem !important;
  }

  .Eo-main-p {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
    width: 85%;
    max-width: 550px;
    padding: 1.75rem 2rem !important;
    height: auto;
    min-height: auto;
    font-size: 1.2rem;
    border-radius: 35px;
    text-align: center !important;
  }
}

/* Large Phones/Small Tablets: 481px - 767px */
@media (min-width: 481px) and (max-width: 767px) {
  #Eo-main-Section {
    height: 75vh;
    padding: 1.5rem 0.75rem !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .Eo-main-title {
    margin-left: 0;
    margin-top: 0;
    width: 95%;
    max-width: 500px;
    text-align: center !important;
    transform: translateX(0);
    font-size: 1.9rem;
    padding: 0.75rem 1rem !important;
  }

  .Eo-main-p {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.25rem;
    width: 90%;
    max-width: 480px;
    padding: 1.5rem 1.75rem !important;
    height: auto;
    min-height: auto;
    font-size: 1.1rem;
    border-radius: 30px;
    text-align: center !important;
  }
}

/* Small mobile view: up to 480px */
@media (max-width: 480px) {
  #Eo-main-Section {
    height: 70vh;
    padding: 1rem 0.5rem !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .Eo-main-title {
    margin-left: 0;
    margin-top: 0;
    width: 95%;
    max-width: 350px;
    text-align: center !important;
    transform: translateX(0);
    font-size: 1.5rem;
    padding: 0.5rem 0.75rem !important;
  }

  .Eo-main-p {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    width: 92%;
    max-width: 340px;
    padding: 1.25rem 1.5rem !important;
    height: auto;
    min-height: auto;
    font-size: 1rem;
    border-radius: 25px;
    text-align: center !important;
  }
}

/* ============================================
 Fitness Facility Section
 ============================================ */
#Eo-fitness-Facility {
  padding-top: 50px;
}
.Eo-facility-title {
  display: inline-flex;
  width: fit-content;
  margin: 80px 0 0 100px;
  color: var(--gray-900);
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  /* Initial state for animation - hidden and translated */
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Animation state when element becomes visible */
.Eo-facility-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.Eo-facility-p {
  font-family: "Bebas Neue", sans-serif;
  width: 575px;
  height: fit-content;
  margin-left: 135px;
  padding-top: 50px;
  font-size: 1.3rem;
  /* Initial state for animation - hidden and translated */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

/* Animation state when element becomes visible */
.Eo-facility-p.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.Eo-facility-image {
  width: 40%;
  height: 80%;
  margin: -440px 0 0 1000px;
  border-radius: var(--radius);
  box-shadow: 0 6px 40px 0 rgba(102, 126, 234, 0.35); /* subtle blue shadow */
  /* Initial state for animation - hidden and scaled */
  opacity: 0;
  transform: scale(0.9);
  /* Combined transition for all properties */
  transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s,
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animation state when element becomes visible */
.Eo-facility-image.is-visible {
  opacity: 1;
  transform: scale(1);
}

.Eo-facility-image:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 60px 0 rgba(243, 156, 18, 0.3),
    0 10px 35px 0 rgba(102, 126, 234, 0.22); /* accent + primary shadows */
}

/* Ensure hover works after animation completes */
.Eo-facility-image.is-visible:hover {
  transform: scale(1.04);
}

/* Tablets (Landscape view) & Small Laptops: 992px - 1024px */
@media (min-width: 992px) and (max-width: 1024px) {
  .Eo-facility-title {
    font-size: 4rem;
    margin: 60px 0 0 60px;
  }

  .Eo-facility-p {
    width: 400px;
    height: auto;
    min-height: 200px;
    margin-left: 80px;
    padding-top: 30px;
    font-size: 1.1rem;
  }

  .Eo-facility-image {
    width: 450px;
    height: 350px;
    max-height: 500px;
    margin: -350px 0 0 563px;
  }
}

/* Tablets (Portrait view, e.g., iPad): 768px */
@media (min-width: 768px) and (max-width: 991px) {
  #Eo-fitness-Facility {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .Eo-facility-title {
    font-size: 5rem;
    margin: 40px 0 20px 0;
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  .Eo-facility-p {
    width: 90%;
    max-width: 600px;
    height: auto;
    min-height: auto;
    margin: 0 auto 40px auto;
    padding: 30px;
    font-size: 1.1rem;
    text-align: center;
  }

  .Eo-facility-image {
    width: 70%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    display: block;
  }
}

/* Large Phones/Small Tablets: 481px - 767px */
@media (min-width: 481px) and (max-width: 767px) {
  #Eo-fitness-Facility {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
  }

  .Eo-facility-title {
    font-size: 2.5rem;
    margin: 30px 0 20px 0;
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  .Eo-facility-p {
    width: 95%;
    max-width: 550px;
    height: auto;
    min-height: auto;
    margin: 0 auto 30px auto;
    padding: 25px 20px;
    font-size: 1rem;
    text-align: center;
  }

  .Eo-facility-image {
    width: 85%;
    max-width: 450px;
    height: auto;
    margin: 0 auto;
    display: block;
  }
}

/* Small Phones: up to 480px */
@media (max-width: 480px) {
  #Eo-fitness-Facility {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
  }

  .Eo-facility-title {
    font-size: 3rem;
    margin: 20px 0 15px 0;
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  .Eo-facility-p {
    width: 100%;
    height: auto;
    min-height: auto;
    margin: 0 auto 25px auto;
    padding: 20px 15px;
    font-size: 0.95rem;
    text-align: center;
  }

  .Eo-facility-image {
    width: 95%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
}

/* ============================================
   MEMBERSHIP PLANS
   ============================================ */

/* ============================================
 CARDS SECTION STYLES
 ============================================ */

.EoCardsSection {
  padding-top: 300px;
  padding-bottom: 100px;
}

.EoCards-Heading {
  font-size: 5rem;
  color: var(--gray-900);
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.EoServiceCard {
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.EoServiceCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.EoCards-p {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.EoCardImage {
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.EoServiceCard:hover .EoCardImage {
  transform: scale(1.1);
}

.EoCardTitle {
  font-size: 1.5rem;
  font-weight: bold;
  color: rgba(10, 80, 10, 0.699);
  margin-bottom: 1rem;
}

.EoCardText {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.EoCardButton {
  border: 2px solid #667eea;
  color: #667eea;
  font-weight: 600;
  transition: all 0.3s ease;
}

.EoCardButton:hover {
  background-color: #667eea;
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================
   CARDS SECTION RESPONSIVE STYLES
   ============================================ */

/* Tablets (Landscape view) & Small Laptops: 992px - 1024px */
@media (min-width: 992px) and (max-width: 1024px) {
  .EoCardsSection {
    padding: 2.5rem 0;
  }

  .EoCards-Heading {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }

  .EoCardTitle {
    font-size: 1.4rem;
  }

  .EoCardText {
    font-size: 0.95rem;
  }

  .EoCardImage {
    height: 180px;
  }
}

/* Tablets (Portrait view): 768px - 991px */
@media (min-width: 768px) and (max-width: 991px) {
  .EoCardsSection {
    padding: 2rem 0;
  }

  .EoCards-Heading {
    font-size: 4rem;
  }

  .EoCardTitle {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }

  .EoCardText {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .EoCardImage {
    height: 170px;
  }

  .EoCardButton {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}

/* Large Phones/Small Tablets: 481px - 767px */
@media (min-width: 481px) and (max-width: 767px) {
  .EoCardsSection {
    padding: 1.5rem 0;
  }

  .EoCards-Heading {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .EoCardsSection p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .EoCardTitle {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .EoCardText {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .EoCardImage {
    height: 160px;
  }

  .EoCardButton {
    font-size: 0.85rem;
    padding: 0.45rem 0.9rem;
  }
}

/* Small mobile view: up to 480px */
@media (max-width: 480px) {
  .EoCardsSection {
    padding-top: 150px;
  }

  .EoCards-Heading {
    font-size: 3.5rem;
    margin-bottom: 0.75rem;
  }

  .EoCardsSection p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    padding-top: 5px;
  }

  .EoServiceCard {
    margin-bottom: 1rem;
  }

  .EoCardTitle {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .EoCardText {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }

  .EoCardImage {
    height: 150px;
  }

  .EoCardButton {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    width: 100%;
  }
}

/* ============================================
 FOOTER STYLES-For all pages
 ============================================ */

.EoFooter {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #fff;
  margin-top: auto;
  padding: 2rem 0 0;
}

.EoFooterHeading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
  text-transform: uppercase;
}

.EoFooterLinks {
  list-style: none;
  padding: 0;
  /* If you want to make the links 5in a row side by side */
  /* display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0; */
}

.EoFooterLink {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.EoFooterLink:hover {
  color: #fff;
  padding-left: 0.5rem;
}

.EoFooterContact {
  list-style: none;
  padding: 0;
}

.EoFooterContactItem {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 0;
  font-size: 1rem;
}

/* Social Media Icons */
.EoSocialMedia {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.EoSocialIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.EoSocialIcon:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(102, 126, 234, 0.4);
  color: #fff;
}

.EoSocialIcon:nth-child(1):hover {
  background: #1877f2;
}

.EoSocialIcon:nth-child(2):hover {
  background: rgb(143, 100, 19);
}

.EoSocialIcon:nth-child(3):hover {
  background: #1da1f2;
}

.EoSocialIcon:nth-child(4):hover {
  background: #ff0000;
}

.EoSocialIcon:nth-child(5):hover {
  background: #0a66c2;
}

/* Copyright Section */
.EoCopyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

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

/* Footer Mobile Responsive Styles */
@media (max-width: 767px) {
  .EoFooterHeading {
    text-align: center;
  }

  .EoFooterLinks {
    text-align: center;
  }

  .EoFooterContact {
    text-align: center;
  }

  .EoSocialMedia {
    justify-content: center;
  }
}

/* ============================================
 RESPONSIVE STYLES
 ============================================ */

/* ============================================
   ABOUT PAGE 
   ============================================ */

/* Section 1: Hero Mission Statement */
.EoAboutHero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  padding-top: 500px;
  overflow: hidden;
  height: 90vh;
}

#EoAboutHero1 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#EoAboutHero1.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.EoAboutHero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.05) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.EoAboutHeroContent {
  position: relative;
  z-index: 1;
  padding-top: 150px;
}

.EoAboutHeroTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
}

.EoAboutHeroText {
  margin-right: 90px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.EoAboutHeroImage {
  padding-top: 150px;
  position: relative;
  z-index: 1;
}

.EoAboutImageWrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.EoAboutImageWrapper:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.EoAboutImage {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.EoAboutImageWrapper:hover .EoAboutImage {
  transform: scale(1.1);
}

.EoAboutImageOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(243, 156, 18, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.EoAboutImageWrapper:hover .EoAboutImageOverlay {
  opacity: 1;
}

/* Section 1: Responsive Styles */
@media (max-width: 992px) {
  .EoAboutHero {
    height: auto;
    padding-top: 4rem;
  }

  .EoAboutHeroContent {
    padding-top: 0;
  }

  .EoAboutHeroTitle {
    font-size: 2.5rem;
    padding-top: 0;
  }

  .EoAboutHeroText {
    margin-right: 0;
  }

  .EoAboutHeroImage {
    padding-top: 2rem;
  }

  .EoAboutImage {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .EoAboutHero {
    padding: 3rem 0;
    height: auto;
    padding-top: 3rem;
  }

  .EoAboutHeroContent {
    padding-top: 0;
  }

  .EoAboutHeroTitle {
    font-size: 2rem;
    padding-top: 0;
  }

  .EoAboutHeroText {
    font-size: 1rem;
    margin-right: 0;
  }

  .EoAboutHeroImage {
    padding-top: 2rem;
  }

  .EoAboutImage {
    height: 300px;
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .EoAboutHero {
    padding-top: 2rem;
  }

  .EoAboutHeroContent {
    padding-top: 0;
  }

  .EoAboutHeroTitle {
    font-size: 1.75rem;
    padding-top: 0;
  }

  .EoAboutHeroText {
    font-size: 0.95rem;
    margin-right: 0;
  }

  .EoAboutHeroImage {
    padding-top: 1.5rem;
  }

  .EoAboutImage {
    height: 250px;
  }
}

#EoFeaturesShowcase2 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#EoFeaturesShowcase2.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.EoFeaturesTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.EoFeaturesSubtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 0;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.EoFeatureItem {
  position: relative;
  z-index: 1;
}

.EoFeatureImageWrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.EoFeatureItem:hover .EoFeatureImageWrapper {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(102, 126, 234, 0.25);
}

.EoFeatureImage {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.EoFeatureItem:hover .EoFeatureImage {
  transform: scale(1.05);
}

.EoFeatureBadge {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.EoFeatureItem:hover .EoFeatureBadge {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.EoFeatureBadge i {
  font-size: 2rem;
  color: #fff;
}

.EoFeatureContent {
  padding: 2rem 0;
  position: relative;
}

.EoFeatureNumber {
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.1);
  line-height: 1;
  margin-bottom: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.EoFeatureHeading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.EoFeatureDescription {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.EoFeatureList {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.EoFeatureList li {
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

.EoFeatureList li:hover {
  transform: translateX(5px);
}

.EoFeatureList li i {
  color: var(--primary);
  margin-right: 0.75rem;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.EoFeatureList li:hover i {
  transform: scale(1.2);
}

/* Section 2: Responsive Styles */
@media (max-width: 992px) {
  .EoFeaturesTitle {
    font-size: 3rem;
  }

  .EoFeaturesSubtitle {
    font-size: 1.1rem;
  }

  .EoFeatureImage {
    height: 400px;
  }

  .EoFeatureNumber {
    font-size: 5rem;
  }

  .EoFeatureHeading {
    font-size: 2rem;
  }

  .EoFeatureDescription {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .EoFeaturesTitle {
    font-size: 2.5rem;
  }

  .EoFeaturesSubtitle {
    font-size: 1rem;
  }

  .EoFeatureItem {
    margin-bottom: 3rem;
  }

  .EoFeatureImage {
    height: 350px;
  }

  .EoFeatureBadge {
    width: 60px;
    height: 60px;
    top: 15px;
    right: 15px;
  }

  .EoFeatureBadge i {
    font-size: 1.5rem;
  }

  .EoFeatureContent {
    padding: 1.5rem 0;
    margin-top: 1.5rem;
  }

  .EoFeatureNumber {
    font-size: 4rem;
  }

  .EoFeatureHeading {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .EoFeatureDescription {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .EoFeatureList li {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .EoFeaturesTitle {
    font-size: 2rem;
  }

  .EoFeaturesSubtitle {
    font-size: 0.95rem;
  }

  .EoFeatureItem {
    margin-bottom: 2.5rem;
  }

  .EoFeatureImage {
    height: 300px;
  }

  .EoFeatureBadge {
    width: 50px;
    height: 50px;
    top: 10px;
    right: 10px;
  }

  .EoFeatureBadge i {
    font-size: 1.2rem;
  }

  .EoFeatureContent {
    padding: 1rem 0;
    margin-top: 1rem;
  }

  .EoFeatureNumber {
    font-size: 3.5rem;
  }

  .EoFeatureHeading {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .EoFeatureDescription {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
  }

  .EoFeatureList li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
}

/* Section 3: Core Values Flip Cards */
.EoCoreValues {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  margin-bottom: 1px;
  position: relative;
  overflow: hidden;
}

.EoCoreValues::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.EoCoreValuesTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.EoCoreValuesSubtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.EoValueCard {
  height: 300px;
  perspective: 1000px;
  position: relative;
}

.EoValueCardFront,
.EoValueCardBack {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.EoValueCardFront {
  background: #fff;
  transform: rotateY(0deg);
}

.EoValueCardBack {
  background: linear-gradient(135deg, #70706f 0%, #b3b6b5 50%, #8e8d8d 100%);
  transform: rotateY(180deg);
  color: #fff;
}

.EoValueCard:hover .EoValueCardFront {
  transform: rotateY(-180deg);
}

.EoValueCard:hover .EoValueCardBack {
  transform: rotateY(0deg);
}

.EoValueIcon {
  width: 100px;
  height: 100px;
  background: linear-gradient(to bottom left, #1b4d3e 0%, #1a8f4b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.EoValueIcon i {
  font-size: 2.5rem;
  color: #fff;
}

.EoValueCard:hover .EoValueIcon {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

.EoValueTitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
  margin: 0;
}

.EoValueText {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

/* Section 3: Responsive Styles */
@media (max-width: 992px) {
  .EoCoreValuesTitle {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .EoCoreValuesTitle {
    font-size: 2.5rem;
  }

  .EoValueCard {
    height: 250px;
  }

  .EoValueIcon {
    width: 80px;
    height: 80px;
  }

  .EoValueIcon i {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .EoCoreValuesTitle {
    font-size: 2rem;
  }

  .EoValueCard {
    height: 220px;
  }

  .EoValueIcon {
    width: 70px;
    height: 70px;
  }

  .EoValueIcon i {
    font-size: 1.75rem;
  }
}

/* ============================================
   SERVICES PAGE
   ============================================ */

/* Services Page - Section 1: Services Introduction */
.EoServicesIntro {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f5 100%);
  position: relative;
  min-height: 100vh;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.EoServicesIntro.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.EoServicesMainTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4.5rem;
  color: var(--gray-900);
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.EoServicesIntroCard {
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
  min-height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.EoServicesIntroCard::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.EoServicesIntroContent {
  position: relative;
  z-index: 1;
}

.EoServicesIntroText {
  width: 100%;
  max-width: 700px;
  height: fit-content;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--gray-850);
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  margin: 0;
}

.EoServicesIntroImage {
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.9);
  width: 100%;
  max-width: 650px;
  height: 400px;
  object-fit: cover;
  max-height: 400px;
  margin-left: 0;
  transition: transform 0.3s ease;
}

.EoServicesIntroImage:hover {
  transform: scale(1.03);
  transition: transform 0.3s ease;
}

/* Media queries for Section 1: Services Introduction */
@media (max-width: 992px) {
  .EoServicesIntro {
    padding: 4rem 0;
    min-height: auto;
  }

  .EoServicesIntroCard {
    min-width: 100%;
    margin-left: 0;
    min-height: auto;
  }

  .EoServicesIntroImage {
    margin-left: 0;
    height: auto;
    max-height: 350px;
  }
}

@media (max-width: 768px) {
  .EoServicesIntro {
    padding: 3rem 0;
    min-height: auto;
  }

  .EoServicesMainTitle {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }

  .EoServicesIntroCard {
    padding: 2rem !important;
    border-radius: 15px;
    min-width: 100%;
    margin-left: 0;
    min-height: auto;
  }

  .EoServicesIntroText {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 100%;
  }

  .EoServicesIntroImage {
    max-height: 300px;
    height: auto;
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .EoServicesIntro {
    padding: 2.5rem 0;
    min-height: auto;
  }

  .EoServicesMainTitle {
    font-size: 2rem;
  }

  .EoServicesIntroCard {
    padding: 1.5rem !important;
    min-width: 100%;
    margin-left: 0;
    min-height: auto;
  }

  .EoServicesIntroText {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .EoServicesIntroImage {
    max-height: 250px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .EoServicesIntro {
    padding: 2rem 0;
  }

  .EoServicesMainTitle {
    font-size: 1.75rem;
    letter-spacing: 0.5px;
  }

  .EoServicesIntroCard {
    padding: 1.25rem !important;
    border-radius: 12px;
  }

  .EoServicesIntroText {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .EoServicesIntroImage {
    max-height: 200px;
    border-radius: 12px;
  }
}

/* Services Page - Section 2: Unique Asymmetric Card Design */
.EoServicesSection2 {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f5 100%);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.EoServicesSection2.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.EoServiceCard {
  position: relative;
  height: 400px;
  background: #ffffff;
  border: 2px solid var(--border);
  overflow: hidden;
  cursor: pointer;
}

.EoServiceCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05) 0%,
    rgba(243, 156, 18, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.EoServiceCard:hover::before {
  transform: translateY(-15px) scale(1.5);
  transition: transform 0.5s ease;
}

.EoServiceCardNumber {
  position: absolute;
  font-family: "Bebas Neue", sans-serif;
  font-size: 12rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(102, 126, 234, 0.08);
  z-index: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.EoServiceCard:hover .EoServiceCardNumber {
  color: rgba(102, 126, 234, 0.15);
  transform: scale(1.1) rotate(0deg);
}

.EoServiceCardContent {
  position: relative;
  z-index: 2;
  padding: 3rem 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.EoServiceCardTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.5s ease;
}

.EoServiceCardText {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
  opacity: 0.9;
  transition: all 0.5s ease;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .EoServiceCard {
    height: 380px;
  }

  .EoServiceCardNumber {
    font-size: 10rem;
  }

  .EoServiceCardTitle {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .EoServiceCard {
    height: 350px;
    margin-bottom: 2rem;
  }

  .EoServiceCardNumber {
    font-size: 8rem;
  }

  .EoServiceCard1 .EoServiceCardNumber,
  .EoServiceCard3 .EoServiceCardNumber,
  .EoServiceCard5 .EoServiceCardNumber {
    top: -15px;
    left: -20px;
  }

  .EoServiceCard2 .EoServiceCardNumber,
  .EoServiceCard4 .EoServiceCardNumber,
  .EoServiceCard6 .EoServiceCardNumber {
    top: -15px;
    right: -20px;
  }

  .EoServiceCardContent {
    padding: 2.5rem 2rem;
  }

  .EoServiceCardTitle {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }

  .EoServiceCardText {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

@media (max-width: 576px) {
  .EoServiceCard {
    height: 320px;
  }

  .EoServiceCardNumber {
    font-size: 6rem;
  }

  .EoServiceCardContent {
    padding: 2rem 1.5rem;
  }

  .EoServiceCardTitle {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .EoServiceCardText {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .EoServiceCard:hover {
    transform: translateY(-10px) scale(1.01);
  }
}

/* Services Page - Section 3: Service Benefits */
.EoServicesBenefits {
  padding: 4rem 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  margin-bottom: 1px;
}

.EoServicesBenefitsTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: var(--gray-0);
  font-weight: 600;
}

.EoServicesBenefitsText {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-0);
}

/* Media queries for Section 3: Service Benefits */
@media (max-width: 768px) {
  .EoServicesBenefitsTitle {
    font-size: 2rem;
  }
}

/* ============================================
   BLOG PAGE
   ============================================ */

/* Blog Page - Section 1: Blog Introduction */
.EoBlogIntro {
  background-image: url(../images/BlogBanner.avif);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  height: 90vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Shared dark panel for intro */
.EoBlogIntroPanel {
  background: rgba(0, 0, 0, 0.72);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  display: inline-block;
  margin: 0 300px 0 270px;
  padding-left: 30px;
  height: 300px;
  width: 720px;
}

.EoBlogMainTitle {
  font-family: Manrope;
  font-size: 5rem;
  font-weight: bolder;
  color: #ffffff;
  margin: 0;
  display: block;
}

.EoBlogIntroText {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-top: 0.75rem;
  margin-bottom: 0;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}
@media (min-width: 320px) and (max-width: 767px) {
  .EoBlogIntroPanel {
    width: 350px;
    height: 300px;
    margin-left: 5px;
    margin-right: 10px;
  }
  .EoBlogMainTitle {
    font-size: 2.5rem;
  }
  .EoBlogIntroText {
    font-size: 0.93rem;
  }
}
@media (min-width: 768px) and (max-width: 912px) {
  .EoBlogIntroPanel {
    width: 600px;
    height: 320px;
    margin-left: 50px;
    display: block;
  }
  .EoBlogMainTitle {
    font-size: 4rem;
  }

  .EoBlogIntroText {
    font-size: 1.2rem;
    padding-top: 0.5rem;
    font-weight: 400;
  }
}

@media (min-width: 913px) and (max-width: 1024px) {
  .EoBlogIntroPanel {
    width: 720px;
    margin-left: 100px;
  }
}

/* Animation: Intro panel enter/visible state */
.EoBlogIntroPanel {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.EoBlogIntroPanel.is-visible {
  opacity: 1;
  transform: none;
}

/* Blog Page - Section 2: Blog Articles */
.EoBlogArticles {
  padding: 4rem 0;
  cursor: pointer;
}

.BlogHeading {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  font-family: "Babas Neue", sans serif;
}
.EoBlogArticle {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.466);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.EoBlogArticle:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.EoBlogArticleTitle {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.3;
}

.EoBlogArticleDate {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

.EoBlogArticleExcerpt {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* Blog Page - Section 3: Blog Categories */
.EoBlogCategories {
  background: var(--bg-secondary);
  padding: 4rem 0;
}

.EoBlogCategoriesTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: var(--gray-900);
  font-weight: 600;
}

.EoBlogCategoryItem {
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.EoBlogCategoryTitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
}

.EoBlogCategoryDescription {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .EoBlogCategoriesTitle {
    font-size: 2rem;
  }
}

/* ============================================
   GALLERY PAGE
   ============================================ */

/* Gallery Page - Section 1: Gallery Header */
.EoGalleryHeader {
  width: fit-content;
  margin-right: 100px;
}

.EoGalleryMainTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  color: var(--gray-900);
  font-weight: 600;
}

.EoGallerySubtitle {
  max-width: 580px;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-left: auto;
  margin-right: auto;
}

.EoGalleryContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  position: relative;
  flex-wrap: wrap;
  gap: 2rem;
}

.EoGalleryContainer .Eoimage {
  margin: 40px 0 0 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  gap: 1.5rem;
}
.EoGalleryContainer .Eoimage img {
  width: 320px;
  max-width: 80vw;
  height: 220px;
  min-width: 0;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.95);
  position: relative;
  transition: transform 0.2s;
}

.EoGalleryContainer .Eoimage img:not(:first-child) {
  margin-top: -30px;
}
.EoGalleryContainer .Eoimage.leftStack {
  align-items: center;
  margin-right: 40px;
  margin-left: 20px;
  margin-top: 130px;
}
.EoGalleryContainer .Eoimage.leftStack img:nth-child(1) {
  transform: translateX(-200px);
}
.EoGalleryContainer .Eoimage.leftStack img:nth-child(2) {
  transform: translateX(-100px);
  margin-top: -60px;
}
.EoGalleryContainer .Eoimage.leftStack img:nth-child(3) {
  transform: translateX(-40px);
  margin-top: -65px;
  margin-left: 130px;
  z-index: 1;
}
.EoGalleryContainer .Eoimage.rightStack {
  align-items: center;
  margin-right: 20px;
  margin-top: 120px;
}
.EoGalleryContainer .Eoimage.rightStack img:nth-child(1) {
  transform: translateX(130px);
  margin-top: 20px;
}
.EoGalleryContainer .Eoimage.rightStack img:nth-child(2) {
  transform: translateX(30px);
  margin-top: -60px;
  z-index: 1;
}
.EoGalleryContainer .Eoimage.rightStack img:nth-child(3) {
  transform: translateX(-80px);
  margin-top: -70px;
  z-index: 1;
}

/*  */
@media (min-width: 320px) and (max-width: 767px) {
  .EoGalleryContainer {
    margin: 0 0;
  }
  .EoGalleryContainer .Eoimage.leftStack {
    margin-top: 40px;
  }
  .EoGalleryContainer .Eoimage.leftStack img:nth-child(1) {
    transform: translateX(40px);
  }
  .EoGalleryContainer .Eoimage.leftStack img:nth-child(2) {
    margin-top: -10px;
    transform: translateX(-20px);
  }
  .EoGalleryContainer .Eoimage.leftStack img:nth-child(3) {
    margin-top: -10px;
    transform: translateX(-25px);
  }
  .EoGalleryMainTitle {
    margin-left: 100px;
  }
  .EoGallerySubtitle {
    margin-left: 100px;
    width: 350px;
  }
  .EoGalleryContainer .Eoimage.rightStack {
    margin-top: -10px;
  }
  .EoGalleryContainer .Eoimage.rightStack img:nth-child(1) {
    transform: translateX(-20px);
  }
  .EoGalleryContainer .Eoimage.rightStack img:nth-child(2) {
    margin-top: -10px;
    transform: translateX(40px);
  }
  .EoGalleryContainer .Eoimage.rightStack img:nth-child(3) {
    margin-top: -10px;
    transform: translateX(-20px);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .EoGalleryContainer {
    margin: -50px 0 0 0;
    width: 100vw;
  }
  .EoGalleryContainer .Eoimage img {
    width: 280px;
  }
  .EoGalleryContainer .Eoimage.leftStack {
    margin-top: 80px;
  }
  .EoGalleryContainer .Eoimage.leftStack img:nth-child(1) {
    transform: translateX(-215px);
  }
  .EoGalleryContainer .Eoimage.leftStack img:nth-child(2) {
    width: 300px;
    height: 200px;
    margin-top: -115px;
    transform: translateX(20px);
  }
  .EoGalleryContainer .Eoimage.leftStack img:nth-child(3) {
    margin-top: -350px;

    transform: translateX(170px);
    z-index: -1;
  }
  .EoGalleryHeader {
    margin-top: 95px;
    margin-left: 110px;
  }
  .EoGalleryContainer .Eoimage.rightStack {
    margin-top: -20px;
  }
  .EoGalleryContainer .Eoimage.rightStack img:nth-child(1) {
    transform: translateX(-215px);
    margin-top: 120px;
  }
  .EoGalleryContainer .Eoimage.rightStack img:nth-child(2) {
    transform: translateX(10px);
    margin-top: -350px;
    width: 325px;
    height: 200px;
  }
  .EoGalleryContainer .Eoimage.rightStack img:nth-child(3) {
    transform: translateX(240px);
    margin-top: -100px;
    z-index: -1;
  }
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .EoGalleryContainer {
    margin: -50px 0 0 0;
    width: 100vw;
  }
  .EoGalleryContainer .Eoimage img {
    width: 280px;
  }
  .EoGalleryContainer .Eoimage.leftStack {
    margin-top: 80px;
  }
  .EoGalleryContainer .Eoimage.leftStack img:nth-child(1) {
    transform: translateX(-215px);
  }
  .EoGalleryContainer .Eoimage.leftStack img:nth-child(2) {
    width: 300px;
    height: 200px;
    margin-top: -115px;
    transform: translateX(20px);
  }
  .EoGalleryContainer .Eoimage.leftStack img:nth-child(3) {
    margin-top: -350px;

    transform: translateX(170px);
    z-index: -1;
  }
  .EoGalleryHeader {
    margin-top: 95px;
    margin-left: 110px;
  }
  .EoGalleryContainer .Eoimage.rightStack {
    margin-top: -20px;
  }
  .EoGalleryContainer .Eoimage.rightStack img:nth-child(1) {
    transform: translateX(-215px);
    margin-top: 120px;
  }
  .EoGalleryContainer .Eoimage.rightStack img:nth-child(2) {
    transform: translateX(10px);
    margin-top: -350px;
    width: 325px;
    height: 200px;
  }
  .EoGalleryContainer .Eoimage.rightStack img:nth-child(3) {
    transform: translateX(240px);
    margin-top: -100px;
    z-index: -1;
  }
}

/* Gallery Page - Section 2: Vertical Carousel Gallery */
.EoGallery {
  margin: 80px auto 0 auto;
  padding-left: 0;
  padding-right: 0;
  max-width: 1320px;
}

.EoGalleryImage {
  height: 340px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.473);
  width: 100%;
  max-width: 100%;
}

.EoGallery .row {
  margin-left: 0;
  margin-right: 0;
}

.EoGallery .Eosecond-img,
.EoGallery .Eofourth-img,
.EoGallery .Eosixth-img {
  margin-top: 18px;
}

/* Gallery Page - Section 3: Facility Highlights */
.EoGalleryHighlights {
  background: var(--bg-secondary);
  padding: 4rem 0;
}

.EoGalleryHighlightsTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  text-align: center;
  color: var(--gray-900);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.EoGalleryHighlightTitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 1.5rem;
}

.EoGalleryHighlightText {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.EoGalleryHighlights {
  padding: 4rem 0;
}

.EoGalleryHighlightCard,
.EoGalleryHighlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  height: 100%;
  gap: 0.75rem;
}

.EoGalleryHighlightImg {
  width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.164);
  margin-bottom: 0.75rem;
  max-width: 100%;
}
.EoGalleryHighlightText {
  font-size: 1.05rem;
  color: #2d2d2dd3;
}
@media (min-width: 320px) and (max-width: 767px) {
  .EoGalleryHighlights {
    padding: 100px;
  }
  .EoGalleryHighlightImg {
    width: 95%;
    height: 180px;
  }
  .EoGalleryHighlightCard,
  .EoGalleryHighlight {
    margin-left: -117px;
    width: 380px;
    padding: 0.5rem;
  }
  .EoGalleryHighlightText {
    color: #2d2d2dd3;
  }
}
@media (min-width: 768px) and (max-width: 912px) {
  .EoGalleryHighlightTitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .EoGalleryHighlightText {
    color: #2d2d2dd3;
  }

  .EoGalleryHighlightImg {
    width: 100vw;
    height: 150px;
  }
  .EoGalleryHighlightCard,
  .EoGalleryHighlight {
    padding: 0.75rem;
  }
}

/* ============================================
   TEAM PAGE
   ============================================ */

/* Team Page - Section 1: Team Overview */
.EoTeamOverview {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.EoTeamMainTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  color: var(--gray-900);
  font-weight: 600;
}

.EoTeamOverviewText {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Team Page - Section 2: Team Members */
.EoTeamMembers {
  padding: 4rem 0;
}

.EoTeamMemberCard {
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.829);
  transition: transform 0.4s ease;
}
.EoTeamMemberCard:hover {
  transform: scale(1.05);
}

.EoTeamMemberImage {
  width: 100%;
  height: 280px;
  margin-top: -10px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.856);
}

.EoTeamMemberName {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: left;
  color: var(--gray-900);
}

.EoTeamMemberRole {
  font-size: 1.1rem;
  text-align: left;
  color: var(--accent);
  font-weight: 500;
}

.EoTeamMemberBio {
  font-size: 1rem;
  line-height: 1.4;
  text-align: left;
  width: 320px;
  overflow: hidden;
  color: var(--text-muted);
  margin: 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .EoTeamMemberCard {
    width: 90%;
    margin-left: 20px;
  }
  .EoTeamMemberImage {
    height: 250px;
  }
}

@media (min-width: 768px) and (max-width: 912px) {
  .EoTeamMembers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .EoTeamMemberCard {
    margin: 5px; /* Adds spacing between cards */
    overflow: hidden;
  }
  .EoTeamMemberImage {
    height: 200px;
    width: 170px;
  }
  .EoTeamMemberBio {
    width: 215px;
    overflow: hidden;
  }
}

/* ============================================
   PROGRAMS PAGE
   ============================================ */

/* Programs Page - Section 1 */
.EoProgramsHeader {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
}

.EoProgramsMainTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  color: var(--gray-900);
  font-weight: 600;
}

.EoProgramsSubtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* Program Filter Buttons */
.EoProgramFilters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.EoProgramFilterBtn {
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  color: #374151;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.EoProgramFilterBtn:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.EoProgramFilterBtn.active {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.EoProgramFilterBtn.active:hover {
  background: #1f2937;
  border-color: #1f2937;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive styles for filter buttons */
@media (max-width: 768px) {
  .EoProgramFilters {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .EoProgramFilterBtn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .EoProgramFilters {
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }

  .EoProgramFilterBtn {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    flex: 1;
    min-width: calc(50% - 0.25rem);
  }
}

/* Programs Page - Section 2 */
.EoProgramsDetails {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 4rem 0;
  margin-bottom: 1px;
}

.EoProgramsDetailsTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: var(--gray-0);
  font-weight: 600;
}

.EoProgramsDetailsText {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-50);
  width: 80%;
  margin: 0 auto;
}
@media (min-width: 320px) and (max-width: 767px) {
  .EoProgramsDetailsText {
    width: 100%;

    font-size: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .EoProgramsDetailsText {
    width: 100%;
    font-size: 1rem;
  }
}

/* Programs Page - New Card Design Styles */
.EoProgramCard {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.EoProgramCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #d1d5db;
}

.EoProgramCardHeader {
  background: #f9fafb;
  padding: 1.75rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
}

.EoProgramCardTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.75rem 0;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.EoProgramLevel {
  display: flex;
  align-items: center;
}

.EoProgramLevelBadge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.EoProgramLevelBeginner {
  background: #dbeafe;
  color: #1e40af;
}

.EoProgramLevelIntermediate {
  background: #fef3c7;
  color: #92400e;
}

.EoProgramLevelAdvanced {
  background: #fee2e2;
  color: #991b1b;
}

.EoProgramCardBody {
  padding: 1.75rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.EoProgramInfoSection {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.EoProgramInfoLabel {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.4;
}

.EoProgramInfoText {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

.EoProgramOutcomesList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.EoProgramOutcomesList li {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
  padding-left: 1.25rem;
  position: relative;
}

.EoProgramOutcomesList li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6b7280;
  font-weight: bold;
}

.EoProgramInfoRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.EoProgramInfoItem {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.EoProgramInfoItemLabel {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.EoProgramInfoItemValue {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
}

.EoProgramCardFooter {
  padding: 1.5rem;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  margin-top: auto;
}

.EoProgramSelectBtn {
  display: block;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: #111827;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.EoProgramSelectBtn:hover {
  background: #1f2937;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  text-decoration: none;
}

.EoProgramSelectBtn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles for Program Cards */
@media (max-width: 992px) {
  .EoProgramCardTitle {
    font-size: 1.75rem;
  }

  .EoProgramCardBody {
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .EoProgramsMainTitle {
    font-size: 2.5rem;
  }

  .EoProgramsDetailsTitle {
    font-size: 2rem;
  }

  .EoProgramCardHeader {
    padding: 1.5rem 1.25rem;
  }

  .EoProgramCardTitle {
    font-size: 1.625rem;
  }

  .EoProgramCardBody {
    padding: 1.5rem 1.25rem;
    gap: 1.25rem;
  }

  .EoProgramInfoText {
    font-size: 0.875rem;
  }

  .EoProgramOutcomesList li {
    font-size: 0.875rem;
  }

  .EoProgramInfoRow {
    grid-template-columns: 1fr;
    gap: 0.875rem;
    padding: 0.875rem;
  }

  .EoProgramCardFooter {
    padding: 1.25rem;
  }

  .EoProgramSelectBtn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .EoProgramsHeader {
    padding: 3rem 0;
  }

  .EoProgramCardHeader {
    padding: 1.25rem 1rem;
  }

  .EoProgramCardTitle {
    font-size: 1.5rem;
  }

  .EoProgramCardBody {
    padding: 1.25rem 1rem;
    gap: 1rem;
  }

  .EoProgramInfoLabel {
    font-size: 0.8125rem;
  }

  .EoProgramInfoText {
    font-size: 0.8125rem;
  }

  .EoProgramOutcomesList li {
    font-size: 0.8125rem;
    padding-left: 1rem;
  }

  .EoProgramInfoRow {
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .EoProgramInfoItemLabel {
    font-size: 0.6875rem;
  }

  .EoProgramInfoItemValue {
    font-size: 0.875rem;
  }

  .EoProgramCardFooter {
    padding: 1rem;
  }

  .EoProgramSelectBtn {
    padding: 0.6875rem 1rem;
    font-size: 0.8125rem;
  }
}

/* ============================================
   FAQ PAGE
   ============================================ */

/* FAQ Page - Section 1: FAQ Header */
.EoFaqHeader {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.EoFaqMainTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  color: var(--gray-900);
  font-weight: 600;
}

.EoFaqSubtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* FAQ Page - Section 2: FAQ Questions */
.EoFaqQuestions {
  padding: 4rem 0;
  margin-top: 40px;
  margin-bottom: 70px;
}

/* FAQ Page - Section 3: Contact for More Info */
.EoFaqContact {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  margin-bottom: 1px;
  padding: 4rem 0;
}

.EoFaqContactTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: var(--gray-0);
  font-weight: 600;
}

.EoFaqContactText {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-0);
}

@media (max-width: 768px) {
  .EoFaqMainTitle {
    font-size: 2.5rem;
  }

  .EoFaqContactTitle {
    font-size: 2rem;
  }
}

/* ============================================
FAQ: Searchable accordion styles
============================================ */
.EoFaqQuestions .input-group {
  max-width: 720px;
  margin: 0 auto;
}
#EoFaqSearch {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.178);
  border-radius: 40px;
  padding: 0.75rem 1rem;
}
#EoFaqSearch:focus {
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.12);
  border-color: rgba(102, 126, 234, 0.35);
}
.EoFaqQuestions .accordion-item {
  border: none;
  margin-bottom: 0.5rem;
}
.EoFaqQuestions .accordion-button {
  font-weight: 600;
  border-radius: 12px;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: background 0.2s ease, transform 0.12s ease;
}
.EoFaqQuestions .accordion-button:not(.collapsed) {
  background: linear-gradient(
    90deg,
    rgba(102, 126, 234, 0.06),
    rgba(243, 156, 18, 0.03)
  );
  color: var(--gray-900);
}
.EoFaqQuestions .accordion-body {
  color: var(--text-muted);
}
.EoFaqNoResults {
  display: block;
  color: var(--text-muted);
  margin-top: 12px;
}
@media (max-width: 576px) {
  #EoFaqSearch {
    font-size: 0.95rem;
  }
  .EoFaqQuestions .accordion-button {
    font-size: 0.95rem;
  }
}

/* ============================================
   TESTIMONIALS PAGE
   ============================================ */

/* Testimonials Hero Section */
.EoTestimonialsHero {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  width: 100vw;
  height: 90vh;
}

.EoTestimonialsHeroBackground {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/Testimonial-banner.avif") center/cover;
  z-index: 1;
}

.EoTestimonialsHeroContent {
  position: relative;
  text-align: center;
  padding-top: 6rem;
  padding-right: 2rem;
  color: white;
  z-index: 2;
}

.EoTestimonialsBadge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.EoTestimonialsMainTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.EoTestimonialsSubtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.EoTestimonialsStats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.EoStatItem {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 120px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.EoStatItem:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.EoStatNumber {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.EoStatLabel {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Testimonials Showcase Section */
.EoTestimonialsShowcase {
  padding: 6rem 0;
  background: color-mix(in srgb, var(--bg-secondary) 90%, var(--primary));
}

.EoTestimonialsGrid {
  display: grid;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.EoTestimonialFeatured {
  /* border: 2px solid red; */
  margin-bottom: 3rem;
}

.EoFeaturedCard {
  background: linear-gradient(
    135deg,
    var(--card-bg) 0%,
    rgba(102, 126, 234, 0.05) 100%
  );
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.432);
  border: none;
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.EoFeaturedCard:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
}

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

.EoTestimonialCard {
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.596);
  padding: 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
}

.EoTestimonialCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(20, 20, 20, 0.418);
}

.EoTestimonialQuote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--primary);
  opacity: 0.3;
  font-size: 2rem;
}

.EoTestimonialContent {
  position: relative;
  z-index: 1;
}

.EoTestimonialText {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 2rem;
  font-style: normal;
  position: relative;
  padding-left: 1rem;
}

.EoTestimonialText::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.EoTestimonialAuthorInfo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.EoTestimonialAvatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid rgba(84, 216, 8, 0.8);
  flex-shrink: 0;
}

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

.EoTestimonialDetails {
  flex: 1;
}

.EoTestimonialAuthor {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.EoTestimonialRole {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.EoTestimonialRating {
  display: flex;
  gap: 0.25rem;
}

.EoTestimonialRating i {
  color: var(--accent);
  font-size: 0.9rem;
}

/* Success Stories Section */
.EoTestimonialsSuccess {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--gray-900) 0%, #2c3e50 100%);
  overflow: hidden;
  width: 100%;
  height: 70vh;
  margin-bottom: 2px;
}

.EoSuccessBackground {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/Transformation-Banner.avif");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 1;
}

.EoSuccessContent {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.EoSuccessBadge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.EoTestimonialsSuccessTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.EoTestimonialsSuccessText {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.EoSuccessMetrics {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
}

.EoMetricItem {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.EoMetricItem:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.EoMetricIcon {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.EoMetricText {
  text-align: left;
}

.EoMetricNumber {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: white;
}

.EoMetricLabel {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Responsive Design */

@media (max-width: 1200px) {
  .EoTestimonialsMainTitle {
    font-size: 3.5rem;
  }

  .EoTestimonialsSuccessTitle {
    font-size: 3rem;
  }

  .EoTestimonialsStats {
    gap: 2rem;
  }

  .EoSuccessMetrics {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .EoMetricItem {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .EoTestimonialsHero {
    padding: 4rem 0;
  }

  .EoTestimonialsMainTitle {
    font-size: 2.5rem;
  }

  .EoTestimonialsSubtitle {
    font-size: 1.1rem;
  }

  .EoTestimonialsStats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .EoStatItem {
    width: 100%;
    max-width: 250px;
  }

  .EoTestimonialsShowcase {
    padding: 4rem 0;
  }

  .EoFeaturedCard {
    padding: 2rem;
  }

  .EoTestimonialsRegular {
    grid-template-columns: 1fr;
  }

  .EoTestimonialsSuccess {
    width: 100%;
    height: 100%;
    padding: 4rem 0;
  }

  .EoTestimonialsSuccessTitle {
    font-size: 2.5rem;
  }

  .EoTestimonialsSuccessText {
    font-size: 1.1rem;
  }

  .EoSuccessMetrics {
    flex-direction: column;
    align-items: center;
    /* gap: 1rem; */
  }

  .EoMetricItem {
    /* border: 2px solid red; */
    padding: 1rem 0;
    padding-left: 15px;
    width: 250px;
  }
}

@media (max-width: 576px) {
  .EoTestimonialsHero {
    height: 100%;
  }
  .EoTestimonialsHeroContent {
    margin-top: -100px;
    margin-left: 30px;
  }
  .EoTestimonialsMainTitle {
    font-size: 2rem;
  }

  .EoTestimonialsSuccessTitle {
    font-size: 2rem;
  }

  .EoFeaturedCard {
    padding: 1.5rem;
  }

  .EoTestimonialCard {
    padding: 1.5rem;
  }

  .EoMetricIcon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .EoMetricNumber {
    font-size: 1.5rem;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

/* Contact Page - Section 1: Contact Header */
.EoContactHeader {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.EoContactMainTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  color: var(--gray-0);
  font-weight: 600;
}

.EoContactSubtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--gray-50);
}

/* Contact Page - Section 2: Contact Information */
.EoContactInfo {
  padding: 4rem 0;
}

.EoContactInfoCard {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.EoContactInfoTitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gray-900);
}

.EoContactInfoText {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}
.EoContactInfoText {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 2rem;
  margin-top: -30px;

  font-weight: 600;
}

/* Contact Page - Section 3: Contact Form */
.EoContactFormSection {
  padding: 4rem 0;
}

.EoContactFormTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: var(--gray-900);
  font-weight: 600;
}

.EoContactFormLabel {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.EoContactFormInput,
.EoContactFormTextarea {
  outline: none;
  padding: 0.75rem;
  font-size: 1rem;
}

.EoContactFormButton {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
}

.EoContactFormButton:hover {
  background: #5568d3;
}

/* Contact Page - Section 4: Visit Information */
.EoContactVisit {
  padding: 4rem 0;
}

.EoContactVisitTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: var(--gray-900);
  font-weight: 600;
}

.EoContactVisitText {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .EoContactMainTitle {
    font-size: 2.5rem;
  }

  .EoContactFormTitle {
    font-size: 2rem;
  }

  .EoContactVisitTitle {
    font-size: 2rem;
  }
}

/* ============================================
   MODERN CONTACT PAGE STYLES
   ============================================ */

/* Hero Section with Animated Background */
.EoContactHero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.EoHeroBackground {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(243, 156, 18, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(102, 126, 234, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(118, 75, 162, 0.2) 0%,
      transparent 50%
    );
  animation: heroGradient 15s ease infinite;
}

@keyframes heroGradient {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(180deg);
  }
}

.EoHeroParticles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(2px 2px at 20px 30px, white, transparent),
    radial-gradient(2px 2px at 40px 70px, white, transparent),
    radial-gradient(1px 1px at 50px 50px, white, transparent),
    radial-gradient(1px 1px at 80px 10px, white, transparent),
    radial-gradient(2px 2px at 130px 80px, white, transparent);
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: particles 60s linear infinite;
  opacity: 0.3;
}

@keyframes particles {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-200px);
  }
}

.EoContactHeroContent {
  color: white;
  z-index: 2;
  position: relative;
}

.EoContactHero .EoContactMainTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.EoContactHero .EoContactSubtitle {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.EoContactHeroStats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.EoStatItem {
  text-align: center;
}

.EoStatNumbers {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #f39c12;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.EoStatLabel {
  display: block;
  font-size: 1rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modern Contact Cards */
.EoContactInfoSection {
  background: var(--bg-secondary);
  padding: 5rem 0;
}

.EoContactInfoCardModern {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.EoContactInfoCardModern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #f39c12, #764ba2);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.EoContactIconWrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
}

.EoContactIcon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #667eea;
  z-index: 2;
}

.EoIconGlow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

.EoContactCardContent {
  text-align: center;
}

.EoContactInfoCardModern .EoContactInfoTitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.EoContactInfoCardModern .EoContactInfoText {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.EoContactAction {
  margin-top: 1.5rem;
}

.EoContactLink {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Enhanced Form Section */
.EoContactFormSection {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 0;
  position: relative;
}

.EoContactFormSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(102, 126, 234, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(118, 75, 162, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.EoFormWrapper {
  background: var(--card-bg);
  border-radius: 24px;
  margin-top: -20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
  overflow: hidden;
}

.EoFormHeader {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.EoFormHeader .EoContactFormTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: var(--gray-900);
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
}

.EoFormHeader .EoContactFormTitle::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}

.EoFormSubtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 1.5rem;
  font-weight: 400;
}

.EoContactFormModern {
  max-width: 100%;
  position: relative;
}

.EoFormGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.EoFormGroup {
  margin-bottom: 1.5rem;
  position: relative;
}

.EoFormLabel {
  display: block;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  margin-left: 5px;
}

.EoFormLabel::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 50%;
  opacity: 0.6;
}

.EoFormField {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 1rem;
  color: var(--text);
  background: var(--gray-0);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  outline: transparent;
  position: relative;
}

.EoFormField:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.EoFormField::placeholder {
  color: #a0a0a0;
  font-style: italic;
}

.EoTextarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.EoFormActions {
  text-align: center;
  margin-top: 2.5rem;
  position: relative;
}

.EoSubmitBtn {
  background: linear-gradient(135deg, #2c3e50 0%, #7f8c8d 50%, #2c3e50 100%);

  color: white;
  border: none;
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 85, 255, 0.4);
}

.EoSubmitBtn::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 ease;
}

.EoSubmitBtn:focus {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.EoSubmitBtn:focus::before {
  left: 100%;
}

.EoSubmitBtn i {
  transition: transform 0.3s ease;
}

.EoSubmitBtn:focus i {
  transform: translateX(3px);
}

.EoPrivacyNote {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 1rem 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0.8;
}

.EoPrivacyNote i {
  color: red;
  font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .EoFormGrid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .EoFormTitle {
    font-size: 2rem;
  }

  .EoFormField {
    padding: 0.875rem 1rem;
  }

  .EoSubmitBtn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .EoFormWrapper {
    padding: 2rem;
    margin-top: 0;
  }

  .EoFormHeader .EoContactFormTitle::after {
    width: 40px;
  }

  .EoFormLabel {
    font-size: 0.9rem;
  }

  .EoFormLabel::before {
    left: -6px;
  }
}

@media (max-width: 576px) {
  .EoContactFormSection {
    padding: 3rem 0;
  }

  .EoFormWrapper {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .EoFormHeader {
    margin-bottom: 2rem;
  }

  .EoFormHeader .EoContactFormTitle {
    font-size: 1.75rem;
  }

  .EoFormSubtitle {
    font-size: 1rem;
  }

  .EoSubmitBtn {
    width: 100%;
    padding: 1rem 1.5rem;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .EoContactHero .EoContactMainTitle {
    font-size: 3.5rem;
  }

  .EoContactHeroStats {
    gap: 2rem;
    border: 2px solid red;
  }

  .EoStatNumber {
    font-size: 2rem;
  }

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

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

  .EoCTAButton {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .EoContactHero {
    min-height: 80vh;
    padding: 2rem 0;
  }

  .EoContactHero .EoContactMainTitle {
    font-size: 2.5rem;
  }

  .EoContactHero .EoContactSubtitle {
    font-size: 1.1rem;
  }

  .EoContactHeroStats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .EoContactInfoCardModern {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }

  .EoFormWrapper {
    padding: 2rem;
  }

  .EoFormHeader .EoContactFormTitle {
    font-size: 2rem;
  }

  .EoMapWrapper {
    padding: 1.5rem;
  }

  .EoGymMap iframe {
    height: 300px;
  }

  .EoContactVisitSection .EoContactVisitTitle {
    font-size: 2.5rem;
  }

  .EoCTACard {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .EoContactHero .EoContactMainTitle {
    font-size: 2rem;
  }

  .EoContactHeroStats {
    gap: 1rem;
  }

  .EoStatNumber {
    font-size: 1.8rem;
  }

  .EoContactInfoCardModern {
    padding: 1.5rem;
  }

  .EoFormWrapper {
    padding: 1.5rem;
  }

  .EoContactFormButton {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .EoMapWrapper {
    padding: 1rem;
  }

  .EoGymMap iframe {
    height: 250px;
  }

  .EoContactVisitSection .EoContactVisitTitle {
    font-size: 2rem;
  }

  .EoCTACard {
    padding: 1.5rem;
  }

  .EoCTAButton {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

/* ============================================
   CONTACT PAGE 
   ============================================ */

/* Hero Section - Location and Map */
.EoContactHero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  min-height: auto;
  padding: 6rem 0;
  color: white;
}

.EoLocationMapSection {
  margin-top: 4rem;
  text-align: center;
}

.EoLocationTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
}

.EoLocationSubtitle {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
}

.EoGymMap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: white;
}

.EoGymMap iframe {
  width: 100%;
  border: none;
}

/* Contact Form Section with Contact Info */
.EoContactFormSection {
  background: var(--bg-secondary);
  padding: 6rem 0;
}

.EoContactInfoLeft {
  margin-top: 90px;
  padding: 2rem;
}

.EoContactInfoTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: var(--gray-900);
  margin-bottom: 3rem;
  font-weight: 600;
}

/* Social Links */
.EoSocialLinks {
  margin-bottom: 3rem;
}

.EoSocialTitle {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.EoSocialIcons {
  display: flex;
  gap: 1rem;
}

.EoSocialLink {
  width: 50px;
  height: 50px;
  background: linear-gradient(to bottom right, #000000, #667eea);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
}

/* Contact Details */
.EoContactDetails {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.EoContactDetailItem {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.EoContactDetailIcon {
  width: 50px;
  height: 50px;
  background: linear-gradient(to bottom right, #000000, #667eea);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.EoContactDetailInfo h4 {
  font-size: 1.2rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

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

/* We're Here to Assist You Section */
.EoContactVisitSection {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 6rem 0;
  color: white;
}

.EoAssistContent {
  text-align: center;
  margin-bottom: 4rem;
}

.EoAssistTitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  color: white;
  margin-bottom: 2rem;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.EoAssistText {
  font-size: 1.3rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.EoAssistButton {
  display: flex;
  justify-content: center;
}

.EoAskQuestionBtn {
  background: white;
  color: #667eea;
  border: none;
  padding: 1rem 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.EoAskQuestionBtn:focus {
  transform: translateY(-3px);
}

/* Contact Footer */
.EoContactFooter {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.EoFooterContactItem {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: white;
}

.EoFooterContactItem i {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.EoFooterContactInfo h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.EoFooterContactInfo p {
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
}

.EoFooterSocial {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.EoFooterSocial h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.EoFooterSocialIcons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.EoFooterSocialLink {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (min-width: 820px) and (max-width: 912px) {
  .EoFooterContactItem i.fa-map-marker-alt,
  .EoFooterContactItem i.fa-envelope {
    width: 70px;
    height: 50px;
  }
}
@media (max-width: 768px) {
  .EoLocationTitle {
    font-size: 2rem;
  }

  .EoContactInfoTitle {
    font-size: 2rem;
  }

  .EoAssistTitle {
    font-size: 2.5rem;
  }

  .EoAssistText {
    font-size: 1.1rem;
  }

  .EoContactFooter {
    padding: 2rem;
  }

  .EoFooterContactItem {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .EoFooterContactItem i.fa-phone,
  .EoFooterContactItem i.fa-map-marker-alt,
  .EoFooterContactItem i.fa-envelope {
    width: 50px;
    height: 50px;
  }

  .EoSocialIcons {
    justify-content: center;
  }
}

/* ============================================
   CUSTOM ALERT STYLES
   ============================================ */
.EoCustomAlert {
  position: fixed;
  top: 20px;
  right: 20px;
  max-width: 400px;
  z-index: 9999;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
  pointer-events: none;
}

.EoCustomAlert--show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.EoCustomAlert-content {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.EoCustomAlert--success .EoCustomAlert-content {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
}

.EoCustomAlert--error .EoCustomAlert-content {
  background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
  color: white;
}

.EoCustomAlert-icon {
  font-size: 24px;
  margin-right: 12px;
  flex-shrink: 0;
}

.EoCustomAlert-message {
  flex: 1;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.EoCustomAlert-close {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  margin-left: 12px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  border-radius: 4px;
}

.EoCustomAlert-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile responsive for custom alerts */
@media (max-width: 768px) {
  .EoCustomAlert {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .EoCustomAlert-content {
    padding: 14px 16px;
  }

  .EoCustomAlert-icon {
    font-size: 20px;
    margin-right: 10px;
  }

  .EoCustomAlert-message {
    font-size: 13px;
  }
}
