

      .footer-section {
        background: #0066ff;
        padding: 60px 0 40px;
        position: relative;
        overflow: hidden;
      }

      /* CTA CARD */
      .cta-card {
        background: #f1f1f1;
        border-radius: 24px;
        padding: 70px 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .cta-card h2 {
        font-size: 3rem;
        font-weight: 700;
        color: #111827;
      }

      .cta-card p {
        max-width: 850px;
        margin: 25px auto;
        color: #444;
        font-size: 1.25rem;
        line-height: 1.8;
      }

      .contact-btn {
        background: #0066ff;
        color: #fff;
        border: none;
        padding: 16px 55px;
        border-radius: 50px;
        font-size: 1.1rem;
        transition: 0.3s;
      }

      .contact-btn:hover {
        background: #0066ff;
      }

      .wave-pattern {
        position: absolute;
        right: -30px;
        bottom: -5px;
        font-size: 280px;
        color: #0066ff;
        line-height: 1;
      }

      /* FOOTER */

      .footer-content {
        margin-top: 80px;
      }

      .footer-logo {
        max-width: 120px;
        margin-bottom: 20px;
      }

      .footer-text {
        color: #fff;
        opacity: 0.95;
        line-height: 1.8;
      }

      .footer-title {
        color: #fff;
        font-size: 1.75rem;
        margin-bottom: 20px;
      }

      .footer-links {
        list-style: none;
        padding: 0;
      }

      .footer-links li {
        margin-bottom: 12px;
      }

      .footer-links a {
        color: #fff;
        text-decoration: none;
        font-size: 1.15rem;
      }

      .footer-links a:hover {
        opacity: 0.8;
      }

      .subscribe-text {
        color: #fff;
        margin-bottom: 20px;
      }

      .newsletter {
        background: #fff;
        border-radius: 50px;
        overflow: hidden;
        display: flex;
        align-items: center;
        padding: 6px;
      }

      .newsletter input {
        border: none;
        outline: none;
        flex: 1;
        padding: 12px 18px;
      }

      .send-btn {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: none;
        background: #0066ff;
        color: #fff;
      }

      .footer-divider {
        margin: 50px 0 25px;
        border-color: rgba(255, 255, 255, 0.25);
      }

      .bottom-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
      }

      .copyright {
        color: #fff;
      }

      .social-icons {
        display: flex;
        gap: 15px;
      }

      .social-icons a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #fff;
        color: #0066ff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 20px;
        transition: 0.3s;
      }

      .social-icons a:hover {
        transform: translateY(-3px);
      }

      .watermark {
        position: absolute;
        bottom: -100px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 8rem;
        font-weight: 800;
        color: rgba(0, 0, 0, 0.08);
        white-space: nowrap;
        pointer-events: none;
      }

      @media (max-width: 991px) {
        .cta-card h2 {
          font-size: 2.2rem;
        }

        .footer-content .col-lg-3,
        .footer-content .col-lg-2 {
          margin-bottom: 40px;
        }

        .bottom-footer {
          flex-direction: column;
          text-align: center;
        }

        .watermark {
          font-size: 2rem;
        }
      }