/* ==========================================================================
   INFINITIX INFOTECH - ANDROID APP DEVELOPMENT SERVICE PAGE STYLESHEET
   File: asset/css/android-development.css
   Theme: Deep Obsidian (#050811), Material 3 Neon Accents, Android Green (#3ddc84), Electric Blue (#3b82f6)
   ========================================================================== */

/* Page Background Canvas */
.android-dev-page-body {
  background-color: #050811 !important;
  color: #94a3b8;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 15%, rgba(61, 220, 132, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 40%, rgba(59, 130, 246, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(0, 230, 118, 0.12) 0%, transparent 40%),
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 30px 30px;
}

/* Headings & Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Poppins', sans-serif;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.text-gradient-android {
  background: linear-gradient(135deg, #ffffff 0%, #3ddc84 50%, #00e676 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Android Badge */
.android-dev-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.2rem;
  background: rgba(61, 220, 132, 0.12);
  border: 1px solid rgba(61, 220, 132, 0.35);
  border-radius: 50px;
  color: #3ddc84;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(12px);
}

/* HERO SECTION */
.android-dev-hero {
  padding: 140px 0 90px;
  position: relative;
}

.hero-heading {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-android-quote {
  background: linear-gradient(135deg, #3ddc84 0%, #2563eb 100%);
  color: #050811 !important;
  padding: 0.9rem 2rem;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 30px rgba(61, 220, 132, 0.4);
  transition: all 0.3s ease;
}

.btn-android-quote:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(61, 220, 132, 0.6);
  color: #050811;
}

.btn-android-wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff !important;
  padding: 0.9rem 1.8rem;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.btn-android-wa:hover {
  transform: translateY(-3px);
  color: #ffffff;
}

.btn-android-portfolio {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  padding: 0.9rem 1.8rem;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-android-portfolio:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

/* 3 FLOATING PHONES HERO STACK */
.hero-phones-stack {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup-frame {
  width: 220px;
  height: 440px;
  border-radius: 36px;
  background: #000000;
  border: 4px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(61, 220, 132, 0.25);
  overflow: hidden;
  position: absolute;
  transition: all 0.5s ease;
}

.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Phone Positions */
.phone-left {
  left: 0;
  top: 40px;
  transform: rotate(-10deg) scale(0.88);
  z-index: 2;
  animation: floatLeft 5s ease-in-out infinite alternate;
}

.phone-center {
  z-index: 4;
  transform: scale(1.05);
  animation: floatCenter 4s ease-in-out infinite alternate;
  border-color: #3ddc84;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(61, 220, 132, 0.5);
}

.phone-right {
  right: 0;
  top: 40px;
  transform: rotate(10deg) scale(0.88);
  z-index: 2;
  animation: floatRight 5s ease-in-out infinite alternate 1s;
}

@keyframes floatLeft {
  0% { transform: rotate(-10deg) scale(0.88) translateY(0); }
  100% { transform: rotate(-10deg) scale(0.88) translateY(-18px); }
}

@keyframes floatCenter {
  0% { transform: scale(1.05) translateY(0); }
  100% { transform: scale(1.05) translateY(-14px); }
}

@keyframes floatRight {
  0% { transform: rotate(10deg) scale(0.88) translateY(0); }
  100% { transform: rotate(10deg) scale(0.88) translateY(-18px); }
}

/* SECTION: WHY ANDROID INFOGRAPHIC CIRCULAR CARDS */
.why-android-circle-card {
  background: rgba(13, 19, 36, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 2.2rem;
  text-align: center;
  transition: all 0.35s ease;
  height: 100%;
}

.why-android-circle-card:hover {
  transform: translateY(-8px);
  border-color: #3ddc84;
  box-shadow: 0 20px 40px rgba(61, 220, 132, 0.2);
}

.icon-circle-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(61, 220, 132, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
  border: 2px solid rgba(61, 220, 132, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3ddc84;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
}

/* SECTION: LARGE HORIZONTAL SOLUTION CARDS */
.android-solution-horizontal-card {
  background: rgba(13, 19, 36, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.2rem;
  transition: all 0.35s ease;
  height: 100%;
}

.android-solution-horizontal-card:hover {
  border-color: #3ddc84;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(-5px);
}

.solution-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(61, 220, 132, 0.25), rgba(37, 99, 235, 0.25));
  border: 1px solid #3ddc84;
  color: #3ddc84;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* SECTION: APP FEATURES ANIMATED GRID */
.app-feature-grid-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: all 0.3s ease;
}

.app-feature-grid-card:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: #3ddc84;
  transform: translateY(-5px);
}

/* SECTION: ROADMAP TIMELINE */
.roadmap-step-card {
  background: rgba(13, 19, 36, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.roadmap-step-card:hover {
  border-color: #3ddc84;
  transform: scale(1.02);
}

.roadmap-num-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: linear-gradient(135deg, #3ddc84, #2563eb);
  color: #050811;
  font-weight: 800;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

/* SECTION: TECH STACK CIRCLES */
.tech-circle-card {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(13, 19, 36, 0.8);
  border: 2px solid rgba(61, 220, 132, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.tech-circle-card:hover {
  border-color: #3ddc84;
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(61, 220, 132, 0.4);
}

.tech-circle-icon {
  font-size: 2.2rem;
  margin-bottom: 0.2rem;
}

/* SECTION: PORTFOLIO PHONE CARDS */
.android-portfolio-card {
  background: rgba(13, 19, 36, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.android-portfolio-card:hover {
  transform: translateY(-8px);
  border-color: #3ddc84;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.portfolio-phone-mock {
  width: 100%;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.portfolio-phone-mock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.android-portfolio-card:hover .portfolio-phone-mock img {
  transform: scale(1.08);
}

/* SECTION: PLAY STORE PUBLISHING BOX */
.play-store-deepdive-card {
  background: linear-gradient(135deg, rgba(61, 220, 132, 0.15) 0%, rgba(59, 130, 246, 0.12) 100%), rgba(13, 19, 36, 0.9);
  border: 1px solid rgba(61, 220, 132, 0.35);
  border-radius: 24px;
  padding: 2.2rem;
  height: 100%;
}

/* SECTION: SUCCESS METRICS COUNTERS */
.metric-counter-card {
  background: rgba(13, 19, 36, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 2.2rem 1.5rem;
  text-align: center;
}

.metric-counter-val {
  font-size: 3.2rem;
  font-weight: 800;
  color: #3ddc84;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 0.5rem;
}

/* SECTION: GOOGLE PLAY STYLE REVIEWS */
.play-review-card {
  background: rgba(13, 19, 36, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.8rem;
  height: 100%;
}

.play-user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #3ddc84;
}

/* SECTION: FAQS ACCORDION */
.android-faq-item {
  background: rgba(13, 19, 36, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.android-faq-button {
  background: transparent !important;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.25rem 1.5rem;
  box-shadow: none !important;
}

.android-faq-button:not(.collapsed) {
  color: #3ddc84 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.android-faq-body {
  padding: 1.25rem 1.5rem;
  color: #94a3b8;
  line-height: 1.7;
}

/* SECTION: FINAL CTA BANNER */
.android-cta-banner {
  background: linear-gradient(135deg, rgba(61, 220, 132, 0.3) 0%, rgba(37, 99, 235, 0.25) 100%), rgba(10, 15, 28, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(61, 220, 132, 0.45);
  border-radius: 28px;
  padding: 4rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
  .android-dev-hero { padding: 110px 0 60px; }
  .hero-phones-stack { height: 420px; }
  .phone-mockup-frame { width: 180px; height: 360px; }
}
