/* 🔥 DrDA PREMIUM MOBILE UI */

@media (max-width: 768px) {

  :root{
    --primary:#1e3a8a;
    --primary-2:#3b82f6;
    --accent:#16a34a;
    --bg:#f8fafc;
    --text:#0f172a;
  }

  body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    -webkit-font-smoothing:antialiased;
  }

  /* ===== HEADER IMAGE ===== */
  .desktop_header{ display:none; }
  .mobile_header{
    display:block;
    width:100%;
    height:auto;
  }

  /* ===== STICKY NAVBAR (GLASS) ===== */
  .navbar{
    position:sticky !important;
    top:0;
    z-index:9999;
    backdrop-filter: blur(10px);
    background: rgba(30,58,138,0.9) !important;
    border-bottom:1px solid rgba(255,255,255,0.1);
  }

  .navbar-brand img{
    width:44px;
    height:44px;
    object-fit:contain;
  }

  .navbar-toggler{
    border:none;
    background:rgba(255,255,255,0.15);
    padding:8px 10px;
    border-radius:8px;
  }

  .navbar-collapse{
    background:linear-gradient(135deg,var(--primary),var(--primary-2));
    border-radius:0 0 12px 12px;
    padding:10px 0;
  }

  .navbar-nav .nav-link{
    padding:14px 20px;
    font-weight:600;
    color:#fff !important;
  }

  /* ===== HERO / SLIDER (NO OVERLAP) ===== */
  .hero-section,
  .carousel,
  #heroCarousel{
    margin-top:0 !important;
  }

  .carousel-item img{
    width:100%;
    height:auto;
    object-fit:cover;
    border-radius:0;
  }

  /* ===== CTA BUTTONS (APP + TELEGRAM) ===== */
  .cta-bar{
    display:flex;
    gap:10px;
    padding:10px;
  }

  .cta-btn{
    flex:1;
    text-align:center;
    padding:12px;
    border-radius:10px;
    font-weight:700;
    text-decoration:none;
    color:#fff;
    box-shadow:0 6px 15px rgba(0,0,0,0.15);
  }

  .btn-app{ background:#16a34a; }
  .btn-telegram{ background:#2563eb; }

  /* ===== CARD / SECTION ===== */
  .section{
    padding:20px 12px;
  }

  .card{
    border:none;
    border-radius:14px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    padding:16px;
  }

  /* ===== FLOATING CONTACT (PREMIUM) ===== */
  .mobile-contact-widget{
    position:fixed;
    right:10px;
    bottom:80px;
    z-index:9999;
    display:flex;
    flex-direction:column;
    gap:8px;
  }

  .mobile-contact-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:52px;
    height:52px;
    border-radius:50%;
    color:#fff;
    font-size:20px;
    box-shadow:0 6px 20px rgba(0,0,0,0.25);
  }

  .btn-call{ background:#22c55e; }
  .btn-whatsapp{ background:#25d366; }
  .btn-enquiry{ background:#2563eb; }

  /* ===== ANIMATION ===== */
  .fade-in{
    animation:fadeInUp 0.6s ease;
  }

  @keyframes fadeInUp{
    from{
      opacity:0;
      transform:translateY(20px);
    }
    to{
      opacity:1;
      transform:translateY(0);
    }
  }
}