/* ─────────────────────────────────────────────────────────
   PROJECT FLUENCY — style.css
   ───────────────────────────────────────────────────────── */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}
/* ─── RESET & VARIABLES ──────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand:        #c73a57;
  --brand-dark:   #9e2a41;
  --brand-light:  #f5c0cb;
  --black:        #111;
  --white:        #fff;
  --gray-50:      #f9f7f6;
  --gray-100:     #f0edeb;
  --gray-300:     #c5bfbb;
  --gray-600:     #6b6460;
  --gray-800:     #2e2926;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --nav-h:        72px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── LOADER ─────────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: #f5f0e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: loaderFadeUp 0.8s ease forwards;
}

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

.loader-logo-img {
  width: 620px;
  height: 620px;
  object-fit: contain;
}

.loader-brand {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.loader-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.loader-bar-wrap {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 12px;
}

.loader-bar {
  height: 100%;
  background: #c73a57;
  border-radius: 2px;
  animation: loadBar 2s ease forwards;
}

@keyframes loadBar {
  from { width: 0; }
  to   { width: 100%; }
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color var(--transition);
}

.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

nav.scrolled .nav-logo {
  color: var(--brand);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition);
  position: relative;
}

nav.scrolled .nav-links a {
  color: var(--gray-800);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width var(--transition);
  border-radius: 1px;
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--brand); }
nav.scrolled .nav-links a:hover { color: var(--brand); }

.nav-cta {
  background: var(--brand) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--brand-dark) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 300;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: var(--transition);
}

nav.scrolled .hamburger span { background: var(--gray-800); }

nav.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gray-800); }
nav.menu-open .hamburger span:nth-child(2) { opacity: 0; }
nav.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gray-800); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  background: var(--brand);
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  font-family: var(--font-body);
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* ─── HERO ───────────────────────────────────────────────── */
#home {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a0a0e 0%, #3a1220 50%, #c73a57 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center; 
  position: relative;
  overflow: hidden;
  padding: 0 5%;
}

.hero-bg-text {
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 260px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  animation: heroFadeUp 1s 2.4s ease both;
  display: flex;          
  flex-direction: column;     
  align-items: center;  
}

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

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}

.hero-title span { color: var(--brand-light); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 100%;
  text-align: center;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  display: block;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── MARQUEE ────────────────────────────────────────────── */
.marquee-wrap {
  background: var(--brand);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 32px;
}

.marquee-track span::before {
  content: '✦';
  margin-right: 32px;
  opacity: 0.6;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTIONS (shared) ──────────────────────────────────── */
section {
  padding: 100px 5%;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 560px;
}

/* ─── ABOUT ──────────────────────────────────────────────── */
#about {
  background: white;
  padding: 10px 5% 80px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 20px;
  background: linear-gradient(145deg, #e8d5da, #c73a5730);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--brand);
  font-size: 0.9rem;
}

.about-img-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.5;
}

.about-accent-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--brand);
  color: #fff;
  padding: 24px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(199, 58, 87, 0.3);
}

.about-accent-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.about-accent-card span {
  font-size: 0.8rem;
  opacity: 0.85;
  letter-spacing: 0.05em;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: #fce8ec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.feature-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.certification {
  display: block;

  margin-top: 10px;

  font-family: var(--font-display);

  font-size: clamp(1.4rem, 2vw, 2rem);

  font-weight: 700;

  color: #c73a57;

  line-height: 1.2;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* =========================
   ABOUT STATS
========================= */

.about-stats {
  width: 100%;

  display: flex;

  justify-content: center !important;

  align-items: center;

  gap: 70px;

  margin-top: 70px;

  text-align: center;

  flex-wrap: nowrap;
}

.about-stat-box {
  display: flex;

  flex-direction: column;

  align-items: center;
}

.about-stat-num {
  font-family: var(--font-display);

  font-size: 58px;

  font-weight: 700;

  color: var(--brand);

  line-height: 1;
}

.about-stat-label {
  margin-top: 10px;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  color: var(--brand);
}

#about {
  text-align: center;
}
.about-grid {
  text-align: left;
}


/* MOBILE */

@media(max-width: 700px) {

  .about-stats {
    gap: 30px;
  }

  .about-stat-num {
    font-size: 42px;
  }

}

/* =========================
   COURSES SECTION
========================= */

#courses {
  background: var(--gray-50);
  padding: 50px 5% 80px;
}

.courses-heading {
  padding: 10px 8% 30px;
}

.courses-heading .section-tag {
  display: block;
  text-align: left;
  margin-bottom: 18px;
}

.courses-heading .section-title {
  text-align: center;
  font-size: 70px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.courses-heading .section-sub {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  font-size: 21px;
  line-height: 1.7;
  color: #666;
}


/* =========================
   COURSE CARDS
========================= */

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;

  width: 100%;

  padding: 20px 5% 50px;
}

.course-card {
  background: #faf7f5;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.35s ease;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(199,58,87,0.12);
}

.course-top {
  min-height: 180px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: linear-gradient(135deg,#f8dce2,#f4c9d4);
}

.course-top h3 {
  font-size: 34px;
  line-height: 1.3;
  color: #c73a57;
  font-weight: 700;
}

.blue {
  background: linear-gradient(135deg,#dde4ff,#cfd7ff);
}

.green {
  background: linear-gradient(135deg,#def5de,#cceccc);
}

.yellow {
  background: linear-gradient(135deg,#f9ebc9,#f4ddb0);
}

.course-content {
  padding: 28px;
}

.course-content p {
  color: #666;
  line-height: 1.8;
  font-size: 16px;
  min-height: 270px;
}

.course-info {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.course-info span {
  background: #f7f7f7;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: #444;
}

.course-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-top: 28px;
  background: #c73a57;
  color:#faf7f5;
  padding: 15px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.course-btn:hover {
  background: #b92d4a;
}


/* =========================
   EXTRA COURSES
========================= */

.extra-courses {
  padding: 20px 5% 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.extra-box {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 30px;
  background: white;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  transition: 0.35s ease;
}

.extra-box::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(199,58,87,0.06);
  border-radius: 50%;
  top: -90px;
  right: -90px;
}

.extra-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(199,58,87,0.12);
}

.extra-box h2 {
  font-size: 38px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.extra-box p,
.extra-box li {
  color: #666;
  line-height: 1.9;
  font-size: 17px;
  position: relative;
  z-index: 2;
}

.extra-box ul {
  margin-top: 22px;
  padding-left: 20px;
}


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

@media(max-width: 1150px) {

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

  .extra-courses {
    grid-template-columns: 1fr;
  }

  .courses-heading .section-title {
    font-size: 52px;
  }

}

@media(max-width: 700px) {

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

  .courses-heading .section-title {
    font-size: 40px;
  }

  .courses-heading .section-sub {
    font-size: 18px;
  }


}

/* =========================
   COURSE CARD FIXES
========================= */

.course-card {
  display: flex;
  flex-direction: column;
}

.course-top h3 {
  font-size: 24px;
  line-height: 1.4;
}

.course-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-content p {
  margin-bottom: 24px;
}

.course-btn {
  margin-top: auto;
}
/* =========================
   GLOBAL CONTAINER
========================= */

.container{
  width:100%;
  max-width:none;
  margin:0;
  padding:0;
}


/* =========================
   CONTACT SECTION
========================= */
#contact {
  background: linear-gradient(
    135deg,
    #1a0a0e 0%,
    #3a1220 60%,
    #c73a57 100%
  );

  padding: 50px 5% 60px;

  position: relative;
  overflow: hidden;
}


/* BACKGROUND TEXT */

.contact-bg {
  position: absolute;

  bottom: -60px;
  right: -40px;

  font-family: var(--font-display);

  font-size: clamp(80px, 15vw, 220px);

  font-weight: 900;

  color: rgba(255,255,255,0.04);

  pointer-events: none;
  user-select: none;
}


/* GRID */

.contact-grid {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 60px;

  align-items: center;

  position: relative;
  z-index: 2;
}


/* LEFT SIDE */

.contact-left {
  padding-left: 6%;
}

.contact-left .section-tag {
  color: var(--brand-light);

  margin-bottom: 22px;
}

.contact-left .section-title {
  color: white;

  font-size: 64px;

  line-height: 1.08;

  margin-bottom: 30px;

  max-width: 520px;
}

.contact-left .section-sub {
  color: rgba(255,255,255,0.72);

  max-width: 480px;

  font-size: 18px;

  line-height: 1.9;
}


/* CONTACT INFO */

.contact-info {
  display: flex;
  flex-direction: column;

  gap: 24px;

  margin-top: 48px;
}

.contact-info-item {
  display: flex;
  align-items: center;

  gap: 16px;

  color: rgba(255,255,255,0.82);

  font-size: 17px;
}

.contact-info-item .icon {
  font-size: 22px;
}


/* RIGHT SIDE */

.contact-right {
  width: 100%;
  padding-right: 6%;
}


/* FORM */

.contact-form {
  background: rgba(255,255,255,0.08);

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

  border-radius: 32px;

  padding: 38px;

  backdrop-filter: blur(20px);

  box-shadow: 0 15px 40px rgba(0,0,0,0.12);

  margin-bottom: 50px;
}


/* FORM ROW */

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;
}


/* FORM GROUP */

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


/* LABEL */

.form-group label {
  display: block;

  font-size: 13px;
  font-weight: 600;

  color: rgba(255,255,255,0.72);

  margin-bottom: 10px;

  letter-spacing: 0.08em;
}


/* INPUTS */

.form-group input,
.form-group select,
.form-group textarea {

  width: 100%;

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

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

  border-radius: 14px;

  padding: 16px 18px;

  color: white;

  font-size: 15px;

  outline: none;

  transition: 0.3s ease;
}


/* PLACEHOLDERS */

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.42);
}


/* FOCUS */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.45);
}


/* SELECT */

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group select option {
  background: #3a1220;
  color: white;
}


/* TEXTAREA */

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}


/* BUTTON */

.form-submit {
  width: 100%;

  background: var(--brand);

  color: white;

  border: none;

  border-radius: 14px;

  padding: 18px;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.3s ease;

  font-family: var(--font-body);
}

.form-submit:hover {
  background: var(--brand-dark);

  transform: translateY(-2px);
}


/* ERROR + SUCCESS */

.form-error {
  font-size: 14px;

  color: #ffccd5;

  margin-bottom: 14px;

  min-height: 20px;
}

.form-success {
  display: none;

  margin-top: 18px;

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

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

  border-radius: 12px;

  padding: 14px;

  color: white;

  text-align: center;
}

.form-success.visible {
  display: block;
}


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

@media(max-width: 1100px) {

  .contact-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .contact-left {
    padding-left: 0;
  }

  .contact-left .section-title {
    font-size: 52px;
  }

}

@media(max-width: 700px) {

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-left .section-title {
    font-size: 42px;
  }

  .contact-left .section-sub {
    font-size: 17px;
  }

}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--gray-800);
  color: rgba(255, 255, 255, 0.55);
  padding: 40px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

footer p { font-size: 0.85rem; }

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

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}

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

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 200;
  }

  .nav-links.open { display: flex; }
  .nav-links a { color: var(--gray-800) !important; font-size: 1.3rem; }

  .hamburger { display: flex; }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .about-accent-card { right: 0; bottom: -16px; }

  .form-row { grid-template-columns: 1fr; }

  section { padding: 72px 5%; }

  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
/* =========================
   FLUENCY IN ACTION
========================= */

#fia {
  background: #ffffff;
  scroll-margin-top: 120px;
  overflow: hidden;

  padding: 50px 0;
}

.fia-heading {
  text-align: center;

  padding: 0 5%;

  margin-bottom: 70px;
}

.fia-heading .section-sub {
  max-width: 850px;

  margin: 0 auto;
}

.feedback-marquee {
  overflow: hidden;

  width: 100%;

  position: relative;
}

.feedback-track {
  display: flex;

  align-items: center;

  gap: 24px;

  width: max-content;

  animation: scrollFeedback 48s linear infinite;
}

.feedback-track:hover {
  animation-play-state: paused;
}

.feedback-card {
  flex-shrink: 0;

  width: 320px;

  border-radius: 28px;

  overflow: hidden;

  background: white;

  box-shadow: 0 15px 40px rgba(0,0,0,0.08);

  transition: 0.4s ease;

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

.feedback-card:hover {
  transform: translateY(-10px) scale(1.02);

  box-shadow: 0 20px 50px rgba(199,58,87,0.15);
}

.feedback-card img {
  width: 100%;

  height: auto;

  display: block;

  object-fit: contain;
}


@keyframes scrollFeedback {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* MOBILE */

@media(max-width:768px) {

  .feedback-card {
    width: 220px;
  }

}

.about-stats {
  display: flex !important;
  flex-direction: row !important;

  justify-content: flex-start;

  align-items: flex-start;

  gap: 60px;

  flex-wrap: nowrap !important;

  margin-top: 50px;
}

.about-stat-box {
  display: flex;
  flex-direction: column;
}

.about-stat-num {
  font-family: var(--font-display);

  font-size: 58px;

  font-weight: 700;

  line-height: 1;

  color: var(--brand);
}

.about-stat-label {
  margin-top: 10px;

  font-size: 13px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.08em;

  color: var(--brand);
}

/* =========================
   COURSE CARDS
========================= */

.course-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

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

/* TOP */

.course-top {
  height: 230px;

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

  text-align: center;

  padding: 30px;
}

/* COLORS */

.course-top.pink {
  background: #c73a57;
}

.course-top.blue {
  background: #c73a57;
}

.course-top.green {
  background: #c73a57;
}

.course-top.yellow {
  background: #c73a57;
}

/* BIG LEVEL */

.course-level {
  font-size: 40px;
  font-weight: 800;
  color: white;
  line-height: 1;

  font-family: var(--font-display);
}

/* RED TEXT */

.course-tagline {
  margin-top: 18px;

  color: var(--brand);

  font-size: 15px;
  font-weight: 700;

  letter-spacing: 0.15em;

  text-transform: uppercase;

  text-align: center;
}

/* CONTENT */

.course-content {
  padding: 35px;
}

.course-content h3 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 18px;

  font-family: var(--font-display);
  text-align: center;
}

.course-content p {
  color: #666;
  line-height: 1.8;
  font-size: 17px;
  text-align: center;
}

/* META */

.course-meta {
  display: flex;
  gap: 22px;

  margin-top: 28px;
  margin-bottom: 30px;

  color: #555;
  font-weight: 600;
  text-align: center;
}

/* BUTTON */

.course-btn {
  display: block;

  width: 100%;

  text-align: center;

  background: var(--brand);
  color: white;

  padding: 16px;

  border-radius: 14px;

  text-decoration: none;

  font-weight: 700;

  transition: 0.3s ease;
}

.course-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.phone-input {
  display: flex;
  gap: 12px;
}

.country-code {
  width: 100px;

  flex: 0 0 100px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background: transparent;
  border: none;
  outline: none;

  color: white;
  font-size: 16px;

  padding-right: 20px;
  cursor: pointer;
}

/* =========================
   STICKY NOTES
========================= */

#why-german {
  scroll-margin-top: 120px;
  padding: 40px 8%;
  background: #faf7f5;
  text-align: center;
}

.sticky-grid {
  margin-top: 70px;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 40px;
}

.sticky-note {
  width: 260px;
  min-height: 260px;

  background: #f5c0cb;

  padding: 30px 26px;

  border-radius: 6px;

  box-shadow: 0 14px 30px rgba(0,0,0,0.08);

  text-align: left;

  transition: 0.3s ease;
}

.sticky-note:hover {
  transform: translateY(-8px) scale(1.02);
}

.sticky-note h3 {
  font-size: 28px;
  margin-bottom: 18px;

  font-family: var(--font-display);

  color: #1f1a1a;
}

.sticky-note p {
  font-size: 17px;
  line-height: 1.7;

  color: #333;
}

.rotate-left {
  transform: rotate(-4deg);
}

.rotate-right {
  transform: rotate(4deg);
}

.rotate-left:hover,
.rotate-right:hover {
  transform: rotate(0deg) translateY(-8px);
}


/* MOBILE */

@media(max-width: 700px) {

  .sticky-grid {
    gap: 24px;
  }

  .sticky-note {
    width: 100%;
    min-height: auto;
  }

}

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

#faq {
  padding: 70px 8%;
  background: #fff;
}

.faq-grid {
  margin-top: 70px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}

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

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 16px;
}

.faq-question {
  width: 100%;

  background: transparent;
  border: none;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  text-align: left;

  font-size: 24px;
  line-height: 1.4;

  font-family: var(--font-display);
  font-weight: 700;

  color: #c73a57;

  cursor: pointer;

  padding: 0;
}

.faq-question span {
  font-size: 30px;
  line-height: 1;

  transition: 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;

  transition: all 0.35s ease;
}

.faq-answer p {
  margin-top: 18px;

  font-size: 17px;
  line-height: 1.8;

  color: #666;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}


/* MOBILE */

@media(max-width: 900px) {

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

}

@media(max-width: 700px) {

  #faq {
    padding: 90px 6%;
  }

  .faq-question {
    font-size: 21px;
  }

  .faq-answer p {
    font-size: 16px;
  }

}

/* ==================================================
   MOBILE FIXES — HOME, NAVBAR, COURSES, FOOTER
================================================== */

@media (max-width: 768px) {

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

  @media (max-width: 768px) {

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    background: white;

    display: flex;
    flex-direction: column;

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

    gap: 30px;

    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: all 0.3s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    color: #111 !important;
    font-size: 1.4rem;
    font-weight: 600;
  }

  .hamburger {
    display: flex;
    z-index: 10000;
  }

  nav {
    z-index: 9998;
  }
}

  /* ======================
     HERO / HOME
  ====================== */

  #home {
    min-height: 100vh;

    padding:
      calc(var(--nav-h) + 50px)
      24px
      70px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 22px;
  }

  .hero-title {
    font-size: 3rem;
    line-height: 1.08;
    margin-bottom: 20px;
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 32px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 14px;
  }

  .hero-btns a,
  .hero-btns button {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    width: 100%;

    justify-content: center;

    gap: 28px;

    margin-top: 45px;
    padding-top: 28px;
  }

  .stat-num {
    font-size: 1.9rem;
  }

  .stat-label {
    font-size: 11px;
  }

  .hero-bg-text {
    font-size: 110px;
    right: -10px;
    bottom: -10px;
  }


  /* ======================
     COURSES
  ====================== */

  #courses {
    padding: 80px 20px;
  }

  .courses-heading {
    padding: 0;
  }

  .courses-heading .section-title {
    font-size: 2.3rem;
    line-height: 1.15;
  }

  .courses-heading .section-sub {
    font-size: 1rem;
    line-height: 1.8;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 35px 0;
  }

  .course-card {
    border-radius: 24px;
  }

  .course-top {
    height: 180px;
    padding: 24px;
  }

  .course-level {
    font-size: 34px;
  }

  .course-content {
    padding: 24px;
  }

  .course-content h3 {
    font-size: 28px;
  }

  .course-content p {
    font-size: 15px;
    line-height: 1.8;
    min-height: auto;
  }

  .course-meta {
    flex-direction: column;
    gap: 10px;
  }

  .extra-courses {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 20px;
  }

  .extra-box {
    padding: 28px;
  }

  .extra-box h2 {
    font-size: 30px;
  }

  .extra-box p,
  .extra-box li {
    font-size: 15px;
  }

.course-content ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: center;
}

.course-content li {
  margin-bottom: 12px;
}

.course-content li::before {
  content: "• ";
  color: var(--brand);
  font-weight: bold;
}
  /* ======================
     FOOTER
  ====================== */

  footer {
    flex-direction: column;
    text-align: center;
    gap: 18px;

    padding: 32px 20px;
  }

  .footer-logo {
    font-size: 1.4rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .footer-links a {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {

  .about-stats {
    flex-direction: column !important;
    gap: 24px !important;
    align-items: center !important;
  }

  .about-stat-box {
    width: 100%;
    text-align: center;
  }

  .about-stat-num {
    font-size: 42px;
  }
}

@media (max-width: 768px) {

  .marquee-wrap {
    padding: 12px 0;
  }

  .marquee-track span {
    font-size: 0.65rem;
    padding: 0 18px;
    letter-spacing: 0.08em;
  }

  .marquee-track span::before {
    margin-right: 18px;
  }

}