/* ===== Base ===== */
:root{
  --bg:#160e16;
  --bg-hero:#160e16;
  --text:#ffffff;
  --accent:#f6ae2d;        /* orange like screenshot */
  --btn-start:#ff5a6a;
  --btn-end:#6359ff;
  --card-grad-top:#ffffff;
  --card-grad-bottom:#ffb3b3;
  --muted:#d9d9d9;
  --shadow:0 10px 25px rgba(0,0,0,.25);
  --radius-lg:18px;
  --radius-md:14px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 500px at 50% -200px, #0f1a22 0%, var(--bg) 40%, var(--bg) 100%);
  line-height:1.4;
  scroll-behavior:smooth;
}

.container{max-width:1150px;margin-inline:auto;padding-inline:20px}
.section{padding:48px 0}

/* ===== Header / Nav ===== */
.site-header{
  position:fixed; 
  top:0; 
  left: 0;
  width: 100%;
  z-index:50;
  background: transparent;
}
.nav-shell{
  max-width:1250px;margin:10px auto;padding:0 10px;
  display:flex; align-items:center; gap:12px;
  background: var(--accent);
  border-radius:999px;
  box-shadow:var(--shadow);
}
.brand{display:flex; align-items:center; padding:6px 10px}
.brand img{height:42px; width:auto; display:block; border-radius:12px}

/* desktop nav */
.nav{display:flex; gap:28px; margin-left:auto; margin-right:12px}
.nav a{
  color:#1a1a1a; 
  font-weight:600; 
  text-decoration:none;
  padding:12px 10px; 
  border-radius:999px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #1a1a1a;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav a:hover::after {
  width: 80%;
}

/* hamburger (mobile) */
.hamburger{display:none; margin-left:auto; background:none; border:0; padding:10px; cursor:pointer}
.hamburger span{display:block; width:24px; height:2px; background:#1a1a1a; margin:5px 0; transition:.3s}

/* ===== Hero ===== */
.hero{
  min-height:100vh; 
  display:flex; 
  align-items:center; 
  position:relative; 
  overflow:hidden;
  padding: 0 5%;
  margin-top: 0;
}
.hero-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(
    90deg,
    rgba(22, 14, 22, 0.9) 0%,
    rgba(22, 14, 22, 0.75) 50%,
    rgba(22, 14, 22, 0.6) 100%
  );
}
.hero-inner{
  max-width:720px; 
  padding:0 24px; 
  position:relative; 
  z-index:1;
  margin-right: auto;
  margin-top: 80px;
}

.hero-logo-container {
  text-align: left;
  margin-left: -50px;
}

.hero-main-logo {
  height: auto;
  width: clamp(400px, 60vw, 800px);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
  transition: transform 0.3s ease;
}

.hero-main-logo:hover {
  transform: scale(1.02);
}

.hero-title{
  margin:0 0 10px 0;
  font-size: clamp(36px, 6vw, 64px);
  font-weight:800;
  letter-spacing:.3px;
  background: linear-gradient(180deg, #cfd4f1 0%, #ffffff 55%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  text-shadow: 0 8px 18px rgba(0,0,0,.35);
}
.hero-sub{
  margin:8px 0 22px;
  font-size: clamp(18px, 2.6vw, 28px);
  font-weight:700;
  background: linear-gradient(90deg, #ffce3a, #ff7a38);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
}

.attention-text {
  background: linear-gradient(90deg, #ffffff, #243e9c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  font-size: clamp(22px, 3vw, 32px);
}
.btn-primary{
  display:inline-block;
  padding:12px 22px;
  border-radius:999px;
  text-decoration:none;
  color:#fff; 
  font-weight:700;
  background: linear-gradient(90deg, var(--btn-start), var(--btn-end));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  transform: translateY(0);
}

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

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3), 0 5px 15px rgba(255,90,106,0.4);
  background: linear-gradient(90deg, #ff6b7a, #7d6fff);
}

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

.btn-primary:active {
  transform: translateY(-1px) scale(1.02);
  transition: all 0.1s ease;
}

/* ===== Section titles ===== */
.section-title{
  margin:0 0 22px 0;
  text-align:center;
  font-size: clamp(32px, 5vw, 56px);
  font-weight:800;
  background: linear-gradient(180deg, #cfd4f1 0%, #ffffff 55%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  text-shadow: 0 8px 18px rgba(0,0,0,.35);
}

/* ===== Mentors Slider ===== */
.mentors-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 46px;
  padding: 0 60px;
}

.mentors-slider {
  overflow: hidden;
  margin: 0 -10px;
  padding: 20px 10px;
}

.mentors-track {
  display: flex;
  transition: transform 0.5s ease;
}

.mentor-card {
  flex: 0 0 100%;
  margin: 0;
  display: flex;
  gap: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.mentor-image {
  flex: 0 0 300px;
}

.mentor-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 16px;
  background: var(--muted);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mentor-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mentor-info h3 {
  font-size: 2rem;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}

.mentor-info h4 {
  font-size: 1.2rem;
  color: var(--accent);
  margin: 0 0 1rem 0;
  font-weight: 500;
}

.mentor-info p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

@media (max-width: 1200px) {
  .mentor-card {
    gap: 2.5rem;
    padding: 1.8rem;
  }
  
  .mentor-image {
    flex: 0 0 280px;
  }
}

@media (max-width: 900px) {
  .mentor-card {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem;
    max-width: 100%;
  }

  .mentor-image {
    flex: 0 0 auto;
    max-width: 250px;
    margin: 0 auto;
  }

  .mentor-info {
    text-align: center;
  }

  .mentors-slider-container {
    padding: 0 40px;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .mentor-card {
    padding: 1.2rem;
    gap: 1.5rem;
  }
  
  .mentor-image {
    max-width: 220px;
  }

  .mentor-info h3 {
    font-size: 1.6rem;
  }

  .mentor-info h4 {
    font-size: 1.1rem;
  }

  .mentor-info p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .mentors-slider-container {
    padding: 0 35px;
  }
}

@media (max-width: 480px) {
  .mentor-card {
    padding: 1rem;
    gap: 1rem;
  }
  
  .mentor-image {
    max-width: 180px;
  }

  .mentor-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
  }

  .mentor-info h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .mentor-info p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .mentors-slider-container {
    padding: 0 25px;
  }
  
  .slider-btn {
    width: 35px;
    height: 35px;
  }
  
  .slider-btn svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 360px) {
  .mentor-card {
    padding: 0.8rem;
  }
  
  .mentor-image {
    max-width: 150px;
  }

  .mentor-info h3 {
    font-size: 1.2rem;
  }

  .mentor-info h4 {
    font-size: 0.9rem;
  }

  .mentor-info p {
    font-size: 0.85rem;
  }

  .mentors-slider-container {
    padding: 0 20px;
  }
}

/* ===== Cheat day culture ===== */
.cheat-grid{
  display:flex; justify-content:center; gap:28px; padding-inline:14px;
}
.cheat-card{
  width: 100%;
  max-width: 100%;
}
.cheat-card img{
  width:100%; 
  height: auto;
  object-fit: contain;
  border-radius:16px; 
  background: transparent;
  box-shadow:var(--shadow);
}

/* ===== Goals Section ===== */
.goals-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  margin-top: 4rem;
  align-items: center;
  padding: 0 20px;
}

.goals-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.goals-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.goals-main h2 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 800;
}

.goals-main h3 {
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.goals-main p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
}

.goals-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.goals-box {
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  padding: 2.5rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.goals-box h3 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  background-color: #243e9c;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
}

.goals-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.goals-box ul li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--muted);
  line-height: 1.5;
}

.goals-box ul li::before {
  content: "•";
  color: #ffffff;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #243e9c;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.box-stat {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.box-stat h4 {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 800;
  line-height: 1.1;
  background-color: #243e9c;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
}

.box-stat p {
  color: var(--text);
  font-weight: 600;
  margin: 0;
  font-size: 1.4rem;
}

@media (max-width: 992px) {
  .goals-boxes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .goals-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .goals-image img {
    height: 400px;
  }
  
  .goals-boxes {
    grid-template-columns: 1fr;
  }
}

/* ===== Courses ===== */
.courses .course-tabs{
  align-items:center; justify-content:center;
  display:flex; gap:10px; flex-wrap:wrap;
  padding:10px; margin:10px auto 28px;
  max-width:900px; background:var(--accent);
  border-radius:999px;
  box-shadow:var(--shadow);
}
.course-tabs .tab-btn{
  border:0; background:transparent; font-weight:700; cursor:pointer;
  padding:10px 20px; border-radius:999px; color:#1a1a1a;
}
.course-tabs .tab-btn.active{background:rgba(255,255,255,.45)}

.course-cards{display:block}
.course-content{display:none; gap:22px; justify-content:center; flex-wrap:wrap}
.course-content.active{display:flex}

.course-card{
  width:min(100%,340px);
  border-radius:20px; 
  padding:16px;
  background: linear-gradient(180deg, var(--card-grad-top), var(--card-grad-bottom));
  color:#161516;
  box-shadow:var(--shadow);
  transition: transform 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
}

.course-card p {
  margin: 12px 0;
}

.course-img {
  width: 100%;
  border-radius: 10px;
  margin-top: 8px;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.badge{
  display:inline-block; background:var(--accent); padding:8px 16px;
  border-radius:999px; font-weight:700; margin-bottom:10px;
}

/* ===== Results Section ===== */
.results-slider-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 30px;
  padding: 0 60px;
}

.results-slider {
  overflow: hidden;
  margin: 0 -10px;
  padding: 20px 10px;
}

.results-track {
  display: flex;
  transition: transform 0.5s ease;
}

.result-slide {
  flex: 0 0 100%;
  padding: 0 10px;
}

.result-img {
  width: 200px;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin: 0 auto;
  display: block;
}

.result-caption {
  text-align: center;
  margin-top: 20px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.result-caption h3 {
  font-size: 1.5rem;
  margin: 0 0 8px;
  background: linear-gradient(90deg, var(--accent), #ff7a38);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.result-caption p {
  font-size: 1.1rem;
  margin: 0;
  color: #ffffff;
}

.results-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.results-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

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

@media (max-width: 768px) {
  .result-img {
    width: 160px;
    height: auto;
  }
  .results-slider-container {
    padding: 0 40px;
  }
}

@media (max-width: 480px) {
  .result-img {
    width: 120px;
    height: auto;
  }
  .results-slider-container {
    padding: 0 30px;
  }
}

/* ===== Pamphlets Slideshow ===== */
.pamphlets-slider-container {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 30px;
  padding: 0 60px;
}

.pamphlets-slider {
  overflow: hidden;
  margin: 0 auto;
}

.pamphlets-track {
  display: flex;
  transition: transform 0.5s ease;
}

.pamphlet-slide {
  flex: 0 0 100%; /* Show 1 pamphlet at a time on all screens */
  display: flex;
  justify-content: center;
  align-items: center;
}

.pamphlet-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  display: block;
  background: transparent;
}

.pamphlet-slide:hover .pamphlet-img {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.pamphlets-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.pamphlets-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

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

/* Responsive pamphlets layout */
@media (max-width: 768px) {
  .pamphlets-slider-container {
    padding: 0 40px;
  }
  .pamphlet-img {
    max-width: 700px;
  }
}

@media (max-width: 640px) {
  .pamphlets-slider-container {
    padding: 0 30px;
  }
  .pamphlet-img {
    max-width: 100%;
  }
}

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

/* ===== Student Journey Section ===== */
.journey-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.journey-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.journey-img {
  width: 100%;
  display: block;
  transition: transform 0.8s ease;
}

.journey-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(22, 14, 22, 0.9) 0%,
    rgba(22, 14, 22, 0.7) 30%,
    rgba(22, 14, 22, 0.4) 60%,
    rgba(22, 14, 22, 0.1) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
}

.journey-image:hover .journey-overlay {
  transform: translateY(0);
  opacity: 1;
}

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

.journey-overlay h3 {
  color: var(--accent);
  font-size: 2rem;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.journey-overlay p {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0;
  max-width: 600px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .journey-overlay {
    padding: 30px 20px;
  }
  
  .journey-overlay h3 {
    font-size: 1.5rem;
  }
  
  .journey-overlay p {
    font-size: 1rem;
  }
}

/* ===== Happy Customers (Reviews) Section ===== */
.reviews-slider-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 30px;
  padding: 0 60px;
}

.reviews-slider {
  overflow: hidden;
  margin: 0 -10px;
  padding: 20px 10px;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-slide {
  flex: 0 0 100%;
  padding: 0 10px;
}

.review-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-content {
  margin-bottom: 30px;
}

.review-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  margin: 0;
  position: relative;
}

.review-content p::before {
  content: '"';
  font-size: 3rem;
  color: var(--accent);
  position: absolute;
  left: -20px;
  top: -10px;
  font-family: serif;
}

.review-content p::after {
  content: '"';
  font-size: 3rem;
  color: var(--accent);
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-family: serif;
}

.review-author h4 {
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0;
  font-weight: 600;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.reviews-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

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

@media (max-width: 768px) {
  .reviews-slider-container {
    padding: 0 40px;
  }
  
  .review-card {
    padding: 30px 25px;
  }
  
  .review-content p {
    font-size: 1.1rem;
  }
  
  .review-content p::before,
  .review-content p::after {
    font-size: 2.5rem;
  }
  
  .review-author h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .reviews-slider-container {
    padding: 0 30px;
  }
  
  .review-card {
    padding: 25px 20px;
  }
  
  .review-content p {
    font-size: 1rem;
  }
  
  .review-content p::before {
    left: -15px;
    top: -5px;
  }
  
  .review-content p::after {
    right: -15px;
    bottom: -15px;
  }
  
  .review-author h4 {
    font-size: 1.1rem;
  }
}

/* ===== Contact Section ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.contact-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  padding: 25px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card svg {
  color: var(--accent);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: var(--accent);
}

.contact-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.contact-card p span {
  display: block;
  white-space: nowrap;
}

/* Contact Form */
.contact-form {
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  padding: 40px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.15);
}

.contact-form option {
  background: #1a1a1a;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, var(--btn-start), var(--btn-end));
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 30px;
  }
}

/* ===== Footer ===== */
.footer{padding:30px 0 60px; text-align:center; color:#cfcfcf}
.small{font-size:.9rem}

/* ===== Scroll Animations ===== */
[data-animate]{opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease}
.revealed{opacity:1 !important; transform:none !important}
[data-delay="50"]{transition-delay:.05s}
[data-delay="100"]{transition-delay:.1s}
[data-delay="150"]{transition-delay:.15s}
[data-delay="200"]{transition-delay:.2s}

/* ===== Responsive ===== */
@media (max-width: 1100px){
  .mentors-grid{grid-template-columns: repeat(4, 1fr)}
}
@media (max-width: 900px){
  .mentors-grid{grid-template-columns: repeat(3, 1fr)}
}
@media (max-width: 700px){
  .mentors-grid{grid-template-columns: repeat(2, 1fr)}
}

/* Hero logo responsive styles */
@media (max-width: 768px) {
  .hero-main-logo {
    width: clamp(250px, 60vw, 400px);
  }
}

@media (max-width: 480px) {
  .hero-main-logo {
    width: clamp(200px, 80vw, 300px);
  }
  
  .hero-logo-container {
    margin-bottom: 15px;
  }
}

/* Mobile nav behavior */
@media (max-width: 820px){
  .hamburger{display:block}
  .nav{
    position:fixed; inset:auto 10px 10px 10px; top:70px;
    display:none; flex-direction:column; gap:8px;
    background:var(--accent); border-radius:18px; padding:10px;
    box-shadow:var(--shadow);
  }
  .nav a{padding:12px; background:rgba(255,255,255,.35); border-radius:12px}
  .nav.open{display:flex}
}

/* Tiny screens */
@media (max-width: 480px){
  .mentor-card figcaption{font-size:.85rem}
}
