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

:root {
  --fh-navy: #023373;
  --fh-navy-deep: #011d49;
  --fh-blue: #0071bc;
  --fh-blue-light: #0093d1;
  --fh-blue-bright: #00b7d6;
  --fh-cyan: #00c8d4;
  --fh-green: #8dbf21;
  --fh-green-bright: #9ed624;
  --fh-light: #f5f7fa;
  --fh-text: #12304f;
  --fh-muted: #6b7c8f;
  --fh-whatsapp: #25d366;
  --shadow-card: 0 20px 60px rgba(2, 51, 115, 0.18);
  --max-width: 1400px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #fff;
  color: var(--fh-text);
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ========================================
   SITE HEADER (Matching learning.fluencyhub.com.au)
======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #dbdee0;
  min-height: 70px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.header-logo img {
  height: 60px;
  max-width: 165px;
  width: auto;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 18px;
  color: var(--fh-green);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: color 0.2s ease;
}

.nav-menu > li > a:hover {
  color: var(--fh-blue);
}

.nav-menu > li > a .dropdown-arrow {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.nav-menu > li:hover > a .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(2, 51, 115, 0.2);
  list-style: none;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

.nav-menu > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--fh-navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu li a:hover {
  background: var(--fh-light);
  color: var(--fh-green);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta {
  background: var(--fh-green);
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(141, 191, 33, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(141, 191, 33, 0.45);
}

.header-login {
  color: var(--fh-green);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.header-login:hover {
  color: var(--fh-blue);
}

/* Header Buttons */
.header-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-btn svg {
  width: 18px;
  height: 18px;
}

.header-btn.inquiry-btn {
  background: var(--fh-green);
  color: #fff;
}

.header-btn.inquiry-btn:hover {
  background: #7aaa1c;
  transform: translateY(-1px);
}

.header-btn.buy-btn {
  background: var(--fh-green);
  color: #fff;
}

.header-btn.buy-btn:hover {
  background: #7aaa1c;
  transform: translateY(-1px);
}

.header-btn.login-btn {
  background: var(--fh-blue);
  color: #fff;
}

.header-btn.login-btn:hover {
  background: #005a96;
  transform: translateY(-1px);
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--fh-green);
  border-radius: 8px;
  color: #fff;
  transition: all 0.2s ease;
}

.header-whatsapp svg {
  width: 24px;
  height: 24px;
}

.header-whatsapp:hover {
  background: #7aaa1c;
  transform: translateY(-1px);
}

/* Mobile Nav Buttons */
.mobile-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.mobile-btn {
  display: block;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
}

.mobile-btn.whatsapp-btn {
  background: #25d366;
  color: #fff;
}

.mobile-btn.inquiry-btn {
  background: var(--fh-blue);
  color: #fff;
}

.mobile-btn.buy-btn {
  background: var(--fh-green);
  color: #fff;
}

.mobile-btn.login-btn {
  background: var(--fh-navy);
  color: #fff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fh-green);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(1, 29, 73, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active,
.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  padding: 30px;
  max-width: 400px;
  margin: 0 auto;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
}

.mobile-nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-item svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.mobile-nav-item.whatsapp-item {
  background: var(--fh-whatsapp);
  margin-top: 20px;
  border-radius: 12px;
  border-bottom: none;
}

.mobile-nav-item.whatsapp-item:hover {
  background: #1da851;
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.mobile-nav-menu > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-menu > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

.mobile-dropdown-menu {
  list-style: none;
  padding: 0 0 10px 20px;
  display: none;
}

.mobile-nav-menu > li.open .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown-menu li a {
  display: block;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
}

.mobile-cta {
  display: block;
  background: var(--fh-green);
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}

/* ========================================
   HERO SECTION
======================================== */
.hero-1 {
  margin-top: -150px;
}

.hero {
  position: relative;
  background: linear-gradient(148deg, #123256 36%, #001e3b 100%);
  color: #fff;
  overflow: hidden;
  min-height: 600px;
  border-radius: 8rem;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.hero-content {
  padding: 100px 40px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.logo {
  display: inline-block;
  margin-bottom: 50px;
}

.logo img {
  height: 80px;
  width: auto;
}

.hero-eyebrow {
  font-size: 3.3rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 0;
  line-height: 1;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  line-height: 0.85;
}

.hero-title .twice {
  display: block;
  font-size: 9rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
  line-height: 0.8;
}

.hero-title .week {
  display: block;
  margin-top: 0;
}

.hero-title .week img {
  height: clamp(52px, 8vw, 85px);
  width: auto;
}

.hero-subtitle {
  margin-top: 16px;
  font-size: clamp(14px, 1.8vw, 30px);
  font-weight: 400;
  line-height: 1.6;
}

.hero-subtitle .accent {
  color: var(--fh-green-bright);
  font-weight: 600;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ========================================
   COURSE SELECTION
======================================== */
.course-selection {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px;
}

.course-selection h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--fh-navy);
  margin: 0 0 12px;
  line-height: 1.2;
}

.course-selection .subtitle {
  font-size: 14px;
  color: var(--fh-muted);
  margin: 0 0 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-primary {
  background: var(--fh-green);
  color: #fff;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(141, 191, 33, 0.4);
}

.btn-secondary {
  background: #fff;
  color: var(--fh-navy);
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--fh-navy);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--fh-light);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.course-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(2, 51, 115, 0.15);
  text-align: center;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.course-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.course-card-top {
  padding: 15px 15px 16px;
}

.course-card.navy .course-card-top,
.course-card.navy .course-card-body {
  background: var(--fh-navy);
}

.course-card.blue .course-card-top,
.course-card.blue .course-card-body {
  background: var(--fh-blue);
}

.course-card.green .course-card-top,
.course-card.green .course-card-body {
  background: var(--fh-green);
}

.course-card.dark-navy .course-card-top,
.course-card.dark-navy .course-card-body {
  background: #001e3a;
}

.course-card-top h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.5rem;
}

.course-card-top p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
  line-height: 1.4;
}

.course-card-body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
  text-align: left;
}

.course-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.course-features li .check {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.course-features li .check svg {
  width: 10px;
  height: 10px;
  color: var(--fh-green);
  stroke-width: 3;
}

.course-card .buy-btn {
  display: block;
  background: var(--fh-green);
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.course-card .buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(141, 191, 33, 0.4);
}

/* ========================================
   TEST ENGLISH SECTION
======================================== */
.test-english-section {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px;
}

.test-english-btn {
  display: inline-block;
  background: var(--fh-blue);
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 113, 188, 0.3);
}

.test-english-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 113, 188, 0.4);
  background: var(--fh-blue-light);
}

/* ========================================
   TEACHERS SECTION
======================================== */
.teachers-section {
  padding: 50px 0 70px;
  background: #fff;
}

.teachers-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 20px;
  align-items: center;
}

.teachers-content h2 {
  font-size: 3rem;
  font-weight: 400;
  color: var(--fh-navy);
  margin: 0 0 28px;
  line-height: 1.3;
}

.teachers-content h2 span {
  display: block;
}

.teachers-content h2 .bold {
  font-weight: 800;
}

.teachers-content h2 .over-world {
  margin-top: 4px;
}

.teachers-content h2 .over-world img {
  height: 28px;
  width: auto;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon.navy {
  background: var(--fh-navy);
}

.feature-icon.blue {
  background: var(--fh-blue);
}

.feature-icon.cyan {
  background: var(--fh-cyan);
}

.feature-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.feature-text {
  padding-top: 2px;
}

.feature-text strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fh-navy);
  margin-bottom: 2px;
}

.feature-text strong .check {
  width: 16px;
  height: 16px;
  background: var(--fh-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text strong .check svg {
  width: 10px;
  height: 10px;
  color: #fff;
  stroke-width: 3;
}

.feature-text p {
  font-size: 12px;
  color: var(--fh-muted);
  margin: 0;
  line-height: 1.4;
}

.teachers-images img {
  width: 100%;
  border-radius: 16px;
}

/* ========================================
   PRICING SECTION
======================================== */
.pricing-section {
  background: var(--fh-navy);
  position: relative;
  overflow: hidden;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0, 113, 188, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.pricing-banner {
  position: relative;
  z-index: 2;
}

.pricing-banner img {
  width: 100%;
  display: block;
}

.twice-pill {
  position: absolute;
  left: 36%;
  top: 70%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #0cc0df 0%, #0071bc 100%);
  color: #fff;
  padding: 0px 10px;
  border-radius: 0;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ========================================
   BENEFITS SECTION
======================================== */
.benefits-section {
  padding: 60px 0 70px;
  background: #fff;
}

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

.benefit-card {
  background: var(--fh-light);
  border-radius: 30px;
  padding: 26px 18px 18px;
  text-align: center;
  border: 1px solid #e8ecf1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(2, 51, 115, 0.1);
}

.benefit-icon {
  width: 95px;
  height: 95px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #023373;
  border-radius: 50%;
}

.benefit-icon img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fh-navy);
  margin: 0 0 6px;
  line-height: 1.3;
}

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

/* ========================================
   FINAL CTA SECTION
======================================== */
.cta-outer-section {
  z-index: 2;
  position: relative;
  height: 197px;
}

.cta-section {
  background: linear-gradient(145deg, var(--fh-navy) 0%, var(--fh-navy-deep) 100%);
  color: #fff;
  text-align: center;
  padding: 50px 20px 40px;
  position: absolute;
  width: 75%;
  margin: 0 auto;
  border-radius: 30px;
  margin-top: -33px;
  left: 14%;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 147, 209, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.join-btn {
  display: block;
  width: 300px;
  background: var(--fh-green);
  color: #fff;
  text-decoration: none;
  padding: 5px 60px;
  border-radius: 999px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin: 0 auto;
  z-index: 999;
  position: relative;
}

.join-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(141, 191, 33, 0.55);
}

.cta-headline {
  font-size: clamp(20px, 3vw, 2.8rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.cta-headline .starts-img {
  height: clamp(20px, 3vw, 30px);
  width: auto;
}

.cta-tagline {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0;
  opacity: 0.9;
  letter-spacing: 0.3px;
}

/* ========================================
   SITE FOOTER
======================================== */
.site-footer {
  background: var(--fh-blue);
  color: #fff;
}

.footer-main {
  padding: 50px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: flex-start;
}

.footer-logo-col {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
}

.footer-info-col {
  text-align: left;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--fh-navy);
  border-radius: 50%;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: var(--fh-green);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-contact-info {
  color: #fff;
}

.footer-contact-info p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.footer-contact-info a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-contact-info a:hover {
  opacity: 0.8;
}

.footer-bar {
  height: 8px;
  background: var(--fh-green);
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-logo {
  display: inline-block;
}

.footer-logo img {
  height: 50px;
  width: auto;
  margin: 0 auto 16px;
}

.footer-tagline {
  font-size: 18px;
  color: #fff;
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: var(--fh-green);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--fh-green);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--fh-green);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--fh-green);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  color: #fff;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-bottom-links a:hover {
  opacity: 0.8;
}

/* ========================================
   WHATSAPP FLOAT
======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  background: var(--fh-whatsapp);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .teachers-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .teachers-content h2 .over-world img {
    margin: 0 auto;
  }

  .feature-list {
    align-items: center;
  }

  .feature-item {
    text-align: left;
    max-width: 280px;
  }

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

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

  .footer-about {
    grid-column: span 2;
  }
}

@media (max-width: 1100px) {
  .header-btn {
    padding: 6px 10px;
    font-size: 11px;
  }
}

@media (max-width: 921px) {
  .main-nav {
    display: none;
  }

  .header-btn,
  .header-whatsapp {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-container {
    padding: 12px 20px;
  }

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

  .footer-logo-col {
    justify-content: center;
  }

  .footer-info-col {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 160px 20px 40px;
    text-align: center;
  }

  .hero-eyebrow {
    font-size: 2rem;
  }

  .hero-title .twice {
    font-size: 5rem;
  }

  .hero-title .week img {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    display: none;
  }

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

  .footer-about {
    grid-column: span 1;
    padding-right: 0;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .header-actions {
    gap: 12px;
  }

  .hero {
    min-height: 450px;
    border-radius: 4rem;
  }

  .hero-inner {
    min-height: 450px;
    padding: 0 20px;
  }

  .hero-eyebrow {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .hero-title .twice {
    font-size: 3.5rem;
    line-height: 0.9;
  }

  .hero-title .week img {
    height: 40px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-top: 12px;
    line-height: 1.4;
  }
  
  .courses-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }

  .hero-1 {
    margin-top: -80px;
  }

  .teachers-content h2 {
    font-size: 26px;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .hero {
    min-height: 400px;
    border-radius: 3rem;
  }

  .hero-inner {
    min-height: 400px;
    padding: 0 15px;
  }

  .hero-eyebrow {
    font-size: 1.2rem;
  }

  .hero-title .twice {
    font-size: 2.8rem;
  }

  .hero-title .week img {
    height: 35px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-1 {
    margin-top: -60px;
  }

  .courses-grid {
    max-width: 280px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 260px;
    margin: 0 auto;
  }

  .join-btn {
    padding: 12px 44px;
    font-size: 16px;
    width: auto;
  }

  .cta-section {
    width: 90%;
    left: 5%;
  }
}

/* ========================================
   LARGE SCREEN OPTIMIZATIONS
======================================== */
@media (min-width: 1441px) {
  /* Limit hero image width on large screens */
  .hero-image {
    margin-left: auto;
    flex-shrink: 0;
  }
  
  .hero-image img {
    height: auto;
    object-fit: contain;
  }
}

/* Ultra-large screens */
@media (min-width: 1920px) {
  .hero-image {
  }
  
  .hero-image img {
  }

/* Add optimizations for all large screens */
@media (min-width: 1441px) {
  .course-card-img {
    border-radius: 8px 8px 0 0;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .teachers-images img {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 12px;
  }
  
  .pricing-banner img {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
  }
}

/* Ultra-wide screen constraints */
@media (min-width: 1920px) {
  
  .teachers-images img {
    max-width: 500px;
  }
  
  .pricing-banner img {
    max-width: 1800px;
  }
  
  .course-card-img {
    max-width: 350px;
  }
}

/* 13-inch screen optimization */
@media (min-width: 1200px) and (max-width: 1440px) {
  
  .hero-image {
  }
  
  .hero-image img {
    height: auto;
    object-fit: contain;
  }
  
  .course-card-img {
    max-width: 350px;
    margin: 0 auto;
  }
  
  .teachers-images img {
    max-width: 550px;
    margin: 0 auto;
    border-radius: 8px;
  }
  
  .pricing-banner img {
    max-width: 750px;
    margin: 0 auto;
    border-radius: 6px;
  }
}

/* ========================================
   FOOTER LOGO STYLING
======================================== */
.footer-logo img {
  height: 50px;
  width: auto;
  margin: 0 auto 16px;
  border: none;
}

/* ========================================
   TIMETABLE SECTION
======================================== */
.timetable-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid #e5e5e5;
}

.timetable-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.timetable-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--fh-blue);
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
}

.fluency-logo {
  display: flex;
  align-items: center;
}

.fluency-logo img {
  height: 60px;
  width: auto;
}

.timetable-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.timetable-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.course-header {
  background: var(--fh-navy);
  color: white;
  padding: 25px 20px;
  border-radius: 30px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(2, 51, 115, 0.3);
}

.course-header h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.course-header span {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.95;
}

.business-club .course-header {
  background: var(--fh-navy-deep);
}

.pronunciation .course-header {
  background: var(--fh-blue);
}

.time-slots {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.time-slot {
  background: white;
  border: 3px solid var(--fh-navy);
  border-radius: 50px;
  padding: 18px 20px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--fh-navy);
  cursor: default;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(2, 51, 115, 0.1);
}

.business-club .time-slot {
  border-color: var(--fh-navy-deep);
  color: var(--fh-navy-deep);
}

.pronunciation .time-slot {
  border-color: var(--fh-blue);
  color: var(--fh-blue);
}

.timezone-note {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .timetable-grid {
    gap: 30px;
    padding: 0 15px;
  }
  
  .timetable-title {
    font-size: 2.8rem;
  }
  
  .fluency-logo img {
    height: 50px;
  }
}

@media (max-width: 768px) {
  .timetable-section {
    padding: 60px 0;
  }
  
  .timetable-header {
    flex-direction: column;
    gap: 25px;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .timetable-title {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }
  
  .timetable-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 400px;
  }
  
  .course-header {
    padding: 20px 15px;
  }
  
  .time-slot {
    padding: 16px 18px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .timetable-title {
    font-size: 1.8rem;
  }
  
  .fluency-logo img {
    height: 40px;
  }
  
  .course-header h3 {
    font-size: 1.1rem;
  }
  
  .course-header span {
    font-size: 1rem;
  }
  
  .time-slot {
    padding: 14px 16px;
    font-size: 1.1rem;
  }
}
