/********** Template CSS **********/
:root {
  --primary: #3B5B8D;
  --light: #1A2332;
  --dark: #0F1419;
  --accent: #4A6FA5;
  --accent-hover: #2D4A6E;
  --secondary: #2A3F5C;
  --bg-dark: #0F1419;
  --bg-darker: #0A0E13;
  --text-light: #E8EDF5;
  --text-muted: #A8B5C8;
  --blue-dark: #15202B;
  --blue-medium: #1E2F3F;
  --blue-light: #2A4A6E;
  --blue-accent: #3B5B8D;
  --blue-glow: rgba(59, 91, 141, 0.3);
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #E8EDF5;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #E8EDF5;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(135, 80, 109, 0.6); */
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header-inner {
  background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}

.booking {
  position: relative;
  margin-top: -100px !important;
  z-index: 1;
}

/*** Footer ***/
.newsletter {
  position: relative;
  z-index: 1;
}

.footer {
  position: relative;
  /* margin-top: -110px;
    padding-top: 180px; */
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #E8EDF5;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #E8EDF5;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}


.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
  text-align: center;
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

/* Google Fonts - Libre Franklin */
@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@300;400;500;600;700;800;900&display=swap");

* {
  font-family: 'Libre Franklin', sans-serif;
}

body {
  font-family: 'Libre Franklin', sans-serif;
  background-color: #0F1419;
  color: #E8EDF5;
}

/* Premium Cookie Banner */
.cookie-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(26, 35, 50, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(59, 91, 141, 0.3);
  padding: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  transform: translateY(100%);
  opacity: 0;
}

.cookie-wrapper.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-wrapper.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cookie-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 91, 141, 0.2);
  border-radius: 12px;
  color: #4A6FA5;
  flex-shrink: 0;
}

.cookie-icon svg {
  width: 28px;
  height: 28px;
}

.cookie-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #E8EDF5;
  margin: 0;
  white-space: nowrap;
}

.cookie-text {
  flex: 1;
  min-width: 0;
}

.cookie-text p {
  margin: 0;
  color: #A8B5C8;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.cookie-link {
  color: #4A6FA5;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  margin-left: 4px;
}

.cookie-link:hover {
  color: #5B8FC8;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  font-family: 'Libre Franklin', sans-serif;
}

.cookie-btn svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #3B5B8D, #4A6FA5);
  color: #E8EDF5;
  box-shadow: 0 4px 15px rgba(59, 91, 141, 0.3);
  border: 1px solid rgba(74, 111, 165, 0.3);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 91, 141, 0.4);
  background: linear-gradient(135deg, #4A6FA5, #5B8FC8);
}

.cookie-btn-accept:hover svg {
  transform: scale(1.1);
}

.cookie-btn-decline {
  background: rgba(15, 20, 25, 0.6);
  color: #A8B5C8;
  border: 1px solid rgba(59, 91, 141, 0.3);
}

.cookie-btn-decline:hover {
  background: rgba(15, 20, 25, 0.8);
  color: #E8EDF5;
  border-color: rgba(74, 111, 165, 0.5);
  transform: translateY(-2px);
}

.cookie-btn-decline:hover svg {
  transform: rotate(90deg);
}

@media (max-width: 992px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 24px;
  }

  .cookie-header {
    width: 100%;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .cookie-content {
    padding: 20px;
  }

  .cookie-title {
    font-size: 1.125rem;
  }

  .cookie-text p {
    font-size: 0.875rem;
  }

  .cookie-btn {
    padding: 10px 20px;
    font-size: 0.875rem;
  }
}

.hidden {
  display: none;
}

header i {
  color: #3B5B8D;
  font-size: 32px;
  text-align: center;
}

header h2 {
  color: #3B5B8D;
  font-weight: 500;
  text-align: center;
}



  /* new styles  */

  :root {
    --dark-bg: #0F1419;
    --light-bg: #1A2332;
    --accent: #3B5B8D;
    --accent-hover: #2D4A6E;
    --auxiliary: #4A6FA5;
    --light-text: #E8EDF5;
    --dark-text: #A8B5C8;
    --white: #E8EDF5;
    --light-gray: #1E2F3F;
  }

/* Premium Footer Styles */
.premium-footer {
  background: linear-gradient(180deg, #0A0E13 0%, #0F1419 50%, #15202B 100%);
  border-top: 1px solid rgba(59, 91, 141, 0.2);
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.premium-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(59, 91, 141, 0.05), transparent 70%);
  pointer-events: none;
}

.footer-waves {
  position: relative;
  height: 120px;
  overflow: hidden;
  margin-top: -1px;
}

.footer-waves svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-main {
  padding: 70px 0 50px;
  position: relative;
  z-index: 1;
}

.footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-sections {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
  gap: 4rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-brand-section {
  gap: 1.5rem;
}

.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-brand-link:hover {
  transform: translateX(5px);
}

.footer-logo-container {
  position: relative;
  width: 50px;
  height: 50px;
}

.footer-brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(59, 91, 141, 0.4);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(59, 91, 141, 0.2);
}

.footer-brand-link:hover .footer-brand-logo {
  border-color: #3B5B8D;
  box-shadow: 0 6px 25px rgba(59, 91, 141, 0.4);
  transform: rotate(-5deg) scale(1.05);
}

.footer-logo-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 91, 141, 0.3), transparent 70%);
  animation: footerPulse 2.5s ease-in-out infinite;
}

@keyframes footerPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.1; }
}

.footer-brand-text {
  display: flex;
  align-items: baseline;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.footer-brand-main {
  color: #E8EDF5;
}

.footer-brand-accent {
  color: #3B5B8D;
  background: linear-gradient(135deg, #3B5B8D, #4A6FA5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  color: #A8B5C8;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.footer-social-grid {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-btn {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 91, 141, 0.1);
  border-radius: 12px;
  color: #3B5B8D;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(59, 91, 141, 0.2);
  overflow: hidden;
}

.social-btn-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(59, 91, 141, 0.3), transparent);
  border-radius: 12px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover .social-btn-bg {
  transform: translate(-50%, -50%) scale(1.5);
}

.social-btn:hover {
  transform: translateY(-4px) rotate(5deg);
  background: rgba(59, 91, 141, 0.2);
  border-color: #3B5B8D;
  box-shadow: 0 8px 20px rgba(59, 91, 141, 0.3);
  color: #4A6FA5;
}

.social-btn .material-icons {
  font-size: 22px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.social-btn:hover .material-icons {
  transform: scale(1.2);
}

.footer-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #E8EDF5;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.heading-icon {
  width: 20px;
  height: 20px;
  color: #4A6FA5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
  flex-shrink: 0;
}

.footer-section:hover .heading-icon {
  filter: grayscale(0);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-menu li {
  margin: 0;
}

.footer-menu-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  color: #A8B5C8;
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.footer-menu-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #3B5B8D, #4A6FA5);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  border-radius: 0 3px 3px 0;
}

.footer-menu-link:hover::before {
  transform: scaleY(1);
}

.footer-menu-link:hover {
  color: #3B5B8D;
  background: rgba(59, 91, 141, 0.08);
  padding-left: 20px;
  transform: translateX(5px);
}

.link-arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #3B5B8D;
  font-weight: 600;
}

.footer-menu-link:hover .link-arrow {
  opacity: 1;
  transform: translateX(0);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
}

.contact-info-item:hover {
  background: rgba(59, 91, 141, 0.1);
  transform: translateX(5px);
}

.contact-icon-wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 91, 141, 0.15);
  border-radius: 10px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon-wrapper {
  background: rgba(59, 91, 141, 0.25);
  transform: rotate(-5deg) scale(1.1);
}

.contact-icon-wrapper .material-icons {
  font-size: 20px;
  color: #3B5B8D;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.contact-label {
  font-size: 0.75rem;
  color: #A8B5C8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.contact-value {
  font-size: 0.9rem;
  color: #E8EDF5;
  line-height: 1.5;
}

.contact-info-item:hover .contact-value {
  color: #3B5B8D;
}

.footer-bar {
  border-top: 1px solid rgba(59, 91, 141, 0.2);
  padding: 24px 0;
  background: rgba(10, 18, 16, 0.5);
  position: relative;
}

.footer-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 91, 141, 0.3), transparent);
}

.footer-bar-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copyright-text {
  color: #A8B5C8;
  font-size: 0.85rem;
  margin: 0;
}

.footer-copyright-text strong {
  color: #3B5B8D;
  font-weight: 700;
}

.footer-registry {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-registry span {
  color: #A8B5C8;
  font-size: 0.8rem;
}

.footer-registry .separator {
  color: rgba(59, 91, 141, 0.5);
}

@media (max-width: 1024px) {
  .footer-sections {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .footer-wrapper {
    padding: 0 1rem;
  }

  .footer-sections {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-legal {
    flex-direction: column;
    text-align: center;
  }

  .footer-registry {
    justify-content: center;
  }
}

/* Premium Tips Section */
.premium-tips {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0F1419 0%, #15202B 100%);
  position: relative;
  overflow: hidden;
}

.premium-tips::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(59, 91, 141, 0.05), transparent 70%);
  pointer-events: none;
}

.tips-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.tips-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(59, 91, 141, 0.1);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #4A6FA5;
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.tips-badge span:last-child {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4A6FA5;
  letter-spacing: 0.5px;
}

.tips-main-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #E8EDF5;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.title-underline {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3B5B8D, #4A6FA5);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(74, 111, 165, 0.5);
}

.tips-subtitle {
  font-size: 1.1rem;
  color: #A8B5C8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.tip-card {
  position: relative;
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.tip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tip-card:hover::before {
  opacity: 1;
}

.tip-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 111, 165, 0.4);
  box-shadow: 0 20px 40px rgba(59, 91, 141, 0.3);
}

.tip-card-featured {
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.15), rgba(74, 111, 165, 0.1));
  border-color: rgba(74, 111, 165, 0.3);
}

.tip-card-featured::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 111, 165, 0.1), transparent);
  animation: featuredGlow 3s ease-in-out infinite;
}

@keyframes featuredGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.tip-badge-featured {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 6px 14px;
  background: linear-gradient(135deg, #3B5B8D, #4A6FA5);
  color: #E8EDF5;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(59, 91, 141, 0.4);
}

.tip-card-inner {
  position: relative;
  z-index: 2;
}

.tip-icon-wrapper {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
}

.tip-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.2), rgba(74, 111, 165, 0.1));
  border-radius: 16px;
  transition: all 0.4s ease;
}

.tip-card:hover .tip-icon-bg {
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.3), rgba(74, 111, 165, 0.2));
  transform: rotate(5deg) scale(1.1);
}

.tip-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 32px;
  height: 32px;
  color: #4A6FA5;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(0.2);
  transition: all 0.4s ease;
}

.tip-card:hover .tip-icon {
  filter: grayscale(0);
  transform: translate(-50%, -50%) scale(1.1);
}

.tip-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #E8EDF5;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.tip-description {
  font-size: 1rem;
  color: #A8B5C8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tip-footer {
  margin-top: auto;
}

.tip-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4A6FA5;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tip-card:hover .tip-link {
  color: #5B8FC8;
  gap: 12px;
}

.tip-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(74, 111, 165, 0.3), transparent);
  border-radius: 50%;
  transition: all 0.6s ease;
  pointer-events: none;
}

.tip-card:hover .tip-card-glow {
  width: 300px;
  height: 300px;
}

.tips-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.btn-tips-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #3B5B8D, #4A6FA5);
  color: #E8EDF5;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(59, 91, 141, 0.4);
  border: 1px solid rgba(74, 111, 165, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-tips-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-tips-primary:hover::before {
  left: 100%;
}

.btn-tips-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(59, 91, 141, 0.6);
  background: linear-gradient(135deg, #4A6FA5, #5B8FC8);
}

.btn-arrow {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.btn-tips-primary:hover .btn-arrow {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .premium-hero {
    padding: 120px 20px 80px;
    min-height: auto;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .tips-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tip-card {
    padding: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 2rem;
    min-height: auto;
  }
}

/* Premium Features Section */
.premium-features {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0F1419 0%, #15202B 100%);
  position: relative;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(59, 91, 141, 0.1);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.icon-sparkle {
  color: #4A6FA5;
  animation: sparkleRotate 2s ease-in-out infinite;
}

@keyframes sparkleRotate {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
}

.features-badge span:last-child {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4A6FA5;
  letter-spacing: 0.5px;
}

.features-main-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #E8EDF5;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.title-underline-features {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #3B5B8D, #4A6FA5);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(74, 111, 165, 0.5);
}

.features-description {
  font-size: 1.1rem;
  color: #A8B5C8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: rgba(26, 35, 50, 0.4);
  border: 1px solid rgba(59, 91, 141, 0.15);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(74, 111, 165, 0.1), transparent);
  transition: left 0.6s ease;
}

.feature-item:hover::before {
  left: 100%;
}

.feature-item:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 111, 165, 0.3);
  box-shadow: 0 20px 40px rgba(59, 91, 141, 0.2);
}

.feature-icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.2), rgba(74, 111, 165, 0.1));
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
}

.feature-item:hover .feature-icon-box {
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.3), rgba(74, 111, 165, 0.2));
  transform: rotate(5deg) scale(1.1);
}

.feature-icon {
  color: #4A6FA5;
  transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
  color: #5B8FC8;
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #E8EDF5;
  margin-bottom: 1rem;
}

.feature-text {
  font-size: 1rem;
  color: #A8B5C8;
  line-height: 1.7;
}

/* Premium Stats Section */
.premium-stats {
  padding: 100px 20px;
  background: linear-gradient(180deg, #15202B 0%, #1A2332 100%);
  position: relative;
  overflow: hidden;
}

.stats-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(59, 91, 141, 0.1), transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.stat-card {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(26, 35, 50, 0.5);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(74, 111, 165, 0.4);
  box-shadow: 0 25px 50px rgba(59, 91, 141, 0.3);
}

.stat-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.2), rgba(74, 111, 165, 0.1));
  border-radius: 16px;
  transition: all 0.4s ease;
}

.stat-card:hover .stat-icon-wrapper {
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.3), rgba(74, 111, 165, 0.2));
  transform: rotate(-5deg) scale(1.1);
}

.stat-icon {
  color: #4A6FA5;
  transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
  color: #5B8FC8;
  transform: scale(1.1);
}

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4A6FA5, #5B8FC8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #E8EDF5;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-description {
  font-size: 0.9rem;
  color: #A8B5C8;
}

/* Pricing list check icons */
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0.75rem 0;
  color: #A8B5C8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.check-icon {
  color: #4A6FA5;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.pricing-card:hover .check-icon {
  color: #5B8FC8;
  transform: scale(1.1);
}

/* Pricing icon styles */
.pricing-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A6FA5;
  transition: all 0.4s ease;
}

.pricing-card:hover .pricing-icon {
  color: #5B8FC8;
  transform: scale(1.1) rotate(5deg);
}

@media (max-width: 768px) {
  .features-grid,
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-item,
  .stat-card {
    padding: 1.5rem;
  }

  .stat-value {
    font-size: 2.5rem;
  }
}

/* Premium FAQ Page Styles */
.premium-faq-hero {
  padding: 160px 20px 100px;
  background: linear-gradient(180deg, #0F1419 0%, #15202B 100%);
  position: relative;
  overflow: hidden;
  margin-top: -88px;
}

.faq-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 30% 40%, rgba(59, 91, 141, 0.2), transparent),
    radial-gradient(2px 2px at 70% 60%, rgba(74, 111, 165, 0.15), transparent);
  background-size: 300% 300%;
  animation: patternMove 25s ease infinite;
  pointer-events: none;
}

.faq-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.faq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(59, 91, 141, 0.1);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.faq-hero-badge svg {
  color: #4A6FA5;
  width: 20px;
  height: 20px;
}

.faq-hero-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4A6FA5;
  letter-spacing: 0.5px;
}

.faq-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #E8EDF5;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.faq-title-underline {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #3B5B8D, #4A6FA5);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(74, 111, 165, 0.5);
}

.faq-hero-description {
  font-size: 1.2rem;
  color: #A8B5C8;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.premium-faq-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #15202B 0%, #0F1419 100%);
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.faq-category-btn {
  padding: 12px 24px;
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 50px;
  color: #A8B5C8;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.faq-category-btn:hover {
  background: rgba(59, 91, 141, 0.15);
  border-color: rgba(74, 111, 165, 0.3);
  color: #E8EDF5;
}

.faq-category-btn.active {
  background: linear-gradient(135deg, #3B5B8D, #4A6FA5);
  border-color: #4A6FA5;
  color: #E8EDF5;
  box-shadow: 0 4px 15px rgba(59, 91, 141, 0.4);
}

.faq-accordion-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  border-color: rgba(74, 111, 165, 0.3);
  box-shadow: 0 8px 25px rgba(59, 91, 141, 0.2);
}

.faq-item.active {
  border-color: rgba(74, 111, 165, 0.4);
  box-shadow: 0 12px 35px rgba(59, 91, 141, 0.3);
}

.faq-question {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(59, 91, 141, 0.05);
}

.faq-question-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: #4A6FA5;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  color: #5B8FC8;
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #E8EDF5;
  margin: 0;
  line-height: 1.4;
}

.faq-arrow {
  width: 24px;
  height: 24px;
  color: #4A6FA5;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: #5B8FC8;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer p {
  padding: 0 2rem 2rem;
  color: #A8B5C8;
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0;
}

.faq-cta-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0F1419 0%, #15202B 100%);
}

.faq-cta-card {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.faq-cta-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #E8EDF5;
  margin-bottom: 1rem;
}

.faq-cta-content p {
  font-size: 1.1rem;
  color: #A8B5C8;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.btn-faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #3B5B8D, #4A6FA5);
  color: #E8EDF5;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(59, 91, 141, 0.4);
  border: 1px solid rgba(74, 111, 165, 0.3);
}

.btn-faq-cta:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(59, 91, 141, 0.6);
  background: linear-gradient(135deg, #4A6FA5, #5B8FC8);
}

.btn-faq-cta svg {
  transition: transform 0.3s ease;
}

.btn-faq-cta:hover svg {
  transform: translateX(5px);
}

/* Premium Contact Page Styles */
.premium-contact-hero {
  padding: 160px 20px 100px;
  background: linear-gradient(180deg, #0F1419 0%, #15202B 100%);
  position: relative;
  overflow: hidden;
  margin-top: -88px;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 30% 40%, rgba(59, 91, 141, 0.2), transparent),
    radial-gradient(2px 2px at 70% 60%, rgba(74, 111, 165, 0.15), transparent);
  background-size: 300% 300%;
  animation: patternMove 25s ease infinite;
  pointer-events: none;
}

.contact-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(59, 91, 141, 0.1);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.contact-hero-badge svg {
  color: #4A6FA5;
  width: 20px;
  height: 20px;
}

.contact-hero-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4A6FA5;
  letter-spacing: 0.5px;
}

.contact-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #E8EDF5;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.contact-title-underline {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #3B5B8D, #4A6FA5);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(74, 111, 165, 0.5);
}

.contact-hero-description {
  font-size: 1.2rem;
  color: #A8B5C8;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.premium-contact-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #15202B 0%, #0F1419 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(74, 111, 165, 0.4);
  box-shadow: 0 12px 30px rgba(59, 91, 141, 0.3);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.2), rgba(74, 111, 165, 0.1));
  border-radius: 12px;
  margin-bottom: 1.5rem;
  color: #4A6FA5;
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.3), rgba(74, 111, 165, 0.2));
  transform: scale(1.1) rotate(5deg);
  color: #5B8FC8;
}

.contact-info-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #E8EDF5;
  margin-bottom: 0.75rem;
}

.contact-link {
  display: block;
  color: #4A6FA5;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #5B8FC8;
}

.contact-info-card p {
  color: #A8B5C8;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.contact-time,
.contact-address {
  color: #A8B5C8;
  line-height: 1.7;
  margin: 0;
}

.contact-form-column {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.contact-form-card {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 120px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-form-card form {
  width: 100%;
  max-width: 100%;
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #E8EDF5;
  margin-bottom: 0.75rem;
}

.form-header p {
  color: #A8B5C8;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.premium-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #A8B5C8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
  padding: 14px 18px;
  background: rgba(15, 20, 25, 0.6);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 12px;
  color: #E8EDF5;
  font-size: 1rem;
  font-family: 'Libre Franklin', sans-serif;
  transition: all 0.3s ease;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #4A6FA5;
  background: rgba(15, 20, 25, 0.8);
  box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.btn-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #3B5B8D, #4A6FA5);
  color: #E8EDF5;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(59, 91, 141, 0.4);
  border: 1px solid rgba(74, 111, 165, 0.3);
  margin-top: 0.5rem;
}

.btn-form-submit:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(59, 91, 141, 0.6);
  background: linear-gradient(135deg, #4A6FA5, #5B8FC8);
}

.btn-form-submit svg {
  transition: transform 0.3s ease;
}

.btn-form-submit:hover svg {
  transform: translateX(5px);
}

/* Contact Form Styles */
#lead.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
}

#lead .form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

#lead .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
}

#lead .form-group.col-md-4 {
  grid-column: span 1;
  min-width: 0;
}

#lead .form-group:not(.col-md-4) {
  grid-column: 1 / -1;
  width: 100%;
}

#lead .form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #A8B5C8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

#lead .form-control {
  padding: 14px 18px;
  background: rgba(15, 20, 25, 0.6);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 12px;
  color: #E8EDF5;
  font-size: 1rem;
  font-family: 'Libre Franklin', sans-serif;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

#lead .form-control::placeholder {
  color: rgba(168, 181, 200, 0.5);
}

#lead .form-control:focus {
  outline: none;
  border-color: #4A6FA5;
  background: rgba(15, 20, 25, 0.8);
  box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
}

#lead .form-control:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#lead .form-control.is-invalid {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.1);
}

#lead .form-control.is-invalid:focus {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

#lead .form-control.is-valid {
  border-color: #27ae60;
  background: rgba(39, 174, 96, 0.1);
}

#lead .form-control.is-valid:focus {
  border-color: #27ae60;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
}

#lead .invalid-feedback {
  display: none;
  color: #ff6b6b;
  font-size: 0.8125rem;
  margin-top: 0.25rem;
  font-weight: 500;
}

#lead .form-control.is-invalid ~ .invalid-feedback,
#lead .was-validated .form-control:invalid ~ .invalid-feedback {
  display: block;
}

#lead textarea.form-control {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
  font-family: 'Libre Franklin', sans-serif;
}

#lead select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A8B5C8' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}

#lead select.form-control:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234A6FA5' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

#lead .form-submit {
  margin-top: 0.5rem;
}

#lead .btn-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #3B5B8D, #4A6FA5);
  color: #E8EDF5;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(59, 91, 141, 0.4);
  border: 1px solid rgba(74, 111, 165, 0.3);
  width: 100%;
}

#lead .btn-contact-submit:hover:not(:disabled) {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(59, 91, 141, 0.6);
  background: linear-gradient(135deg, #4A6FA5, #5B8FC8);
}

#lead .btn-contact-submit:active:not(:disabled) {
  transform: translateY(0);
}

#lead .btn-contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

#lead .btn-contact-submit svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

#lead .btn-contact-submit:hover:not(:disabled) svg {
  transform: translateX(4px);
}

#lead .form-status {
  margin-top: 1rem;
  min-height: 24px;
}

#lead .form-status .loading,
#lead .form-status .error-message,
#lead .form-status .sent-message {
  display: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}

#lead .form-status .loading.show,
#lead .form-status .error-message.show,
#lead .form-status .sent-message.show {
  display: block;
}

#lead .form-status .loading {
  color: #4A6FA5;
  background: rgba(74, 111, 165, 0.1);
  border: 1px solid rgba(74, 111, 165, 0.3);
}

#lead .form-status .error-message {
  color: #ff6b6b;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
}

#lead .form-status .sent-message {
  color: #27ae60;
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
}

@media (max-width: 992px) {
  #lead .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #lead.contact-form {
    gap: 1.25rem;
  }
  
  #lead .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  #lead .form-group.col-md-4 {
    grid-column: span 1;
  }
  
  #lead .form-control {
    padding: 14px 18px;
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
  }
  
  #lead .btn-contact-submit {
    padding: 16px 36px;
    font-size: 1.1rem;
  }
}

.contact-cta-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0F1419 0%, #15202B 100%);
}

.contact-cta-card {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  backdrop-filter: blur(10px);
}

.cta-content-left h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #E8EDF5;
  margin-bottom: 1rem;
}

.cta-content-left p {
  font-size: 1.1rem;
  color: #A8B5C8;
  line-height: 1.7;
  margin: 0;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #3B5B8D, #4A6FA5);
  color: #E8EDF5;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(59, 91, 141, 0.4);
  border: 1px solid rgba(74, 111, 165, 0.3);
  white-space: nowrap;
}

.btn-cta-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(59, 91, 141, 0.6);
  background: linear-gradient(135deg, #4A6FA5, #5B8FC8);
}

.btn-cta-primary svg {
  transition: transform 0.3s ease;
}

.btn-cta-primary:hover svg {
  transform: translateX(5px);
}

/* Premium About Page Styles */
.premium-about-hero {
  padding: 160px 20px 100px;
  background: linear-gradient(180deg, #0F1419 0%, #15202B 100%);
  position: relative;
  overflow: hidden;
  margin-top: -88px;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 30% 40%, rgba(59, 91, 141, 0.2), transparent),
    radial-gradient(2px 2px at 70% 60%, rgba(74, 111, 165, 0.15), transparent);
  background-size: 300% 300%;
  animation: patternMove 25s ease infinite;
  pointer-events: none;
}

.about-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(59, 91, 141, 0.1);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.about-hero-badge svg {
  color: #4A6FA5;
  width: 20px;
  height: 20px;
}

.about-hero-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4A6FA5;
  letter-spacing: 0.5px;
}

.about-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #E8EDF5;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.title-highlight-about {
  background: linear-gradient(135deg, #4A6FA5, #5B8FC8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-title-underline {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #3B5B8D, #4A6FA5);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(74, 111, 165, 0.5);
}

.about-hero-description {
  font-size: 1.2rem;
  color: #A8B5C8;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.premium-about-mission {
  padding: 100px 20px;
  background: linear-gradient(180deg, #15202B 0%, #0F1419 100%);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(59, 91, 141, 0.1);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.mission-badge svg {
  color: #4A6FA5;
  width: 16px;
  height: 16px;
}

.mission-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4A6FA5;
  letter-spacing: 0.5px;
}

.mission-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #E8EDF5;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.mission-text {
  font-size: 1.1rem;
  color: #A8B5C8;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mission-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.mission-stat {
  text-align: center;
}

.mission-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4A6FA5, #5B8FC8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.mission-stat-label {
  font-size: 0.9rem;
  color: #A8B5C8;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.mission-visual {
  position: relative;
}

.mission-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.mission-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.mission-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(74, 111, 165, 0.2), transparent 70%);
  pointer-events: none;
  border-radius: 20px;
}

.premium-training-areas {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0F1419 0%, #15202B 100%);
}

.training-areas-header {
  text-align: center;
  margin-bottom: 4rem;
}

.areas-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(59, 91, 141, 0.1);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.areas-badge svg {
  color: #4A6FA5;
  width: 16px;
  height: 16px;
}

.areas-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4A6FA5;
  letter-spacing: 0.5px;
}

.training-areas-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #E8EDF5;
  margin-bottom: 1rem;
}

.training-areas-header p {
  font-size: 1.1rem;
  color: #A8B5C8;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.training-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.training-area-card {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.training-area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.training-area-card:hover::before {
  opacity: 1;
}

.training-area-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 111, 165, 0.4);
  box-shadow: 0 20px 40px rgba(59, 91, 141, 0.3);
}

.area-icon-wrapper {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.2), rgba(74, 111, 165, 0.1));
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.training-area-card:hover .area-icon-wrapper {
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.3), rgba(74, 111, 165, 0.2));
  transform: rotate(5deg) scale(1.1);
}

.area-icon {
  color: #4A6FA5;
  transition: all 0.4s ease;
}

.training-area-card:hover .area-icon {
  color: #5B8FC8;
  transform: scale(1.1);
}

.training-area-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #E8EDF5;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.training-area-card p {
  font-size: 1rem;
  color: #A8B5C8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.area-features {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.area-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 0;
  color: #A8B5C8;
  font-size: 0.95rem;
}

.area-features li svg {
  color: #4A6FA5;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.training-area-card:hover .area-features li svg {
  color: #5B8FC8;
  transform: scale(1.1);
}

.premium-why-works {
  padding: 100px 20px;
  background: linear-gradient(180deg, #15202B 0%, #0F1419 100%);
}

.why-works-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(59, 91, 141, 0.1);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.why-badge svg {
  color: #4A6FA5;
  width: 16px;
  height: 16px;
}

.why-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4A6FA5;
  letter-spacing: 0.5px;
}

.why-works-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #E8EDF5;
  margin-bottom: 1rem;
}

.why-works-header p {
  font-size: 1.1rem;
  color: #A8B5C8;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.why-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-item {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  text-align: center;
}

.why-item:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 111, 165, 0.4);
  box-shadow: 0 20px 40px rgba(59, 91, 141, 0.3);
}

.why-icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.2), rgba(74, 111, 165, 0.1));
  border-radius: 16px;
  transition: all 0.4s ease;
}

.why-item:hover .why-icon-box {
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.3), rgba(74, 111, 165, 0.2));
  transform: rotate(-5deg) scale(1.1);
}

.why-icon {
  color: #4A6FA5;
  transition: all 0.4s ease;
}

.why-item:hover .why-icon {
  color: #5B8FC8;
  transform: scale(1.1);
}

.why-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #E8EDF5;
  margin-bottom: 1rem;
}

.why-item p {
  font-size: 1rem;
  color: #A8B5C8;
  line-height: 1.7;
  margin: 0;
}

.premium-company-info {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0F1419 0%, #15202B 100%);
}

.company-info-header {
  text-align: center;
  margin-bottom: 4rem;
}

.company-info-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #E8EDF5;
  margin-bottom: 1rem;
}

.company-info-header p {
  font-size: 1.1rem;
  color: #A8B5C8;
  line-height: 1.7;
}

.company-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.company-info-card {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.company-info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(74, 111, 165, 0.4);
  box-shadow: 0 20px 40px rgba(59, 91, 141, 0.3);
}

.company-info-card-full {
  grid-column: 1 / -1;
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(59, 91, 141, 0.2);
}

.info-card-header svg {
  color: #4A6FA5;
  width: 24px;
  height: 24px;
}

.info-card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #E8EDF5;
  margin: 0;
}

.info-card-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4A6FA5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 1rem;
  color: #E8EDF5;
  line-height: 1.7;
}

.info-link {
  color: #4A6FA5;
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-link:hover {
  color: #5B8FC8;
}

.info-card-content p {
  font-size: 1rem;
  color: #A8B5C8;
  line-height: 1.8;
  margin: 0;
}

.about-cta-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #15202B 0%, #0F1419 100%);
}

.about-cta-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.about-cta-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #E8EDF5;
  margin-bottom: 1rem;
}

.about-cta-content p {
  font-size: 1.1rem;
  color: #A8B5C8;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-about-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #3B5B8D, #4A6FA5);
  color: #E8EDF5;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(59, 91, 141, 0.4);
  border: 1px solid rgba(74, 111, 165, 0.3);
}

.btn-about-cta-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(59, 91, 141, 0.6);
  background: linear-gradient(135deg, #4A6FA5, #5B8FC8);
}

.btn-about-cta-primary svg {
  transition: transform 0.3s ease;
}

.btn-about-cta-primary:hover svg {
  transform: translateX(5px);
}

.btn-about-cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: rgba(59, 91, 141, 0.1);
  color: #A8B5C8;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  border: 1px solid rgba(59, 91, 141, 0.2);
  transition: all 0.3s ease;
}

.btn-about-cta-secondary:hover {
  background: rgba(59, 91, 141, 0.2);
  color: #E8EDF5;
  border-color: rgba(74, 111, 165, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .contact-cta-card {
    flex-direction: column;
    text-align: center;
  }

  .about-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-about-cta-primary,
  .btn-about-cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .training-areas-grid,
  .why-works-grid,
  .company-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium Legal Pages Styles (Cookies, Privacy, Terms) */
.premium-legal-hero {
  padding: 160px 20px 100px;
  background: linear-gradient(180deg, #0F1419 0%, #15202B 100%);
  position: relative;
  overflow: hidden;
  margin-top: -88px;
}

.legal-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 30% 40%, rgba(59, 91, 141, 0.2), transparent),
    radial-gradient(2px 2px at 70% 60%, rgba(74, 111, 165, 0.15), transparent);
  background-size: 300% 300%;
  animation: patternMove 25s ease infinite;
  pointer-events: none;
}

.legal-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.legal-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(59, 91, 141, 0.1);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.legal-hero-badge svg {
  color: #4A6FA5;
  width: 20px;
  height: 20px;
}

.legal-hero-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4A6FA5;
  letter-spacing: 0.5px;
}

.legal-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #E8EDF5;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.legal-title-underline {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #3B5B8D, #4A6FA5);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(74, 111, 165, 0.5);
}

.legal-hero-description {
  font-size: 1.2rem;
  color: #A8B5C8;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.legal-hero-meta {
  font-size: 0.9rem;
  color: #4A6FA5;
  font-weight: 600;
}

.premium-legal-content {
  padding: 100px 20px;
  background: linear-gradient(180deg, #15202B 0%, #0F1419 100%);
}

.legal-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.legal-section:hover {
  border-color: rgba(74, 111, 165, 0.4);
  box-shadow: 0 12px 35px rgba(59, 91, 141, 0.2);
  transform: translateY(-3px);
}

.legal-section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(59, 91, 141, 0.2);
}

.legal-section-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4A6FA5, #5B8FC8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 60px;
}

.legal-section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #E8EDF5;
  margin: 0;
  flex: 1;
}

.legal-section-body {
  color: #A8B5C8;
  line-height: 1.8;
  font-size: 1.05rem;
}

.legal-section-body p {
  margin-bottom: 1.5rem;
}

.legal-section-body p:last-child {
  margin-bottom: 0;
}

.legal-bullet-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.legal-bullet-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: #A8B5C8;
  line-height: 1.7;
}

.legal-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #4A6FA5, #5B8FC8);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(74, 111, 165, 0.5);
}

.legal-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.legal-list-item {
  background: rgba(15, 20, 25, 0.4);
  border: 1px solid rgba(59, 91, 141, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  gap: 1rem;
}

.legal-list-item:hover {
  border-color: rgba(74, 111, 165, 0.3);
  background: rgba(15, 20, 25, 0.6);
  transform: translateY(-3px);
}

.list-item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.2), rgba(74, 111, 165, 0.1));
  border-radius: 12px;
  flex-shrink: 0;
  color: #4A6FA5;
  transition: all 0.3s ease;
}

.legal-list-item:hover .list-item-icon {
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.3), rgba(74, 111, 165, 0.2));
  transform: scale(1.1) rotate(5deg);
  color: #5B8FC8;
}

.list-item-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #E8EDF5;
  margin-bottom: 0.5rem;
}

.list-item-content p {
  font-size: 0.95rem;
  color: #A8B5C8;
  line-height: 1.6;
  margin: 0;
}

.legal-info-box {
  background: rgba(59, 91, 141, 0.1);
  border: 1px solid rgba(74, 111, 165, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.legal-info-box svg {
  color: #4A6FA5;
  flex-shrink: 0;
  margin-top: 2px;
}

.legal-info-box div {
  color: #A8B5C8;
  line-height: 1.7;
}

.legal-info-box strong {
  color: #E8EDF5;
  font-weight: 600;
}

.legal-link {
  color: #4A6FA5;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.legal-link:hover {
  color: #5B8FC8;
  border-bottom-color: #5B8FC8;
}

/* Premium Thanks Page Styles */
.premium-thanks-section {
  padding: 180px 20px 120px;
  background: linear-gradient(180deg, #0F1419 0%, #15202B 100%);
  position: relative;
  overflow: hidden;
  margin-top: -88px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.thanks-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 30% 40%, rgba(59, 91, 141, 0.2), transparent),
    radial-gradient(2px 2px at 70% 60%, rgba(74, 111, 165, 0.15), transparent);
  background-size: 300% 300%;
  animation: patternMove 25s ease infinite;
  pointer-events: none;
}

.thanks-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.thanks-icon-wrapper {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.thanks-icon-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.2), rgba(74, 111, 165, 0.1));
  border: 2px solid rgba(74, 111, 165, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: thanksPulse 2s ease-in-out infinite;
}

@keyframes thanksPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(74, 111, 165, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(74, 111, 165, 0);
  }
}

.thanks-check-icon {
  color: #4A6FA5;
  animation: thanksCheck 0.6s ease-out;
}

@keyframes thanksCheck {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thanks-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(74, 111, 165, 0.3), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.thanks-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #E8EDF5;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #E8EDF5, #A8B5C8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thanks-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #4A6FA5;
  margin-bottom: 1rem;
}

.thanks-description {
  font-size: 1.1rem;
  color: #A8B5C8;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.thanks-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.btn-thanks-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #3B5B8D, #4A6FA5);
  color: #E8EDF5;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(59, 91, 141, 0.4);
  border: 1px solid rgba(74, 111, 165, 0.3);
}

.btn-thanks-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(59, 91, 141, 0.6);
  background: linear-gradient(135deg, #4A6FA5, #5B8FC8);
}

.btn-thanks-primary svg {
  transition: transform 0.3s ease;
}

.btn-thanks-primary:hover svg {
  transform: translateX(5px);
}

.btn-thanks-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: rgba(59, 91, 141, 0.1);
  color: #A8B5C8;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  border: 1px solid rgba(59, 91, 141, 0.2);
  transition: all 0.3s ease;
}

.btn-thanks-secondary:hover {
  background: rgba(59, 91, 141, 0.2);
  color: #E8EDF5;
  border-color: rgba(74, 111, 165, 0.4);
  transform: translateY(-2px);
}

.thanks-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.thanks-info-card {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  text-align: center;
}

.thanks-info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 111, 165, 0.4);
  box-shadow: 0 20px 40px rgba(59, 91, 141, 0.3);
}

.info-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.2), rgba(74, 111, 165, 0.1));
  border-radius: 12px;
  color: #4A6FA5;
  transition: all 0.4s ease;
}

.thanks-info-card:hover .info-card-icon {
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.3), rgba(74, 111, 165, 0.2));
  transform: scale(1.1) rotate(5deg);
  color: #5B8FC8;
}

.thanks-info-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #E8EDF5;
  margin-bottom: 0.75rem;
}

.thanks-info-card p {
  font-size: 0.95rem;
  color: #A8B5C8;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .legal-section {
    padding: 2rem 1.5rem;
  }

  .legal-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .legal-section-number {
    font-size: 2rem;
    min-width: auto;
  }

  .legal-list-grid {
    grid-template-columns: 1fr;
  }

  .thanks-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-thanks-primary,
  .btn-thanks-secondary {
    width: 100%;
    justify-content: center;
  }

  .thanks-info-cards {
    grid-template-columns: 1fr;
  }
}

/* new styles  */
/* Styles généraux */
:root {
  --background-color: #0F1419;
  --text-color: #E8EDF5;
  --accent-color: #3B5B8D;
  --light-accent: rgba(59, 91, 141, 0.2);
  --header-height: 80px;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}



h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-color);
}

.btn-accent {
  background-color: var(--accent-color);
  color: white;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 12px 30px;
}

.btn-accent:hover {
  background-color: #2D4A6E;
  color: white;
  transform: translateY(-2px);
}

/* Premium Header Styles */
.premium-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-header.scrolled {
  transform: translateY(0);
}

.premium-header.scrolled .header-glass {
  background: rgba(15, 24, 21, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 91, 141, 0.1);
}

.header-glass {
  background: rgba(15, 24, 21, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(59, 91, 141, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.header-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 91, 141, 0.1), transparent);
  transition: left 0.6s ease;
}

.premium-header:hover .header-glass::before {
  left: 100%;
}

.header-gradient-line {
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #3B5B8D 20%, 
    #4A6FA5 50%, 
    #3B5B8D 80%, 
    transparent 100%);
  background-size: 200% 100%;
  animation: gradientFlow 3s ease infinite;
  box-shadow: 0 0 20px rgba(59, 91, 141, 0.5);
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  gap: 3rem;
  position: relative;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  position: relative;
  z-index: 10;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-brand:hover {
  transform: translateX(5px) scale(1.02);
}

.logo-wrapper {
  position: relative;
  width: 50px;
  height: 50px;
}

.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(59, 91, 141, 0.4);
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(59, 91, 141, 0.2);
}

.header-brand:hover .brand-logo {
  border-color: #3B5B8D;
  box-shadow: 0 6px 25px rgba(59, 91, 141, 0.4);
  transform: rotate(5deg) scale(1.05);
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 91, 141, 0.4), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: pulseGlow 2s ease-in-out infinite;
}

.header-brand:hover .logo-glow {
  opacity: 1;
}

@keyframes pulseGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

.brand-name {
  display: flex;
  align-items: baseline;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand-name-main {
  color: #E8EDF5;
  transition: color 0.3s ease;
}

.brand-name-accent {
  color: #3B5B8D;
  background: linear-gradient(135deg, #3B5B8D, #4A6FA5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.header-brand:hover .brand-name-accent {
  background: linear-gradient(135deg, #4A6FA5, #6AB89A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.premium-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
}

/* Hide mobile menu on desktop */
@media (min-width: 992px) {
  .premium-nav {
    display: flex !important;
    position: static !important;
    transform: none !important;
  }
}

.nav-link-premium {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  text-decoration: none;
  color: #A8B5C8;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  background: transparent;
}

.nav-link-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.1), rgba(74, 111, 165, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

.nav-link-premium:hover::before {
  opacity: 1;
}

.nav-link-premium {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-text {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.nav-link-premium:hover .nav-text {
  color: #3B5B8D;
}

.nav-underline {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3B5B8D, #4A6FA5);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(59, 91, 141, 0.5);
}

.nav-link-premium:hover .nav-underline {
  width: 80%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 991px) {
  .header-cta {
    gap: 0.5rem;
  }
}

.btn-premium-cta {
  position: relative;
  padding: 12px 28px;
  background: linear-gradient(135deg, #3B5B8D, #4A6FA5);
  color: #E8EDF5;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(59, 91, 141, 0.3);
  border: 1px solid rgba(59, 91, 141, 0.3);
}

.btn-premium-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-premium-cta:hover::before {
  left: 100%;
}

.btn-premium-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(59, 91, 141, 0.5);
  background: linear-gradient(135deg, #4A6FA5, #6AB89A);
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.8s ease;
}

.btn-premium-cta:hover .btn-shine {
  left: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 6px;
  z-index: 10001;
  position: relative;
}

.mobile-menu-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background: #E8EDF5;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover span {
  background: #4A6FA5;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background: #0F1419;
  z-index: 10000;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #E8EDF5;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.mobile-menu-close:hover {
  color: #4A6FA5;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 100px 0 40px 0;
}

.mobile-menu-link {
  display: block;
  padding: 18px 30px;
  color: #E8EDF5;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(59, 91, 141, 0.2);
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu-link:hover {
  background: rgba(59, 91, 141, 0.15);
  color: #E8EDF5;
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.mobile-menu-backdrop.active {
  display: block;
}

@media (max-width: 991px) {
  .mobile-menu-btn {
    display: flex !important;
  }

  .btn-premium-cta {
    display: none !important;
  }

  .premium-nav {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .mobile-menu {
    width: 100%;
    max-width: 100%;
  }

  .header-content {
    padding: 0 1rem;
    height: 75px;
  }

  .brand-name {
    font-size: 1.3rem;
  }

  .logo-wrapper {
    width: 42px;
    height: 42px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }
}


/* Styles pour le bloc principal (hero) */
/* Add padding for fixed header */
body {
  padding-top: 88px;
}

/* Premium Hero Section */
.premium-hero {
  position: relative;
  margin-top: -88px;
  padding: 160px 20px 120px;
  background: linear-gradient(180deg, #0F1419 0%, #15202B 50%, #1A2332 100%);
  color: #E8EDF5;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(59, 91, 141, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(74, 111, 165, 0.2), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(59, 91, 141, 0.4), transparent);
  background-size: 200% 200%;
  animation: particleMove 20s ease infinite;
  pointer-events: none;
}

@keyframes particleMove {
  0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%; }
  50% { background-position: 100% 0%, 0% 100%, 50% 50%; }
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 15s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 91, 141, 0.6), transparent);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74, 111, 165, 0.5), transparent);
  bottom: -150px;
  right: -150px;
  animation-delay: 5s;
}

.hero-orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(45, 74, 110, 0.4), transparent);
  top: 50%;
  right: 10%;
  animation-delay: 10s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(59, 91, 141, 0.15);
  border: 1px solid rgba(59, 91, 141, 0.3);
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59, 91, 141, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(59, 91, 141, 0); }
}

.badge-icon {
  width: 16px;
  height: 16px;
  color: #4A6FA5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: iconRotate 3s ease-in-out infinite;
}

@keyframes iconRotate {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4A6FA5;
  letter-spacing: 0.5px;
}

.hero-main-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.title-line {
  display: block;
  color: #E8EDF5;
  opacity: 0.9;
}

.title-highlight {
  position: relative;
  display: inline-block;
  margin: 0.5rem 0;
}

.highlight-text {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #4A6FA5, #5B8FC8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 3s ease-in-out infinite;
}

@keyframes textShine {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

.highlight-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(74, 111, 165, 0.4), transparent 70%);
  filter: blur(20px);
  z-index: 1;
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #A8B5C8;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4A6FA5, #5B8FC8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #A8B5C8;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(59, 91, 141, 0.5), transparent);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: linear-gradient(135deg, #3B5B8D, #4A6FA5);
  color: #E8EDF5;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(59, 91, 141, 0.4);
  border: 1px solid rgba(74, 111, 165, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(59, 91, 141, 0.6);
  background: linear-gradient(135deg, #4A6FA5, #5B8FC8);
}

.btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-icon {
  transform: translateX(5px);
}

.btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.8s ease;
}

.btn-hero-primary:hover .btn-shimmer {
  left: 100%;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: rgba(59, 91, 141, 0.1);
  color: #A8B5C8;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(59, 91, 141, 0.2);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(59, 91, 141, 0.2);
  color: #E8EDF5;
  border-color: rgba(74, 111, 165, 0.4);
  transform: translateY(-2px);
}

.btn-icon-secondary {
  width: 18px;
  height: 18px;
  color: currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(59, 91, 141, 0.08);
  border: 1px solid rgba(59, 91, 141, 0.15);
  border-radius: 50px;
  font-size: 0.9rem;
  color: #A8B5C8;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(59, 91, 141, 0.15);
  border-color: rgba(74, 111, 165, 0.3);
  color: #E8EDF5;
  transform: translateY(-2px);
}

.trust-icon {
  width: 18px;
  height: 18px;
  color: currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-bottom-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  color: #0F1419;
  overflow: hidden;
}

.hero-bottom-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Legacy hero styles for compatibility */
.hero-section-dark {
  position: relative;
  margin-top: -88px;
  padding: 140px 20px;
  background: radial-gradient(circle at center, #1A2332, #0F1419);
  color: #E8EDF5;
  overflow: hidden;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title-dark {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.highlight-gradient {
  background: linear-gradient(to right, #3B5B8D, #4A6FA5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle-dark {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.75);
}

.button-dark {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(91, 155, 213, 0.2));
  border: 2px solid #3B5B8D;
  color: #E8EDF5;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.button-dark:hover {
  background: rgba(74, 144, 226, 0.3);
  border-color: #4A6FA5;
  transform: translateY(-2px);
}

.hero-background-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.2), transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .hero-title-dark {
    font-size: 2.5rem;
  }
  .hero-subtitle-dark {
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  .hero-title-dark {
    font-size: 2rem;
  }
  .hero-subtitle-dark {
    font-size: 1rem;
  }
}

/* Styles pour le bloc À propos de nous */
.about-section {
  padding: 100px 0;
  position: relative;
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: var(--light-accent);
  clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 70%);
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: var(--accent-color);
}

.about-card {
  background-color: #1A2332;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 30px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--accent-color);
}

.about-card-title {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
}

.about-card-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--accent-color);
  opacity: 0.15;
  font-size: 3rem;
}

/* Styles pour le bloc Nos programmes */
.programs-section {
  padding: 100px 0;
  background-color: #1A2332;
  position: relative;
}

.programs-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-color: var(--light-accent);
  border-radius: 50%;
  z-index: 1;
}

.programs-section::after {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 50px;
  width: 100px;
  height: 100px;
  background-color: var(--light-accent);
  border-radius: 50%;
  z-index: 1;
}

.program-card {
  border-radius: 8px;
  background-color: var(--background-color);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
  z-index: 2;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.program-card-header {
  background-color: var(--accent-color);
  color: white;
  padding: 20px;
  border-radius: 8px 8px 0 0;
  position: relative;
}

.program-card-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.program-card-body {
  padding: 25px;
}

.program-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.program-feature-icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 1.25rem;
}

.program-feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.program-feature-text p {
  margin: 0;
  font-size: 0.95rem;
}

.program-number {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
}

.program-cta {
  margin-top: 20px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .about-section, .programs-section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .about-card {
    margin-bottom: 30px;
  }
  
  .program-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 2rem;
  }
  
  .about-card-title {
    font-size: 1.3rem;
  }
  
  .program-card-header h3 {
    font-size: 1.3rem;
  }
}

/* Styles pour le bloc Nos formules d'abonnement */
.pricing-section {
  padding: 100px 0;
  background: radial-gradient(circle at top, #f2f6fc, #e4ecf5);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2d2d3a;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: #606c76;
}

.pricing-card {
  background: #1A2332;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #E8EDF5;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #1E2F3F, #1A2332);
  border: 2px solid #3B5B8D;
}

.pricing-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.pricing-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1d1d2c;
  margin-bottom: 10px;
}

.pricing-desc {
  font-size: 1rem;
  color: #7a7a8c;
  margin-bottom: 20px;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
}

.pricing-price span {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: #888;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.pricing-list li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #444;
}

.btn {
  display: inline-block;
  padding: 12px 12px;
  font-size: 0.95rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-select {
  background-color: #3B5B8D;
  color: #E8EDF5;
}

.btn-select:hover {
  background-color: #2D4A6E;
}

.btn-featured {
  background-color: #E8EDF5;
  color: #3B5B8D;
  border: 2px solid #3B5B8D;
}

.btn-featured:hover {
  background-color: #3B5B8D;
  color: #E8EDF5;
}


/* Premium Testimonials Section */
.premium-testimonials {
  padding: 120px 20px;
  background: linear-gradient(180deg, #15202B 0%, #0F1419 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 30% 40%, rgba(59, 91, 141, 0.2), transparent),
    radial-gradient(2px 2px at 70% 60%, rgba(74, 111, 165, 0.15), transparent);
  background-size: 300% 300%;
  animation: patternMove 25s ease infinite;
  pointer-events: none;
}

@keyframes patternMove {
  0%, 100% { background-position: 0% 0%, 100% 100%; }
  50% { background-position: 100% 0%, 0% 100%; }
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(59, 91, 141, 0.1);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.icon-star {
  color: #4A6FA5;
  animation: starRotate 3s ease-in-out infinite;
}

@keyframes starRotate {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.testimonials-badge span:last-child {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4A6FA5;
  letter-spacing: 0.5px;
}

.testimonials-main-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #E8EDF5;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.title-underline-testimonials {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #3B5B8D, #4A6FA5);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(74, 111, 165, 0.5);
}

.testimonials-description {
  font-size: 1.1rem;
  color: #A8B5C8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  position: relative;
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(59, 91, 141, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: rgba(74, 111, 165, 0.4);
  box-shadow: 0 25px 50px rgba(59, 91, 141, 0.3);
}

.testimonial-card-featured {
  background: linear-gradient(135deg, rgba(59, 91, 141, 0.15), rgba(74, 111, 165, 0.1));
  border-color: rgba(74, 111, 165, 0.3);
}

.testimonial-featured-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 6px 14px;
  background: linear-gradient(135deg, #3B5B8D, #4A6FA5);
  color: #E8EDF5;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(59, 91, 141, 0.4);
  z-index: 10;
}

.testimonial-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.testimonial-quote-icon {
  color: rgba(74, 111, 165, 0.3);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
  color: rgba(74, 111, 165, 0.6);
  transform: scale(1.1);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
}

.star-filled {
  color: #4A6FA5;
  transition: all 0.3s ease;
}

.testimonial-card:hover .star-filled {
  color: #5B8FC8;
  transform: scale(1.1);
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #A8B5C8;
  margin-bottom: 2rem;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.author-avatar-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(74, 111, 165, 0.3);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
  border-color: #4A6FA5;
  transform: scale(1.05);
}

.avatar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(74, 111, 165, 0.2);
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.1; }
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #E8EDF5;
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.9rem;
  color: #A8B5C8;
  margin-bottom: 0.25rem;
}

.author-package {
  font-size: 0.85rem;
  color: #4A6FA5;
  font-weight: 600;
}

.testimonial-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(74, 111, 165, 0.3), transparent);
  border-radius: 50%;
  transition: all 0.6s ease;
  pointer-events: none;
}

.testimonial-card:hover .testimonial-card-glow {
  width: 400px;
  height: 400px;
}

/* Legacy testimonials styles */
.testimonials-dark {
  background: #0F1419;
  color: #E8EDF5;
  padding: 100px 0;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #E8EDF5;
  margin-bottom: 10px;
}

.testimonials-subtitle {
  font-size: 1.1rem;
  color: #b5b5b5;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-box {
  background: #1c1f2a;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.testimonial-message {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #dedede;
}

.testimonial-person {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid #3B5B8D;
}

.testimonial-name {
  font-weight: 600;
  color: #E8EDF5;
  font-size: 1.1rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #a0a0a0;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .testimonial-box {
    padding: 25px 20px;
  }

  .testimonials-title {
    font-size: 2rem;
  }

  .testimonial-message {
    font-size: 1rem;
  }
}


/* Styles pour le bloc Avantages */
.advantages-section-dark {
  padding: 100px 0;
  background: linear-gradient(to bottom, #101820, #0d0d12);
  color: #f2f2f2;
  position: relative;
}

.section-title.text-gradient {
  background: linear-gradient(to right, #3B5B8D, #4A6FA5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 2.2rem;
}

.text-muted {
  color: rgba(255, 255, 255, 0.65);
}

.image-wrapper img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.advantage-dark {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.03);
  transition: background 0.3s ease;
}

.advantage-dark:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.icon-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: rgba(74, 144, 226, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle span {
  color: #3B5B8D;
  font-size: 1.7rem;
}

.advantage-dark h5 {
  margin: 0 0 5px;
  font-size: 1.1rem;
  font-weight: 600;
}

.advantage-dark p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* Styles pour le bloc Appel à l'action */
.cta-section-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, #1A2332 0%, #0F1419 100%);
}

.cta-modern-content {
  background: #1A2332;
  padding: 50px 40px;
  color: #E8EDF5;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.cta-modern-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f1f2c;
}

.cta-modern-text {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 30px;
}

.cta-modern-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #3B5B8D;
  color: #E8EDF5;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-modern-btn:hover {
  background-color: #2D4A6E;
}

.cta-visual {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cta-modern-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}


/* Styles pour le bloc Contacts */
.contact-section-dark {
  background: #12141b;
  color: #e5e5e5;
  padding: 100px 0;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #E8EDF5;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #b0b0b0;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #1d1f29;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.icon-box {
  background-color: #292c3e;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box .material-icons {
  color: #3B5B8D;
  font-size: 24px;
}

.contact-label {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fdfdfd;
}

.contact-link {
  color: #3B5B8D;
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Legacy contact form styles - kept for backward compatibility */
.contact-form:not(#lead) {
  background-color: rgba(26, 35, 50, 0.6);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(59, 91, 141, 0.2);
  backdrop-filter: blur(10px);
}

.form-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #E8EDF5;
}

.form-input:not(.form-control),
.form-textarea:not(.form-control) {
  width: 100%;
  background: rgba(15, 20, 25, 0.6);
  border: 2px solid rgba(59, 91, 141, 0.25);
  padding: 15px 18px;
  margin-bottom: 20px;
  border-radius: 12px;
  color: #E8EDF5;
  font-size: 1rem;
  font-family: 'Libre Franklin', sans-serif;
  transition: all 0.3s ease;
}

.form-input:not(.form-control)::placeholder,
.form-textarea:not(.form-control)::placeholder {
  color: rgba(168, 181, 200, 0.5);
}

.form-input:not(.form-control):focus,
.form-textarea:not(.form-control):focus {
  outline: none;
  border-color: #4A6FA5;
  background: rgba(15, 20, 25, 0.8);
  box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
}

.form-textarea:not(.form-control) {
  height: 120px;
  resize: vertical;
  min-height: 120px;
}

.btn-submit:not(.btn-contact-submit) {
  width: 100%;
  padding: 16px 36px;
  background: linear-gradient(135deg, #3B5B8D, #4A6FA5);
  color: #E8EDF5;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(59, 91, 141, 0.4);
  border: 1px solid rgba(74, 111, 165, 0.3);
}

.btn-submit:not(.btn-contact-submit):hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 12px 40px rgba(59, 91, 141, 0.6);
  background: linear-gradient(135deg, #4A6FA5, #5B8FC8);
}

/* Media queries */
@media (max-width: 991.98px) {
  .advantages-section, .cta-section, .contact-section, .form-section {
    padding: 70px 0;
  }
  
  .advantages-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta-section.image-right .cta-text,
  .cta-section.image-left .cta-text {
    margin-right: 0;
    margin-left: 0;
    margin-top: 30px;
  }
  
  .cta-image-container {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .cta-title {
    font-size: 1.8rem;
  }
  
  .form-container {
    padding: 30px 20px;
  }
}


/* new styles */


/* business-section */
.business-category {
  padding: 80px 0;
  background: #f4f6fb;
}

.section-header h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 60px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  background: #E8EDF5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.service-content {
  padding: 24px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #3B5B8D;
}

.service-content p {
  font-size: 15px;
  color: #444;
  flex-grow: 1;
  margin-bottom: 16px;
  line-height: 1.6;
}

.tag {
  display: inline-block;
  background-color: #1A2332;
  color: #3B5B8D;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  align-self: flex-start;
}

/* Responsive */
@media (max-width: 576px) {
  .section-header h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .service-content h3 {
    font-size: 18px;
  }

  .service-content p {
    font-size: 14px;
  }
}



/* Dark table styles */
.table {
  color: #E8EDF5;
}

.table thead th {
  background-color: #1A2332 !important;
  color: #E8EDF5 !important;
  border-color: #1E2F3F !important;
}

.table tbody td {
  background-color: #0F1419 !important;
  color: #E8EDF5 !important;
  border-color: #1E2F3F !important;
}

.table-bordered {
  border-color: #1E2F3F !important;
}
