/* Flutter App Development Page - Premium styling */

/* ---- Header / Navigation ---- */
.pricing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(20, 18, 35, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
}

.pricing-header .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.pricing-header-brand {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
}

.pricing-header-brand:hover {
  color: #e9d5ff;
}

.pricing-header-phone {
  color: #25D366;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pricing-header-phone:hover {
  color: #2ee66d;
}

.pricing-header-whatsapp {
  color: #25D366;
  font-size: 1.3rem;
  text-decoration: none;
}

.pricing-header-whatsapp:hover {
  color: #2ee66d;
}

.pricing-header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.pricing-header-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
}

.pricing-header-nav a:hover {
  color: #fff;
}

.page-flutter .pricing-header-nav a[href*="flutter"] {
  color: #54c5f8;
  font-weight: 700;
}

@media (max-width: 768px) {
  .pricing-header-nav {
    display: none;
  }
  .pricing-header-phone {
    font-size: 1rem;
  }
}

/* ---- Hero ---- */
.page-flutter .hero {
  background: linear-gradient(135deg, #02569b 0%, #54c5f8 50%, #013a6b 100%);
  position: relative;
  min-height: 70vh;
  padding-top: 88px;
}

.page-flutter .hero::before {
  background: 
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.2) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,0.15) 0%, transparent 45%),
    url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="fdots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23fdots)"/></svg>');
  opacity: 1;
}

.page-flutter .hero h1 {
  font-size: 3.4rem;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.page-flutter .hero .subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  opacity: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-flutter .hero-badges {
  gap: 16px;
  margin-top: 36px;
}

.page-flutter .badge {
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(12px);
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.page-flutter .badge:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.35);
}

.page-flutter .badge i {
  margin-left: 8px;
  opacity: 0.95;
}

.page-flutter .hero-cta {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

.page-flutter .hero-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-flutter .hero-cta .btn-call {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.page-flutter .hero-cta .btn-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.page-flutter .hero-cta .btn-whatsapp {
  background: #fff;
  color: #02569b;
  border: 2px solid #fff;
}

.page-flutter .hero-cta .btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* ---- Main content ---- */
.page-flutter .main-content {
  background: linear-gradient(180deg, #fafbff 0%, #f0f7ff 50%, #fff 100%);
  padding: 70px 0 48px;
}

.page-flutter .content-section {
  margin-bottom: 72px;
}

.page-flutter .content-section:last-of-type {
  margin-bottom: 0;
}

.page-flutter .content-section > h2 {
  font-size: 2.4rem;
  color: #1a1a2e;
  margin-bottom: 28px;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.page-flutter .content-section > h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #02569b, #54c5f8);
  border-radius: 2px;
}

.page-flutter .content-section > p {
  font-size: 1.12rem;
  color: #444;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

/* ---- Benefits / list ---- */
.page-flutter .benefits-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.page-flutter .benefits-list li {
  padding: 18px 24px 18px 0;
  position: relative;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  padding-right: 52px;
}

.page-flutter .benefits-list li::before {
  content: '✓';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #02569b, #54c5f8);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Process steps ---- */
.page-flutter .process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.page-flutter .process-step {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(2, 86, 155, 0.1);
  border: 2px solid rgba(2, 86, 155, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-flutter .process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(2, 86, 155, 0.18);
}

.page-flutter .process-step .step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #02569b, #54c5f8);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.page-flutter .process-step h4 {
  color: #1a1a2e;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.page-flutter .process-step p {
  color: #555;
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.6;
}

/* ---- Tech/features cards ---- */
.page-flutter .tech-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.page-flutter .feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  margin: 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
  border-right: 4px solid #02569b;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  text-align: right;
}

.page-flutter .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(2, 86, 155, 0.15);
}

.page-flutter .feature-card .feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(2, 86, 155, 0.15), rgba(84, 197, 248, 0.2));
  color: #02569b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.page-flutter .feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  color: #1a1a2e;
}

.page-flutter .feature-card p {
  margin: 0;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

/* ---- Projects strip ---- */
.page-flutter .projects-strip {
  background: linear-gradient(135deg, rgba(2, 86, 155, 0.08) 0%, rgba(84, 197, 248, 0.08) 100%);
  border-radius: 24px;
  padding: 40px 44px;
  border: 1px solid rgba(2, 86, 155, 0.15);
}

.page-flutter .projects-strip p {
  margin: 0 0 20px;
  font-size: 1.1rem;
  color: #444;
}

.page-flutter .projects-strip .project-names {
  font-weight: 700;
  color: #02569b;
  font-size: 1.15rem;
}

.page-flutter .projects-strip a {
  color: #02569b;
  font-weight: 600;
  text-decoration: none;
}

.page-flutter .projects-strip a:hover {
  text-decoration: underline;
}

/* ---- Contact section ---- */
.page-flutter .contact-section {
  background: linear-gradient(135deg, #02569b 0%, #54c5f8 50%, #013a6b 100%);
  margin-top: 0;
  padding: 56px 20px 72px;
  position: relative;
  overflow: hidden;
}

.page-flutter .contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.page-flutter .contact-section h2 {
  font-size: 2.4rem;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
}

.page-flutter .contact-section p {
  font-size: 1.2rem;
  opacity: 0.98;
  position: relative;
}

.page-flutter .contact-info {
  gap: 32px;
  margin: 36px 0 44px;
  position: relative;
}

.page-flutter .contact-item {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 18px 28px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.35);
  transition: transform 0.25s ease, background 0.25s ease;
}

.page-flutter .contact-item:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.3);
}

.page-flutter .contact-item a,
.page-flutter .contact-item span {
  color: #fff !important;
  font-weight: 600;
}

.page-flutter .contact-item i {
  font-size: 1.4rem;
  margin-left: 10px;
  opacity: 0.95;
}

.page-flutter .contact-buttons {
  gap: 20px;
  margin-top: 36px;
  position: relative;
}

.page-flutter .contact-btn {
  padding: 18px 36px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 32px rgba(0,0,0,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-flutter .contact-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.page-flutter .whatsapp-btn {
  background: #25D366;
  color: #fff;
}

.page-flutter .whatsapp-btn:hover {
  background: #20bd5c;
  color: #fff;
}

/* ---- Footer ---- */
.page-flutter footer {
  background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);
  padding: 48px 20px 28px;
}

.page-flutter footer a {
  color: #a78bfa;
  transition: color 0.2s ease;
}

.page-flutter footer a:hover {
  color: #54c5f8;
}

.page-flutter footer h3 {
  color: #e2e8f0;
  font-size: 1.15rem;
  font-weight: 700;
}

.page-flutter footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-bottom: 36px;
}

.page-flutter footer .footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-flutter footer .footer-grid li {
  margin-bottom: 12px;
}

.page-flutter footer .footer-bottom {
  border-top: 1px solid #2d2d44;
  padding-top: 24px;
  color: #888;
  font-size: 0.9rem;
  text-align: center;
}

/* ---- LTR (English) overrides ---- */
.page-flutter.en-flutter {
  direction: ltr;
}

.page-flutter.en-flutter .content-section,
.page-flutter.en-flutter .content-section > p,
.page-flutter.en-flutter .projects-strip {
  text-align: left;
}

.page-flutter.en-flutter .content-section > h2::after {
  right: auto;
  left: 0;
}

.page-flutter.en-flutter .benefits-list li {
  padding-right: 0;
  padding-left: 52px;
}

.page-flutter.en-flutter .benefits-list li::before {
  right: auto;
  left: 0;
}

.page-flutter.en-flutter .feature-card {
  border-right: none;
  border-left: 4px solid #02569b;
  text-align: left;
}

.page-flutter.en-flutter .process-step h4,
.page-flutter.en-flutter .process-step p {
  text-align: center;
}

@media (max-width: 768px) {
  .page-flutter .hero h1 {
    font-size: 2.4rem;
  }
  .page-flutter .hero .subtitle {
    font-size: 1.2rem;
  }
  .page-flutter .hero-badges {
    flex-direction: column;
    align-items: center;
  }
  .page-flutter .content-section > h2 {
    font-size: 1.9rem;
  }
  .page-flutter .contact-section h2 {
    font-size: 1.9rem;
  }
}
