.whatsapp-btn {
  bottom: 30px;
  left: 20px;
  background: #25d366;
}

.phone-btn {
  bottom: 100px;
  left: 20px;
  background: #0d6efd;
}

.floating-btn {
  position: fixed;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-copyright {
  color: #b0c4de;
  font-size: 0.95rem;
}

.footer-copyright .sep {
  color: #1a73e8;
  margin: 0 8px;
}

.footer-copyright .heart-beat {
  color: #ff4d4d;
  animation: heartbeat 1.5s ease-in-out infinite;
}

.footer-copyright .footer-link {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.footer-copyright .footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.3);
  }

  35% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.2);
  }

  55% {
    transform: scale(1);
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 60px 0;
    background: #dceaff;
    overflow: hidden;
    text-align: center;
}

/* Overlay (optional light effect) */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: #dceaff;
    z-index: 1;
}

/* Small Tag */
.cta-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.10);
    color: #0a165e;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid #0a165e;
    margin-bottom: 18px;
    animation: fadeInDown 0.8s ease;
}

.cta-tag i {
    color: #1a73e8;
    margin-right: 6px;
}

/* Heading */
.cta-heading {
    font-family: "Rajdhani", sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #0a165e;
    line-height: 1.2;
    margin-bottom: 14px;
    animation: fadeInUp 0.8s ease;
}

.cta-heading .highlight {
    color: #1a73e8;
    position: relative;
}

/* Underline effect */
.cta-heading .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 4px;
    background: #1a73e8;
    border-radius: 4px;
    opacity: 0.4;
}

/* Sub Text */
.cta-subtext {
    font-size: 1.15rem;
    color: #585b6f;
    font-family: "Inter", sans-serif;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
    animation: fadeInUp 0.9s ease;
}

/* ===== Buttons ===== */
.cta-btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    animation: fadeInUp 1s ease;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Primary Button — Gold */
.cta-btn-primary {
    background: #1a73e8;
    color: #0b1a2e;
    border-color: #1a73e8;
    box-shadow: 0 8px 25px rgba(245, 179, 66, 0.3);
}

.cta-btn-primary:hover {
    background: transparent;
    color: #1a73e8;
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(245, 179, 66, 0.15);
}

/* Outline Button — White Border */
.cta-btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.30);
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #1a73e8;
    color: #1a73e8;
    transform: translateY(-4px);
}

/* ===== USP Points ===== */
.cta-usp {
    max-width: 750px;
    margin: 0 auto;
}

.cta-usp-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #585b6f;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #585b6f;
    transition: all 0.3s ease;
}

.cta-usp-item i {
    color: #1a73e8;
    font-size: 1.2rem;
}

.cta-usp-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 179, 66, 0.2);
    transform: translateY(-2px);
}

/* ===== Animations ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .cta-subtext {
        font-size: 1rem;
        padding: 0 10px;
    }

    .cta-btn-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .cta-usp-item {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .cta-heading {
        font-size: 1.6rem;
    }

    .cta-tag {
        font-size: 0.65rem;
        padding: 4px 14px;
    }

    .cta-btn {
        font-size: 0.9rem;
        padding: 12px 24px;
    }

    .cta-usp-item {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

@media (max-width: 767px) {
    .logo-black,
    .logo-white {
        max-width: 140px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .logo-black,
    .logo-white {
        max-width: 160px;
    }
}
@media (min-width: 992px) {
    .logo-black,
    .logo-white {
        max-width: 180px;
    }
}
