@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800&display=swap");

:root {
  --primary: #ce2945; /* Red */
  --secondary: #4a95c7; /* Deep Teal-blue */
  --accent: #4a95c7; /* Light blue secondary */
  --dark: #0d0d0d;
  --dark-gray: #333333;
  --gray: #666666;
  --light-gray: #f0f0f0;
  --light: #f9f9f9;
  --white: #ffffff;
  --success: #2e7d32;
  --heading-font: "Montserrat", sans-serif;
  --body-font: "Inter", sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 24px;
}
.programs-section .container {
  padding-top: 0;
  padding-bottom: 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

/* Subtitles */
.section-subtitle {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: block;
}

/* Section Title */
.section-title {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

.section-desc {
  font-size: 16px;
  color: var(--gray);
  max-width: 800px;
  margin-bottom: 40px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: #3982b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 149, 199, 0.3);
}

.btn-dark {
  background: var(--secondary);
  color: var(--white);
}

.btn-dark:hover {
  background: #1e4753;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42, 97, 113, 0.3);
}

.btn-red {
  background: var(--primary);
  color: var(--white);
}

.btn-red:hover {
  background: #b5203a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(206, 41, 69, 0.3);
}

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

/* Section Spacing */
section {
  padding: 40px 0;
  position: relative;
}

.nav-spacer {
  height: 88px;
  background: var(--white);
  width: 100%;
}

/* ============================================================
   NAVBAR
============================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-top: 18px;
  background: #ffffff; /* CHANGE: transparent → #ffffff */
 
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-family: var(--body-font);
  font-size: 0.92rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  padding: 7px 16px;
  transition: color 0.25s ease;
}
.nav-link:hover {
  color: var(--secondary);
}
/* active = primary (red/pink) */
.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-contact {
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  background: var(--secondary);
  padding: 10px 26px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--secondary);
  transition: var(--transition);
  white-space: nowrap;
  display: inline-block;
  line-height: 1.2;
}
.btn-contact:hover {
  background: transparent;
  color: var(--secondary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
}
.hamburger:hover {
  background: rgba(0, 0, 0, 0.05);
}
.bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}
.mobile-menu.open {
  max-height: 400px;
  padding: 12px 0 20px;
}
.mobile-link {
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  padding: 14px 32px;
  transition:
    color 0.2s,
    background 0.2s;
}
.mobile-link:hover {
  color: var(--secondary);
  background: rgba(74, 149, 199, 0.05);
}
.mobile-link.active {
  color: var(--primary);
  font-weight: 600;
}
.mobile-cta {
  margin: 12px 32px 0;
  text-align: center;
  padding: 12px 24px;
}


/* ==========================================
   HERO SECTION — Language Page
   Same as global-degree.html exactly
   ========================================== */

.hero-section {
  padding-top: 60px;
  padding-bottom: 0;
  background: var(--white);
  overflow: hidden;
}

.hero-section .container {
  padding-top: 0 !important;
  padding-bottom: 60px !important;
}

/* 2-column layout */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── LEFT: Text ── */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 8px;

  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.hero-content.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.hero-subtitle {
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.3px;
  margin-bottom: 14px;
  display: block;
  text-transform: none;

  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s ease 0.08s,
    transform 0.5s ease 0.08s;
}
.hero-content.is-visible .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  font-family: var(--heading-font);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.18;
  margin-bottom: 20px;
  max-width: 440px;
  word-break: break-word;

  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease 0.18s,
    transform 0.65s ease 0.18s;
}
.hero-content.is-visible .hero-title {
  opacity: 1;
  transform: translateY(0);
}

.hero-desc {
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;

  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.6s ease 0.3s,
    transform 0.6s ease 0.3s;
}
.hero-content.is-visible .hero-desc {
  opacity: 1;
  transform: translateY(0);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;

  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.55s ease 0.42s,
    transform 0.55s ease 0.42s;
}
.hero-content.is-visible .hero-ctas {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn-hero-primary {
  background: #4a8fa8;
  color: var(--white);
  border: 2px solid #4a8fa8;
  border-radius: 50px;
  padding: 12px 32px;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-hero-primary:hover {
  background: #3a7a95;
  border-color: #3a7a95;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(74, 143, 168, 0.35);
}

.btn-hero-secondary {
  background: transparent;
  color: #333;
  border: 2px solid #ccc;
  border-radius: 50px;
  padding: 12px 32px;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-hero-secondary:hover {
  border-color: #333;
  background: #f5f5f5;
  transform: translateY(-2px);
}

/* ── RIGHT: Image + Form Card ── */
.hero-form-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 6px 36px rgba(0, 0, 0, 0.1);
  border: 1px solid #e8e8e8;
  overflow: visible;
  position: relative;
  min-height: 380px;

  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.75s ease 0.2s,
    transform 0.75s ease 0.2s;
}
.hero-form-card.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.hero-card-image {
  flex: 0 0 35%;
  overflow: hidden;
  border-radius: 16px 0 0 16px;
}

.hero-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.hero-form-card:hover .hero-card-img {
  transform: scale(1.03);
}

.hero-card-form {
  flex: 1;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  border-radius: 0 20px 20px 0;
  z-index: 1;
}

.hero-card-form h3 {
  font-family: var(--heading-font);
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}

.form-title-bar {
  width: 36px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.form-row.full-width {
  grid-template-columns: 1fr;
}

.hero-card-form input,
.hero-card-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  background: #f5f5f5;
  font-family: var(--body-font);
  font-size: 13px;
  color: #333;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.hero-card-form input::placeholder,
.hero-card-form textarea::placeholder {
  color: #aaa;
  font-size: 13px;
}
.hero-card-form input:focus,
.hero-card-form textarea:focus {
  border-color: #4a8fa8;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(74, 143, 168, 0.1);
}

.hero-card-form textarea {
  resize: none;
  min-height: 80px;
}

.form-submit-btn {
  align-self: flex-start;
  border-radius: 50px;
  font-size: 14px;
  padding: 12px 36px;
  border: none;
  margin-top: 4px;
  cursor: pointer;
  font-weight: 600;
}

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

@media (max-width: 1280px) {
  .hero-title {
    font-size: 2.3rem;
    max-width: 300px;
  }
}

@media (max-width: 1024px) {
  .hero-section {
    padding-top: 80px;
  }
  .hero-container {
    gap: 32px;
  }
  .hero-title {
    font-size: 2rem;
    max-width: 280px;
  }
  .hero-form-card {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  /* Navbar: solid white on mobile always */
  .navbar {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }
  .nav-links {
    display: none;
  }
  .nav-right .btn-contact {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
  .nav-container {
    padding: 0 24px;
  }

  .hero-section {
    padding-top: 40px;
  }
  .hero-section .container {
    padding-top: 0 !important;
    padding-bottom: 32px !important;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    max-width: 100%;
  }

  .hero-form-card {
    flex-direction: column;
    overflow: hidden;
    min-height: auto;
  }
  .hero-card-image {
    flex: 0 0 220px;
    height: 220px;
    width: 100%;
    border-radius: 20px 20px 0 0;
  }
  .hero-card-form {
    border-radius: 0 0 20px 20px;
    padding: 24px 20px;
  }
  .form-submit-btn {
    align-self: stretch;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding-top: 40px;
  }
  .hero-title {
    font-size: 1.7rem;
    margin-bottom: 14px;
  }
  .hero-desc {
    font-size: 13.5px;
    margin-bottom: 24px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 10px;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 10px;
  }
  .hero-card-image {
    flex: 0 0 180px;
    height: 180px;
  }
  .hero-card-form {
    padding: 18px 16px;
  }
  .hero-card-form h3 {
    font-size: 17px;
  }
}

/* ==========================================
   PROGRAMS SECTION
   ========================================== */
.programs-section {
  background: var(--white);
  padding-top: 0;
}

.programs-section .section-subtitle {
  text-transform: none; /* Keeps casing exactly as in screenshot "Lorem Ipsum" */
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--primary);
  margin-bottom: 8px;
  text-align: center;
}

.programs-section .section-title {
  font-size: 44px; /* Larger, premium size matching screenshot */
  font-weight: 800; /* Bold/thick font */
  line-height: 1.15;
  color: var(--primary);
  max-width: 650px; /* Forces wrap to 2 lines exactly like "Explore Our German \n Language Programs" */
  margin: 10px auto 16px auto;
  text-align: center;
}

.programs-section .section-desc {
  max-width: 680px; /* Forces wrap exactly like "Choose the learning pathway that matches your current level, career goals, \n and Germany preparation plans." */
  margin: 0 auto;
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.5;
  text-align: center;
}

.programs-carousel-container {
  position: relative;
  margin-top: 40px;
}

.programs-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide scrollbar Firefox */
  padding: 10px 4px;
  scroll-snap-type: x mandatory;
}

.programs-track::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.program-card {
  flex: 0 0 calc(25% - 18px);
  background: var(--primary);
  color: var(--white);
  border-radius: 20px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  box-shadow: 0 6px 20px rgba(206, 41, 69, 0.15);
  transition: var(--transition);
  scroll-snap-align: start;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(206, 41, 69, 0.25);
}

.program-card-title {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.program-card-desc {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.program-card-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.program-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.program-card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.program-card-hours {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.btn-program-enquire {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.btn-program-enquire:hover {
  background: transparent;
  color: var(--white);
}

/* Dots styling */
.programs-dots {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.programs-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

/* responshive */

/* ==========================================
   EXAM PREP SECTION
   ========================================== */
.exam-prep-section {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid #f0f0f0;
}
.exam-prep-container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.exam-prep-container {
  display: grid;
  grid-template-columns: 1.15fr 1.35fr;
  gap: 48px;
  align-items: center;
}

.exam-prep-info {
  display: flex;
  flex-direction: column;
}

.exam-prep-info .section-subtitle {
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--primary);
  margin-bottom: 8px;
  text-align: left;
}

.exam-prep-info .section-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
  margin: 10px 0 16px 0;
  max-width: 460px;
  text-align: left;
}

.exam-prep-info .section-desc {
  font-size: 16px;
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 410px;
  text-align: left;
}

.exam-prep-nav {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.exam-prep-nav .slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.exam-prep-nav .slider-arrow.prev {
  background: #a5c3cd;
  color: var(--white);
}

.exam-prep-nav .slider-arrow.next {
  background: #2a6171;
  color: var(--white);
}

.exam-prep-nav .slider-arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42, 97, 113, 0.2);
}

/* Right Column: Carousel container */
.exam-prep-carousel-container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.exam-prep-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 4px;
  scroll-snap-type: x mandatory;
}

.exam-prep-track::-webkit-scrollbar {
  display: none;
}

.exam-card {
  flex: 0 0 310px;
  background: #346a7c;
  color: var(--white);
  border-radius: 20px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  box-shadow: 0 6px 20px rgba(52, 106, 124, 0.15);
  transition: var(--transition);
  scroll-snap-align: start;
}

.exam-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(52, 106, 124, 0.25);
}

.exam-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.badge-square {
  background: var(--white);
  color: var(--primary);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.badge-pill {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.exam-card-body {
  flex: 1;
}

.exam-card-title {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.exam-card-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.exam-card-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exam-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.exam-card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.exam-card-hours {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.btn-exam-enquire {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.btn-exam-enquire:hover {
  background: transparent;
  color: var(--white);
}

/* Scroll progress bar */
.scroll-progress {
  height: 4px;
  background: #e5e5e5;
  border-radius: 2px;
  width: 100%;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.scroll-progress .progress-bar {
  height: 100%;
  background: #346a7c;
  width: 40%;
  border-radius: 2px;
  transition: left 0.3s ease;
  position: absolute;
  left: 0;
}

@media (max-width: 768px) {
  .exam-prep-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .exam-prep-info {
    text-align: center;
    align-items: center;
  }

  .exam-prep-info .section-title {
    max-width: 100%;
    font-size: 36px;
  }

  .exam-prep-info .section-desc {
    max-width: 100%;
  }

  .exam-prep-nav {
    justify-content: center;
  }

  .exam-card {
    flex: 0 0 85%;
  }
}

/* ==========================================
   INCLUDED SECTION
   ========================================== */
.included-section {
  background: var(--white);
  padding: 50px 0;
  border-top: 1px solid #f0f0f0;
  margin-top: 0; /* remove any inherited margin */
}

.included-section .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.included-section .section-subtitle {
  display: block;
  text-transform: none;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 10px;
  text-align: center;
}

.included-section .section-title {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
  max-width: 650px;
  margin: 0 auto 16px;
  text-align: center;
}

.included-section .section-desc {
  font-family: var(--body-font);
  max-width: 660px;
  margin: 0 auto 0;
  font-size: 0.94rem;
  color: #555;
  line-height: 1.7;
  text-align: center;
}

/* ---- Grid ---- */
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  align-items: stretch;
}

/* ---- Card ---- */
.included-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid #e2edf0;
  box-shadow: 0 4px 20px rgba(74, 149, 199, 0.04);
  border-radius: 16px;
  padding: 24px 20px;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.included-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(206, 41, 69, 0.1);
  border-color: rgba(206, 41, 69, 0.3);
}

/* ---- Icon Box ---- */
.included-card-icon-box {
  flex-shrink: 0;
}

.icon-square {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--primary);
  border-radius: 10px;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.included-card:hover .icon-square {
  background: var(--secondary);
  transform: scale(1.08) rotate(-4deg);
}

/* ---- Text ---- */
.included-card-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.included-card-title {
  font-family: var(--heading-font);
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f3542;
  line-height: 1.25;
}

.included-card-desc {
  font-family: var(--body-font);
  font-size: 0.8rem;
  color: #666;
  line-height: 1.6;
}

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

/* 1280 */
@media (max-width: 1280px) {
  .included-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

/* 1024 — 2 columns */
@media (max-width: 1024px) {
  .included-section {
    padding: 64px 0;
  }
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 36px;
    align-items: stretch;
  }
}

/* 768 — 2 columns tight */
@media (max-width: 768px) {
  .included-section {
    padding: 52px 0;
  }
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px;
  }
  .included-card {
    padding: 18px 14px;
    gap: 12px;
    border-radius: 12px;
  }
  .icon-square {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  .included-card-title {
    font-size: 0.87rem;
  }
  .included-card-desc {
    font-size: 0.77rem;
  }
}

/* 480 — 1 column */
@media (max-width: 480px) {
  .included-section {
    padding: 40px 0;
  }
  .included-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }
  .included-card {
    padding: 16px 14px;
  }
  .included-section .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
}

/* ==========================================
   WHY CHOOSE US & QUOTE
   ========================================== */
.why-choose-section {
  background: #f4f8fc;
  padding: 60px 0;
  border-top: 1px solid #f0f0f0;
}

/* Remove extra container spacing */
.why-choose-section .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.why-choose-container {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1.15fr;
  gap: 40px;
  align-items: stretch;
}

.why-choose-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-choose-left h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--primary);
  line-height: 1.2;
}

.why-choose-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-choose-features li {
  display: flex;
  gap: 16px;
  align-items: center;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.feature-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(206, 41, 69, 0.2);
}

.feature-icon svg {
  stroke: var(--white);
}

.feature-text h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--dark);
  font-weight: 700;
}

.feature-text p {
  font-size: 13px;
  color: var(--gray);
}

/* Portrait Card */
.why-choose-middle {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.portrait-card {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

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

/* Quote Card */
.why-choose-right {
  display: flex;
  align-items: stretch;
}

.quote-card {
  background: #e2edf8;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  border: none;
  box-shadow: var(--shadow-md);
}

.quote-mark {
  font-size: 52px;
  font-family: var(--heading-font);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.quote-card h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.quote-card p {
  font-size: 14px;
  color: var(--dark-gray);
  margin-bottom: 24px;
  line-height: 1.6;
}

.quote-divider {
  border: none;
  height: 2px;
  background: var(--primary);
  position: relative;
  margin-bottom: 16px;
  width: 100%;
}

.quote-divider::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.quote-author {
  display: block;
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
}

.quote-title {
  display: block;
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

.quote-award {
  display: block;
  font-size: 11px;
  color: var(--gray);
  margin-top: 4px;
  font-weight: 500;
}

/* ==========================================
   OUR PROCESS SECTION
   ========================================== */
.process-section {
  background: var(--white);
  padding: 50px 0;
  border-top: 1px solid #f0f0f0;
}

.process-section .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.process-wrapper {
  position: relative;
  margin-top: 20px;
  padding: 20px 0;
}

.process-line {
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: var(--primary);
  z-index: 1;
  transform: translateY(-50%);
  border-radius: 2px;
}

.process-nodes {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.process-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  cursor: pointer;
}

.node-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e2edf0;
  border: 4px solid var(--white);
  margin-bottom: 24px;
  box-shadow: 0 0 0 4px rgba(42, 97, 113, 0.05);
  z-index: 3;
  transition: var(--transition);
}

.node-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
}

.node-icon svg {
  transition: var(--transition);
}

.node-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--heading-font);
  line-height: 1.3;
  max-width: 140px;
}

.process-node:hover .node-dot {
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(206, 41, 69, 0.15);
}

.process-node:hover .node-icon svg {
  transform: scale(1.1);
}

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

@media (max-width: 1024px) {
  .process-section {
    padding: 40px 0;
  }

  .process-line {
    left: 6%;
    right: 6%;
  }

  .node-label {
    font-size: 13px;
    max-width: 110px;
  }

  .node-icon {
    width: 44px;
    height: 44px;
  }

  .node-icon svg {
    width: 28px;
    height: 28px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .process-section {
    padding: 36px 0;
  }

  .process-wrapper {
    margin-top: 10px;
    padding: 0;
  }

  .process-nodes {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }

  .process-line {
    width: 4px;
    height: calc(100% - 50px);
    left: 12px;
    top: 20px;
    right: auto;
    transform: none;
  }

  .process-node {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 16px;
    padding-left: 0;
  }

  .node-dot {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .node-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .node-label {
    max-width: none;
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .process-section {
    padding: 28px 0;
  }

  .process-line {
    left: 11px;
  }

  .node-dot {
    width: 20px;
    height: 20px;
  }

  .node-icon {
    width: 38px;
    height: 38px;
  }

  .node-icon svg {
    width: 24px;
    height: 24px;
  }

  .node-label {
    font-size: 14px;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
  background: var(--white);
  padding: 50px 0;
}

.faq-section .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* ==========================================
   FAQ 2-COLUMN GRID LAYOUT
   ========================================== */
.faq-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  align-items: start;
}

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

.faq-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.faq-card.active {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.faq-card-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.faq-icon {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
  transition: var(--transition);
}

.faq-card.active .faq-icon {
  color: var(--success);
}

.faq-card-question {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.5;
  user-select: none;
}

.faq-card-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.25s ease-out,
    margin-top 0.25s ease-out;
  padding-left: 30px;
}

.faq-card.active .faq-card-body {
  margin-top: 12px;
}

.faq-card-answer {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ==========================================
   RESPONSIVENESS / MEDIA QUERIES
   ========================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }

  /* Combined Card Form Mobile: stack image on top of form, auto height */
  .hero-form-card {
    flex-direction: column;
    height: auto;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-card-image {
    flex: 0 0 160px;
    height: 160px;
  }

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

  .hero-card-form {
    padding: 24px;
  }

  .program-card {
    flex: 0 0 calc(50% - 12px);
  }

  .programs-dots {
    display: flex;
  }

  /* Exam Prep Responsive */
  .exam-prep-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .exam-prep-info .section-subtitle,
  .exam-prep-info .section-title,
  .exam-prep-info .section-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .exam-prep-nav {
    justify-content: center;
    margin-bottom: 10px;
  }

  .exam-card {
    flex: 0 0 320px;
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Why Choose Us Section */
  .why-choose-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-choose-middle {
    order: 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .program-card {
    flex: 0 0 80vw;
    scroll-snap-align: center;
  }
  .programs-dots {
    display: flex; /* mobile par show karo */
  }
  section {
    padding: 40px 0;
  }

  /* Header Mobile Styles */
  .logo-title {
    font-size: 14px;
  }

  .logo-subtitle {
    font-size: 8px;
    letter-spacing: 0.5px;
  }

  .contact-btn {
    padding: 6px 14px;
    font-size: 11px;
    margin-right: 8px;
  }

  .hamburger-toggle {
    display: flex;
  }

  .hamburger-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--primary);
  }
  .hamburger-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--primary);
  }

  .nav-menu {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 2px solid var(--light-gray);
    box-shadow: var(--shadow-md);
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 999;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    font-size: 15px;
    padding: 8px 0;
    width: 100%;
    border-bottom: 1px solid #f3f4f6;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-link.active::after {
    bottom: 2px;
    width: 30px;
  }

  /* Hero Mobile Styles */
  .hero-title {
    font-size: 32px;
    margin-bottom: 14px;
    text-align: center;
  }

  .hero-desc {
    font-size: 13.5px;
    margin-bottom: 24px;
    text-align: center;
  }

  .hero-ctas {
    gap: 10px;
    justify-content: center;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 10px 20px;
    font-size: 13px;
    flex: 1;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 8px;
  }

  .hero-card-form {
    padding: 20px 16px;
  }

  .hero-card-form h3 {
    font-size: 18px;
  }

  .hero-card-form input,
  .hero-card-form textarea {
    padding: 8px 12px;
  }

  .form-submit-btn {
    align-self: stretch;
    text-align: center;
    margin-top: 8px;
  }

  .program-card {
    flex: 0 0 100%;
    min-height: auto;
    padding: 24px 20px;
  }

  .programs-section .section-title {
    font-size: 28px;
    max-width: 100%;
  }

  .programs-section .section-desc {
    font-size: 13.5px;
    max-width: 100%;
  }

  /* Exam Prep Mobile */
  .exam-prep-section {
    padding: 50px 0;
  }

  .exam-prep-info .section-title {
    font-size: 30px;
    max-width: 100%;
  }

  .exam-prep-info .section-desc {
    font-size: 13.5px;
    max-width: 100%;
  }

  .exam-card {
    flex: 0 0 280px;
    min-height: 380px;
    padding: 24px 20px;
  }

  /* Included Section Mobile */
  .included-section {
    padding: 50px 0;
  }

  .included-section .section-title {
    font-size: 28px;
    max-width: 100%;
  }

  .included-section .section-desc {
    font-size: 13.5px;
    max-width: 100%;
  }

  .included-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  /* Testimonials Mobile */
  .student-testimonials-section {
    padding: 50px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .testimonial-grid-card {
    padding: 24px 20px;
    border-radius: var(--radius-md);
  }

  /* Process Section Mobile */
  .process-section {
    padding: 50px 0;
  }

  .process-line {
    width: 4px;
    height: calc(100% - 24px);
    left: 10px;
    top: 12px;
    transform: none;
    right: auto;
  }

  .process-nodes {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding-left: 0;
  }

  .process-node {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 20px;
    width: 100%;
  }

  .node-dot {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .node-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .node-label {
    max-width: 100%;
    text-align: left;
  }

  /* Why Choose Us & Quote */
  .why-choose-left h2 {
    font-size: 26px;
    margin-bottom: 16px;
    text-align: center;
  }

  .why-choose-features {
    gap: 16px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

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

  .feature-text h4 {
    font-size: 15px;
  }

  .portrait-card {
    min-height: 280px;
    height: 320px;
    border-radius: var(--radius-md);
    max-width: 320px;
    margin: 0 auto;
  }

  .quote-card {
    padding: 24px 20px;
    border-radius: var(--radius-md);
  }

  .quote-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .quote-card p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  /* FAQs */
  .faq-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .faq-column {
    display: contents; /* Stacks all FAQ cards in a single contiguous vertical line */
  }

  .faq-card {
    padding: 16px;
    border-radius: var(--radius-md);
  }

  .faq-card-header {
    align-items: center;
  }

  .faq-card.active .faq-card-header {
    align-items: flex-start;
  }

  .faq-card-question {
    font-size: 13px;
    white-space: normal;
    display: block;
    flex: 1;
    min-width: 0;
  }

  .faq-card-body {
    padding-left: 20px;
  }
}

/* ============================================================
   TESTIMONIALS SECTION
============================================================ */

.testi-section {
  background: var(--white);
  padding: 50px 40px 60px;
  overflow: hidden;
}

/* ---- Header ---- */
.testi-top {
  text-align: center;
  max-width: 1280px;
  margin: 0 auto 56px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.testi-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.testi-subtitle {
  display: block;
  font-family: var(--body-font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.testi-title {
  font-family: var(--heading-font);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

/* ---- Slider Wrapper ---- */
.testi-slider-wrap {
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

/* ---- Track ---- */
.testi-track {
  display: flex;
  gap: 28px;
  transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
  align-items: stretch;
}

/* ---- Single Card ---- */
.testi-card {
  flex-shrink: 0;
  background: var(--white);
  border: 1.8px solid #d4b0b8;
  border-radius: 20px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease;
  box-sizing: border-box;
}
.testi-card:hover {
  box-shadow: 0 16px 48px rgba(206, 41, 69, 0.12);
  transform: translateY(-5px);
  border-color: var(--primary);
}

/* Top accent line */
.testi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 0 0 4px 4px;
}

/* ---- Avatar ---- */
.testi-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2.5px var(--primary);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ---- Stars ---- */
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 0.85rem;
}
.testi-stars .fa-regular {
  color: #ddd;
}

/* ---- Quote ---- */
.testi-quote {
  font-family: var(--body-font);
  font-size: 0.875rem;
  color: #555;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 20px;
}

/* ---- Name & Role ---- */
.testi-name {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.testi-role {
  font-family: var(--body-font);
  font-size: 0.75rem;
  color: #888;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ---- Dots ---- */
.testi-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(206, 41, 69, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.3s ease,
    width 0.3s ease,
    border-radius 0.3s ease;
  flex-shrink: 0;
}
.testi-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   TABLET — 2 cards visible, slide 1 card at a time
============================================================ */
@media (max-width: 1024px) {
  .testi-section {
    padding: 44px 32px 52px;
  }
}

/* ============================================================
   MOBILE — 1 card
============================================================ */
@media (max-width: 640px) {
  .testi-section {
    padding: 36px 20px 44px;
  }
  .testi-top {
    margin-bottom: 36px;
  }
  .testi-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
  .testi-avatar {
    width: 72px;
    height: 72px;
  }
  .testi-dots {
    margin-top: 28px;
  }
}

/* ============================
   FOOTER
============================ */
.footer {
  background: #fdf0f2;
  padding: 60px 0 0;
  font-family: var(--body-font);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

/* --- Brand Column --- */
.footer-brand {
}

.footer-logo-wrap {
  margin-bottom: 4px;
}
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(206, 41, 69, 0.2);
  margin-bottom: 22px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-icon {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
}

.footer-contact-val {
  display: block;
  font-size: 0.8rem;
  color: #555;
  line-height: 1.65;
}

/* --- Link Columns --- */
.footer-col {
}

.footer-col-title {
  font-family: var(--heading-font);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-link {
  font-size: 0.82rem;
  color: #555;
  text-decoration: none;
  transition: color 0.22s ease;
}
.footer-link:hover {
  color: var(--primary);
}

/* --- Right Column (Social + Salesforce) --- */
.footer-col-right {
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}
.footer-social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.footer-partner {
}

.footer-partner-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.footer-salesforce-logo {
  height: 72px;
  width: auto;
  display: block;
}

/* --- Bottom Bar --- */
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 16px 40px;
  text-align: center;
  max-width: 100%;
}

.footer-copy {
  font-size: 0.78rem;
  color: #777;
}

/* ============================
   FOOTER RESPONSIVE
============================ */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 32px;
  }
  /* Move right col (social+salesforce) to a new row spanning full width */
  .footer-col-right {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  .footer-social {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 0 24px 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-col-right {
    grid-column: 1 / -1;
    gap: 32px;
  }
  .footer-bottom {
    padding: 16px 24px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 44px 0 0;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px 36px;
    gap: 24px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-col-right {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-bottom {
    padding: 14px 20px;
  }
}
