   /* Screen reader only utility */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border-width: 0;
    }
/* #sp-main-body .container {
    max-width: 100%;
    padding: 0;
} */

    #site-footer {
      --brand: #1a1d3a;
      --brand-light: #252952;
      --accent: #0000FF;
      --accent-glow: rgba(0, 0, 255, 0.15);
      --ink: #e8ecf4;
      --muted: #9ca3b4;
      --border: rgba(255, 255, 255, 0.08);
      
      background: linear-gradient(135deg, #1a1d3a 0%, #20214f 100%);
      color: var(--ink);
      padding: 70px 0 0;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
      position: relative;
      overflow: hidden;
    }

    /* Animated background shapes - CONTINUOUS ANIMATION */
    .ft__bg-shapes {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .ft__shape {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.15;
    }

    .ft__shape--1 {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(0, 0, 255, 0.4) 0%, transparent 70%);
      top: -100px;
      left: -100px;
      animation: ftFloat1 20s ease-in-out infinite;
    }

    .ft__shape--2 {
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(0, 183, 200, 0.3) 0%, transparent 70%);
      bottom: -80px;
      right: 10%;
      animation: ftFloat2 18s ease-in-out infinite;
    }

    .ft__shape--3 {
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(0, 0, 255, 0.25) 0%, transparent 70%);
      top: 40%;
      right: -50px;
      animation: ftFloat3 22s ease-in-out infinite;
    }

    @keyframes ftFloat1 {
      0%, 100% {
        transform: translate(0, 0) scale(1);
      }
      33% {
        transform: translate(50px, -30px) scale(1.1);
      }
      66% {
        transform: translate(-30px, 40px) scale(0.9);
      }
    }

    @keyframes ftFloat2 {
      0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
      }
      33% {
        transform: translate(-40px, 30px) rotate(120deg) scale(1.15);
      }
      66% {
        transform: translate(60px, -20px) rotate(240deg) scale(0.85);
      }
    }

    @keyframes ftFloat3 {
      0%, 100% {
        transform: translate(0, 0) scale(1);
      }
      50% {
        transform: translate(-70px, -50px) scale(1.2);
      }
    }

    .ft__container { 
      width: min(1400px, 96%);
      margin: 0 auto; 
      position: relative;
      z-index: 1;
    }

    /* Brand section - LEFT ALIGNED */
    .ft__brand {
      margin-bottom: 24px;
      animation: ftFadeInUp 0.8s ease-out;
    }

    .ft__brand-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

    @keyframes ftFadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .ft__logo {
      display: inline-block;
      transition: transform 0.3s ease, filter 0.3s ease;
    }

    .ft__logo:hover {
      transform: scale(1.05);
      filter: brightness(1.2);
    }

    .ft__logo img { 
      height: 52px; 
      width: auto; 
      filter: brightness(1.3) contrast(1.1);
    }

    .ft__tagline {
      font-size: 15px;
      color: var(--muted);
      margin: 0;
      letter-spacing: 0.02em;
      opacity: 0;
      animation: ftFadeIn 1s ease-out 0.3s forwards;
    }

    @keyframes ftFadeIn {
      to { opacity: 1; }
    }

    /* Divider */
    .ft__rule { 
      border: 0; 
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
      margin: 32px 0 44px;
      opacity: 0;
      animation: ftLineExpand 1s ease-out 0.5s forwards;
    }

    @keyframes ftLineExpand {
      from {
        opacity: 0;
        transform: scaleX(0);
      }
      to {
        opacity: 1;
        transform: scaleX(1);
      }
    }

    /* Grid */
    .ft__grid {
      display: grid;
      gap: 60px;
      grid-template-columns: 1fr 1fr 1.2fr 1fr;
      margin-bottom: 50px;
    }

    .ft__col {
      opacity: 0;
      animation: ftColFadeIn 0.6s ease-out forwards;
    }

    .ft__col:nth-child(1) { animation-delay: 0.6s; }
    .ft__col:nth-child(2) { animation-delay: 0.7s; }
    .ft__col:nth-child(3) { animation-delay: 0.8s; }
    .ft__col:nth-child(4) { animation-delay: 0.9s; }

    @keyframes ftColFadeIn {
      to {
        opacity: 1;
      }
    }

    .ft__title { 
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #fff;
      margin: 0 0 18px;
      position: relative;
      padding-bottom: 10px;
    }

    .ft__title::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 32px;
      height: 2px;
      background: var(--accent);
      border-radius: 2px;
      animation: ftTitleLine 2s ease-in-out infinite;
    }

    @keyframes ftTitleLine {
      0%, 100% {
        width: 32px;
        opacity: 1;
      }
      50% {
        width: 48px;
        opacity: 0.7;
      }
    }

    .ft__list { 
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }

    .ft__list a {
      color: var(--ink);
      text-decoration: none;
      font-size: 14px;
      display: inline-block;
      position: relative;
      transition: all 0.25s ease;
      padding-left: 0;
    }

    .ft__list a::before {
      content: '›';
      position: absolute;
      left: -16px;
      opacity: 0;
      transition: all 0.25s ease;
      color: var(--accent);
      font-weight: 600;
    }

    .ft__list a:hover {
      color: #fff;
      padding-left: 16px;
      transform: translateX(2px);
    }

    .ft__list a:hover::before {
      opacity: 1;
      left: 0;
    }

    /* Newsletter form - FIXED INPUT */
    .ft__form {
      margin-bottom: 22px;
    }

    .ft__input-wrap {
      display: flex;
      gap: 8px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 5px;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .ft__input-wrap:focus-within {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px var(--accent-glow);
      background: rgba(255, 255, 255, 0.06);
    }

    .ft__form input {
      flex: 1;
      min-width: 0;
      background: transparent;
      color: #fff;
      border: 0;
      padding: 11px 14px;
      font-size: 14px;
      outline: none;
    }

    .ft__form input::placeholder {
      color: var(--muted);
      opacity: 0.7;
    }

    .ft__btn {
      display: flex;
      align-items: center;
      gap: 6px;
      background: var(--accent);
      border: 0;
      border-radius: 7px;
      color: #fff;
      padding: 11px 18px;
      font-weight: 600;
      font-size: 13px;
      cursor: pointer;
      transition: all 0.3s ease;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .ft__btn svg {
      transition: transform 0.3s ease;
    }

    .ft__btn:hover {
      background: #0000CC;
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0, 0, 255, 0.35);
    }

    .ft__btn:hover svg {
      transform: translateX(3px);
    }

    .ft__btn:active {
      transform: translateY(0);
    }

    /* Social icons */
    .ft__social {
      display: flex;
      gap: 10px;
      margin-top: 10px;
    }

    .ft__ico {
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      color: var(--ink);
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .ft__ico:hover {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 8px 20px rgba(0, 0, 255, 0.3);
    }

    /* Language switcher */
    .ft__lang {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 18px;
    }

    .ft__lang a {
      padding: 7px 15px;
      border-radius: 7px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      font-size: 12px;
      font-weight: 600;
      color: var(--ink);
      text-decoration: none;
      transition: all 0.25s ease;
      backdrop-filter: blur(10px);
    }

    .ft__lang a:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--accent);
      color: #fff;
      transform: translateY(-2px);
    }

    .ft__lang a.is-active {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
    }

    /* Legal links */
    .ft__legal {
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .ft__legal a {
      color: var(--muted);
      text-decoration: none;
      font-size: 13px;
      transition: all 0.25s ease;
      display: inline-block;
    }

    .ft__legal a:hover {
      color: #fff;
      transform: translateX(4px);
    }

    /* Bottom bar */
    .ft__bottom {
      padding: 26px 0;
      border-top: 1px solid var(--border);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      font-size: 13px;
      color: var(--muted);
    }

    .ft__copy {
      margin: 0;
    }

    .ft__top {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.05);
      color: var(--ink);
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(10px);
    }

    .ft__top:hover {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0, 0, 255, 0.3);
    }

    .ft__top svg {
      transition: transform 0.3s ease;
    }

    .ft__top:hover svg {
      transform: translateY(-2px);
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .ft__container {
        width: min(1400px, 94%);
      }
      
      .ft__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
      }
    }

    @media (max-width: 768px) {
      #site-footer {
        padding: 50px 0 0;
      }

      .ft__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
      }

      .ft__bottom {
        flex-direction: column;
        text-align: center;
      }

      .ft__brand-content {
        align-items: center;
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .ft__container {
        width: 90%;
      }

      .ft__title {
        font-size: 12px;
      }

      .ft__list a,
      .ft__form input,
      .ft__btn {
        font-size: 13px;
      }

      .ft__input-wrap {
        flex-direction: column;
        gap: 6px;
      }

      .ft__btn {
        width: 100%;
        justify-content: center;
      }
    }

    /* Reduce motion */
    @media (prefers-reduced-motion: reduce) {
      .ft__shape,
      .ft__title::after {
        animation: none !important;
      }
      
      * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }
  </style>

  <script>
    (function(){
      const y = document.getElementById('ft-year');
      if (y) y.textContent = new Date().getFullYear();

      const topBtn = document.getElementById('ft-top');
      if (topBtn) {
        topBtn.addEventListener('click', () => {
          window.scrollTo({top: 0, behavior: 'smooth'});
        });
      }
    })();
  </script>
</footer>










////////////









<style>
/* ELISOF Engineering Locations Styles */

/* Main Section */
.elisof-locations {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.locations-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Locations Row */
.locations-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px !important;
    margin-bottom: 50px;
    justify-content: center;
}

.locations-row:last-child {
    margin-bottom: 0;
}

/* Location Card */
.location-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid transparent;
    transition: 0.5s all ease-in-out;
  
}

.location-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    border-color: #2563eb45;
}

/* Location Header */
.location-header {
    padding: 10px 25px !important;
    position: relative;
    border-radius: 8px 8px 0px 0px;
    background: #212c95;
    margin-bottom: 20px;
}

.location-header.flex_wrap {display: flex;align-items: center;justify-content: space-between;}

.location-badge {
    display: inline-block;
    background: #fff !important;
    color: #212c95 !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 12px 4px;
    border-radius: 20px;
    font-weight: 500;
    margin-bottom: 0 !important;
}

.location-country {
    font-size: 22px;
    font-weight: 600;
    color: #fff !important;
    margin: 0;
    padding: 0;
}

/* Location Details */
.location-details {
    padding: 0 25px 20px;
}

.location-info {
    list-style: none;
    margin: 0;
    padding: 0;
}

.location-info li.address_info {
    display: flex;
    align-items: center;
    gap: 5px;
}
.location-info li.call_number a i {
    margin-right: 5px;
}
.location-info li.call_number a {
    color: #374151;
}

.location-info li i {
    color: #212c95;
}
.location-info li {
    display: flex;
    align-items: flex-start;
    font-size: 15px !important;
    color: #374151;
    line-height: 28px;
    font-weight: 500;
    padding: 0 !important;
    line-height: 28px !important;
}

/* Check Icon */
.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    flex-shrink: 0;
    position: relative;
    top: 2px;
}

.check-icon::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Location Map */
.location-map {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-top: 1px solid #e5e7eb;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* View Map Link */
.view-map-link {
    display: block;
    padding: 12px 25px;
    font-size: 13px;
    color: #212c95 !important;
    text-decoration: none;
    border-top: 1px solid #e5e7eb;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 16px;
}

.view-map-link:hover {
    background-color: #f0f7ff;
    color: #1d4ed8;
    text-decoration: underline;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .locations-row {
        gap: 30px;
    }
    
    .location-card {
        min-width: 280px;
    }
}

@media screen and (max-width: 768px) {
    .elisof-locations {
        padding: 40px 15px;
    }
    
    .locations-row {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .location-card {
        width: 100%;
        max-width: 450px;
    }
    
    .location-header {
        padding: 18px 20px 8px;
    }
    
    .location-country {
        font-size: 20px;
    }
    
    .location-details {
        padding: 0 20px 15px;
    }
    
    .location-info li {
        font-size: 13px;
        padding: 5px 0;
    }
    
    .view-map-link {
        padding: 10px 20px;
    }
}

@media screen and (max-width: 480px) {
    .elisof-locations {
        padding: 30px 10px;
    }
    
    .location-card {
        min-width: unset;
    }
    
    .location-map {
        height: 180px;
    }
}
/* ========================================
   RSForm Enhanced Styles with RAL 5002
   Ultramarine Blue Theme with Animations
   ======================================== */

/* CSS Variables for easy customization */
:root {
    --primary-color: #20214f;
    --primary-light: #2d2e6b;
    --primary-dark: #161738;
    --accent-color: #4a4b8f;
    --success-color: #28a745;
    --error-color: #dc3545;
    --text-light: #ffffff;
    --text-dark: #333333;
    --border-radius: 12px;
    --transition-speed: 0.3s;
    --shadow-sm: 0 2px 8px rgba(32, 33, 79, 0.1);
    --shadow-md: 0 4px 16px rgba(32, 33, 79, 0.15);
    --shadow-lg: 0 8px 32px rgba(32, 33, 79, 0.2);
}
section#sp-main-body {
    padding: 0 !important;
}
form#userForm {
    max-width: 100% !important;
    width: 100%;
    margin: 0 auto;
    border: none;
    border-radius: 10px;
    padding: 0px;
}
/* Container Styling */
.formContainer {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

/* Animated background effect */
.formContainer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(32, 33, 79, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: backgroundMove 20s linear infinite;
    z-index: 0;
}

.formContainer > .row {
    position: relative;
    z-index: 1;
}

/* Form Group Styling */
.form-group {
    margin-bottom: 3px;
    animation: slideInLeft 0.5s ease-out;
    animation-fill-mode: both;
    transition: transform var(--transition-speed) ease;
}
.rsform-type-textbox {
    margin-bottom: 5px !important;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.15s; }
.form-group:nth-child(3) { animation-delay: 0.2s; }
.form-group:nth-child(4) { animation-delay: 0.25s; }
.form-group:nth-child(5) { animation-delay: 0.3s; }
.form-group:nth-child(6) { animation-delay: 0.35s; }
.form-group:nth-child(7) { animation-delay: 0.4s; }
.form-group:nth-child(8) { animation-delay: 0.45s; }
.form-group:nth-child(9) { animation-delay: 0.5s; }

.form-group:hover {
    transform: translateX(5px);
}

/* Label Styling */
.formControlLabel {
    width: 100%;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    transition: color var(--transition-speed) ease;
    position: relative;
}

.rsform-type-textbox {
    margin-bottom: 5px !important;
}

.formControlLabel::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--accent-color);
    transition: height var(--transition-speed) ease;
}

.form-group:hover .formControlLabel::before {
    height: 20px;
}

.formRequired {
    color: var(--error-color);
    margin-left: 4px;
    font-size: 18px;
    animation: pulse 2s ease-in-out infinite;
}

/* Input Fields Styling */
.formControls input[type="text"],
.formControls input[type="email"],
.formControls input[type="tel"],
.formControls textarea {
    width: 100%;
   height: 52px;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 15px;
    transition: all var(--transition-speed) ease;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.formControls input[type="text"]:focus,
.formControls input[type="email"]:focus,
.formControls input[type="tel"]:focus,
.formControls textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(32, 33, 79, 0.1), var(--shadow-md);
    transform: translateY(-2px);
    background: #ffffff;
}

.formControls textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

/* Input Animation on Focus */
@keyframes inputGlow {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(32, 33, 79, 0.1);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(32, 33, 79, 0.15);
    }
}

.formControls input:focus,
.formControls textarea:focus {
    animation: inputGlow 2s ease-in-out infinite;
}

/* Checkbox Styling */
.formControls input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
    appearance: none;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all var(--transition-speed) ease;
    background: #ffffff;
}

.formControls input[type="checkbox"]:checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
    animation: checkboxPop 0.3s ease;
}

.formControls input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: var(--text-light);
    font-size: 14px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.formControls input[type="checkbox"]:hover {
    border-color: var(--accent-color);
    transform: scale(1.1);
}

/* Checkbox Group */
.formControls[role="group"] {
    display: flex;
    align-items: center;
}

.formControls[role="group"] label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
    transition: color var(--transition-speed) ease;
}

.formControls[role="group"] label:hover {
    color: var(--primary-color);
}

/* Submit Button Styling */
.formControls button[type="submit"],
.formControls input[type="submit"] {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    border: none;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.formControls button[type="submit"]::before,
.formControls input[type="submit"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.formControls button[type="submit"]:hover::before,
.formControls input[type="submit"]:hover::before {
    width: 300px;
    height: 300px;
}

.formControls button[type="submit"]:hover,
.formControls input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(32, 33, 79, 0.3);
}

.formControls button[type="submit"]:active,
.formControls input[type="submit"]:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Validation Styling */
.formValidation {
    color: var(--error-color);
    font-size: 13px;
    margin-top: 6px;
    display: block;
    animation: shake 0.5s ease;
}

.rsform-block.has-error .formControls input,
.rsform-block.has-error .formControls textarea {
    border-color: var(--error-color);
    background: #fff5f5;
}

/* Error Class Animation */
.rsform-block.has-error {
    animation: errorShake 0.5s ease;
}

/* Help Block */
.help-block {
    font-size: 13px;
    color: #666;
    margin-top: 6px;
}

/* Floating Label Effect */
.formControls {
    position: relative;
}

/* Loading Animation for Submit */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.formControls button[type="submit"].loading::after,
.formControls input[type="submit"].loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes checkboxPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes backgroundMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

/* Floating particles animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Add floating elements decoration */
.formContainer::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(32, 33, 79, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .formContainer {
        padding: 25px;
        margin: 20px;
    }
    
    .formControlLabel {
        margin-bottom: 12px;
    }
    
    .col-sm-3,
    .col-sm-9 {
        width: 100%;
        padding: 0;
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    .formControls button[type="submit"],
    .formControls input[type="submit"] {
        width: 100%;
        padding: 14px;
    }
}

/* Success State Animation */
@keyframes successPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
}

.form-success {
    animation: successPulse 2s ease-in-out;
}

/* Tooltip Styling */
[data-toggle="tooltip"] {
    position: relative;
    cursor: help;
}

/* Progress bar for form completion (optional) */
.form-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

/* Focus visible for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Print styles */
@media print {
    .formContainer {
        box-shadow: none;
        animation: none;
    }
    
    .formControls button[type="submit"],
    .formControls input[type="submit"] {
        display: none;
    }
}

.ft__container a {
    color: white !important;
}

p.ft__tagline {
    color: white;
}

/* Hide raw acym module */
.sp-module.newslatter_form {
    display: none !important;
}