/* ========================================================================== CSS Reset & Variables ========================================================================== */

:root {
  --bg-main: #f7fafc;
  --bg-alt: #edf4ff;
  --card-bg: #ffffff;

  --text-main: #4b5563;
  --text-heading: #0f172a;

  --primary: #0b4ea2;
  --primary-hover: #083a79;

  --font-sans: "Inter", sans-serif;
  --font-heading: "Poppins", sans-serif;

  --radius: 8px;
  --transition: all 0.3s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

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

/* ========================================================================== Layout Utilities ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-padding {
  padding: 80px 0;
}
.bg-alt {
  background-color: var(--bg-alt);
}
.text-center {
  text-align: center;
}
.align-center {
  align-items: center;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 2rem;
}
.relative-z {
  position: relative;
  z-index: 2;
}

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

/* ========================================================================== Typography & Elements ========================================================================== */
.kicker {
  display: block;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.text-link {
  color: var(--primary);
  font-weight: 500;
  display: inline-block;
  margin-top: 1rem;
}
.text-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background-color: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background-color: var(--primary-hover);
}
.btn-outline {
  border-color: var(--text-heading);
  color: var(--text-heading);
}
.btn-outline:hover {
  background-color: var(--text-heading);
  color: var(--bg-main);
}

.card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
}
.card .meta {
  display: block;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* ========================================================================== Header & Navigation ========================================================================== */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 28px 0;
  transition: all 0.35s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */

.logo img {
  height: 74px;
  width: auto;
  transition: all 0.35s ease;
}

/* Navigation */

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  position: relative;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 6px 0;
  transition: all 0.3s ease;
}

/* Nice underline animation */

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: 0.3s;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ffffff;
}

/* Mobile */

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .site-header {
    padding: 18px 0;
  }

  .logo img {
    height: 62px;
  }

  .mobile-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0b4ea2;
    padding: 20px;
  }

  .site-nav.active {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
}

/* ========================================================================== Hero Section ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;

  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;

  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(8, 58, 121, 0.05) 0%,
    rgba(8, 58, 121, 0.18) 35%,
    rgba(8, 58, 121, 0.72) 68%,
    rgba(8, 58, 121, 0.94) 100%
  );
}

.hero-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100vh;
}

.hero-left {
  min-height: 100px;
}
.hero-right {
  max-width: 560px;
  justify-self: end;
  padding-top: 90px;
}

.hero-tag {
  display: inline-block;

  padding: 8px 18px;

  margin-bottom: 25px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.12);

  border: 1px solid rgba(255, 255, 255, 0.25);

  color: #fff;

  font-weight: 600;

  font-size: 0.85rem;

  backdrop-filter: blur(10px);
}

.hero h1 {
  color: #fff;

  font-size: 4rem;

  line-height: 1.05;

  margin-bottom: 25px;
}

.hero p {
  color: rgba(255, 255, 255, 0.92);

  font-size: 1.18rem;

  line-height: 1.8;

  margin-bottom: 35px;
}

.hero-actions {
  display: flex;

  gap: 18px;

  margin-bottom: 35px;
}

.hero-actions .btn {
  min-width: 220px;
}

.hero-actions .btn-outline {
  background: #fff;

  color: var(--primary);

  border: none;
}

.hero-actions .btn-outline:hover {
  background: #edf4ff;
}

.hero-trust {
  display: flex;

  gap: 22px;

  flex-wrap: wrap;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.2);

  color: #fff;

  font-size: 0.95rem;
}

/* Mobile */

@media (max-width: 900px) {
  .hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    min-height: 100vh;

    gap: 60px;
  }

  .hero-left {
    display: none;
  }
  .hero-right {
    max-width: 560px;
    justify-self: end;

    padding-top: 90px;
  }

  .hero-tag {
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 2.9rem;
  }

  .hero-actions {
    flex-direction: column;

    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;

    max-width: 320px;
  }

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

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 58, 121, 0.45),
      rgba(8, 58, 121, 0.9)
    );
  }
}

/* ========================================================================== Story Section ========================================================================== */

.story-section {
  padding: 80px 0;
  background: #f7fafc;
}

.story-section .grid-2 {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 50px;
}

/* Image */

.story-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(11, 78, 162, 0.15);
}

.story-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: 0.5s ease;
}

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

/* Floating Badge */

.story-badge {
  position: absolute;
  left: 25px;
  bottom: 25px;
  background: #0b4ea2;
  color: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(11, 78, 162, 0.35);
  text-align: center;
}

.badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  line-height: 1.3;
}

/* Content */

.story-text {
  max-width: 620px;
}

.story-text h2 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 25px;
}

.story-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 22px;
}

.story-text strong {
  color: #0b4ea2;
}

/* Mission Card */

.mission-box {
  width: 100%;
  margin: 30px 0;
  padding: 28px;
  background: #edf4ff;
  border-left: 5px solid #0b4ea2;
  border-radius: 16px;
}

.mission-box h4 {
  margin-bottom: 18px;
}

.mission-box ul {
  list-style: none;
  padding: 0;
}

.mission-box li {
  margin-bottom: 12px;
}

.mission-box li:last-child {
  margin-bottom: 0;
}

/* Mobile */

@media (max-width: 900px) {
  .story-section {
    padding: 70px 0;
  }

  .story-section .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-text {
    max-width: 100%;
    text-align: center;
  }

  .story-text h2 {
    font-size: 2.3rem;
  }

  .story-badge {
    left: 18px;
    bottom: 18px;
  }

  .mission-box {
    text-align: left;
  }
}
/* ========================================================================== Trust Bar ========================================================================== */

.trust-bar {
  background: linear-gradient(135deg, #0b4ea2 0%, #083a79 100%);
  padding: 70px 0;
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.trust-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 35px 20px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all 0.35s ease;
}

.trust-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
  color: #fff;
}

.trust-label {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.trust-item small {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-top: 6px;
  letter-spacing: 0.5px;
}

.divider {
  margin: 0 3px;
}

.counter {
  display: inline-block;
  min-width: 40px;
}

@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-number {
    font-size: 2.5rem;
  }
}

/* ========================================================================== Responsive Design ========================================================================== */
@media (max-width: 768px) {
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(11, 17, 32, 0.7),
      rgba(11, 17, 32, 0.95)
    );
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-content {
    margin: 0 auto;
    text-align: center;
  }
  .hero-actions {
    flex-direction: column;
    justify-content: center;
  }
  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .mobile-toggle {
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-main);
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .site-nav.active {
    display: block;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
/* --- Refined Programs Section --- */
.program-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.08); /* Finer border */
  background: linear-gradient(
    180deg,
    #1f2937 0%,
    #111827 100%
  ); /* Subtle depth */
}

.program-card h3 {
  font-size: 1.5rem;
  margin: 0.5rem 0 1rem;
}

.program-card:hover {
  border-color: var(--primary); /* Glow effect on hover */
  transform: translateY(-8px);
}

.program-card .text-link {
  margin-top: auto;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================== Why Choose AFEKS ========================== */

.feature-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  border-top: 5px solid var(--primary);
  transition: 0.35s ease;
  text-align: left;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(11, 78, 162, 0.18);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #edf4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--primary);
  font-size: 2rem;
  transition: 0.35s;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}

.feature-card h3 {
  font-size: 1.7rem;
  margin-bottom: 15px;
  color: #111827;
}

.feature-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5b6472;
}
/* --- Refined Coaches Section --- */
.coaches-section .grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Forces 4 columns */
  gap: 1.5rem;
}

.coach-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
}

.coach-avatar {
  width: 100px; /* Smaller for better fit */
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary);
}

.coach-card h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  text-align: center;
}

.coach-card .meta {
  text-align: center;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

/* Accordion Styling */
.coach-bio {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.coach-bio summary {
  cursor: pointer;
  color: var(--primary);
  font-size: 0.85rem;
  text-align: center;
  outline: none;
}

.coach-bio p {
  font-size: 0.85rem;
  color: var(--text-main);
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

/* Responsive adjustment for tablets/smaller screens */
@media (max-width: 1024px) {
  .coaches-section .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* --- Refined Programs Section --- */
.program-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
}

.program-card h3 {
  font-size: 1.5rem;
  margin: 0.5rem 0 1rem;
}

.program-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
}

.program-card .text-link {
  margin-top: auto;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Refined Why Choose Us Section --- */
.feature-card {
  text-align: center;
  transition: all 0.4s ease;
  background: var(--bg-alt);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(29, 78, 216, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(10deg);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-main);
  font-size: 0.95rem;
}
/* ========================================================================== Meet Our Team ========================================================================== */

.coaches-section {
  background: #f7fafc;
}

.coaches-section .section-header {
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
  margin-top: 15px;
}

.grid-coaches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.coach-card {
  background: #fff;
  padding: 35px 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
  border: 1px solid #e5e7eb;
}

.coach-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(11, 78, 162, 0.15);
}

.coach-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 25px;
  border: 5px solid #edf4ff;
}

.coach-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.coach-card .meta {
  display: block;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}

.coach-description {
  font-size: 0.96rem;
  line-height: 1.8;
  color: #64748b;
}

@media (max-width: 992px) {
  .grid-coaches {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-coaches {
    grid-template-columns: 1fr;
  }

  .coach-card {
    padding: 30px 24px;
  }
}
/* ==========================================
   JOURNEY SECTION
========================================== */

.journey-section{
    background:#F7FAFC;
}

.journey-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin:60px 0;
    position:relative;
}

/* Connecting Line */

.journey-grid::before{
    content:"";
    position:absolute;
    top:40px;
    left:12%;
    right:12%;
    height:3px;
    background:#D6E4F7;
    z-index:0;
}

/* Cards */

.step-card{
    position:relative;
    z-index:2;

    background:#fff;

    border-radius:20px;

    padding:70px 28px 35px;

    text-align:center;

    box-shadow:0 15px 40px rgba(15,23,42,.08);

    transition:.35s ease;
}

.step-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(11,78,162,.18);
}

/* Number Circle */

.step-num{
    position:absolute;
    top:-22px;
    left:50%;
    transform:translateX(-50%);

    width:48px;
    height:48px;

    border-radius:50%;

    background:var(--primary);
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:700;
    font-size:1.2rem;

    border:5px solid #F7FAFC;
}

/* Icon */

.step-icon{
    width:72px;
    height:72px;

    margin:0 auto 22px;

    border-radius:18px;

    background:#EDF4FF;

    display:flex;
    align-items:center;
    justify-content:center;
}

.step-icon span{
    font-size:2rem;
}

/* Heading */

.step-card h3{
    font-size:1.35rem;
    margin-bottom:15px;
}

/* Text */

.step-card p{
    color:#64748B;
    line-height:1.8;
    font-size:.95rem;
}

/* CTA */

.journey-cta{
    text-align:center;
    margin-top:70px;
}

.journey-cta h3{
    font-size:2rem;
    margin-bottom:12px;
}

.journey-cta p{
    color:#64748B;
    max-width:650px;
    margin:0 auto 30px;
}

.journey-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* Hover Effects */

.step-card:hover .step-icon{
    background:var(--primary);
}

.step-card:hover .step-icon span{
    transform:scale(1.15) rotate(-8deg);
}

.step-icon span{
    transition:.35s ease;
}

/* Tablet */

@media(max-width:992px){

    .journey-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .journey-grid::before{
        display:none;
    }

}

/* Mobile */

@media(max-width:768px){

    .journey-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .journey-grid::before{
        display:none;
    }

    .step-card{
        padding:65px 24px 30px;
    }

}
/* ===== FINAL WHY CHOOSE AFEKS OVERRIDE ===== */

.feature-card {
  background: #fff !important;
  border-top: 5px solid var(--primary) !important;
  border-radius: 20px !important;
  padding: 40px 30px !important;
  text-align: left !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
  transition: 0.35s ease !important;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(11, 78, 162, 0.18) !important;
}

.feature-card h3 {
  font-size: 1.6rem !important;
  margin-bottom: 18px !important;
}

.feature-card p {
  font-size: 1.05rem !important;
  line-height: 1.8 !important;
}

.feature-icon {
  display: none !important;
}
/* ========================================================================== Team Section Additions ========================================================================== */

.section-intro {
  max-width: 720px;
  margin: 15px auto 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

.coach-description {
  margin-top: 15px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #64748b;
}
/* =================================================== AFEKS TEAM SECTION - FINAL =================================================== */

.grid-coaches {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.coach-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
  height: 100%;
}

.coach-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(11, 78, 162, 0.18);
}

.coach-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 25px;
  border: 5px solid #edf4ff;
}

.coach-card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
  line-height: 1.25;
}

.coach-card .meta {
  display: block;
  color: #0b4ea2;
  font-weight: 700;
  margin-bottom: 18px;
}

.coach-description {
  font-size: 0.96rem;
  line-height: 1.75;
  color: #64748b;
}

.section-intro {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

/* Tablet */

@media (max-width: 1200px) {
  .grid-coaches {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */

@media (max-width: 768px) {
  .grid-coaches {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .coach-card {
    padding: 30px 22px;
  }

  .coach-avatar {
    width: 110px;
    height: 110px;
  }
}

/* ==========================================
   MEET THE TEAM - FINAL STYLING
========================================== */

.grid-coaches{
    display:flex;
    flex-direction:column;
    gap:32px;
    margin-top:50px;
}

.coach-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.coach-row-bottom{
    width:68%;
    margin:0 auto;
    grid-template-columns:repeat(2,1fr);
}

.coach-card{
    position:relative;
    overflow:hidden;

    background:#fff;
    border:none;
    border-radius:20px;
    padding:35px 28px;
    text-align:center;
    box-shadow:0 12px 35px rgba(15,23,42,.08);
    transition:all .35s ease;
    height:100%;
}

/* Premium Blue Accent */

.coach-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:6px;
    height:100%;
    background:linear-gradient(
        180deg,
        #0B4EA2,
        #1E63C7,
        #083A79
    );
    border-radius:20px 0 0 20px;
}

.coach-card:hover{
    transform:translateY(-8px);
    box-shadow:0 24px 50px rgba(11,78,162,.18);
}

.coach-avatar{
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:50%;
    margin:0 auto 22px;
    border:5px solid #EDF4FF;
    transition:.35s ease;
}

.coach-card:hover .coach-avatar{
    transform:scale(1.05);
    border-color:#D8E8FF;
}

.coach-card h3{
    font-size:1.5rem;
    margin-bottom:8px;
    color:#0F172A;
}

.coach-card .meta{
    display:block;
    color:var(--primary);
    font-weight:700;
    margin-bottom:18px;
    text-transform:uppercase;
    font-size:.85rem;
    letter-spacing:.5px;
}

.coach-description{
    color:#64748B;
    font-size:.98rem;
    line-height:1.8;
    max-width:280px;
    margin:0 auto;
}

/* Tablet */

@media (max-width:992px){

    .coach-row{
        grid-template-columns:repeat(2,1fr);
    }

    .coach-row-bottom{
        width:100%;
    }

}

/* Mobile */

@media (max-width:768px){

    .coach-row,
    .coach-row-bottom{
        grid-template-columns:1fr;
        width:100%;
    }

    .coach-card{
        padding:30px 24px;
    }

}
/* Floating WhatsApp Button */
.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    width:68px;
    height:68px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(37,211,102,.35);
    z-index:9999;
    transition:.3s ease;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    box-shadow:0 14px 35px rgba(37,211,102,.45);
}

.whatsapp-float svg{
    width:34px;
    height:34px;
    display:block;
}


@keyframes whatsappPulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.45);
    }

    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

@media(max-width:768px){

    .whatsapp-float{

        width:58px;
        height:58px;
        font-size:1.8rem;

        bottom:20px;
        right:20px;

    }

}
/* ==========================================
   PREMIUM FOOTER
========================================== */

.site-footer{
    background:linear-gradient(135deg,#082A56,#0B4EA2);
    color:#fff;
    padding:70px 0 30px;
    margin-top:0;
    position:relative;
    overflow:hidden;
}

.site-footer::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#0B4EA2,#39B8FF,#0B4EA2);
}

.site-footer .grid-4{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:50px;
}

.footer-widget h3{
    color:#fff;
    font-size:1.45rem;
    margin-bottom:20px;
    position:relative;
    padding-bottom:12px;
}

.footer-widget h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:45px;
    height:3px;
    background:#39B8FF;
    border-radius:20px;
}

.footer-widget p{
    color:rgba(255,255,255,.82);
    line-height:1.9;
}

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

.footer-links li{
    margin-bottom:14px;
    color:rgba(255,255,255,.82);
    transition:.3s;
}

.footer-links li:hover{
    transform:translateX(6px);
}

.footer-links a{
    color:rgba(255,255,255,.82);
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#fff;
}

.footer-bottom{
    margin-top:55px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.15);
    text-align:center;
}

.footer-bottom p{
    color:rgba(255,255,255,.75);
    line-height:1.9;
    margin:0;
}

.footer-bottom a{
    color:#39B8FF;
    font-weight:700;
    text-decoration:none;
}

.footer-bottom a:hover{
    color:#fff;
}

/* Tablet */

@media(max-width:992px){

.site-footer .grid-4{
grid-template-columns:repeat(2,1fr);
gap:40px;
}

}

/* Mobile */

@media(max-width:768px){

.site-footer{
padding:60px 0 25px;
}

.site-footer .grid-4{
grid-template-columns:1fr;
gap:35px;
text-align:center;
}

.footer-widget h3::after{
left:50%;
transform:translateX(-50%);
}

.footer-links li:hover{
transform:none;
}
 }
 
/* ==========================================
   SMOOTH SCROLL
========================================== */

html{
    scroll-behavior:smooth;
}
  /* =========================
   MOBILE MENU
========================= */

.mobile-toggle{
    display:none;
    background:none;
    border:none;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

@media (max-width:768px){

    .mobile-toggle{
        display:block;
        z-index:1001;
    }
.site-nav{
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    padding: 30px 0;
    background: rgba(11, 31, 71, 0.20);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 15px 40px rgba(0,0,0,.35);
    transition: .35s ease;
    z-index: 1000;
}
    .site-nav.active{
        left:0;
    }

    .site-nav ul{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:20px;
    }

    .site-nav ul li{
        margin:0;
    }

    .site-nav ul li a{
        color:#fff;
        font-size:18px;
    }
}
  .reveal{
    opacity:0;
    transform:translateY(60px);
    transition:opacity .8s ease, transform .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}
/* ==========================================
   ABOUT PAGE HERO - RESPONSIVE FIX
========================================== */

.about-hero .hero-right {
    max-width: 620px;
    padding-top: 100px;
}

.about-hero .hero-right h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.08;
    margin-bottom: 25px;
}

.about-hero .hero-right p {
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 600px;
}

/* Tablet */
@media (max-width: 1100px) {
    .about-hero .hero-right h1 {
        font-size: 3.5rem;
    }

    .about-hero .hero-right {
        padding-right: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-hero .hero-right {
        max-width: 100%;
        padding: 130px 0 60px;
        text-align: left;
    }

    .about-hero .hero-right h1 {
        font-size: 2.6rem;
        line-height: 1.1;
    }

    .about-hero .hero-right p {
        font-size: 1rem;
        line-height: 1.7;
    }
}
/* ==========================================
   FOOTER EMAIL OVERFLOW FIX
========================================== */

.footer-widget,
.footer-widget .footer-links,
.footer-widget .footer-links li {
    min-width: 0;
}

.footer-widget .footer-links a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Give Contact column slightly more room on desktop */
@media (min-width: 992px) {
    .site-footer .grid-4 {
        grid-template-columns: 1.1fr 0.9fr 0.9fr 1.3fr;
    }
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  background: #0b1b38;
  box-shadow: 0 12px 35px rgba(15, 35, 65, 0.12);
}

.gallery-item-large {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 20, 45, 0.9) 0%,
    rgba(5, 20, 45, 0.25) 50%,
    transparent 75%
  );
  pointer-events: none;
}

.gallery-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  color: #ffffff;
}

.gallery-caption span {
  display: block;
  margin-bottom: 7px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4bbcff;
}

.gallery-caption h3 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.25;
}


/* ==================================================
   GALLERY RESPONSIVE
================================================== */

@media (max-width: 900px) {

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item-large {
    grid-column: span 1;
  }

}


@media (max-width: 600px) {

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 35px;
  }

  .gallery-item {
    height: 300px;
  }

  .gallery-item-large {
    grid-column: span 1;
  }

  .gallery-caption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .gallery-caption h3 {
    font-size: 20px;
  }

}
/* Center the final large gallery card */
.gallery-grid .gallery-item-large:last-child {
  grid-column: 1 / span 2;
  justify-self: center;
  width: 100%;
}

/* Reduce excessive space below gallery */
.gallery-grid {
  margin-bottom: 20px;
}

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

.contact-section {
  background: #f4f8fc;
}

.contact-section .section-header {
  max-width: 820px;
  margin: 0 auto 55px;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  gap: 40px;
  align-items: start;
}


/* ==================================================
   CONTACT FORM CARD
================================================== */

.contact-form-card {
  background: #ffffff;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(15, 35, 65, 0.1);
  border-top: 5px solid #1764ad;
}

.contact-form-card h3 {
  margin: 0 0 10px;
  color: #10192d;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 700;
}

.contact-form-intro {
  margin: 0 0 32px;
  color: #687384;
  font-size: 16px;
  line-height: 1.7;
}


/* ==================================================
   FORM ELEMENTS
================================================== */

.contact-form-card form {
  width: 100%;
}

.contact-form-card .form-group {
  margin-bottom: 22px;
}

.contact-form-card label {
  display: block;
  margin-bottom: 9px;
  color: #182238;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 15px 16px;
  border: 1px solid #d7dee8;
  border-radius: 9px;
  background: #f9fbfd;
  color: #182238;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.contact-form-card input {
  min-height: 52px;
}

.contact-form-card select {
  min-height: 52px;
  cursor: pointer;
}

.contact-form-card textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: #98a2b1;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: #1764ad;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(23, 100, 173, 0.1);
}

.contact-submit {
  width: 100%;
  margin-top: 5px;
  border: none;
  cursor: pointer;
  min-height: 56px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
}


/* ==================================================
   CONTACT INFORMATION CARD
================================================== */

.contact-info-card {
  padding: 42px 38px;
  border-radius: 20px;
  background: linear-gradient(
    145deg,
    #071b3a 0%,
    #0b3970 55%,
    #1059a1 100%
  );
  color: #ffffff;
  box-shadow: 0 15px 45px rgba(15, 35, 65, 0.16);
}

.contact-info-card .kicker {
  color: #4bbcff;
}

.contact-info-card h3 {
  margin: 12px 0 18px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 29px;
  line-height: 1.25;
  font-weight: 700;
}

.contact-info-card > p {
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.75;
}


/* ==================================================
   CONTACT INFO ITEMS
================================================== */

.contact-info-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-info-item strong {
  display: block;
  margin-bottom: 7px;
  color: #4bbcff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-info-item span,
.contact-info-item a {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
}

.contact-info-item a:hover {
  color: #4bbcff;
}


/* ==================================================
   DIRECT CONTACT CTA
================================================== */

.contact-direct-cta {
  margin-top: 32px;
  padding: 26px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-direct-cta h4 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.contact-direct-cta p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.7;
}

.contact-direct-cta .btn {
  width: 100%;
  text-align: center;
}


/* ==================================================
   CONTACT RESPONSIVE
================================================== */

@media (max-width: 900px) {

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info-card {
    order: 2;
  }

}


@media (max-width: 600px) {

  .contact-section .section-header {
    margin-bottom: 35px;
  }

  .contact-form-card {
    padding: 28px 22px;
    border-radius: 16px;
  }

  .contact-form-card h3 {
    font-size: 25px;
  }

  .contact-info-card {
    padding: 30px 24px;
    border-radius: 16px;
  }

  .contact-info-card h3 {
    font-size: 25px;
  }

  .contact-form-card input,
  .contact-form-card select,
  .contact-form-card textarea {
    font-size: 16px;
  }

  .contact-direct-cta {
    padding: 22px;
  }

}

/* ==================================================
   THANK YOU PAGE
================================================== */

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  background: linear-gradient(
    135deg,
    #f7fafc 0%,
    #edf4ff 100%
  );
}

.thank-you-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.thank-you-card {
  width: 100%;
  max-width: 720px;
  padding: 60px 55px;
  background: #ffffff;
  border-radius: 24px;
  text-align: center;
  border-top: 5px solid var(--primary);
  box-shadow: 0 20px 60px rgba(15, 35, 65, 0.12);
}


/* Success Icon */

.thank-you-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #edf4ff;
  color: var(--primary);
  font-size: 42px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(11, 78, 162, 0.12);
}


/* Kicker */

.thank-you-card .section-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}


/* Heading */

.thank-you-card h1 {
  margin-bottom: 22px;
  color: var(--text-heading);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
}


/* Main Message */

.thank-you-message {
  max-width: 580px;
  margin: 0 auto 18px;
  color: #64748b;
  font-size: 1.08rem;
  line-height: 1.9;
}


/* Small Note */

.thank-you-note {
  margin: 0 auto 35px;
  color: #64748b;
  font-size: 0.95rem;
}


/* Buttons */

.thank-you-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.thank-you-actions .btn {
  min-width: 220px;
}

.thank-you-contact-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.thank-you-contact-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}


/* ==================================================
   THANK YOU PAGE RESPONSIVE
================================================== */

@media (max-width: 768px) {

  .thank-you-section {
    min-height: auto;
    padding: 120px 20px 70px;
  }

  .thank-you-card {
    padding: 45px 28px;
    border-radius: 20px;
  }

  .thank-you-icon {
    width: 72px;
    height: 72px;
    font-size: 34px;
  }

  .thank-you-card h1 {
    font-size: 2.4rem;
  }

  .thank-you-message {
    font-size: 1rem;
  }

}


@media (max-width: 480px) {

  .thank-you-card {
    padding: 40px 22px;
  }

  .thank-you-card h1 {
    font-size: 2rem;
  }

  .thank-you-actions .btn {
    width: 100%;
    min-width: 0;
  }

}
/* ==================================================
   AFEKS TV - STORY FEATURE
================================================== */

.story-media {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.afeks-tv-card {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 24px 28px;
    background: linear-gradient(135deg, #071a3d 0%, #0d4f91 100%);
    border-radius: 18px;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(7, 26, 61, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.afeks-tv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(7, 26, 61, 0.22);
    color: #ffffff;
    text-decoration: none;
}

.afeks-tv-icon {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #0d4f91;
    font-size: 22px;
    padding-left: 3px;
}

.afeks-tv-content {
    flex: 1;
}

.afeks-tv-content span {
    display: block;
    margin-bottom: 5px;
    color: #4bbcff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.afeks-tv-content h3 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.3;
}

.afeks-tv-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
}

.afeks-tv-arrow {
    flex-shrink: 0;
    color: #ffffff;
    font-size: 28px;
    transition: transform 0.3s ease;
}

.afeks-tv-card:hover .afeks-tv-arrow {
    transform: translateX(5px);
}


/* Mobile */
@media (max-width: 600px) {

    .afeks-tv-card {
        padding: 20px;
        gap: 15px;
    }

    .afeks-tv-icon {
        width: 50px;
        height: 50px;
        font-size: 19px;
    }

    .afeks-tv-content h3 {
        font-size: 18px;
    }

    .afeks-tv-content p {
        font-size: 13px;
    }

    .afeks-tv-arrow {
        display: none;
    }

}