/* ==========================================================================
   Traum International - Global CSS Stylesheet
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Jost:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --primary-color: #003E8C;
  --secondary-color: #2ECA7F;
  --accent-color: #0083CB;
  --text-color: #666666;
  --heading-color: #1a2530;
  --bg-white: #ffffff;
  --bg-light: #F4FAFF;
  --bg-offwhite: #FBFCFC;
  --bg-dark: #0a1128;
  --border-color: #e5e9f2;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);
  --font-heading: 'Jost', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-nav: 'Jost', sans-serif;
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s ease;

  /* Bootstrap integration */
  --bs-primary: #003E8C;
  --bs-secondary: #2ECA7F;
  --bs-body-font-family: 'Inter', sans-serif;
  --bs-border-radius: 0;
  --bs-border-radius-sm: 0;
  --bs-border-radius-lg: 0;
  --bs-border-radius-xl: 0;
  --bs-border-radius-xxl: 0;
}

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Bootstrap Component Alignment (keep square corners on-brand) */
.btn,
.form-control,
.modal-content,
.card,
.alert,
.badge,
.dropdown-menu,
.list-group-item,
.input-group-text {
  border-radius: 0;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: 600;
  line-height: 1.2em;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 3.125rem);
  font-weight: 500;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.875rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.8rem);
  margin-bottom: 1rem;
}

h4 {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin-bottom: 0.8rem;
}

h5 {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  margin-bottom: 0.5rem;
}

h6 {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  margin-bottom: 0.5rem;
}

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

ul {
  list-style: none;
}

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

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-nav);
  font-size: 0.95rem;
  font-weight: 500;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 0.5rem;
}

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

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

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  padding: 8px 15px;
  border: none;
}

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

.btn-outline {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.btn-white-outline {
  background-color: transparent;
  border-color: var(--bg-white);
  color: var(--bg-white);
}

.btn-white-outline:hover {
  background-color: var(--bg-white);
  color: var(--primary-color);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5.5rem 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-offwhite {
  background-color: var(--bg-offwhite);
}

.grid {
  display: grid;
  gap: 2rem;
}


.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

/* Header & Sticky Navbar */
.ct-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition-normal);
}

.header-solid .ct-header {
  position: sticky;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.ct-header.sticky {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.ct-header.sticky .header-container {
  padding: 1.5rem 1rem;
}

.ct-header.sticky .logo img {
  height: 50px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1rem;
  max-width: 1320px;
  margin: 0 auto;
  transition: var(--transition-normal);
}

.logo img {
  height: 60px;
  width: auto;
  transition: var(--transition-normal);
}

.logo .logo-default {
  display: none;
}

.logo .logo-white {
  display: block;
}

/* On sticky or solid header, show default logo */
.ct-header.sticky .logo .logo-default,
.header-solid .logo .logo-default {
  display: block;
}

.ct-header.sticky .logo .logo-white,
.header-solid .logo .logo-white {
  display: none;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  gap: 2rem;
  font-family: var(--font-nav);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
}

.nav-link {
  color: var(--bg-white);
  position: relative;
  padding: 0.5rem 0;
}

.ct-header.sticky .nav-link,
.header-solid .nav-link {
  color: var(--heading-color);
}

.nav-link:hover {
  color: var(--secondary-color) !important;
}

.nav-link.active {
  color: var(--secondary-color) !important;
}



/* Mobile Navbar Toggler (Offcanvas) */
.navbar-toggler {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-toggler svg {
  fill: var(--bg-white);
  transition: var(--transition-normal);
}

.ct-header.sticky .navbar-toggler svg,
.header-solid .navbar-toggler svg {
  fill: var(--heading-color);
}

/* Bootstrap Offcanvas Customization */
.offcanvas {
  width: 320px;
  max-width: 85%;
}

.offcanvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem 0 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.offcanvas-body {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 1rem;
}

.offcanvas-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--font-nav);
  font-size: 1.05rem;
  font-weight: 500;
  flex-grow: 1;
}

.offcanvas-link {
  color: var(--heading-color);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.offcanvas-link:hover,
.offcanvas-link.active {
  color: var(--secondary-color);
  padding-left: 8px;
}

@media(max-width: 991px) {
  .nav-menu, .nav-cta {
    display: none;
  }
  .navbar-toggler {
    display: block;
  }
}

/* Hero Text Elements (shared) */

.hero-subtitle {
  font-family: var(--font-nav);
  color: var(--secondary-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
  display: inline-block;
  font-size: 0.9rem;
}


.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Page Banner (Subpages) */
.page-banner {
  position: relative;
  background: linear-gradient(rgba(0, 62, 140, 0.85), rgba(0, 62, 140, 0.85)), url('../assets/willkommen-pic.webp') no-repeat center center/cover;
  padding: 9rem 0 5rem 0;
  color: var(--bg-white);
}

.page-banner-title {
  margin-bottom: 0.5rem;
}

.page-banner-subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
}

/* Info Grid Section */
.info-section {
  --bs-gutter-x: 3.5rem;
  --bs-gutter-y: 3.5rem;
  align-items: center;
}

.info-text-wrapper h3 {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.info-text-wrapper h2 {
  margin-bottom: 1.5rem;
}

.info-text-wrapper p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.info-image-wrapper {
  position: relative;
}

.info-image-wrapper img {
  box-shadow: var(--shadow-lg);
}

.info-image-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--secondary-color);
  z-index: -1;
}

/* Course Card Levels */
.course-card {
  background-color: var(--bg-white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}


.course-body {
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-title {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.course-duration {
  font-family: var(--font-nav);
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.course-body p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-color);
  flex-grow: 1;
}

.course-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Facility Showcase Grid */
.facility-card {
  background-color: var(--bg-white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.facility-img-wrapper {
  overflow: hidden;
  height: 220px;
}

.facility-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.facility-card:hover .facility-img-wrapper img {
  transform: scale(1.08);
}

.facility-body {
  padding: 1.8rem;
}

.facility-title {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.facility-body p {
  font-size: 0.92rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* We Provide Feature Boxes */
.feature-box {
  background-color: var(--bg-white);
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.feature-box:hover {
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--bg-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-normal);
}

.feature-box:hover .feature-icon {
  background-color: var(--secondary-color);
  color: var(--bg-white);
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}


/* Custom Forms */
.form-group {
  margin-bottom: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media(min-width: 768px) {
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
  .form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-nav);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading-color);
}

.form-label.required::after {
  content: ' *';
  color: red;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--heading-color);
  background-color: var(--bg-white);
  border: 1px solid #d0d7e2;
  transition: var(--transition-normal);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 62, 140, 0.1);
}

/* Radio buttons list */
.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.95rem;
}

.radio-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
}

.form-card {
  background-color: var(--bg-white);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

@media(max-width: 576px) {
  .form-card {
    padding: 2rem 1.5rem;
  }
}

/* General Page Section Layouts */
.contact-grid {
  --bs-gutter-x: 3.5rem;
  --bs-gutter-y: 3.5rem;
}


/* Social icons footer / header */
.social-icons {
  display: flex;
  gap: 1.2rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.1rem;
  transition: var(--transition-normal);
}

.social-icon:hover {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  transform: translateY(-3px);
}

/* Footer Section */
.colophon {
  background-color: var(--bg-dark);
  color: #adb5bd;
  padding: 5.5rem 0 2rem 0;
  border-top: 5px solid var(--secondary-color);
  font-size: 0.92rem;
}

.colophon h3 {
  color: var(--bg-white);
  font-size: 1.2rem;
  margin-bottom: 1.8rem;
  font-family: var(--font-heading);
}

.footer-logo img {
  height: 48px;
  margin-bottom: 1.5rem;
}

.footer-col-desc {
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-grid {
  --bs-gutter-x: 3.5rem;
  --bs-gutter-y: 3.5rem;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
}

.footer-contact-icon {
  color: var(--secondary-color);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-contact-item a:hover {
  color: var(--bg-white);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-left: 0;
}

.footer-link-item a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #adb5bd;
}

.footer-link-item a::before {
  content: '›';
  font-size: 1.2rem;
  color: var(--secondary-color);
  line-height: 1;
}

.footer-link-item a:hover {
  color: var(--bg-white);
  padding-left: 5px;
}

.footer-quick-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-quick-form .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
}

.footer-quick-form .form-control::placeholder {
  color: #6c757d;
}

.footer-quick-form .form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(46, 202, 127, 0.15);
}

.bottom-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  margin-top: 4.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}

.bottom-strip a:hover {
  color: var(--bg-white);
}

/* Modal and Toast Notification Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 17, 40, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--bg-white);
  padding: 3rem 2.5rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s ease;
}

.modal-overlay.open .modal-card {
  transform: translateY(0);
}

.modal-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(46, 202, 127, 0.1);
  color: var(--secondary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.modal-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.modal-card p {
  color: var(--text-color);
  font-size: 0.98rem;
  margin-bottom: 2rem;
}

.modal-close-btn {
  background-color: var(--primary-color);
  color: var(--bg-white);
  border: none;
  padding: 0.7rem 2rem;
  font-family: var(--font-nav);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-normal);
}

.modal-close-btn:hover {
  background-color: var(--secondary-color);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 999;
  font-size: 1.8rem;
  transition: var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

/* ==========================================================================
   Home Page Specific Redesign Styles
   ========================================================================== */

/* Floating Social Links Sidebar */
.home-social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 998;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

.home-social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.home-social-link.fb { background-color: #3b5998; }
.home-social-link.ig { background-color: #e1306c; }
.home-social-link.tw { background-color: #1da1f2; }
.home-social-link.ln { background-color: #0077b5; }

.home-social-link:hover {
  width: 54px;
  padding-left: 10px;
}

/* Centered Hero Home Overlay */
.home-hero {
  position: relative;
  background: linear-gradient(rgba(0, 62, 140, 0.5), rgba(0, 62, 140, 0.5)), url('../assets/hero-image.webp') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  text-align: center;
  padding: 275px 1.5rem 275px 1.5rem;
}

.home-hero h1 {
  max-width: 960px;
  margin: 0 auto;
  font-size: clamp(2.2rem, 5.5vw, 3.125rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--bg-white);
  text-transform: uppercase;
}

.home-hero-subtitle {
  font-family: var(--text-font);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

.home-hero .btn-green {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  font-family: var(--text-font);
  padding: .875rem 2rem;
  font-size: .875rem;
}

.home-hero .btn-green:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

/* Telc Exam Centre Banner */
.telc-banner {
  width: 100%;
  background-color: var(--bg-light);
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3rem 0.9rem;
}

.telc-banner-title {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  margin-bottom: 0;
}

.telc-banner-sub {
  font-family: var(--font-nav);
  font-size: 1.05rem;
  color: var(--text-color);
  margin-bottom: 0;
}

.telc-banner-note {
  margin-left: auto;
  font-family: var(--font-nav);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--secondary-color);
}

/* Willkommen Section */
.willkommen-sec {
  background-color: var(--primary-color);
  position: relative;
  overflow: visible;
}

.willkommen-content {
  padding: 4rem 1.5rem 3rem 1.5rem;
  position: relative;
  z-index: 2;
}

.willkommen-content h2 {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 500;
  color: var(--bg-white);
  margin-bottom: 0;
}

.willkommen-img-wrap {
  position: relative;
  margin-top: -60px;
  z-index: 1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.willkommen-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media(max-width: 991px) {
  .willkommen-content {
    padding: 3rem 1.5rem 2.5rem 1.5rem;
  }
  .willkommen-img-wrap {
    margin-top: -40px;
  }
}

/* Level Cards Layout */
.home-level-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.home-level-card {
  background-color: var(--bg-white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.home-level-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}

.home-level-header {
  padding: 1rem;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.level-badge {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  width: 38px;
  height: 38px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.level-stars {
  display: flex;
  gap: 3px;
}

.level-stars span {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.level-stars .half-star {
  background: linear-gradient(90deg, var(--secondary-color) 50%, #ccc 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.g-level-stars .half-star {
  background: linear-gradient(90deg, var(--secondary-color) 50%, #ccc 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-level-img {
  height: 180px;
  overflow: hidden;
}

.home-level-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.home-level-card:hover .home-level-img img {
  transform: scale(1.05);
}

.home-level-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.home-level-body h4 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
}

.home-level-duration {
  font-size: 0.875rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.home-level-body p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.home-level-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* We Provide Section Overrides */
.weprovide-sec {
  background-color: var(--bg-light);
  margin-bottom: 5.5rem;
}

.weprovide-content {
  padding: 2rem;
}

.weprovide-sec h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.weprovide-banner-list {
  list-style: disc;
  padding-left: 40px;
}

.weprovide-banner-list li {
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.weprovide-banner-list li::marker {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

/* Global Partnership Section */
.global-partnership-sec {
  margin-bottom: 5.5rem;
}
.global-partnership-container {
  background-color: var(--accent-color);
}
.global-partnership-content {
  padding: 2rem;
  
  & h2 {
    color: var(--bg-white);
  }
  & p {
    color: var(--bg-white);
  }
}

/* Home Review Slider */
.reviews-slider-wrap {
  position: relative;
  max-width: 1100px;
  margin: 3rem auto 0 auto;
}

.reviews-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.reviews-nav-btn:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.reviews-nav-btn.prev {
  left: -20px;
}

.reviews-nav-btn.next {
  right: -20px;
}

@media(max-width: 1140px) {
  .reviews-nav-btn.prev { left: 5px; }
  .reviews-nav-btn.next { right: 5px; }
}

.reviews-grid-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 1rem 0.5rem;
}

.reviews-grid-slider::-webkit-scrollbar {
  display: none;
}

.review-slider-card {
  flex: 0 0 100%;
  background-color: var(--bg-light);
  padding: 2.2rem;
  border: 1.5px solid var(--border-color);
  scroll-snap-align: center;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

@media(min-width: 768px) {
  .review-slider-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media(min-width: 992px) {
  .review-slider-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

.review-slider-card:hover {
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-md);
  background-color: var(--bg-white);
}

.review-stars {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  flex-grow: 1;
}

.review-profile {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  background-color: var(--primary-color);
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-details h5 {
  font-size: 0.95rem;
  color: var(--heading-color);
  margin-bottom: 0.1rem;
}

.review-details span {
  font-size: 0.75rem;
  color: #adb5bd;
}

/* ==========================================================================
   Page-Specific Styles (consolidated)
   ========================================================================== */

/* ==========================================================================
   Traum International - About Us Page Custom Stylesheet
   ========================================================================== */

/* Shared Page Hero Banner (About / Contact / Events / Exam / German) */
.a-hero,
.c-hero,
.e-hero,
.g-hero,
.v-hero {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 90px 0 90px 0;
  text-align: center;
}

.a-hero h1,
.c-hero h1,
.e-hero h1,
.g-hero h1,
.v-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 500;
  margin-bottom: 0px;
  color: var(--bg-white);
  letter-spacing: 1.5px;
}

/* Main Image Block */
.a-main-showcase {
  text-align: center;
  padding: 4rem 0 3rem 0;
}

.a-main-showcase h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-weight: 500;
}

.a-main-img-wrap {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.a-main-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.a-main-img-wrap:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.01);
}

/* Split content grid */
.a-split-grid {
  --bs-gutter-x: 3.5rem;
  --bs-gutter-y: 3.5rem;
  padding: 3rem 0;
}

/* Left column styling */
.a-join-box h3 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--primary-color);
  line-height: 1.35;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.a-join-box p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.a-btn-green {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  font-family: var(--font-nav);
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  display: inline-block;
}

.a-btn-green:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 202, 127, 0.25);
}

/* Right column styling */
.a-info-box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.a-block h4 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-weight: 500;
  border-left: 4px solid var(--secondary-color);
  padding-left: 0.8rem;
}

.a-block p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-color);
}

.a-values-list {
  list-style: none;
  padding-left: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.a-values-list li {
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-color);
  position: relative;
  padding-left: 1.2rem;
}

.a-values-list li::before {
  content: '•';
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1;
}

/* Facilities Section */
.a-facilities-sec {
  padding: 4rem 0;
  border-top: 1px solid var(--border-color);
}

.a-facilities-sec h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
  font-weight: 500;
}

.a-facilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .a-facilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.a-facility-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  padding: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .a-facility-card {
    min-width: 0;
  }
}

.a-fac-img-wrap {
  height: 240px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.a-fac-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.a-fac-details {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
}

.a-fac-details h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.a-fac-details p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color);
}

/* Card hover animation effects */
.a-facility-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}

.a-facility-card:hover .a-fac-img-wrap img {
  transform: scale(1.05);
}

/* FAQ Accordion Styling (SEO) */
.a-seo-faq-sec {
  border-top: 1px solid var(--border-color);
  padding-top: 5rem;
  margin-top: 2rem;
}

/* Shared SEO FAQ Accordion (About / German) */
.a-faq-wrap,
.g-faq-wrap {
  max-width: 900px;
  margin: 3rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.a-faq-card,
.g-faq-card {
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.a-faq-card:hover,
.g-faq-card:hover {
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-md);
}

.a-faq-btn,
.g-faq-btn {
  width: 100%;
  padding: 1.3rem 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary-color);
}

.a-faq-btn:focus,
.g-faq-btn:focus {
  outline: none;
}

.a-faq-body,
.g-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 1.8rem;
}

.a-faq-body p,
.g-faq-body p {
  padding-bottom: 1.5rem;
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
}

.a-faq-indicator,
.g-faq-indicator {
  width: 20px;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.a-faq-indicator::before, .a-faq-indicator::after,
.g-faq-indicator::before, .g-faq-indicator::after {
  content: '';
  position: absolute;
  background-color: var(--primary-color);
  transition: transform 0.3s ease;
}

.a-faq-indicator::before,
.g-faq-indicator::before {
  width: 12px;
  height: 2px;
}

.a-faq-indicator::after,
.g-faq-indicator::after {
  width: 2px;
  height: 12px;
}

.a-faq-card.active .a-faq-indicator,
.g-faq-card.active .g-faq-indicator {
  transform: rotate(45deg);
}

.a-faq-card.active .a-faq-body,
.g-faq-card.active .g-faq-body {
  max-height: 400px;
}

/* ==========================================================================
   Traum International - Contact Us Page Custom Stylesheet
   ========================================================================== */

/* Contact Grid Showcase */
.c-showcase-sec {
  padding: 4rem 0;
  background-color: var(--bg-white);
}

.c-grid {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem;
  align-items: stretch;
}

/* Left Details Styling */
.c-col-left {
  display: flex;
  flex-direction: column;
}

.c-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.c-details h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 1.8rem;
  font-weight: 500;
  font-family: var(--font-heading);
}

.c-details-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.c-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.c-detail-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary-color);
}

.c-detail-value {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color);
}

.c-detail-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.c-detail-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  border-radius: 50%;
  transition: var(--transition-normal);
}

.c-detail-social a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-2px);
}

/* Right Form Styling */
.c-col-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c-col-right h3 {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--primary-color);
  margin-bottom: 1.8rem;
  font-weight: 500;
  font-family: var(--font-heading);
}

.c-form-group {
  margin-bottom: 1.2rem;
}

.c-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media(min-width: 576px) {
  .c-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Controls */
.c-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--heading-color);
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.c-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 62, 140, 0.08);
}

/* Submit Button */
.c-btn-green {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  font-family: var(--font-nav);
  font-weight: 600;
  padding: 0.85rem 2.2rem;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  display: inline-block;
}

.c-btn-green:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 202, 127, 0.25);
}

/* Shared SEO Info Section (Contact / Events) */
.c-seo-info,
.v-seo-info {
  border-top: 1px solid var(--border-color);
  padding: 4rem 0;
  background-color: var(--bg-offwhite);
  margin-top: 2rem;
}

.c-seo-info h2,
.v-seo-info h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 500;
}

.c-seo-grid {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
  padding-top: 2rem;
}

.c-seo-box,
.v-seo-box {
  background-color: var(--bg-white);
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.c-seo-box:hover,
.v-seo-box:hover {
  border-color: var(--secondary-color);
  transform: translateY(-3px);
}

.c-seo-box h3,
.v-seo-box h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.c-seo-box p,
.v-seo-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color);
}

/* Full width map section */
.c-map-sec {
  background-color: var(--bg-white);
  padding: 0;
  margin-top: 2rem;
}

.c-map-full {
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.c-map-full iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ==========================================================================
   Traum International - Events Page Custom Stylesheet
   ========================================================================== */

/* Grid Showcase Layout */
.v-showcase-sec {
  padding: 4rem 0;
}

.v-grid {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Image Card styles */
.v-img-wrap {
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  background-color: var(--bg-white);
}

.v-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: var(--transition-normal);
}

/* Desktop sizing adjustments */
@media(min-width: 768px) {
  .v-col-left {
    display: flex;
    align-items: stretch;
  }
  
  .v-col-left .v-img-wrap {
    width: 100%;
    height: 100%;
  }

  .v-col-left img {
    height: 100%;
  }
  
  .v-col-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between;
  }

  .v-col-right .v-img-wrap {
    height: calc(50% - 1rem);
  }

  .v-col-right img {
    height: 100%;
  }
}

@media(max-width: 767px) {
  .v-col-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .v-col-right .v-img-wrap {
    height: 250px;
  }
  .v-col-left .v-img-wrap {
    height: 400px;
  }
}

/* Card Hover animation actions */
.v-img-wrap:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}

.v-img-wrap:hover img {
  transform: scale(1.04);
}

/* SEO Section (shared info/box styles above) */
.v-seo-grid {
  --bs-gutter-x: 2.5rem;
  --bs-gutter-y: 2.5rem;
  padding-top: 2rem;
}

/* ==========================================================================
   Traum International - Exam Registration Page Custom Stylesheet
   ========================================================================== */

/* Form Container Settings */
.e-form-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  background-color: var(--bg-white);
}

.e-form-group {
  margin-bottom: 1.5rem;
}

/* Fields Grid Rows */
.e-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media(min-width: 768px) {
  .e-row-2 {
    grid-template-columns: 1fr 1fr;
  }
  .e-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Input Fields styling */
.e-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--heading-color);
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.e-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 62, 140, 0.08);
}

/* Labels */
.e-label {
  display: block;
  margin-bottom: 0.6rem;
  font-family: var(--font-nav);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color);
}

.e-label.required::after {
  content: ' *';
  color: #ff3b30;
}

/* Radio buttons list */
.e-radio-group {
  display: flex;
  gap: 2rem;
  padding: 0.2rem 0;
}

.e-radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-color);
}

.e-radio-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
}

/* Submit Button */
.e-btn-green {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  font-family: var(--font-nav);
  font-weight: 600;
  padding: 0.85rem 2.2rem;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  display: inline-block;
}

.e-btn-green:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 202, 127, 0.2);
}

/* SEO Guidelines Block */
.e-guidelines-sec {
  border-top: 1px solid var(--border-color);
  padding-top: 4rem;
  margin-top: 4rem;
}

.e-guidelines-sec h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.e-guidelines-grid {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}

.e-guide-box {
  background-color: var(--bg-light);
  border-left: 4px solid var(--secondary-color);
  padding: 1.8rem;
}

.e-guide-box h4 {
  font-size: 1.15rem;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.e-guide-box ul {
  list-style: disc;
  padding-left: 1.2rem;
  color: var(--text-color);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

/* ==========================================================================
   Traum International - German Language Page Custom Stylesheet
   ========================================================================== */

/* German hero uses the shared page-hero banner; tighter title spacing */
.g-hero h1 {
  margin-bottom: 0.5rem;
}

.g-hero-subtitle {
  font-family: var(--font-nav);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 2px;
}

/* Two Columns Intro Grid */
.g-intro-grid {
  --bs-gutter-x: 3.5rem;
  --bs-gutter-y: 3.5rem;
  align-items: flex-start;
}

.g-intro-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  line-height: 1.3;
  color: var(--primary-color);
  font-weight: 500;
}

.g-intro-right p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 1.2rem;
}

/* Level Rows Stack */
.g-levels-stack {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  margin-top: 4.5rem;
}

.g-level-row {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem;
  align-items: center;
  padding-bottom: 4.5rem;
  border-bottom: 1px solid var(--border-color);
}

.g-level-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Image styling */
.g-level-img-wrap {
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.g-level-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.g-level-row:hover .g-level-img-wrap img {
  transform: scale(1.05);
}

.g-level-row:hover .g-level-img-wrap {
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}

/* Content block styling */
.g-level-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.g-level-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.g-level-badge {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  padding: 0.4rem 0.9rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
}

.g-level-stars {
  display: flex;
  gap: 3px;
}

.g-level-stars span {
  color: var(--secondary-color);
  font-size: 1.15rem;
}

.g-level-content h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.g-level-duration {
  font-family: var(--font-nav);
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.g-level-content p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-color);
}

/* FAQ Accordion Styling (SEO) */
.g-seo-faq-sec {
  border-top: 1px solid var(--border-color);
  padding-top: 5.5rem;
  margin-top: 5.5rem;
}

/* ==========================================================================
   Traum International - Kottayam Page Custom Stylesheet
   ========================================================================== */

/* Custom Color Tokens for Kottayam Page */
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseYellow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 131, 203, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 131, 203, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 131, 203, 0);
  }
}

/* Page-specific classes */
.k-animate {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Hero Section Kottayam */
.k-hero {
  position: relative;
  min-height: 85vh;
  background: linear-gradient(rgba(0, 62, 140, 0.85), rgba(0, 62, 140, 0.85)), url('../assets/willkommen-pic.webp') no-repeat center center/cover;
  display: flex;
  align-items: center;
  color: var(--bg-white);
  padding: 140px 0 80px 0;
}

.k-hero h1 {
  font-size: clamp(2.0rem, 4vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--bg-white);
  font-weight: 500;
}

.k-hero-desc {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.k-hero-grid {
  --bs-gutter-x: 3.5rem;
  --bs-gutter-y: 3.5rem;
  align-items: center;
}

.k-hero-form-card {
  background-color: var(--primary-color);
  padding: 2.5rem 2.2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
}

.k-hero-form-card h3 {
  color: var(--bg-white);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.8rem;
}

.k-hero-form-card .form-label {
  color: rgba(255, 255, 255, 0.8);
}

.k-hero-form-card .form-control {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--bg-white);
}

.k-hero-form-card .form-control option {
  color: var(--heading-color);
}

.k-hero-form-card .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 131, 203, 0.2);
}

.btn-yellow {
  background-color: var(--accent-color);
  color: var(--heading-color);
  font-weight: 600;
}

.btn-yellow:hover {
  background-color: #003E8C;
  transform: translateY(-2px);
}

/* Look For Reliable Section */
.k-intro-image {
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-white);
}

/* Why Learn German Section */
.k-green-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.k-green-card {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  padding: 2.2rem 1.8rem;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.k-green-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background-color: #003E8C;
}

.k-green-card-num {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.k-green-card h4 {
  color: var(--bg-white);
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.k-green-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* Why Choose Metrics */
.k-choose-layout {
  --bs-gutter-x: 3.5rem;
  --bs-gutter-y: 3.5rem;
  align-items: center;
}

.k-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.k-metric-box {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  padding: 2rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.k-metric-box:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.k-metric-num {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 0.2rem;
}

.k-metric-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.k-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.k-bullet-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.k-bullet-icon {
  width: 22px;
  height: 22px;
  background-color: rgba(46, 202, 127, 0.1);
  color: var(--secondary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.k-bullet-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--heading-color);
}

.k-bullet-text p {
  font-size: 0.92rem;
  color: var(--text-color);
}

/* CEFR Courses Grid (A1-B2 Dark Cards) */
.k-cefr-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.k-cefr-card {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 2.5rem 2rem;
  border-top: 4px solid var(--accent-color);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.k-cefr-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--secondary-color);
}

.k-cefr-card-level {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.k-cefr-card h3 {
  color: var(--bg-white);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.k-cefr-card-duration {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.k-cefr-card-for {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
}

.k-cefr-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.k-cefr-card-list li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.k-cefr-card-list li::before {
  content: '✓';
  color: var(--secondary-color);
  font-weight: bold;
}

/* Deep Blue Section */
.k-deepblue-sec {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.k-deepblue-sec h2, .k-deepblue-sec h3 {
  color: var(--bg-white);
}

.k-img-frame {
  position: relative;
  overflow: hidden;
  border: 5px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-lg);
}

.k-path-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.k-path-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.2rem 1.8rem;
  transition: var(--transition-normal);
}

.k-path-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-color);
}

.k-path-card h4 {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.k-path-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

/* Commute Tags & Layouts */
.k-commute-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.k-commute-tag {
  background-color: var(--bg-white);
  border: 1.5px solid var(--secondary-color);
  color: var(--secondary-color);
  padding: 0.5rem 1.2rem;
  font-family: var(--font-nav);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.k-commute-tag:hover {
  background-color: var(--secondary-color);
  color: var(--bg-white);
}

.k-callout-box {
  background-color: var(--bg-light);
  border-left: 4px solid var(--secondary-color);
  padding: 1.5rem;
  margin-top: 2rem;
}

.k-callout-box h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--heading-color);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.k-callout-box p {
  font-size: 0.9rem;
  color: var(--text-color);
}

/* Career Goals Card Grid */
.k-career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.k-career-card {
  background-color: var(--bg-white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.k-career-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}

.k-career-img {
  height: 180px;
  overflow: hidden;
}

.k-career-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.k-career-card:hover .k-career-img img {
  transform: scale(1.08);
}

.k-career-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.k-career-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.k-career-card p {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.k-career-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Double Columns Layout elements (Goethe Prep & Table) */
.k-double-col {
  --bs-gutter-x: 3.5rem;
  --bs-gutter-y: 3.5rem;
}

.k-list-checks {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.k-list-checks li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.95rem;
}

.k-list-checks li::before {
  content: '✓';
  color: var(--secondary-color);
  font-weight: bold;
}

/* FAQ Panel (Matching Screenshot color green) */
.k-faq-container {
  max-width: 900px;
  margin: 3.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.k-faq-item {
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: var(--secondary-color);
  color: var(--bg-white);
  transition: var(--transition-normal);
}

.k-faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--bg-white);
}

.k-faq-question:focus {
  outline: none;
}

.k-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 1.8rem;
  background-color: var(--bg-white);
  color: var(--text-color);
}

.k-faq-answer p {
  padding: 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.k-faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.k-faq-icon::before, .k-faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--bg-white);
  transition: transform 0.3s ease;
}

.k-faq-icon::before {
  width: 14px;
  height: 2px;
}

.k-faq-icon::after {
  width: 2px;
  height: 14px;
}

.k-faq-item.active {
  box-shadow: var(--shadow-md);
}

.k-faq-item.active .k-faq-icon {
  transform: rotate(45deg);
}

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

/* Success Rate Cards */
.k-success-box {
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: var(--transition-normal);
}

.k-success-box:hover {
  border-color: var(--accent-color);
}

.k-success-box h4 {
  color: var(--accent-color);
  font-size: 2.2rem;
  margin-bottom: 0.2rem;
  font-weight: 500;
}

.k-success-box p {
  font-size: 0.88rem;
  opacity: 0.9;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Bootstrap Grid Ratio Overrides (legacy layout parity)
   ========================================================================== */
@media (min-width: 992px) {
  .willkommen-sec > :first-child { width: 45%; }
  .willkommen-sec > :last-child { width: 55%; }
  .stage-sec > :first-child { width: 55%; }
  .stage-sec > :last-child { width: 45%; }
  .a-split-grid > :first-child { width: 54.545%; }
  .a-split-grid > :last-child { width: 45.455%; }
  .c-grid > :first-child { width: 45.455%; }
  .c-grid > :last-child { width: 54.545%; }
  .k-hero-grid > :first-child { width: 55%; }
  .k-hero-grid > :last-child { width: 45%; }
  .k-choose-layout > :first-child { width: 55%; }
  .k-choose-layout > :last-child { width: 45%; }
  .contact-grid > :first-child { width: 36.667%; }
  .contact-grid > :last-child { width: 63.333%; }
  .footer-grid > :nth-child(1) { width: 40%; }
  .footer-grid > :nth-child(2) { width: 26.667%; }
  .footer-grid > :nth-child(3) { width: 33.333%; }
}

@media (min-width: 768px) {
  .g-level-row > :first-child { width: 45.455%; }
  .g-level-row > :last-child { width: 54.545%; }
}