* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
  background: #ffffff;
  color: #333;
  margin: 0;
  padding: 0;
}

body.modal-open {
  overflow: hidden;
}

.header {
  background: rgba(245, 247, 250, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.25rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
  padding: 1rem 2rem;
}

/* Prevent layout shift */
body {
  padding-top: 90px;
}

body.header-scrolled {
  padding-top: 80px;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
}

.logo-container a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-container span {
  color: #000 !important;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
  flex: 1;
  justify-content: center;
  margin: 0 2rem;
}

.nav-item {
  position: relative;
}

/* Desktop hover behavior */
@media (min-width: 1025px) {
  .nav-item.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0ms;
  }

  .nav-item.has-dropdown .dropdown {
    transition-delay: 150ms;
  }

  .nav-item.has-dropdown:hover .chevron {
    transform: rotate(180deg);
  }
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1rem;
  color: #333;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover {
  color: #1E88E5;
  background: rgba(30, 136, 229, 0.08);
}

.chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.nav-item.active .chevron {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.25rem;
  min-width: 620px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  z-index: 1001;
  pointer-events: none;
}

.dropdown.show,
.nav-item:hover .dropdown,
.nav-item.active .dropdown {
  pointer-events: auto;
}

.nav-item.active .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem;
  color: #555;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  border: 1px solid transparent;
}

.dropdown-item:hover {
  background: #f0f7ff;
  color: #1E88E5;
  border-color: rgba(30, 136, 229, 0.15);
  transform: translateY(-1px);
}

.dropdown-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
  border-radius: 8px;
  flex-shrink: 0;
  font-size: 0.875rem;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(30, 136, 229, 0.3);
}

.dropdown-icon i {
  font-size: 0.875rem;
}

.dropdown-icon.flag-icon {
  background: transparent;
  padding: 2px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-icon.flag-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.dropdown-content {
  display: flex;
  flex-direction: column;
}

.dropdown-title {
  font-weight: 600;
  color: #1f2937;
  font-size: 0.875rem;
  line-height: 1.4;
}

.dropdown-description {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
  line-height: 1.4;
}

/* Mega Menu Styles */
.mega-menu .dropdown {
  min-width: 800px;
  max-width: 1000px;
}

.mega-dropdown {
  padding: 2rem;
}

.mega-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mega-section {
  display: flex;
  flex-direction: column;
}

.mega-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.mega-grid .dropdown-item {
  padding: 0.5rem;
  font-size: 0.8rem;
}

.mega-grid .dropdown-icon {
  width: 28px;
  height: 28px;
  font-size: 0.75rem;
}

.mega-grid .dropdown-title {
  font-size: 0.8rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Slide-in Menu */
.nav-menu.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #fff;
  flex-direction: column;
  padding: 0;
  margin: 0;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-menu.mobile-menu.active {
  right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1rem;
  width: 100%;
  /* border-bottom: 1px solid #e5e7eb; */
  /* background: #f8f9fa; */
}

.mobile-logo {
  height: 80px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background: #e5e7eb;
  color: #333;
}

/* Mobile Navigation Items */
.nav-menu.mobile-menu .nav-item {
  width: 100%;
  border-bottom: 1px solid #f1f3f4;
}

.nav-menu.mobile-menu .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  color: #333;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0;
  background: none;
  transition: all 0.2s ease;
}

.nav-menu.mobile-menu .nav-link:hover {
  background: #f8f9fa;
  color: #2196F3;
}

.nav-menu.mobile-menu .nav-item:not(.has-dropdown) .nav-link {
  border-left: 4px solid transparent;
}

.nav-menu.mobile-menu .nav-item:not(.has-dropdown) .nav-link:hover {
  border-left-color: #2196F3;
}

/* Mobile Accordion Dropdowns */
.nav-menu.mobile-menu .dropdown {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding: 0;
  background: #f8f9fa;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu.mobile-menu .nav-item.active .dropdown {
  max-height: 500px;
}

.nav-menu.mobile-menu .nav-item.active .chevron {
  transform: rotate(180deg);
}

/* Mobile Dropdown Items */
.nav-menu.mobile-menu .dropdown-grid {
  display: block;
  padding: 0;
}

.nav-menu.mobile-menu .dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0;
  background: none;
  font-size: 0.9rem;
  color: #555;
  transition: all 0.2s ease;
  border-left: 4px solid transparent;
}

.nav-menu.mobile-menu .dropdown-item:hover {
  background: #fff;
  color: #1E88E5;
  border-left-color: #1E88E5;
}

.nav-menu.mobile-menu .dropdown-icon {
  width: 24px;
  height: 24px;
  font-size: 0.75rem;
  margin-right: 0.75rem;
}

.nav-menu.mobile-menu .dropdown-title {
  font-weight: 500;
  font-size: 0.9rem;
}

.nav-menu.mobile-menu .dropdown-description {
  display: none;
}

/* Mobile Mega Menu */
.nav-menu.mobile-menu .mega-dropdown {
  padding: 0;
}

.nav-menu.mobile-menu .mega-content {
  display: block;
}

.nav-menu.mobile-menu .mega-section {
  margin-bottom: 0;
}

.nav-menu.mobile-menu .mega-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1E88E5;
  padding: 0.75rem 2rem 0.5rem;
  margin: 0;
  border-bottom: none;
  background: #f0f7ff;
}

.nav-menu.mobile-menu .mega-grid {
  display: block;
}

/* Mobile Auth Buttons */
.mobile-auth-buttons {
  padding: 1.5rem;
  border-top: 1px solid #e5e7eb;
  background: #f8f9fa;
  margin-top: auto;
}

.mobile-auth-buttons .btn {
  width: 100%;
  margin-bottom: 0.75rem;
  padding: 0.875rem;
  font-weight: 600;
}

.mobile-auth-buttons .btn:last-child {
  margin-bottom: 0;
}

/* Body scroll lock */
body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}


.btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}

.auth-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.btn-sign-in {
  background: transparent;
  color: #333;
  border: 1.5px solid #ddd;
  transition: all 0.3s ease;
  padding: 0.625rem 1.25rem;
}

.btn-sign-in:hover {
  background: #fff;
  border-color: #1E88E5;
  color: #1E88E5;
}

.btn-get-started {
  background: #FF6B00;
  color: #fff;
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.3);
}

.btn-get-started:hover {
  background: #FF5722;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.4);
}

@media (max-width: 1200px) {
  .nav-menu {
    gap: 0.125rem;
  }

  .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }

  .dropdown {
    min-width: 560px;
  }

  .mega-menu .dropdown {
    min-width: 700px;
  }

  .mega-content {
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .nav-menu:not(.mobile-menu) {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 1.5rem;
  }

  .header.scrolled {
    padding: 0.625rem 1.5rem;
  }

  .logo-img {
    height: 38px;
  }

  .nav-container {
    gap: 1rem;
  }

  .auth-buttons {
    display: none;
  }

  body {
    padding-top: 70px;
  }

  body.header-scrolled {
    padding-top: 60px;
  }
}

@media (max-width: 768px) {
  .nav-menu.mobile-menu {
    width: 280px;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 1rem;
  }

  .header.scrolled {
    padding: 0.625rem 1rem;
  }

  .logo-img {
    height: 35px;
  }

  .nav-container {
    gap: 0.75rem;
  }

  .mobile-menu-toggle {
    padding: 0.375rem;
  }

  .mobile-logo {
    height: 35px;
    max-width: 150px;
  }

  .mobile-menu-header {
    padding: 1.25rem 1.25rem 0.875rem;
  }

  body {
    padding-top: 65px;
  }

  body.header-scrolled {
    padding-top: 55px;
  }
}

@media (max-width: 480px) {
  .nav-menu.mobile-menu {
    width: 100%;
    max-width: 100vw;
  }

  .nav-container {
    padding: 0 0.5rem;
    gap: 0.5rem;
  }

  .logo-container a {
    gap: 5px;
  }

  .logo-img {
    height: 40px;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.625rem 0.75rem;
  }

  .header.scrolled {
    padding: 1.5rem 0.75rem;
  }

  .mobile-menu-toggle {
    padding: 0.25rem;
  }

  .mobile-logo {
    height: 100%;
    max-width: 140px;
  }

  .mobile-menu-header {
    padding: 1rem 1rem 0.75rem;
  }

  body {
    padding-top: 60px;
  }

  body.header-scrolled {
    padding-top: 50px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 104vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  width: 100%;
  align-items: center;
}

.hero-content {
  max-width: 100%;
  text-align: left;
  color: #ffffff;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.25;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.hero-subheadline {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  opacity: 0.95;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #FF6B00;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 107, 0, 0.6);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
  }
}

.btn-hero-primary:hover {
  background: #FF5722;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
  animation: none;
}
/* Navbar CTA pulse */
.header .btn-get-started {
  animation: pulse 2s infinite;
}
.header .btn-get-started:hover {
  animation: none;
}

.btn-hero-secondary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Hero Form Wrapper */
.hero-form-wrapper {
  width: 100%;
  margin: 2rem 0 1rem 0;
}

.hero-form-wrapper .apply-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.hero-form-wrapper .apply-form-header h2 {
  color: #1f2937;
}

.hero-form-wrapper .apply-form-header p {
  color: #6b7280;
}

/* Brand variables */
:root {
  --royal-blue: #0056b3;
  --royal-blue-600: #004a9a;
  --section-pad: 70px;
}

/* Hero background fallback and flags/urgency styles */
.hero {
  background-image: url('public/images/hero-poster.webp');
  background-size: cover;
  background-position: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}
.hero-content-wrapper { z-index: 3; }
.hero-topline { display:flex; gap:8px; align-items:center; margin-bottom:0.75rem; }
.flag-icon { width:28px; height:18px; object-fit:cover; border-radius:3px; border:1px solid rgba(255,255,255,0.2); }
.btn-hero-primary { background: var(--royal-blue); box-shadow: 0 6px 22px rgba(0,86,179,0.22); }
.btn-hero-primary:hover { background: var(--royal-blue-600); }
.urgency { margin-left:0.75rem; font-size:0.9rem; background: rgba(255,255,255,0.08); padding:6px 10px; border-radius:20px; display:inline-flex; gap:8px; align-items:center; }
.urgency i { color: #fff; }
.urgency-inline { margin-left:8px; font-size:0.85rem; display:inline-flex; gap:8px; align-items:center; }

/* Apply form tweaks to match brand */
.apply-form-wrapper { border-radius: 16px; }
.form-submit-btn { background: var(--royal-blue); box-shadow: 0 6px 20px rgba(0,86,179,0.18); }
.form-submit-btn:hover { background: var(--royal-blue-600); }

/* Highlights grid */
.highlights-grid { display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:1.5rem; margin-top:2rem; margin-bottom: 2rem; }
.highlight-card { background: #ffffff; padding: 2.5rem; border-radius: 20px; border: 1px solid #e5e7eb; transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; align-items: center; text-align: center; height: 100%; }
.highlight-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0, 86, 179, 0.15); border-color: var(--royal-blue); }
.highlight-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-600) 100%); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: #ffffff; font-size: 2rem; margin-bottom: 1.5rem; }
.highlight-card h3 { margin-bottom: 1rem; color: #1f2937; font-size: 1.1rem; font-weight: 700; }
.highlight-card p { font-size: 0.95rem; color: #6b7280; line-height: 1.6; margin: 0; }

.about-intro { max-width: 900px; margin: 0 auto 2rem; font-size: 1.05rem; line-height: 1.8; color: #4b5563; }

/* Study areas */
.areas-grid { display:grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap:1.5rem; margin-top:2rem; margin-bottom: 2rem; }
.area-card { background: #ffffff; padding: 2.5rem; border-radius: 20px; border: 1px solid #e5e7eb; transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; height: 100%; }
.area-card { grid-column: span 2; }
.area-card.area-card-wide { grid-column: span 3; }
.area-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0, 86, 179, 0.15); border-color: var(--royal-blue); }
.area-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-600) 100%); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: #ffffff; font-size: 2rem; margin-bottom: 1.5rem; }
.area-card h4 { margin-bottom: 1rem; color: #1f2937; font-size: 1.25rem; font-weight: 700; }
.area-card p { font-size: 1rem; color: #6b7280; line-height: 1.6; margin: 0; }
.study-areas {
  padding: var(--section-pad) 5%;
}

/* WCE Advantage */
.wce-advantage {
  padding: var(--section-pad) 5%;
}
.advantage-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap:1.5rem; margin-top:2rem; margin-bottom: 1rem; }
.advantage-card { background: #ffffff; padding: 2rem; border-radius: 18px; border: 1px solid #e5e7eb; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); transition: all 0.3s ease; height: 100%; text-align: left; }
.advantage-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0, 86, 179, 0.15); border-color: var(--royal-blue); }
.advantage-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-600) 100%); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #ffffff; font-size: 1.6rem; margin-bottom: 1.25rem; }
.advantage-card h3 { margin-bottom: 0.75rem; font-size: 1.15rem; font-weight: 700; color: #1f2937; }
.advantage-card p { margin: 0; font-size: 0.98rem; color: #6b7280; line-height: 1.6; }

/* Contact Section */
.contact-section {
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
  padding: var(--section-pad) 5%;
}
.contact-section .section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2rem;
}
.section-subtitle { margin-top: 0.5rem; color: #6b7280; font-size: 1rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-content {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--royal-blue);
  background: rgba(0, 86, 179, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.contact-content h3 { font-size: 1.6rem; color: #111827; margin-bottom: 0.75rem; }
.contact-content p { color: #6b7280; line-height: 1.7; margin-bottom: 1.25rem; }
.contact-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-highlight {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 0.85rem 1rem;
}
.contact-highlight h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}
.contact-highlight p {
  font-size: 0.9rem;
  margin: 0;
  color: #6b7280;
}
.contact-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.85rem; }
.contact-points li { display: flex; gap: 0.75rem; align-items: center; color: #1f2937; font-weight: 500; }
.contact-points i { color: var(--royal-blue); }
.contact-form-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.contact-form .form-group { margin-bottom: 0.5rem; }
.contact-form .form-submit-btn { width: 100%; }
.contact-section .form-group label,
.contact-modal .form-group label {
  padding-top: 0.4rem;
  display: inline-block;
}

.seats-pulse { margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.75rem; background: #ffffff; border: 1px solid #e5e7eb; padding: 0.75rem 1.25rem; border-radius: 999px; box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
.pulse-dot { width: 12px; height: 12px; background: #ef4444; border-radius: 50%; box-shadow: 0 0 0 rgba(239, 68, 68, 0.7); animation: pulseDot 1.4s ease-in-out infinite; }
.pulse-text { font-weight: 700; color: #111827; font-size: 1.05rem; letter-spacing: 0.2px; }

@keyframes pulseDot {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}


/* Sticky footer CTA */
:root { --sticky-footer-height: 100px; }
.sticky-footer-cta { position:fixed; left:0; right:0; bottom:0; background:var(--royal-blue); color:#fff; z-index:1200; box-shadow:0 -6px 30px rgba(0,0,0,0.18); height:auto; min-height:70px; margin-top:0; }
.sticky-footer-cta .sticky-inner { display:flex; align-items:center; justify-content:space-between; padding:12px 5%; max-width:1400px; margin:0 auto; }
.sticky-footer-cta h3 { margin:0; font-size:1.1rem; }
.sticky-footer-cta p { margin:0.25rem 0 0 0; }
.sticky-footer-cta .sticky-phone-link { color: #fff7cc; text-decoration: underline; font-weight: 600; }
.sticky-footer-cta a.btn { background:#fff; color:var(--royal-blue); padding:10px 16px; border-radius:8px; text-decoration:none; font-weight:600; }
.sticky-footer-cta small { display:block; margin-top:6px; opacity:0.9; }

/* Mobile adjustments: increase spacer to match stacked footer height and add section padding to avoid overlap */
@media (max-width: 768px) {
  :root { --sticky-footer-height: 70px; --section-pad: 40px; }
  .hero-layout { grid-template-columns: 1fr; }
  .sticky-footer-cta .sticky-inner { flex-direction:column; gap:8px; align-items:flex-start; }
  .advantage-grid { grid-template-columns: 1fr; margin-bottom: 1rem; }
  .highlights-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .area-card, .area-card.area-card-wide { grid-column: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-highlights { grid-template-columns: 1fr; }
}
 

/* Hero Cards - moved to stats section */
.hero-cards-container {
  display: none;
  /* Hide in hero, will show in stats section */
}

.info-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 0 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.info-card .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(30, 136, 229, 0.1);
  border-radius: 12px;
}

.info-card .icon svg {
  width: 24px;
  height: 24px;
}

.info-card .title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.info-card .subtitle {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.info-card .linkMore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #072713;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-card .linkMore:hover {
  gap: 0.75rem;
  color: #1E88E5;
}

.info-card .linkMore svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.info-card .linkMore:hover svg {
  transform: translateX(4px);
}

/* Logo Carousel Section */
.logo-carousel-section {
  background: #f8f9fa;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.logo-carousel-section .carousel-title {
  color: #1f2937;
}

.carousel-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.logo-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask: linear-gradient(to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
  -webkit-mask: linear-gradient(to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
}

.logo-carousel {
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: scroll-logos 60s linear infinite;
  width: max-content;
}

/* Pause animation on hover for desktop */
.logo-carousel-wrapper:hover .logo-track {
  animation-play-state: paused;
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.logo-item img {
  max-height: 100%;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s ease;
}

.logo-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.logo-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Fade gradients for polish */
.carousel-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}

.carousel-fade-left {
  left: 0;
  background: linear-gradient(to right, #f8f9fa, transparent);
}

.carousel-fade-right {
  right: 0;
  background: linear-gradient(to left, #f8f9fa, transparent);
}

/* Infinite scroll animation */
@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* About WCE Section */

.about-section {
  padding: var(--section-pad) 5%;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.about-header {
  text-align: left;
  margin-bottom: 60px;
}

.year-badge {
  display: inline-block;
  padding: 8px 20px;
  background: #f0f7ff;
  color: #1E88E5;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.main-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.2;
  text-align: left;
}

.subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 100%;
  margin: 0;
  line-height: 1.7;
  text-align: left;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  max-width: 1000px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #1E88E5;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1E88E5, #64B5F6);
  border-radius: 12px 12px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  border-color: #1E88E5;
  box-shadow: 0 8px 24px rgba(30, 136, 229, 0.12);
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: #f0f7ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.service-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stats-grid {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: var(--section-pad) 5%;
  }

  .about-header {
    margin-bottom: 50px;
  }

  .main-title {
    font-size: 2.25rem;
  }

  .subtitle {
    font-size: 1.125rem;
  }

  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 30px;
  }

  .about-content {
    margin-bottom: 0;
  }

  /* Team Image Responsive */
  .team-image-full {
    height: 450px;
    object-fit: contain;
    background: #f8f9fa;
  }

  .about-content-below p {
    font-size: 1rem;
  }

  .about-content-below .subtitle {
    font-size: 1.125rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 20px 0;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 30px 1rem;
  }

  .main-title {
    font-size: 2rem;
  }

  .about-header {
    margin-bottom: 40px;
  }

  .main-title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  /* Team Image Mobile */
  .team-image-full {
    height: 280px;
    border-radius: 12px;
    object-fit: contain;
    background: #f8f9fa;
  }

  .about-content-below {
    padding: 0 1rem;
  }

  .about-content-below p {
    font-size: 0.9rem;
    line-height: 1.3 !important;
  }

  .about-content-below .subtitle {
    font-size: 1rem;
    line-height: 1.2;
  }

  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 50px;
  }

  .about-content {
    margin-bottom: 0;
  }

  .about-content p {
    font-size: 0.9375rem;
  }

  .stats-grid {
    margin-bottom: 60px;
  }

  .service-card {
    padding: 32px 24px;
  }

  .hero-cta {
    justify-content: center;
    align-items: center;
  }
}

/* Partners Section */
.partners-section {
  padding: 50px 5%;
  background: #ffffff;
}

.internships-section {
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  font-style: italic;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30, 136, 229, 0.15);
  border-color: #1E88E5;
}

.partner-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #ffffff;
  font-size: 1.5rem;
}

.partner-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.5;
}

/* Expertise Section */
.expertise-section {
  padding: 50px 5%;
  background: #ffffff;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: var(--section-pad) 5%;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: var(--section-pad) 5%;
  }
}

.expertise-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(30, 136, 229, 0.15);
  border-color: #1E88E5;
}

.expertise-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.expertise-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.expertise-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.expertise-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #4b5563;
  font-size: 0.9375rem;
}

.expertise-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1E88E5;
  font-weight: bold;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 80px;
  max-width: 1400px;
}

.about-content {
  max-width: 100%;
  text-align: left;
}

.about-content p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-image {
  width: 100%;
  height: 100%;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* New Team Image Structure */
.team-image-wrapper {
  width: 100%;
  margin: 40px 0;
}

.team-image-full {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-content-below {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.about-content-below p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
  text-align: left;
}

.about-content-below p:last-child {
  margin-bottom: 0;
}

.about-content-below .subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  line-height: 1.4;
  margin-bottom: 2rem;
}

/* Bento Grid Features Section */
.features-bento {
  padding: 50px 5%;
  background: #f8f9fa;
}

.features-bento-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.features-bento-header h2 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
  line-height: 1.2;
}

.features-bento-header p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.6;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 350px);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.bento-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  transition: all 0.4s ease;
  z-index: 1;
}

.bento-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.bento-card:hover::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.bento-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: #ffffff;
}

.bento-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.bento-card-description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* Typography adjustments for square cards */
.bento-card-square .bento-card-title {
  font-size: 1.5rem;
}

.bento-card-square .bento-card-description {
  font-size: 0.9375rem;
}

/* Bento Grid Layout - Card Sizes */
.bento-card-wide {
  grid-column: span 3;
  grid-row: span 1;
}

.bento-card-square {
  grid-column: span 1;
  grid-row: span 1;
}

/* Responsive Bento Grid */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .bento-card-wide {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 350px;
  }

  .bento-card-square {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 350px;
  }

  .features-bento-header h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .features-bento {
    padding: 30px 5%;
  }

  .features-bento-header {
    margin-bottom: 1.5rem;
  }

  .features-bento-header h2 {
    font-size: 2rem;
  }

  .features-bento-header p {
    font-size: 1rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.25rem;
  }

  .bento-card-wide,
  .bento-card-square {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 350px;
  }

  .bento-card-content {
    padding: 1.5rem;
  }

  .bento-card-title {
    font-size: 1.5rem;
  }

  .bento-card-description {
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .features-bento {
    padding: 20px 1rem;
  }

  .features-bento-header h2 {
    font-size: 1.75rem;
  }

  .bento-card {
    min-height: 300px;
  }

  .bento-card-content {
    padding: 1.25rem;
  }

  .bento-card-title {
    font-size: 1.25rem;
  }

  .bento-card-description {
    font-size: 0.875rem;
  }
}

/* Testimonials Carousel Section */
.testimonials-section {
  padding: var(--section-pad) 5%;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(30, 136, 229, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 107, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.testimonials-header h2 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
  line-height: 1.2;
}

.testimonials-header p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.6;
}

.testimonials-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  width: 100%;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  width: 100%;
  flex-shrink: 0;
  padding: 3.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(30, 136, 229, 0.1);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: rgba(30, 136, 229, 0.1);
  line-height: 1;
  font-weight: bold;
}

.testimonial-card.active {
  opacity: 1;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #1f2937;
  position: relative;
  z-index: 1;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: #FF6B00;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: #4b5563;
  font-style: italic;
  padding-left: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(30, 136, 229, 0.1);
}

.testimonial-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.75rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.testimonial-designation {
  font-size: 0.9375rem;
  color: #6b7280;
  font-weight: 500;
}

.testimonial-details {
  font-size: 1rem;
  color: #6b7280;
}

/* Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #ffffff;
  backdrop-filter: blur(10px);
  border: 2px solid #1E88E5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: #1E88E5;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(30, 136, 229, 0.2);
}

.carousel-arrow:hover {
  background: #1E88E5;
  border-color: #1E88E5;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(30, 136, 229, 0.3);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-arrow.prev {
  left: -25px;
}

.carousel-arrow.next {
  right: -25px;
}

.carousel-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: rgba(30, 136, 229, 0.3);
  color: rgba(30, 136, 229, 0.3);
}

.carousel-arrow:disabled:hover {
  background: #ffffff;
  transform: translateY(-50%);
}

/* Pagination Dots */
.carousel-pagination {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(30, 136, 229, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.pagination-dot.active {
  background: #1E88E5;
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(30, 136, 229, 0.4);
}

.pagination-dot:hover {
  background: rgba(30, 136, 229, 0.4);
}

.pagination-dot.active:hover {
  background: #1565C0;
}

/* Responsive Testimonials */
@media (max-width: 1024px) {
  .testimonials-section {
    padding: var(--section-pad) 5%;
  }

  .testimonials-header h2 {
    font-size: 2.25rem;
  }

  .testimonial-card {
    padding: 2.5rem;
  }

  .testimonial-card::before {
    font-size: 6rem;
    top: 0.5rem;
    left: 1.5rem;
  }

  .testimonial-text {
    font-size: 1.125rem;
  }

  .carousel-arrow.prev {
    left: 10px;
  }

  .carousel-arrow.next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: var(--section-pad) 5%;
  }

  .testimonials-track {
    gap: 0;
  }

  .testimonial-card {
    width: 100%;
    flex-shrink: 0;
  }

  .testimonials-header {
    margin-bottom: 3rem;
  }

  .testimonials-header h2 {
    font-size: 2rem;
  }

  .testimonials-header p {
    font-size: 1rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-card::before {
    font-size: 5rem;
    top: 0.5rem;
    left: 1rem;
  }

  .testimonial-content {
    align-items: flex-start;
  }

  .testimonial-rating {
    justify-content: flex-start;
  }

  .testimonial-text {
    font-size: 1rem;
    padding-left: 0.5rem;
  }

  .testimonial-author {
    align-items: center;
  }

  .testimonial-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-arrow.prev {
    left: 5px;
  }

  .carousel-arrow.next {
    right: 5px;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: var(--section-pad) 5%;
  }

  .testimonials-header h2 {
    font-size: 1.75rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-card::before {
    font-size: 4rem;
    top: 0.25rem;
    left: 0.75rem;
  }

  .testimonial-text {
    font-size: 0.9375rem;
    padding-left: 0.25rem;
  }

  .testimonial-name {
    font-size: 1.125rem;
  }

  .testimonial-designation {
    font-size: 0.875rem;
  }

  .testimonial-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .testimonials-track {
    transition: none;
  }

  .testimonial-card {
    transition: none;
  }
}

/* Footer */
footer {
  background: #000000;
  color: white;
  padding: 80px 5% calc(40px + var(--sticky-footer-height));
  margin-top: 0;
  margin-bottom: 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col-desc {
  max-width: 100%;
  padding-right: 14%;
}

.footer-col img {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col p {
  opacity: 0.9;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  margin-top: 15px;
}

.footer-col ul li {
  padding: 8px 0;
  opacity: 0.9;
  /* cursor: pointer; */
  transition: opacity 0.3s ease;
}

.footer-brochure-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.footer-col ul li:hover {
  opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 30px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.9375rem;
  opacity: 0.8;
  margin: 0;
  line-height: 1.5;
  max-width: 720px;
}

.copyright span {
  display: block;
  margin-top: 0.5rem;
  opacity: 0.85;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: white;
  text-decoration: none;
  font-size: 0.9375rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-legal-links a:hover {
  opacity: 1;
}

.newsletter {
  display: flex;
  margin-top: 15px;
}

.newsletter input {
  flex: 1;
  padding: 15px;
  border-radius: 8px 0 0 8px;
  border: none;
  font-size: 1rem;
}

.newsletter button {
  padding: 15px 25px;
  background: var(--text-dark);
  color: white;
  border: none;
  border-radius: 0 8px 8px 0;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter button:hover {
  background: #222;
}

/* FAQ Section */
.faq-section {
  padding: var(--section-pad) 5%;
  background: #ffffff;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-header {
  margin-bottom: 2rem;
}

.faq-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1f2937;
  margin: 0 0 0.75rem;
}

.faq-header p {
  margin: 0;
  color: #6b7280;
  line-height: 1.7;
  max-width: 850px;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 0.25rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #3b82f6;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.3s ease;
}

.faq-item:hover summary {
  color: #3b82f6;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(30, 136, 229, 0.10);
  color: #1E88E5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item[open] summary::after {
  content: '–';
  transform: rotate(180deg);
  background: rgba(30, 136, 229, 0.20);
}

.faq-answer {
  padding: 0 1.25rem 1rem;
  color: #6b7280;
  line-height: 1.7;
  animation: fadeInDown 0.3s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p {
  margin: 0;
}

/* Apply Now Form Section */
.apply-form-section {
  padding: 50px 5%;
  background: #ffffff;
}

.apply-form-container {
  max-width: 1200px;
  margin: 0 auto;
}

.apply-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Image Placeholder */
.apply-form-image {
  height: 100%;
  min-height: 600px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.apply-form-image-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.apply-form-image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

/* Form Styling */
.apply-form-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.apply-form-header {
  margin-bottom: 2rem;
}

.apply-form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.apply-form-header p {
  font-size: 1rem;
  color: #6b7280;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.form-group label .required {
  color: #FF6B00;
  margin-left: 0.25rem;
}

.form-input-wrapper {
  position: relative;
}

.form-input-wrapper i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 1rem;
  z-index: 1;
}

.form-input-wrapper input,
.form-input-wrapper select {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  color: #1f2937;
  background: #ffffff;
  transition: all 0.3s ease;
  outline: none;
}

.form-input-wrapper input:focus,
.form-input-wrapper select:focus {
  border-color: #1E88E5;
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.form-input-wrapper input::placeholder {
  color: #9ca3af;
}

.form-input-wrapper select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
  cursor: pointer;
}

.form-input-wrapper select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231E88E5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

.form-submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: #FF6B00;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
  margin-top: 0.5rem;
  animation: pulse 2s infinite;
}

.form-submit-btn:hover {
  background: #FF5722;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
  animation: none;
}

.form-submit-btn:active {
  transform: translateY(0);
}

/* Responsive Apply Form */
@media (max-width: 1024px) {
  .apply-form-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .apply-form-image {
    min-height: 400px;
    order: -1;
  }

  .apply-form-wrapper {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .apply-form-section {
    padding: 30px 5%;
  }

  .apply-form-wrapper {
    padding: 2rem;
  }

  .apply-form-header h2 {
    font-size: 1.75rem;
  }

  .apply-form-image {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .apply-form-section {
    padding: 20px 1rem;
  }

  .apply-form-wrapper {
    padding: 1.5rem;
  }

  .apply-form {
    gap: 1.25rem;
  }
}

/* Logo Carousel Responsive */
@media (max-width: 1024px) {
  .carousel-title {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }

  .logo-track {
    gap: 3rem;
    animation-duration: 45s;
  }

  .logo-item {
    height: 70px;
    padding: 0.875rem 1.25rem;
  }

  .logo-item img {
    max-width: 150px;
  }
}

@media (max-width: 768px) {
  .logo-carousel-section {
    padding: 60px 0;
  }

  .carousel-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .logo-track {
    gap: 2rem;
    animation-duration: 35s;
  }

  .logo-item {
    height: 60px;
    padding: 0.75rem 1rem;
  }

  .logo-item img {
    max-width: 120px;
  }

  .carousel-fade {
    width: 80px;
  }
}

/* Hero Responsive Styles */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.75rem;
    line-height: 1.25;
  }

  .hero-subheadline {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 1.05rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-form-wrapper .apply-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: calc(100vh - 65px);
    height: auto;
    padding: 2rem 0;
    display: flex;
    align-items: flex-start;
  }

  .hero-content-wrapper {
    padding: 2rem 5%;
    min-height: calc(100vh - 65px);
    align-items: flex-start;
    padding-top: 3rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero-subheadline {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }

  .hero-content {
    text-align: center;
    padding: 0;
  }

  .hero-form-wrapper .apply-form-wrapper {
    padding: 2rem;
  }

  .info-cards-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: calc(100vh - 60px);
    height: auto;
    padding: 1.5rem 0;
    display: flex;
    align-items: flex-start;
  }

  .hero-content-wrapper {
    padding: 1.5rem;
    min-height: calc(100vh - 60px);
    align-items: flex-start;
    padding-top: 2rem;
  }

  .hero-title {
    font-size: 1.65rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }

  .hero-subheadline {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .btn-hero-secondary {
    font-size: 0.9375rem;
  }

  .btn-hero-primary {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .hero-form-wrapper .apply-form-wrapper {
    padding: 1.5rem;
  }

  .carousel-title {
    font-size: 1.3rem;
  }

  .logo-track {
    gap: 2rem;
    animation-duration: 30s;
  }

  .logo-item {
    height: 50px;
    padding: 0.5rem 0.75rem;
  }

  .logo-item img {
    max-width: 120px;
  }

  .carousel-fade {
    width: 60px;
  }

  /* Info Cards responsive styles */
  .info-card {
    padding: 1.5rem;
  }

  .info-card .title {
    font-size: 1.25rem;
  }

  .info-card .subtitle {
    font-size: 0.875rem;
  }

  /* Other responsive styles */

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col-desc {
    max-width: 100%;
    padding-right: 0;
  }

  .footer-col-desc {
    max-width: 100%;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-legal-links {
    justify-content: center;
    gap: 1.5rem;
  }

  .newsletter {
    flex-direction: column;
  }

  .newsletter input,
  .newsletter button {
    border-radius: 8px;
    margin-bottom: 10px;
  }
}

/* Reduced motion support for logo carousel */
@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }

  .logo-carousel-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .logo-carousel-wrapper::-webkit-scrollbar {
    display: none;
  }

  .logo-track {
    justify-content: flex-start;
    padding: 0 2rem;
  }
}

/* Mobile Sticky Bottom Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
  padding: 8px 0;
}

.sticky-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #6b7280;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 70px;
}

.sticky-item:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.sticky-item.whatsapp {
  color: #25D366;
}

.sticky-item.phone {
  color: #3b82f6;
}

.sticky-item.brochure {
  color: var(--royal-blue);
  border: none;
  background: transparent;
  cursor: pointer;
}

.sticky-item svg {
  margin-bottom: 4px;
}

.sticky-item span {
  font-size: 0.75rem;
  font-weight: 500;
}

/* Contact modal */
.contact-modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 1300; padding: 1rem; }
.contact-modal.is-open { display: flex; }
.contact-modal-overlay { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.55); backdrop-filter: blur(2px); }
.contact-modal-dialog { position: relative; background: #ffffff; border-radius: 22px; padding: 1.75rem; width: min(560px, 94vw); max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 80px rgba(0,0,0,0.3); border: 1px solid #e5e7eb; }
.contact-modal-dialog h3 { margin-bottom: 0.35rem; font-size: 1.4rem; color: #111827; }
.contact-modal-dialog p { margin-bottom: 1.25rem; color: #6b7280; font-size: 0.98rem; line-height: 1.6; }
.contact-modal-close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border: none; background: #f3f4f6; border-radius: 50%; cursor: pointer; display: grid; place-items: center; transition: background 0.2s ease; }
.contact-modal-close:hover { background: #e5e7eb; }
.contact-modal-close::before, .contact-modal-close::after { content: ""; position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; background: #374151; transform-origin: center; }
.contact-modal-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.contact-modal-close::after { transform: translate(-50%, -50%) rotate(-45deg); }

.contact-modal .contact-form { display: grid; gap: 1rem; }
.contact-modal .form-group label { font-size: 0.85rem; color: #374151; }
.contact-modal .form-input-wrapper input,
.contact-modal .form-input-wrapper select {
  background: #f9fafb;
  border-color: #e5e7eb;
}
.contact-modal .form-input-wrapper input:focus,
.contact-modal .form-input-wrapper select:focus {
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.12);
}
.contact-modal .brochure-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .sticky-footer-cta {
    display: none;
  }
}

@media (min-width: 1025px) {
  .testimonial-card {
    width: calc(50% - 12px);
  }
}

/* Thank You Page */
.thankyou-body {
  padding-top: 0;
  background: radial-gradient(circle at top, rgba(22, 78, 99, 0.12), transparent 55%),
    linear-gradient(135deg, #f7fafc 0%, #eef2ff 100%);
  color: #0f172a;
}

.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 20px;
  position: relative;
  overflow: hidden;
}

.thankyou-blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(0);
  opacity: 0.35;
  z-index: 0;
}

.thankyou-blob-one {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(14, 116, 144, 0.25) 0%, transparent 70%);
  top: -140px;
  right: -120px;
}

.thankyou-blob-two {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
  bottom: -160px;
  left: -120px;
}

.thankyou-card {
  position: relative;
  z-index: 1;
  width: min(680px, 92vw);
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
  text-align: center;
}

.thankyou-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.thankyou-icon {
  margin: 28px auto 16px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.thankyou-card h1 {
  font-size: clamp(1.9rem, 2.4vw, 2.5rem);
  margin-bottom: 12px;
  color: #0f172a;
}

.thankyou-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
}

.thankyou-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.thankyou-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
}

.thankyou-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.24);
}

.thankyou-btn.secondary {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: none;
}

.thankyou-note {
  margin-top: 22px;
  font-size: 0.95rem;
}

.thankyou-note a {
  color: #0ea5e9;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 640px) {
  .thankyou-card {
    padding: 36px 24px;
  }

  .thankyou-actions {
    flex-direction: column;
  }

  .thankyou-btn {
    width: 100%;
  }
}