/* ============================================
   MODERN LANDING PAGE REDESIGN
   High-end, clean, professional with smooth animations
   ============================================ */

/* ===== GLOBAL RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

:root {
  /* Brand Colors */
  --primary: #e2003b;
  --primary-dark: #c20032;
  --primary-light: #ff1744;
  --gradient-primary: linear-gradient(135deg, #931B5C 0%, #BB0D4B 25%, #D7043F 50%, #E2003B 75%, #E53517 100%);
  --gradient-primary-hover: linear-gradient(135deg, #a01f6a 0%, #c9155a 25%, #e8154a 50%, #f21544 75%, #f54a2a 100%);
  
  /* Neutral Colors */
  --text-primary: #0a0a0a;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-lighter: #f1f5f9;
  --border-color: rgba(0, 0, 0, 0.08);
  --border-light: rgba(0, 0, 0, 0.04);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
  --shadow-glow: 0 0 24px rgba(226, 0, 59, 0.2);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

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

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition-base), transform 0.8s var(--transition-base);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }

/* ===== HEADER / TOPBAR ===== */
.hdwm-topbar {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
    z-index: 1000;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
  transition: all var(--transition-base);
  }

.hdwm-topbar:hover {
  box-shadow: var(--shadow-md);
}

  .hdwm-logo {
  height: 64px;
    width: auto;
  transition: transform var(--transition-fast);
}

.hdwm-logo:hover {
  transform: scale(1.05);
}

.hdwm-logo-link {
  transition: transform var(--transition-fast);
}

  .hdwm-topbar-text {
    font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  }

  .hdwm-topbar-call {
  padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: all var(--transition-fast);
}

/* ===== BUTTONS ===== */
.hdwm-btn-gradient {
  background: var(--gradient-primary);
  border: none;
  color: var(--bg-white);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  cursor: pointer;
    position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  display: inline-block;
  text-align: center;
}

.hdwm-btn-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary-hover);
  transition: left var(--transition-base);
  z-index: -1;
}

.hdwm-btn-gradient:hover::before {
  left: 0;
}

  .hdwm-btn-gradient:hover,
  .hdwm-btn-gradient:focus-visible {
  color: var(--bg-white);
    text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.hdwm-btn-gradient:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

/* ===== HERO SECTION ===== */
.hdwm-mba-hero-bg {
    position: relative;
  min-height: 600px;
  padding: 80px 0;
    background-image: url("images/Web-banner-HDWM-1-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    overflow: hidden;
  }
  
.hdwm-mba-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(241deg, rgb(0 0 0 / 28%) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hdwm-mba-hero-bg .container {
  position: relative;
  z-index: 2;
    }
  
    .hdwm-hero-content {
  max-width: 480px;
  background: var(--bg-white);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
  }
  
  .hdwm-eyebrow {
  font-size: 0.75rem;
    text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--primary);
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(226, 0, 59, 0.1);
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  }
  
  .hdwm-hero-title {
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  }
  
  .hdwm-hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ===== FORMS ===== */
.hdwm-hero-form .form-label,
.hdwm-form-card .form-label {
    font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: block;
}

.hdwm-hero-form .form-control,
.hdwm-form-card .form-control {
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-color);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  background-color: var(--bg-white);
  width: 100%;
}

.hdwm-hero-form .form-control:focus,
.hdwm-form-card .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(226, 0, 59, 0.1);
  transform: translateY(-1px);
}

.hdwm-hero-form .form-control::placeholder,
.hdwm-form-card .form-control::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

/* ===== SECTION STYLES ===== */
.hdwm-section-default {
  background-color: var(--bg-white);
  padding: var(--spacing-2xl) 0;
}

.hdwm-section-light {
  background-color: var(--bg-light);
  padding: var(--spacing-2xl) 0;
}

.hdwm-section-title {
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hdwm-section-intro {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== ABOUT SECTION ===== */
.hdwm-about-section {
  background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-light) 100%);
  padding: var(--spacing-2xl) 0;
}

.hdwm-about-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
    display: flex;
    flex-direction: column;
  height: 100%;
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
}

.hdwm-about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

  .hdwm-about-body {
  padding: 2.5rem;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

  .hdwm-about-heading {
    font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  }

  .hdwm-about-subtitle {
    font-weight: 600;
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  }
  
  .hdwm-meta-label {
    font-weight: 700;
  color: var(--text-primary);
  }
  
  .hdwm-about-strip-bottom {
  margin-top: auto;
  height: 5px;
  background: var(--gradient-primary);
}

  .hdwm-form-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  height: 100%;
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
}

.hdwm-form-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.hdwm-form-heading {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.hdwm-form-card .small {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ===== WHY SECTION ===== */
.hdwm-why-image-wrap {
  max-width: 100%;
  position: relative;
  }
  
  .hdwm-why-image {
    object-fit: cover;
    width: 100%;
    height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-slow);
  }
  
.hdwm-why-image:hover {
  transform: scale(1.02);
}

  .hdwm-why-content {
  background-color: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--primary);
  transition: all var(--transition-base);
}

.hdwm-why-content:hover {
  box-shadow: var(--shadow-xl);
  transform: translateX(4px);
  }
  
  .hdwm-why-title {
  font-weight: 800;
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

  .hdwm-why-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }
  
  .hdwm-why-list li {
    position: relative;
  padding-left: 2rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  transition: all var(--transition-fast);
}

.hdwm-why-list li:hover {
  color: var(--text-primary);
  transform: translateX(4px);
  }
  
  .hdwm-why-list li::before {
    content: "";
    position: absolute;
    left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
    border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 0 4px rgba(226, 0, 59, 0.1);
  }
  
  .hdwm-why-label {
    font-weight: 700;
  color: var(--text-primary);
}

/* ===== CAREER BOOST SECTION ===== */
.hdwm-image-panel {
  height: 100%;
}

.hdwm-image-panel .row {
  height: 100%;
}

.hdwm-image-panel img {
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-slow);
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.hdwm-image-panel img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

/* ===== PARTNERS / LOGOS SECTION ===== */
  .hdwm-logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  padding: 1rem;
  }
  
  .hdwm-logo-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  height: 100px;
}

.hdwm-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  }
  
  .hdwm-logo-card img {
  max-height: 60px;
    width: auto;
  filter: grayscale(100%) opacity(0.6);
  transition: all var(--transition-base);
  }
  
.hdwm-logo-card:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
  }
  
/* Responsive logos grid */
  @media (max-width: 1200px) {
    .hdwm-logos-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .hdwm-logos-grid {
      grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    }
  }
  
  @media (max-width: 576px) {
      .row {
    margin: 0;
}
    .hdwm-logos-grid {
      /* grid-template-columns: 1fr; */
      grid-template-columns: repeat(2, 1fr);
    }
        .hdwm-mba-hero-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
    241deg, rgb(194 16 72) 0%, rgba(0, 0, 0, 0.1) 100%);
        z-index: 1;
    }
  }

/* ===== STATE APPROVED SECTION ===== */
  .hdwm-state-approved-section {
  padding: var(--spacing-2xl) 1rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
  }
  
  .hdwm-state-approved-section .ce-headline-center {
  font-size: 2rem;
    text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  }
  
  .smallLogoBanner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  gap: 2rem;
  }
  
  .smallLogoBanner img {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  max-height: 90px;
    width: auto;
    object-fit: contain;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
  }
  
  .smallLogoBanner img:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* ===== TESTIMONIALS ===== */
  .section-testimonials {
  padding: var(--spacing-2xl) 1.5rem;
  background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-light) 100%);
  }
  
  .section-testimonials .section-title {
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--text-primary);
  }
  
  .testimonial-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  }
  
  .testimonial-quote {
  color: var(--primary);
  font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
  line-height: 1;
  opacity: 0.3;
  font-weight: 800;
  }
  
  .testimonial-text {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: italic;
  }
  
  .testimonial-name {
    font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  }
  
  .testimonial-role {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== FAQ / ACCORDION ===== */
  .hdwm-accordion .accordion-item {
    border: 0;
  border-bottom: 1px solid var(--border-color);
    border-radius: 0;
  background-color: transparent;
  margin-bottom: 0.5rem;
  }
  
  .hdwm-accordion .accordion-item:last-child {
  border-bottom: 1px solid var(--border-color);
  }
  
  .hdwm-accordion .accordion-button {
    background-color: transparent;
    padding: 1.5rem 0;
    font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
  transition: all var(--transition-fast);
}

.hdwm-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: transparent;
}

.hdwm-accordion .accordion-button:hover {
  color: var(--primary);
}

  .hdwm-accordion .accordion-button::after {
    display: none;
  }
  
.hdwm-accordion .accordion-button:focus {
  box-shadow: none;
}

  .hdwm-acc-question {
    text-align: left;
    padding-right: 1.5rem;
  flex: 1;
  }
  
  .hdwm-acc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 1.3rem;
    flex-shrink: 0;
  transition: all var(--transition-fast);
  font-weight: 300;
}

.hdwm-accordion .accordion-button:not(.collapsed) .hdwm-acc-icon {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: rotate(45deg);
}

  .hdwm-accordion .accordion-body {
    padding: 0 0 1.5rem 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.hdwm-footer {
  background: var(--gradient-primary);
  color: var(--bg-white);
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.hdwm-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("images/footer.webp") center top / cover;
  opacity: 0.1;
  z-index: 0;
  background-position: top;
}

.hdwm-footer > .container {
  position: relative;
  z-index: 1;
  }
  
  .hdwm-footer-heading {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  color: var(--bg-white);
  }
  
  .hdwm-footer-text {
    margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  }
  
  .hdwm-footer a {
  color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
  transition: all var(--transition-fast);
  }
  
  .hdwm-footer a:hover {
  color: var(--bg-white);
    text-decoration: underline;
  transform: translateX(2px);
  }
  
  .hdwm-footer-map-wrap {
    width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
    overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-base);
}

.hdwm-footer-map-wrap:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ===== MOBILE HERO IMAGE ===== */
.hdwm-hero-mobile img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
}

/* ===== RESPONSIVE DESIGN ===== */
  @media (max-width: 991.98px) {
  .hdwm-hero-title {
    font-size: 2rem;
  }
  
  .hdwm-section-title {
    font-size: 1.75rem;
  }
  
  .hdwm-why-title {
    font-size: 1.6rem;
  }
  
  .hdwm-about-body,
  .hdwm-form-card {
    padding: 2rem 1.5rem;
  }
  
  .hdwm-why-content {
    padding: 2rem 1.5rem;
    margin-top: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .hdwm-logo {
    height: 48px;
  }
  
  .hdwm-mba-hero-bg {
    padding: 40px 0 30px;
    background-image: none;
    min-height: auto;
  }
  
  .hdwm-hero-content {
    max-width: 100%;
    padding: 2rem !important;
  }
  
  .hdwm-hero-title {
    font-size: 1.75rem;
  }
  

  
  .hdwm-about-section,
  .hdwm-section-default,
  .hdwm-section-light {
    padding: var(--spacing-xl) 0;
  }
  
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  
    .hdwm-footer {
    padding: var(--spacing-xl) 0 var(--spacing-md);
    }
  
    .hdwm-footer-map-wrap {
    height: 240px;
    margin-top: 1.5rem;
  }
  
  .hdwm-state-approved-section {
    padding: var(--spacing-xl) 1rem;
  }
  
  .hdwm-state-approved-section .ce-headline-center {
    font-size: 1.5rem;
  }
  
  .smallLogoBanner {
    gap: 1rem;
  }
  
  .smallLogoBanner img {
    max-height: 70px;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 575.98px) {
  .hdwm-hero-title {
    font-size: 1.5rem;
  }
  
  .hdwm-section-title,.section-testimonials .section-title {
    font-size: 1.6rem;
  }
  
  .hdwm-about-body,
  .hdwm-form-card {
    padding: 1.5rem 1.25rem;
  }
  
  .hdwm-why-content {
    padding: 1.5rem 1.25rem;
  }
  
  .testimonial-card {
    padding: 1.5rem 1.25rem;
  }
  
  .testimonial-quote {
    font-size: 3rem;
  }
}

/* ===== SMOOTH SCROLLING ENHANCEMENTS ===== */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* ===== FOCUS STATES ===== */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-glow {
  box-shadow: var(--shadow-glow);
  }
  

  /* Mobile Sticky Footer CTA */
.hdwm-mobile-sticky-cta{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;

  display: flex;
  align-items: center;
  gap: 10px;

  /* IMPORTANT: add safe-area padding so it won't get clipped */
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));

  background: rgba(255,255,255,0.98);
  border-top: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
  box-sizing: border-box;
}

.hdwm-mobile-cta-btn{
  flex: 1;
  border-radius: 12px;
  font-weight: 700;
  border: 0;

  /* IMPORTANT: fixed tap-friendly height + center text */
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 12px 10px;
  line-height: 1;
  box-sizing: border-box;
}

.hdwm-mobile-cta-enquire{
  background: linear-gradient(90deg, #d1001c, #ff3b30);
  color: #fff;
}

.hdwm-mobile-cta-call{
  background: #111827;
  color: #fff;
}

/* Ensure page content isn't hidden behind the sticky bar */
@media (max-width: 767.98px){
  body{
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }
}
