/* Android & Mobile Specific Styles for Landing Pages */

/* Hide floating contact buttons on desktop by default */
.right-floating-contact {
  display: none !important;
}

@media (max-width: 991px) {
  /* Removals as requested in doc */
  body.android-landing-page .whatsapp-chat {
    display: none !important;
  }
  body.android-landing-page .grecaptcha-badge {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  body.android-landing-page #autoPopupModal {
    display: none !important;
  }

  /* Floating Action Buttons (Right Side) - ONLY FOR MOBILE / ANDROID */
  .right-floating-contact {
    position: fixed;
    right: 14px;
    bottom: 90px;
    z-index: 99999;
    display: flex !important;
    flex-direction: column;
    gap: 12px;
  }

  .right-float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    text-decoration: none !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    font-size: 24px;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .right-float-btn:hover,
  .right-float-btn:focus {
    transform: scale(1.1);
    color: #ffffff !important;
  }

  .right-float-btn.btn-call {
    background: linear-gradient(135deg, #00d2ff 0%, #00e676 100%);
    background-color: #00e676;
  }

  .right-float-btn.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    background-color: #25d366;
  }

  /* Mobile Hero Banner Container */
  .android-hero-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 25px 15px 35px 15px;
    color: #ffffff;
    font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
  }

  .android-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(11, 23, 39, 0.88) 0%, rgba(15, 23, 42, 0.96) 100%);
    z-index: 1;
  }

  .android-hero-banner .container {
    position: relative;
    z-index: 2;
  }

  /* Subtitle Tag */
  .android-hero-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #f59e0b;
    margin-bottom: 8px;
  }

  /* Main Headline */
  .android-hero-headline {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 10px;
  }

  .android-hero-headline span.highlight-yellow {
    color: #fbbf24;
  }

  .android-hero-headline span.highlight-green {
    color: #4ade80;
  }

  /* Subheadline */
  .android-hero-subheadline {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #cbd5e1;
    margin-bottom: 18px;
  }

  /* 4 USPs Badges (2x2 grid) */
  .android-usp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 22px;
  }

  .android-usp-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 8px 10px;
  }

  .android-usp-item i {
    font-size: 15px;
    color: #fbbf24;
    flex-shrink: 0;
  }

  .android-usp-item.theme-green i {
    color: #4ade80;
  }

  .android-usp-item span {
    font-size: 11px;
    font-weight: 600;
    color: #f8fafc;
    line-height: 1.2;
  }

  /* Embedded Form Card */
  .android-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 16px;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.3);
    color: #1e293b;
  }

  .android-form-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
    text-align: left;
  }

  .android-form-card p.form-subtitle {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 16px;
    text-align: left;
  }

  /* Input Group with Left Icon */
  .android-input-group {
    position: relative;
    margin-bottom: 12px;
  }

  .android-input-group i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 15px;
    pointer-events: none;
  }

  .android-input-group textarea + i {
    top: 18px;
    transform: none;
  }

  .android-input-group input,
  .android-input-group textarea {
    width: 100%;
    padding: 12px 14px 12px 42px;
    font-size: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background-color: #f8fafc;
    color: #1e293b;
    transition: all 0.2s ease;
  }

  .android-input-group input:focus,
  .android-input-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
  }

  .android-input-group textarea {
    resize: vertical;
    min-height: 70px;
  }

  /* Form Submit Button */
  .android-submit-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    background: #f59e0b;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
    transition: transform 0.2s ease, background-color 0.2s ease;
  }

  .android-submit-btn:active {
    transform: scale(0.98);
  }

  .android-submit-btn.theme-green {
    background: #22c55e;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
  }

  /* Privacy Note */
  .android-privacy-note {
    font-size: 11px;
    color: #64748b;
    text-align: center;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
}
