/**
 * @file
 * Custom branding, typography, and premium menu animations for the Wachila theme.
 */

:root {
  /* Font Variables */
  --font-body: 'Noto Sans', sans-serif;
  --font-headings: 'Outfit', sans-serif;

  /* Brand Color Definitions */
  --brand-primary: #225c2e;
  --brand-secondary: #ffb300;
  --brand-primary-rgb: 34, 92, 46;
  --brand-secondary-rgb: 255, 179, 0;

  /* Overriding Bootstrap Typography Defaults */
  --bs-body-font-family: var(--font-body);
  --bs-heading-font-family: var(--font-headings);

  /* Overriding Bootstrap Core Colors */
  --bs-primary: var(--brand-primary);
  --bs-primary-rgb: var(--brand-primary-rgb);
  --bs-secondary: var(--brand-secondary);
  --bs-secondary-rgb: var(--brand-secondary-rgb);

  /* Component Link Overrides */
  --bs-link-color: var(--brand-primary);
  --bs-link-hover-color: #163d1e;
}

h1, h2, h3, h4, h5, h6, 
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-headings);
  font-weight: 700;
}

body {
  font-family: var(--font-body);
  background-color: #fdfdfd;
  color: #212529;
  padding-top: 0 !important; 
}

/* Responsive Sticky Strategy: Relative flow on mobile, Fixed sticky exclusively on desktop */
.wachila-navigation-header {
  position: relative;
  width: 100%;
}

@media (min-width: 992px) {
  body {
    padding-top: 97px !important;
  }
  .wachila-navigation-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1030;
  }
}

/* SVG Logo Scaling Grid */
.wachila-logo-wrapper {
  height: 52px;
  width: auto;
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .wachila-logo-wrapper {
    height: 65px;
    max-width: 240px;
  }
}

.wachila-logo-wrapper svg,
.wachila-logo-wrapper img {
  display: block;
  height: 100% !important;
  width: auto !important;
  max-width: 100%;
}

/* Utilities & Helpers */
.tracking-wider {
  letter-spacing: 0.15em;
}
.text-white-50 {
  color: rgba(255, 255, 255, 0.85) !important;
}
.lead-sm {
  font-size: 1.1rem;
  line-height: 1.65;
}

/* ==========================================================================
   Side-by-Side Interactive Presentation Layout
   ========================================================================== */
.split-image-wrapper {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: #f4f7f4;
}

.split-image-wrapper:hover {
  transform: scale(1.015);
}

.split-image-wrapper img,
.split-image-wrapper picture {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-height: 480px;
}

/* Equal-Height Image Column Stretch Architecture */
@media (min-width: 768px) {
  .split-image-stretch {
    position: relative;
    min-height: 100%;
  }
  .split-image-stretch img,
  .split-image-stretch picture,
  .split-image-stretch fieldset,
  .split-image-stretch .field,
  .split-image-stretch .field__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover;
  }
}

/* ==========================================================================
   Cards Section CSS Grid Bypass Framework (Fixed Tabulated Alignment)
   ========================================================================== */
.section-heading-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--brand-secondary);
  border-radius: 2px;
}

/* * High Contrast Section Background Enhancements 
 * Darkened to guarantee clear definition on lower-contrast monitors.
 */
.bg-white {
  background-color: #ffffff !important;
}

.bg-section-light {
  background-color: #edf1ef !important; /* Noticeably darker gray-green mix background */
  border-top: 1px solid #e0e6e3;
  border-bottom: 1px solid #e0e6e3;
}

.bg-section-brand,
.bg-section-brand-muted {
  background-color: rgba(34, 92, 46, 0.09) !important; /* Increased opacity from 0.04 to 0.09 for visibility */
  border-top: 1px solid rgba(34, 92, 46, 0.16);
  border-bottom: 1px solid rgba(34, 92, 46, 0.16);
}

/* Deep flex wrapper targets Drupal field layers safely */
.wachila-grid-container > .field,
.wachila-grid-container > .field > .field__items {
  display: flex !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  margin-right: calc(-.5 * var(--bs-gutter-x)) !important;
  margin-left: calc(-.5 * var(--bs-gutter-x)) !important;
  justify-content: center !important;
}

/* Responsive Column Allocations & Flex Stretch Inheritance */
.wachila-grid-container .field__item {
  display: flex !important;              
  flex-direction: column !important;     
  flex: 1 0 0% !important;
  width: 100% !important;
  padding-right: calc(var(--bs-gutter-x) * .5) !important;
  padding-left: calc(var(--bs-gutter-x) * .5) !important;
  margin-bottom: var(--bs-gutter-y) !important;
}

@media (min-width: 576px) {
  .wachila-grid-container .field__item {
    flex: 0 0 50% !important;
    width: 50% !important;
  }
}

@media (min-width: 992px) {
  .wachila-grid-container .field__item {
    flex: 0 0 25% !important;
    width: 25% !important;
    min-width: 220px !important;
  }
}

/* Premium Card Presentation Layout - Strict Zeroed Flush Left Border Line */
.wachila-premium-card {
  background-color: #ffffff;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.08) !important; /* Slightly boosted border tone for card clarity */
  height: 100% !important;              
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;   
  text-align: left !important;
  padding: 2rem !important;
}

/* Strips out extra Bootstrap block-level offsets that trigger the tabulated look */
.wachila-premium-card .card-body,
.wachila-premium-card .field,
.wachila-premium-card .field__item,
.wachila-premium-card .field__items {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Ensure absolute typographical margin consistency */
.wachila-premium-card h3,
.wachila-premium-card .card-title,
.wachila-premium-card h4 {
  margin-top: 1.25rem !important;
  margin-bottom: 0.75rem !important;
  padding: 0 !important;
  text-align: left !important;
  width: 100% !important;
}

.wachila-premium-card p,
.wachila-premium-card .card-text,
.wachila-premium-card .small-line-height {
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  width: 100% !important;
}

.wachila-card-icon-badge {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
}

.wachila-premium-card:hover .wachila-card-icon-badge {
  background-color: var(--brand-primary) !important;
  color: #ffffff !important;
}

.small-line-height {
  line-height: 1.6;
  font-size: 0.95rem;
  word-break: normal !important;
  white-space: normal !important;
}

/* ==========================================================================
   Premium Custom Asymmetric Menu Trigger Button
   ========================================================================== */
.wachila-menu-trigger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 18px;
  padding: 0;
  z-index: 2001;
  position: relative;
}

.wachila-menu-trigger:focus {
  outline: none;
}

.burger-bar {
  background-color: #1a251e;
  border-radius: 2px;
  display: block;
  height: 3px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: center;
}

.bar-top { width: 100%; }
.bar-middle { width: 70%; align-self: flex-end; }
.bar-bottom { width: 100%; }

.wachila-menu-trigger:not(.is-active):hover .bar-middle {
  width: 100%;
}

.wachila-menu-trigger.is-active .bar-top {
  transform: translateY(7.5px) rotate(45deg);
  background-color: var(--brand-primary);
}

.wachila-menu-trigger.is-active .bar-middle {
  opacity: 0;
  width: 0% !important;
  transform: scaleX(0);
}

.wachila-menu-trigger.is-active .bar-bottom {
  transform: translateY(-7.5px) rotate(-45deg);
  background-color: var(--brand-primary);
}

/* ==========================================================================
   Full-Screen Overlay Menu Presentation Loop
   ========================================================================== */
.wachila-fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(10px);
}

.wachila-fullscreen-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.fullscreen-menu-inner {
  width: 100%;
  height: 100%;
  padding: 2rem;
}

.wachila-fullscreen-menu .navbar-nav {
  text-align: center;
}

.wachila-fullscreen-menu .navbar-nav .nav-item {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.wachila-fullscreen-menu.is-open .navbar-nav .nav-item {
  opacity: 1;
  transform: translateY(0);
}
.wachila-fullscreen-menu.is-open .navbar-nav .nav-item:nth-child(1) { transition-delay: 0.1s; }
.wachila-fullscreen-menu.is-open .navbar-nav .nav-item:nth-child(2) { transition-delay: 0.2s; }
.wachila-fullscreen-menu.is-open .navbar-nav .nav-item:nth-child(3) { transition-delay: 0.3s; }
.wachila-fullscreen-menu.is-open .navbar-nav .nav-item:nth-child(4) { transition-delay: 0.4s; }

.wachila-fullscreen-menu .navbar-nav .nav-link {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a251e;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease-in-out;
}

.wachila-fullscreen-menu .navbar-nav .nav-link:hover { color: var(--brand-primary); }

.wachila-fullscreen-menu .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 4px;
  bottom: -5px;
  left: 0;
  background-color: var(--brand-secondary);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.wachila-fullscreen-menu .navbar-nav .nav-link:hover::after,
.wachila-fullscreen-menu .navbar-nav .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.wachila-fullscreen-menu .navbar-nav .nav-link.active { color: var(--brand-primary); }

@media (min-width: 992px) {
  .wachila-menu-trigger { display: none; }
  .wachila-fullscreen-menu {
    position: static;
    width: auto;
    height: auto;
    background: none;
    opacity: 1;
    visibility: visible;
    backdrop-filter: none;
  }
  .wachila-fullscreen-menu .navbar-nav {
    flex-direction: row;
    align-items: center;
  }
  .wachila-fullscreen-menu .navbar-nav .nav-item {
    margin-bottom: 0;
    opacity: 1 !important;
    transform: none !important;
  }
  .wachila-fullscreen-menu .navbar-nav .nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
  }
  .wachila-fullscreen-menu .navbar-nav .nav-link.active {
    border-bottom: 3px solid var(--brand-secondary);
  }
  .wachila-fullscreen-menu .navbar-nav .nav-link::after { display: none; }
}

.dropdown-menu {
  border: 1px solid #eef2ef;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
}

.dropdown-item:hover {
  background-color: rgba(var(--brand-primary-rgb), 0.05);
  color: var(--brand-primary);
}

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

.form-control:focus {
  border-color: rgba(var(--brand-primary-rgb), 0.5);
  box-shadow: 0 0 0 0.25rem rgba(var(--brand-primary-rgb), 0.25);
}

.btn-primary {
  --bs-btn-bg: var(--brand-primary);
  --bs-btn-border-color: var(--brand-primary);
  --bs-btn-hover-bg: #163d1e;
  --bs-btn-hover-border-color: #163d1e;
  --bs-btn-active-bg: #112e17;
  --bs-btn-disabled-bg: var(--brand-primary);
  --bs-btn-disabled-border-color: var(--brand-primary);
  font-family: var(--font-headings);
  font-weight: 500;
}

.btn-secondary {
  --bs-btn-bg: var(--brand-secondary);
  --bs-btn-border-color: var(--brand-secondary);
  --bs-btn-hover-bg: #e09e00;
  --bs-btn-border-color: #e09e00;
  --bs-btn-color: #000000;
  --bs-btn-hover-color: #000000;
  font-family: var(--font-headings);
  font-weight: 500;
}



/* ==========================================================================
   Premium Team Grid Framework & Stylized Profile Cards
   ========================================================================== */

/* Reconfigured Grid Alignment Layer */
.wachila-team-grid > .field,
.wachila-team-grid > .field > .field__items {
  display: grid !important;
  width: 100% !important;
  gap: 2rem !important;
  grid-template-columns: repeat(2, 1fr) !important; /* 2 Columns on Mobile & Tablet */
}

@media (min-width: 992px) {
  .wachila-team-grid > .field,
  .wachila-team-grid > .field > .field__items {
    grid-template-columns: repeat(3, 1fr) !important; /* 3 Columns on Desktop for breathing room */
  }
}

.wachila-team-grid .field__item {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

/* Stylized Team Interactive Card Design */
.team-interactive-card {
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease !important;
  background-color: #ffffff;
  padding: 2.5rem 1.5rem !important; /* Balanced inner whitespace */
}

/* Elevated Lift Effect on Hover */
.team-interactive-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 12px 30px rgba(34, 92, 46, 0.08) !important; /* Subtle branding-colored depth glow */
  border-color: rgba(var(--brand-primary-rgb), 0.15) !important;
}

/* Elegant Circular Image Badging */
.team-card-image-wrapper {
  width: 130px !important;
  height: 130px !important;
  margin: 0 auto 1.5rem auto !important; /* Centered layout placement */
  border-radius: 50% !important;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  background-color: #f4f7f4;
}

.team-card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-interactive-card:hover .team-card-image-wrapper img {
  transform: scale(1.08);
}

/* Center-Aligned Typography Architecture */
.team-interactive-card .card-body {
  align-items: center !important;
  text-align: center !important;
}

.team-interactive-card h4 {
  font-size: 1.2rem !important;
  letter-spacing: -0.01em;
  text-align: center !important;
  margin-top: 0 !important;
  margin-bottom: 0.35rem !important;
}

.team-interactive-card .text-secondary {
  font-size: 0.75rem !important;
  letter-spacing: 0.12em;
  text-align: center !important;
  margin-bottom: 1rem !important;
}

.team-interactive-card p {
  text-align: center !important;
  font-size: 0.9rem !important;
  color: #6c757d !important;
}

/* Micro-Interaction for View Bio Trigger */
.view-bio-link {
  font-size: 0.8rem !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(var(--brand-primary-rgb), 0.15);
  padding-bottom: 2px;
  transition: all 0.2s ease;
}

.team-interactive-card:hover .view-bio-link {
  color: var(--brand-primary) !important;
  border-bottom-color: var(--brand-secondary);
}

/* Self-Contained Modal Enhancements */
.wachila-team-modal .modal-content {
  border-radius: 16px !important;
}

.modal-team-image {
  width: 180px !important;
  height: 180px !important;
  border-radius: 50% !important;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  margin: 0 auto !important;
}

.modal-team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fs-7 {
  font-size: 0.85rem !important;
}

.break-word {
  word-break: break-all !important;
}


/* ==========================================================================
   Wachila Corporate Footer - Pure ID-Targeted Framework
   ========================================================================== */

.wachila-corporate-footer {
  background-color: #225c2e !important; /* Core brand primary green */
  font-family: var(--font-body);
  color: #ffffff !important;
  width: 100% !important;
}

.footer-top-content {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

/* Hardened Contrast Footer Copyright Strip */
.footer-bottom-bar {
  background-color: #0d2713 !important; /* Deep accent shadow tone */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* * 1. Force Drupal's native interior region container 
 * to act as our primary layout grid wrapper.
 */
.wachila-footer-row-grid .region-footer {
  display: grid !important;
  gap: 3rem !important;
  grid-template-columns: 1fr !important; /* Mobile vertical fallback stack */
  width: 100% !important;
}

/* Responsive Medium Screen Breakpoint Grid Mapping */
@media (min-width: 768px) {
  .wachila-footer-row-grid .region-footer {
    grid-template-columns: repeat(2, 1fr) !important; /* Tablet dual column display */
  }
}

/* Responsive Desktop Screen Breakpoint Grid Mapping */
@media (min-width: 992px) {
  .wachila-footer-row-grid .region-footer {
    /* * Exact spacing mapping: Logo column gets 1.2 fraction frames, 
     * Conversation gets 1 fraction frame, and Address gets 1.4 fraction frames 
     * ensuring words like "Airforce" and "Media" have ample wrapping room.
     */
    grid-template-columns: 1.2fr 1fr 1.4fr !important; 
    align-items: start !important;
    gap: 4rem !important;
  }
}

/* 2. Standardize interior block alignment properties */
#block-wachila-footerbrandlogo,
#block-wachila-startaconversation,
#block-wachila-findouraddress {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  width: 100% !important;
  min-width: 0 !important;
}

/* 3. Global Typography & Dynamic Inline Assets Styling Rules */

/* Layout Header Element Tags */
#block-wachila-startaconversation h2,
#block-wachila-findouraddress h2 {
  font-family: var(--font-headings) !important;
  color: #ffffff !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  margin-top: 0 !important;
  margin-bottom: 1.5rem !important;
  letter-spacing: -0.01em;
  text-transform: none !important;
}

/* Core Rich Text Content & Block Editor Paragraph Components */
.wachila-footer-row-grid p,
.wachila-footer-row-grid div,
.wachila-footer-row-grid span {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.95rem !important;
  line-height: 1.8 !important;
  margin-bottom: 0.25rem !important;
  text-align: left !important;
  width: 100% !important;
  display: block !important;
}

/* Dynamic Mailto/Tel Anchor Link Color Transforms */
.wachila-footer-row-grid a {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none !important;
  transition: color 0.2s ease-in-out !important;
}

.wachila-footer-row-grid a:hover {
  color: var(--brand-secondary) !important; /* Branded gold interactive hover state */
}

/* Explicit scaling boundaries for your Footer Logo Image block wrapper */
#block-wachila-footerbrandlogo img {
  max-width: 220px !important;
  height: auto !important;
  display: block !important;
  margin: 0 !important;
}

/* Copyright Strip Text Metadata rules */
.copyright-text-layout {
  color: rgba(255, 255, 255, 0.6) !important;
}

.developer-attribution {
  color: var(--brand-secondary) !important; /* High contrast brand-gold text signature mapping */
  font-weight: 500;
}

/* Developer Attribution Hyperlink Rules */
.developer-attribution a {
  color: var(--brand-secondary) !important; /* Forces the signature brand gold color */
  text-decoration: none !important;
  font-weight: 500;
  transition: opacity 0.2s ease-in-out !important;
}

.developer-attribution a:hover {
  opacity: 0.85 !important;
  text-decoration: underline !important; /* Subtle underline focus purely on hover */
}



/* ==========================================================================
   Wachila Corporate Contact Page Layout Architecture
   ========================================================================== */

/* Hero Banner Layout Contexts */
.contact-hero-banner {
  background-color: #0d2713 !important; /* Extremely deep corporate green background shadow */
  background-image: linear-gradient(rgba(13, 39, 19, 0.85), rgba(13, 39, 19, 0.95));
  min-height: 240px;
  width: 100%;
}

.contact-hero-banner h1 {
  font-family: var(--font-headings);
  font-weight: 700;
}

/* Sidebar Info Cards styling setups */
.contact-info-sidebar {
  background-color: #225c2e !important; /* Primary Brand Green */
}

.contact-info-sidebar h2 {
  font-family: var(--font-headings);
}

.contact-info-sidebar .icon-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-sidebar a {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-info-sidebar a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* * Direct Form Input Formats: Standardizes Drupal core text fields, 
 * labels, wrappers and submission targets.
 */
.contact-form-card label {
  font-weight: 600 !important;
  color: #333333 !important;
  font-size: 0.9rem !important;
  margin-bottom: 0.5rem !important;
  text-align: left !important;
  display: block !important;
}

.contact-form-card .form-item,
.contact-form-card .form-group {
  margin-bottom: 1.5rem !important;
  text-align: left !important;
}

.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card textarea {
  width: 100% !important;
  padding: 0.75rem 1rem !important;
  font-size: 1rem !important;
  color: #495057 !important;
  background-color: #f8f9fa !important;
  background-clip: padding-box !important;
  border: 1px solid #ced4da !important;
  border-radius: 6px !important;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  color: #495057 !important;
  background-color: #ffffff !important;
  border-color: #225c2e !important; /* Highlights matching green brand framework */
  outline: 0 !important;
  box-shadow: 0 0 0 0.2rem rgba(34, 92, 46, 0.15) !important;
}

/* Standard button targets configurations override */
.contact-form-card .form-submit,
.contact-form-card button[type="submit"] {
  background-color: #225c2e !important; /* Enforced green */
  color: #ffffff !important;
  font-weight: 600 !important;
  padding: 0.75rem 2rem !important;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease-in-out !important;
  text-transform: uppercase !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.05em !important;
  display: inline-block !important;
}

.contact-form-card .form-submit:hover,
.contact-form-card button[type="submit"]:hover {
  background-color: #174221 !important; /* Slightly deeper green blend configuration overlay */
}