/* ============================================
   GERMAN LANGUAGE INSTITUTE - DESIGN TOKENS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Primary - Deep Teal */
  --primary: #0D4F4F;
  --primary-dark: #073636;
  --primary-light: #1A6B6B;
  --primary-rgb: 13, 79, 79;

  /* Secondary - Warm Coral */
  --secondary: #E86A4B;
  --secondary-dark: #D45A3B;
  --secondary-light: #F07D5F;

  /* Accent - Golden Yellow */
  --accent: #F4B942;
  --accent-dark: #E5A832;
  --accent-light: #F7C85A;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F9F7F4;
  --cream: #F5F1EB;
  --cream-warm: #FAF6EF;
  --light-gray: #E8E5E0;
  --text: #1A1A2E;
  --text-light: #5A5A72;
  --text-muted: #9999AA;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  --gradient-warm: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);

  /* Status */
  --success: #10B981;
  --error: #EF4444;
  --warning: #F59E0B;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-primary: 0 8px 30px rgba(var(--primary-rgb), 0.25);

  /* Border Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-Index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
}

/* ============================================
   CSS RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

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

body.hidden {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background var(--transition);
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color var(--transition), opacity 0.2s ease;
  opacity: 0.5;
}

.cursor-ring.hover {
  width: 60px;
  height: 60px;
  opacity: 1;
  border-color: var(--accent);
}

.cursor-ring.click {
  width: 35px;
  height: 35px;
}

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

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

.loader-logo {
  width: 80px;
  height: 80px;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-text {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-top: 1rem;
  opacity: 0.9;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* ============================================
   PAGE WRAPPER FADE IN
   ============================================ */
.page-wrapper {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.page-wrapper.loaded {
  opacity: 1;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-sm {
  max-width: 900px;
}

.container-lg {
  max-width: 1400px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md), 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 8px 25px rgba(var(--primary-rgb), 0.4);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

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

.btn-accent {
  background: var(--gradient-accent);
  color: var(--text);
}

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

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

.btn-outline-white {
  border: 2px solid var(--white);
  color: var(--white);
}

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

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: 1rem 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-brand-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

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

.navbar-brand-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  transition: color var(--transition);
}

.navbar.scrolled .navbar-brand-text {
  color: var(--text);
}

.navbar-brand-sub {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.8;
}

.navbar-menu {
  display: none;
  gap: 2rem;
  align-items: center;
}

.navbar-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.navbar.scrolled .navbar-link {
  color: var(--text);
}

.navbar-link:hover {
  color: var(--accent);
}

.navbar-link.active {
  color: var(--accent);
}

.navbar-link svg {
  width: 18px;
  height: 18px;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.navbar-link:hover::after,
.navbar-link.active::after {
  width: 100%;
}

.navbar-cta {
  margin-left: 1rem;
}

.navbar-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}

.navbar-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.navbar.scrolled .navbar-toggle span {
  background: var(--text);
}

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

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

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

/* Mobile Menu */
.navbar-mobile {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  padding: 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

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

.navbar-mobile .navbar-link {
  color: var(--white);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar-mobile .navbar-cta {
  margin: 1rem 0 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
  background-image:
    url('images/hero-photo.jpg'),
    linear-gradient(135deg, rgba(7, 54, 54, 0.95) 0%, rgba(13, 79, 79, 0.85) 50%, rgba(7, 54, 54, 0.9) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 54, 54, 0.7) 0%, rgba(13, 79, 79, 0.5) 50%, rgba(7, 54, 54, 0.7) 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.hero-photo {
  position: relative;
}

.hero-photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
}

.hero-photo-ring {
  position: absolute;
  border-radius: 50%;
  border: 3px solid var(--accent);
  animation: rotate 20s linear infinite;
}

.hero-photo-ring-1 {
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  opacity: 0.6;
}

.hero-photo-ring-2 {
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  opacity: 0.3;
  animation-direction: reverse;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-photo-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

.hero-photo-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--secondary);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.hero-photo-badge-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.hero-photo-badge-text {
  font-size: 0.875rem;
  opacity: 0.9;
}

.hero-content {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--white);
}

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

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.9);
}

.hero-description {
  font-size: 1.0625rem;
  opacity: 0.8;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-social {
  display: flex;
  gap: 1rem;
}

.hero-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}

.hero-social a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.hero-social svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--white);
  padding: 3rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--text-light);
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-section {
  background: var(--primary);
  padding: 1.5rem 0;
  overflow: hidden;
}

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

.marquee-content {
  display: flex;
  gap: 3rem;
  padding-right: 3rem;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.marquee-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

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

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

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

.section-header-center .section-subtitle {
  margin: 0.5rem auto 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.section-tag svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */
.services-section {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-description {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary);
  transition: all var(--transition);
}

.service-link:hover {
  color: var(--secondary);
  gap: 0.75rem;
}

.service-link svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   ABOUT/AUTHORITY SECTION
   ============================================ */
.about-section {
  background: var(--white);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-stats-card {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  width: 180px;
}

.about-stats-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.about-stats-label {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.about-content .section-tag {
  color: var(--secondary);
}

.about-content .section-title {
  margin-bottom: 1.5rem;
}

.about-description {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

.about-credentials {
  margin-bottom: 2rem;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.credential-icon {
  width: 24px;
  height: 24px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.credential-icon svg {
  width: 14px;
  height: 14px;
  color: var(--white);
}

.credential-text {
  font-size: 0.9375rem;
  color: var(--text);
}

/* ============================================
   PARALLAX DIVIDER
   ============================================ */
.parallax-divider {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-image: url('../images/parallax-bg.jpg');
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 54, 54, 0.9) 0%, rgba(13, 79, 79, 0.85) 100%);
}

.parallax-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 700px;
  padding: 2rem;
}

.parallax-content .section-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.parallax-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.parallax-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   VIDEO PREVIEW GRID
   ============================================ */
.videos-section {
  background: var(--off-white);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  cursor: pointer;
}

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

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--primary-dark);
}

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

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: all var(--transition);
}

.video-card:hover .video-play-overlay {
  background: rgba(0,0,0,0.5);
}

.video-play-btn {
  width: 64px;
  height: 64px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}

.video-card:hover .video-play-btn {
  transform: scale(1.1);
  background: var(--accent);
}

.video-play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

.video-source-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.video-info {
  padding: 1.25rem;
}

.video-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.video-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ============================================
   LEAD CAPTURE FORM
   ============================================ */
.contact-section {
  background: var(--white);
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .section-title {
  margin-bottom: 1rem;
}

.contact-description {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact-features {
  margin-bottom: 2rem;
}

.contact-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

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

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

.contact-feature-text h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-feature-text p {
  font-size: 0.875rem;
  color: var(--text-light);
}

.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  transition: all var(--transition);
}

.contact-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
}

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

.form-card {
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--text-light);
  margin-bottom: 2rem;
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: all var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

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

.form-submit {
  width: 100%;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

/* ============================================
   TESTIMONIALS GRID
   ============================================ */
.testimonials-section {
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.testimonial-quote-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  fill: var(--accent);
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info h4 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
}

.testimonial-author-info p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--gradient-primary);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.cta-content .section-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text);
  color: var(--white);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-brand-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.footer-brand-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-description {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

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

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */

/* WhatsApp Button - Left Side */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: var(--z-fixed);
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all var(--transition);
  animation: slideInLeft 0.5s ease;
}

.whatsapp-float:hover {
  background: #20BD5A;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: var(--white);
  fill: var(--white);
}

/* Pulse animation ring */
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid #25D366;
  border-radius: 50%;
  animation: pulse-ring 2s ease infinite;
  opacity: 0;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Chatbot Button - Right Side */
.chatbot-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: var(--z-fixed);
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.3);
  cursor: pointer;
  transition: all var(--transition);
  animation: slideInRight 0.5s ease 0.1s both;
}

.chatbot-toggle:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(var(--primary-rgb), 0.4);
}

.chatbot-toggle svg {
  width: 26px;
  height: 26px;
  color: var(--white);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.chatbot-icon-close {
  display: none;
}

.chatbot-toggle.active .chatbot-icon-close {
  display: block;
}

.chatbot-toggle.active .chatbot-icon-open {
  display: none;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Chatbot Overlay & Window */
.chatbot-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: calc(var(--z-fixed) + 1);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.chatbot-overlay.active {
  opacity: 1;
  visibility: visible;
}

.chatbot-window {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  width: 380px;
  max-width: calc(100vw - 2rem);
  max-height: 550px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  z-index: calc(var(--z-fixed) + 2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.chatbot-window.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.chatbot-header {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-avatar svg {
  width: 22px;
  height: 22px;
}

.chatbot-header-text h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.chatbot-header-text p {
  font-size: 0.75rem;
  opacity: 0.8;
}

.chatbot-close {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.chatbot-close:hover {
  background: rgba(255,255,255,0.3);
}

.chatbot-close svg {
  width: 18px;
  height: 18px;
}

.chatbot-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chatbot-message {
  display: flex;
  gap: 0.75rem;
  animation: fadeInUp 0.3s ease;
}

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

.chatbot-message.bot {
  align-self: flex-start;
  max-width: 85%;
}

.chatbot-message.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.message-avatar {
  width: 32px;
  height: 32px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.chatbot-message.user .message-avatar {
  background: var(--secondary);
  color: var(--white);
}

.message-avatar svg {
  width: 16px;
  height: 16px;
}

.message-bubble {
  background: var(--cream);
  padding: 0.875rem 1.125rem;
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text);
}

.chatbot-message.user .message-bubble {
  background: var(--primary);
  color: var(--white);
}

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

.quick-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.quick-action-btn:hover {
  background: var(--cream);
  border-color: var(--primary);
}

.quick-action-btn svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.quick-action-btn span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.service-chat-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
}

.service-chat-card:hover {
  background: var(--cream);
  transform: translateX(5px);
}

.service-chat-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.service-chat-icon svg {
  width: 18px;
  height: 18px;
}

.service-chat-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}

.chatbot-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--light-gray);
}

.chatbot-input-wrapper {
  display: flex;
  gap: 0.75rem;
}

.chatbot-input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  transition: all var(--transition);
}

.chatbot-input:focus {
  border-color: var(--primary);
}

.chatbot-send {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}

.chatbot-send:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.chatbot-send svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--text);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s ease;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast.success {
  background: var(--success);
}

.toast.error {
  background: var(--error);
}

/* ============================================
   RESPONSIVE - MOBILE FIRST
   ============================================ */

/* Large Mobile (480px+) */
@media (min-width: 480px) {
  .navbar-mobile {
    padding: 2rem;
  }

  .hero-buttons {
    flex-wrap: nowrap;
  }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
  .navbar-menu {
    display: flex;
  }

  .navbar-toggle {
    display: none;
  }

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

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

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

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

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1.2fr;
  }

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

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

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
  .container {
    padding: 0 2rem;
  }
}

/* Mobile Only Styles */
@media (max-width: 767px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 6rem 1rem 3rem;
    gap: 2rem;
  }

  .hero-photo {
    order: -1;
    margin-bottom: 1rem;
  }

  .hero-photo-wrapper {
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-photo-ring-1 {
    width: 105%;
    height: 105%;
  }

  .hero-photo-ring-2 {
    width: 110%;
    height: 110%;
  }

  .hero-photo-badge {
    right: 0;
    bottom: -10px;
    padding: 0.75rem 1rem;
  }

  .hero-photo-badge-number {
    font-size: 1.5rem;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-badge {
    justify-content: center;
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    max-width: 100%;
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

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

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

  .stat-item {
    padding: 0.75rem 0.5rem;
  }

  .stat-icon {
    width: 48px;
    height: 48px;
  }

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

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.8125rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image img {
    height: 280px;
  }

  .about-stats-card {
    right: 1rem;
    bottom: 1rem;
    padding: 1rem 1.5rem;
    width: 150px;
  }

  .about-stats-number {
    font-size: 2.5rem;
  }

  .about-description {
    font-size: 0.9375rem;
  }

  .credential-item {
    margin-bottom: 0.75rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .contact-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-whatsapp {
    margin: 0 auto;
  }

  .form-card {
    padding: 1.5rem;
  }

  .services-grid,
  .videos-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    justify-content: center;
    text-align: center;
  }

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

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

  .footer-links {
    align-items: center;
  }

  .footer-contact-item {
    justify-content: center;
    text-align: center;
  }

  .footer-contact-item svg {
    margin-top: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

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

  .service-cards-grid {
    grid-template-columns: 1fr;
  }

  .chatbot-window {
    bottom: 5rem;
    right: 0.5rem;
    left: 0.5rem;
    width: auto;
    max-height: 70vh;
  }

  .whatsapp-float,
  .chatbot-toggle {
    width: 50px;
    height: 50px;
  }

  .whatsapp-float {
    left: 0.75rem;
    bottom: 0.75rem;
  }

  .chatbot-toggle {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .whatsapp-float svg,
  .chatbot-toggle svg {
    width: 24px;
    height: 24px;
  }

  .cta-section {
    padding: 3rem 0;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .parallax-divider {
    min-height: 300px;
  }

  .parallax-content {
    padding: 1.5rem;
  }

  .parallax-buttons {
    flex-direction: column;
    align-items: center;
  }

  .parallax-buttons .btn {
    width: 100%;
    max-width: 250px;
  }

  .video-card {
    margin-bottom: 1rem;
  }

  .video-thumbnail {
    aspect-ratio: 16/10;
  }

  .video-info {
    padding: 1rem;
  }

  .video-title {
    font-size: 0.9375rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.9375rem;
  }

  .marquee-item {
    font-size: 1rem;
    gap: 0.75rem;
  }

  /* Mobile Navigation */
  .navbar-container {
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .navbar-mobile {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    left: 0;
    right: 0;
    padding: 1rem;
  }

  .navbar-brand-icon {
    width: 40px;
    height: 40px;
  }

  .navbar-brand-text {
    font-size: 1.1rem;
  }

  .navbar-brand-sub {
    display: block;
    font-size: 0.625rem;
  }

  .navbar-mobile {
    padding: 1rem;
  }

  .navbar-mobile .navbar-link {
    padding: 0.875rem 0;
    font-size: 1rem;
  }

  .navbar-mobile .navbar-cta {
    width: 100%;
    margin: 1rem 0 0;
    justify-content: center;
  }

  /* Page Header Mobile */
  .page-header {
    padding: 6rem 0 3rem !important;
  }

  .page-header h1 {
    font-size: 2rem !important;
  }

  .page-header p {
    font-size: 1rem !important;
    padding: 0 0.5rem;
  }

  /* Course Cards Mobile */
  .course-card {
    grid-template-columns: 1fr;
  }

  .course-image {
    height: 180px;
  }

  .course-content {
    padding: 1.25rem;
  }

  .course-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .course-level {
    width: 70px;
    height: 70px;
    font-size: 1.25rem;
  }

  .course-info h3 {
    font-size: 1.25rem;
  }

  .course-details {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .course-detail-value {
    font-size: 1.125rem;
  }

  .course-description {
    font-size: 0.9375rem;
  }

  .course-syllabus {
    margin-top: 1rem;
  }

  .course-syllabus h4 {
    font-size: 0.9375rem;
  }

  .syllabus-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .syllabus-item {
    font-size: 0.8125rem;
  }

  .course-card-footer {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.25rem;
  }

  .course-card-footer .btn {
    width: 100%;
  }

  .pricing-card {
    padding: 1.25rem;
  }

  .pricing-card .price {
    font-size: 1.75rem;
  }

  .pricing-feature {
    font-size: 0.75rem;
  }

  /* Process Steps Mobile */
  .process-step {
    padding: 1.5rem 1rem;
  }

  .process-step::after {
    display: none;
  }

  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .process-title {
    font-size: 1.125rem;
  }

  .process-desc {
    font-size: 0.875rem;
  }

  /* FAQ Mobile */
  .faq-header {
    padding: 1rem 1.25rem;
  }

  .faq-header h4 {
    font-size: 0.9375rem;
  }

  /* Timeline Mobile */
  .timeline-container {
    padding-left: 1.5rem;
  }

  /* Team Cards Mobile */
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card img {
    width: 100px;
    height: 100px;
  }

  /* Gallery Mobile */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  /* Form Mobile */
  .form-group {
    margin-bottom: 1rem;
  }

  .form-label {
    font-size: 0.875rem;
  }

  .form-input,
  .form-textarea {
    padding: 0.75rem;
    font-size: 0.9375rem;
  }

  /* Button Touch Targets */
  .btn {
    min-height: 48px;
    padding: 0.75rem 1.5rem;
  }

  /* Links Touch Targets */
  a, button {
    min-height: 44px;
    min-width: 44px;
  }

  /* Service cards mobile */
  .service-icon {
    width: 56px;
    height: 56px;
  }

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

  .service-title {
    font-size: 1.125rem;
  }

  .service-description {
    font-size: 0.875rem;
  }
}

/* Small Mobile (320px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-photo-wrapper {
    max-width: 240px;
  }

  .hero-buttons {
    max-width: 260px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .btn-lg {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  .form-card {
    padding: 1.25rem;
  }

  .parallax-divider {
    min-height: 250px;
  }

  .course-level {
    width: 60px;
    height: 60px;
    font-size: 1.125rem;
  }

  .course-details {
    grid-template-columns: 1fr 1fr;
  }

  .about-stats-card {
    width: 130px;
    padding: 0.75rem 1rem;
  }

  .about-stats-number {
    font-size: 2rem;
  }

  .footer-column h4 {
    font-size: 0.9375rem;
  }

  /* Ensure images don't overflow */
  img {
    max-width: 100%;
  }

  /* Better tap targets on small screens */
  .whatsapp-float,
  .chatbot-toggle {
    width: 48px;
    height: 48px;
  }

  /* Reduce spacing on very small screens */
  .section {
    padding: 2.5rem 0;
  }

  .container {
    padding: 0 1rem;
  }
}

/* Landscape mobile */
@media (max-width: 767px) and (orientation: landscape) {
  .hero-container {
    padding: 5rem 1rem 2rem;
    gap: 1.5rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  /* Mobile navbar fixes */
  .navbar-container {
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .navbar-mobile {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    left: 0;
    right: 0;
    padding: 1rem;
  }

  .navbar-brand-text {
    font-size: 1rem;
  }
}

/* Print Styles */
@media print {
  .navbar, .chatbot-toggle, .whatsapp-float, .page-loader {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
}