/* ============================================================
   EMERALD SOLUTION — Global Stylesheet
   Pure Bootstrap 5 Overrides + Custom Brand Styles
   ============================================================ */

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

/* ── CSS Custom Properties (Design Tokens) ───────────────── */
:root {
  /* Brand Colors */
  --es-gold:            #C5963E;
  --es-gold-dark:       #9B7B2F;
  --es-gold-light:      #D4AD5A;
  --es-navy:            #0C2340;
  --es-navy-dark:       #091A2F;
  --es-blue-accent:     #1B3A5C;
  --es-light-blue:      #E8F4F8;
  --es-white:           #FFFFFF;
  --es-off-white:       #F9FAFB;
  --es-text-dark:       #1A1A2E;
  --es-text-muted:      #555555;
  --es-pink-link:       #E91E63;

  /* Typography */
  --es-font-heading:    'Playfair Display', Georgia, serif;
  --es-font-body:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --es-section-py:      5rem;
  --es-section-py-sm:   3rem;

  /* Transitions */
  --es-transition:      all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Shadows */
  --es-shadow-sm:       0 2px 8px rgba(0, 0, 0, 0.08);
  --es-shadow-md:       0 4px 20px rgba(0, 0, 0, 0.12);
  --es-shadow-lg:       0 8px 40px rgba(0, 0, 0, 0.16);

  /* Border Radius */
  --es-radius-sm:       0.5rem;
  --es-radius-md:       1rem;
  --es-radius-lg:       2rem;
  --es-radius-xl:       3rem;
}

/* ── Base / Reset ────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--es-font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--es-text-dark);
  background-color: var(--es-white);
  overflow-x: hidden;
  padding-top: 66px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--es-font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--es-navy);
}

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

a:hover {
  color: var(--es-gold);
}

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

/* ── Utility Classes ─────────────────────────────────────── */
.es-section {
  padding: var(--es-section-py) 0;
}

.es-heading-lg {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.es-heading-md {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.es-text-body {
  font-size: 1rem;
  color: var(--es-text-muted);
  line-height: 1.8;
}

.es-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--es-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--es-white);
  background-color: var(--es-navy);
  border: 2px solid var(--es-navy);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--es-transition);
  text-decoration: none;
}

.es-btn-primary:hover {
  background-color: var(--es-navy-dark);
  border-color: var(--es-navy-dark);
  color: var(--es-white);
  transform: translateY(-2px);
  box-shadow: var(--es-shadow-md);
}

.es-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  font-family: var(--es-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--es-navy);
  background-color: var(--es-gold);
  border: 2px solid var(--es-gold);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--es-transition);
  text-decoration: none;
}

.es-btn-gold:hover {
  background-color: var(--es-gold-dark);
  border-color: var(--es-gold-dark);
  color: var(--es-white);
  transform: translateY(-2px);
  box-shadow: var(--es-shadow-md);
}

.es-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  font-family: var(--es-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--es-white);
  background-color: transparent;
  border: 2px solid var(--es-white);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--es-transition);
  text-decoration: none;
}

.es-btn-outline:hover {
  background-color: var(--es-white);
  color: var(--es-navy);
  transform: translateY(-2px);
  box-shadow: var(--es-shadow-md);
}

/* ── Rounded Image Container ─────────────────────────────── */
.es-img-rounded {
  border-radius: var(--es-radius-xl);
  overflow: hidden;
  box-shadow: var(--es-shadow-md);
}

.es-img-rounded img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Custom shape — top-right rounded, bottom-left square */
.es-img-shape {
  border-radius: 40% 2rem 2rem 2rem;
  overflow: hidden;
  box-shadow: var(--es-shadow-lg);
}

.es-img-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.es-navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background-color: var(--es-gold-dark);
  padding: 0.5rem 0;
  transition: var(--es-transition);
}

.es-navbar .navbar-brand img {
  height: 46px;
  width: 46px;
  border-radius: 10px;
  border: 2.5px solid var(--es-gold);
  background-color: var(--es-white);
  padding: 2px;
  object-fit: contain;
  transition: var(--es-transition);
}

.es-navbar .navbar-brand img:hover {
  transform: scale(1.05);
}

.es-navbar .navbar-brand span {
  font-family: var(--es-font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--es-white);
  display: block;
  margin-top: -0.2rem;
}

.es-navbar .nav-link {
  font-family: var(--es-font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--es-white) !important;
  padding: 0.6rem 0.9rem !important;
  transition: var(--es-transition);
}

.es-navbar .nav-link:hover,
.es-navbar .nav-link.active {
  color: var(--es-navy) !important;
}

.es-navbar .dropdown-menu {
  background-color: var(--es-white);
  border: none;
  border-radius: var(--es-radius-sm);
  box-shadow: var(--es-shadow-md);
}

.es-navbar .dropdown-item {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  transition: var(--es-transition);
}

.es-navbar .dropdown-item:hover {
  background-color: var(--es-gold);
  color: var(--es-white);
}

.es-navbar .btn-login {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  background-color: var(--es-navy);
  color: var(--es-white);
  border: 2px solid var(--es-navy);
  transition: var(--es-transition);
}

.es-navbar .btn-login:hover {
  background-color: var(--es-navy-dark);
  border-color: var(--es-navy-dark);
}

.es-navbar .btn-admission {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  background-color: transparent;
  color: var(--es-white);
  border: 2px solid var(--es-white);
  transition: var(--es-transition);
}

.es-navbar .btn-admission:hover {
  background-color: var(--es-white);
  color: var(--es-navy);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.es-hero {
  background-color: var(--es-gold);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.es-hero .es-hero-heading {
  font-family: var(--es-font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--es-navy);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.es-hero .es-hero-text {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--es-text-dark);
  max-width: 520px;
  margin-bottom: 2rem;
}

.es-hero .es-hero-img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.es-hero .es-hero-img-wrapper img {
  border-radius: 40% 10% 40% 10%;
  max-height: 480px;
  object-fit: cover;
  box-shadow: var(--es-shadow-lg);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.es-cta {
  background-color: var(--es-white);
  padding: var(--es-section-py) 0;
}

.es-cta-card {
  background-color: var(--es-navy);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(10, 20, 40, 0.15);
}

.es-cta-content {
  padding: 4rem 3.5rem;
}

.es-cta .es-cta-heading {
  font-family: var(--es-font-heading);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 700;
  color: var(--es-white); /* High contrast */
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.es-cta-subtext {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.es-cta .es-cta-img-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.es-cta .es-cta-img-wrapper img {
  max-width: 100%;
  height: 380px;
  object-fit: cover;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.es-features {
  background-color: var(--es-white);
  padding: var(--es-section-py) 0;
}

.es-features-heading {
  font-family: var(--es-font-heading);
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--es-navy);
  margin-bottom: 2rem;
}

.es-feature-card {
  position: relative;
  border-radius: var(--es-radius-md);
  overflow: hidden;
  box-shadow: var(--es-shadow-md);
  transition: var(--es-transition);
  height: 100%;
  min-height: 380px;
}

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

.es-feature-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.es-feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--es-transition);
}

.es-feature-card:hover .es-feature-card-img img {
  transform: scale(1.05);
}

/* Darkened overlay making white text legible */
.es-feature-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(12, 35, 64, 0.4), rgba(12, 35, 64, 0.9));
  z-index: 1;
}

.es-feature-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem;
  z-index: 2;
  color: var(--es-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.es-feature-title {
  font-family: var(--es-font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--es-white);
  margin-bottom: 0.75rem;
}

.es-feature-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.es-feature-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  font-family: var(--es-font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--es-white);
  background-color: transparent;
  border: 1.5px solid var(--es-white);
  border-radius: var(--es-radius-sm);
  text-decoration: none;
  transition: var(--es-transition);
  width: fit-content;
}

.es-feature-btn:hover {
  background-color: var(--es-white);
  color: var(--es-navy);
  border-color: var(--es-white);
}

/* ============================================================
   ABOUT / TRUSTED PARTNER SECTION
   ============================================================ */
.es-about {
  position: relative;
  padding: 6rem 0;
  background-color: var(--es-off-white);
  overflow: hidden;
}

/* Decorative blobs */
.es-about::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--es-light-blue);
  z-index: 0;
}

.es-about::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 40%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(168, 130, 255, 0.15);
  z-index: 0;
}

.es-about .container {
  position: relative;
  z-index: 1;
}

.es-about .es-about-img-wrapper {
  position: relative;
}

.es-about .es-about-img-wrapper img {
  border-radius: 2rem 2rem 40% 2rem;
  max-height: 420px;
  object-fit: cover;
  box-shadow: var(--es-shadow-md);
  width: 100%;
}

/* Additional decorative blob behind image */
.es-about .es-about-img-wrapper::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100%;
  height: 100%;
  border-radius: 2rem 2rem 40% 2rem;
  background: var(--es-light-blue);
  z-index: -1;
}

.es-about .es-about-heading {
  font-family: var(--es-font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--es-navy);
  line-height: 1.35;
  margin-bottom: 1.5rem;
}

.es-about .es-about-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--es-text-muted);
  margin-bottom: 2rem;
}

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

.es-footer .es-footer-brand {
  font-family: var(--es-font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--es-white);
  margin-bottom: 0.75rem;
}

.es-footer .es-footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.es-footer .es-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.es-footer .es-footer-links a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--es-transition);
}

.es-footer .es-footer-links a:hover {
  color: var(--es-gold);
}

.es-footer .es-footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.es-footer .es-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--es-white);
  font-size: 1.1rem;
  transition: var(--es-transition);
}

.es-footer .es-footer-social a:hover {
  background: var(--es-gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(197, 150, 62, 0.4);
}

.es-footer .es-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.es-footer .es-footer-bottom a {
  color: var(--es-pink-link);
  font-weight: 600;
}

.es-footer .es-footer-bottom a:hover {
  color: var(--es-gold);
}

/* ============================================================
   FLOATING MAIL BUTTON
   ============================================================ */
.es-floating-mail {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--es-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--es-shadow-md);
  z-index: 9999;
  cursor: pointer;
  transition: var(--es-transition);
  border: none;
}

.es-floating-mail:hover {
  transform: scale(1.1);
  box-shadow: var(--es-shadow-lg);
  background: var(--es-gold-dark);
}

.es-floating-mail svg {
  width: 26px;
  height: 26px;
  fill: var(--es-white);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

.es-animate-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.es-animate-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.es-animate-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 991.98px) {
  .es-hero {
    padding: 3rem 0;
    text-align: center;
  }

  .es-hero .es-hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .es-hero .es-hero-img-wrapper {
    margin-top: 2.5rem;
  }

  .es-hero .es-hero-img-wrapper img {
    max-height: 350px;
  }

  .es-cta-bg {
    width: 100%;
    border-radius: 0 0 30% 0;
  }

  .es-cta-content {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: 3rem 0;
  }

  .es-cta .es-cta-img-wrapper {
    margin-top: 2rem;
  }

  .es-about {
    padding: 4rem 0;
    text-align: center;
  }

  .es-about .es-about-img-wrapper {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  :root {
    --es-section-py: 3rem;
  }

  .es-hero .es-hero-heading {
    font-size: 1.8rem;
  }

  .es-cta .es-cta-heading {
    font-size: 1.5rem;
  }

  .es-navbar .btn-login,
  .es-navbar .btn-admission {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    text-align: center;
  }

  .es-floating-mail {
    width: 48px;
    height: 48px;
    bottom: 1rem;
    left: 1rem;
  }
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.es-team {
  background-color: var(--es-off-white);
  padding: var(--es-section-py) 0;
  position: relative;
  overflow: hidden;
}

.es-team::before {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--es-light-blue);
  z-index: 0;
  opacity: 0.7;
}

.es-team .container {
  position: relative;
  z-index: 1;
}

.es-team-heading {
  font-family: var(--es-font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--es-navy);
  line-height: 1.3;
}

.es-team-card {
  background-color: var(--es-white);
  border-radius: var(--es-radius-md);
  padding: 1.25rem;
  box-shadow: var(--es-shadow-md);
  transition: var(--es-transition);
  height: 100%;
}

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

.es-team-card-img {
  border-radius: var(--es-radius-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
  aspect-ratio: 4 / 5;
}

.es-team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--es-transition);
}

.es-team-card:hover .es-team-card-img img {
  transform: scale(1.03);
}

.es-team-name {
  font-family: var(--es-font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--es-navy);
  margin-bottom: 0.35rem;
}

.es-team-role {
  font-family: var(--es-font-body);
  font-size: 0.88rem;
  color: var(--es-text-muted);
  margin-bottom: 0;
}

/* ============================================================
   ASSESSMENTS SECTION
   ============================================================ */
.es-assessments {
  background-color: var(--es-white);
  padding: var(--es-section-py) 0;
  position: relative;
  overflow: hidden;
}

/* Optional soft background decoration */
.es-assessments::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--es-light-blue);
  z-index: 0;
  opacity: 0.5;
}

.es-assessments .container {
  position: relative;
  z-index: 1;
}

.es-assessments-heading {
  font-family: var(--es-font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--es-navy);
}

.es-assessment-card {
  background-color: var(--es-white);
  border-radius: var(--es-radius-md);
  box-shadow: var(--es-shadow-md);
  transition: var(--es-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.es-assessment-card-body {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.es-assessment-title {
  font-family: var(--es-font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--es-navy);
  margin-bottom: 1rem;
  line-height: 1.4;
  /* Matching screenshot: blue head text style */
}

.es-assessment-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--es-text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.es-assessment-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--es-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--es-gold);
  text-decoration: none;
  transition: var(--es-transition);
  margin-top: auto;
}

.es-assessment-link svg {
  transition: transform 0.3s ease;
}

.es-assessment-link:hover {
  color: var(--es-gold-dark);
}

.es-assessment-link:hover svg {
  transform: translateX(4px);
}

/* Responsiveness for Flex Header */
@media (max-width: 767.98px) {
  .es-assessments .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem;
  }
}

/* ============================================================
   COMMITMENT SECTION
   ============================================================ */
/* ============================================================
   COMMITMENT SECTION
   ============================================================ */
.es-commitment {
  background-color: var(--es-bg-light); /* Sleek light grey/blue backdrop */
  padding: var(--es-section-py) 0;
}

.es-commitment-heading {
  font-family: var(--es-font-heading);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--es-navy);
  line-height: 1.2;
}

.es-commitment-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--es-text-muted);
  margin-bottom: 1.5rem;
}

.es-commitment-text .lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--es-navy);
  margin-bottom: 1.8rem;
}

/* Commitment Cards Grid */
.es-commitment-box {
  background-color: var(--es-white);
  padding: 2.2rem 1.8rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  height: 100%;
  transition: var(--es-transition);
  border: 1px solid rgba(0,0,0,0.03);
}

.es-commitment-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.es-commitment-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(197, 150, 62, 0.1); /* light gold */
  color: var(--es-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.es-commitment-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--es-navy);
  margin-bottom: 0.8rem;
}

.es-commitment-desc {
  font-size: 0.95rem;
  color: var(--es-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Custom CTA Button Style to match screenshot exact navy */
#btn-contact-us-cta {
  background-color: var(--es-navy) !important;
  border-color: var(--es-navy) !important;
  color: var(--es-white) !important;
}

#btn-contact-us-cta:hover {
  background-color: #0b1a30 !important; /* Slightly darker */
}



/* Floating Email Button */
.es-floating-email {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--es-gold);
  color: var(--es-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(197, 150, 62, 0.4);
  z-index: 9999;
  transition: var(--es-transition);
}

.es-floating-email:hover {
  background-color: var(--es-gold-dark);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(197, 150, 62, 0.6);
  color: var(--es-white);
}

.es-floating-email svg {
  transition: transform 0.3s ease;
}

.es-floating-email:hover svg {
  transform: scale(1.1);
}
