/* Business Pages Styles - UdisApp */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Heebo', 'Alef', Arial, sans-serif;
  direction: rtl;
  background: #0a0e27;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section - Different gradients for each page */
.hero {
  color: white;
  padding: 120px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 1;
  animation: backgroundShift 20s ease infinite;
}

@keyframes backgroundShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 25px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 40px rgba(255,255,255,0.2);
  animation: fadeInUp 0.8s ease;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.hero .subtitle {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 30px;
  opacity: 0.95;
  animation: fadeInUp 1s ease;
  text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px 0;
  animation: fadeInUp 1.2s ease;
}

.badge {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 12px 25px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  background: rgba(255,255,255,0.25);
}

/* Page-specific hero gradients */
.page-app-dev .hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.page-web-dev .hero {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.page-spec .hero {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.page-pricing .hero {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.page-portfolio .hero {
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.page-consulting .hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  position: relative;
  overflow: hidden;
}

.page-consulting .hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.15) 0%, transparent 50%);
  animation: float 15s ease-in-out infinite;
}

.page-consulting .hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  animation: gridMove 20s linear infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 100px); }
}

.page-startup .hero {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
  position: relative;
  overflow: hidden;
}

.page-startup .hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.25) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.2) 0%, transparent 40%);
  animation: pulse 8s ease-in-out infinite;
}

.page-startup .hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
  animation: shine 10s linear infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.page-mobile-vs-web .hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 60%, #4facfe 100%);
  position: relative;
  overflow: hidden;
}

.page-mobile-vs-web .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.2) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
  animation: multiFloat 20s ease-in-out infinite;
}

.page-mobile-vs-web .hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    conic-gradient(from 0deg, transparent 0deg, rgba(255,255,255,0.1) 90deg, transparent 180deg, rgba(255,255,255,0.1) 270deg, transparent 360deg);
  animation: rotate 25s linear infinite;
}

@keyframes multiFloat {
  0%, 100% { 
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  25% { 
    transform: translate(20px, -20px) scale(1.05);
    opacity: 0.9;
  }
  50% { 
    transform: translate(-15px, 15px) scale(0.95);
    opacity: 0.8;
  }
  75% { 
    transform: translate(10px, 10px) scale(1.02);
    opacity: 0.95;
  }
}

/* Main Content */
.main-content {
  background: #ffffff;
  padding: 80px 0;
  min-height: 60vh;
}

.content-section {
  margin-bottom: 60px;
}

.content-section h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.content-section h3 {
  font-size: 1.8rem;
  color: #333;
  margin: 40px 0 20px;
  font-weight: 600;
}

.content-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.content-section ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.content-section ul li {
  padding: 15px 30px 15px 0;
  position: relative;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

.content-section ul li::before {
  content: '•';
  position: absolute;
  right: 0;
  color: #667eea;
  font-size: 1.5rem;
  line-height: 1.8;
  top: 15px;
  font-weight: bold;
}

/* Cards */
.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  margin: 30px 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.feature-card h3 {
  color: #667eea;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.feature-card .icon {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 20px;
}

/* Project Showcase */
.project-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.project-item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.project-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-item-content {
  padding: 25px;
}

.project-item h4 {
  color: #1a1a1a;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.project-item p {
  color: #666;
  font-size: 1rem;
  margin: 0;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border-color: #667eea;
}

.pricing-card.featured {
  border-color: #667eea;
  transform: scale(1.05);
}

.pricing-card h3 {
  color: #1a1a1a;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 900;
  color: #667eea;
  margin: 20px 0;
}

.pricing-card .price-unit {
  font-size: 1.2rem;
  color: #999;
}

.pricing-card ul {
  text-align: right;
  margin: 30px 0;
  list-style: none;
  padding: 0;
}

.pricing-card ul li {
  padding: 10px 25px 10px 0;
  color: #555;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
}

.pricing-card ul li::before {
  content: '•';
  position: absolute;
  right: 0;
  color: #667eea;
  font-size: 1.2rem;
  line-height: 1.6;
  top: 10px;
  font-weight: bold;
  margin-right: 0;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.contact-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
}

.contact-item i {
  font-size: 1.5rem;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  background: white;
  color: #667eea;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  background: #f8f8f8;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
}

.whatsapp-btn:hover {
  background: #20ba5a;
  color: white;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 40px 20px 20px;
  text-align: center;
  margin-top: 50px;
}

footer .container {
  max-width: 1200px;
}

footer h3 {
  color: #fff;
  margin-bottom: 20px;
}

footer a {
  color: #667eea;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #764ba2;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.3rem;
  }
  
  .content-section h2 {
    font-size: 2rem;
  }
  
  .pricing-grid,
  .project-showcase {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 20px;
  }
}

