/* Pixar Magic Transformations - Custom Styles */

:root {
  --pixar-blue: #4a90e2;
  --pixar-green: #7ed321;
  --pixar-orange: #f5a623;
  --pixar-purple: #9013fe;
  --pixar-pink: #ff6b9d;
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-magic: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --shadow-magic: 0 20px 40px rgba(74, 144, 226, 0.3);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Header Enhancements */
.site-header {
  background: linear-gradient(135deg, rgba(15,17,21,0.95), rgba(15,17,21,0.85));
  border-bottom: 1px solid rgba(74, 144, 226, 0.2);
}

.header-content {
  text-align: center;
  padding: 40px 20px;
}

.header-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-magic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  text-shadow: 0 0 30px rgba(74, 144, 226, 0.5);
}

.header-content .subtitle {
  font-size: 1.25rem;
  color: #e8eef9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.header-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-button.primary {
  background: var(--gradient-magic);
  color: white;
  box-shadow: var(--shadow-magic);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px rgba(74, 144, 226, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: var(--pixar-blue);
  border-color: var(--pixar-blue);
}

.cta-button.secondary:hover {
  background: var(--pixar-blue);
  color: white;
  transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0f1420 0%, #1a2330 100%);
  border-radius: 20px;
  padding: 60px 40px;
  margin: 40px 0;
  text-align: center;
  border: 1px solid rgba(74, 144, 226, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(74,144,226,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e8eef9;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  color: #a0acc0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--pixar-blue);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: #a0acc0;
  font-weight: 500;
}

/* Section Enhancements */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  background: var(--gradient-magic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: #a0acc0;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* Transformation Gallery */
.transformation-gallery {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}

.transformation-card {
  background: linear-gradient(135deg, #0f1420 0%, #1a2330 100%);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(74, 144, 226, 0.2);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.transformation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--pixar-blue);
}

.comparison-container {
  margin-bottom: 24px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  background: #0b0f15;
  display: flex;
  align-items: center;
  justify-content: center;
}

.before-image, .after-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 400px;
  display: block;
  transition: transform 0.3s ease;
}

.image-container:hover .before-image,
.image-container:hover .after-image {
  transform: scale(1.05);
}

.image-label {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
}

.before-label {
  background: rgba(0, 0, 0, 0.7);
}

.after-label {
  background: var(--gradient-magic);
}

.arrow {
  font-size: 2rem;
  color: var(--pixar-blue);
  font-weight: bold;
  animation: pulse 2s infinite;
}

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

.transformation-details h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e8eef9;
  margin-bottom: 12px;
}

.transformation-details p {
  color: #a0acc0;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: linear-gradient(135deg, #0f1420 0%, #1a2330 100%);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(74, 144, 226, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--pixar-blue);
  box-shadow: var(--shadow-magic);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #e8eef9;
  margin-bottom: 16px;
}

.feature-card p {
  color: #a0acc0;
  line-height: 1.6;
}

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

.pricing-card {
  background: linear-gradient(135deg, #0f1420 0%, #1a2330 100%);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(74, 144, 226, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: var(--pixar-blue);
  box-shadow: var(--shadow-magic);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--pixar-blue);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-magic);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e8eef9;
  margin-bottom: 16px;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--pixar-blue);
  margin-bottom: 8px;
}

.pricing-header p {
  color: #a0acc0;
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  color: #a0acc0;
  font-size: 1rem;
}

.pricing-cta {
  display: inline-block;
  padding: 16px 32px;
  background: var(--gradient-magic);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-magic);
}

.pricing-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px rgba(74, 144, 226, 0.4);
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.contact-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e8eef9;
  margin-bottom: 20px;
}

.contact-info p {
  color: #a0acc0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #a0acc0;
  font-size: 1rem;
}

.contact-icon {
  font-size: 1.2rem;
}

/* Contact Form */
.contact-form {
  background: linear-gradient(135deg, #0f1420 0%, #1a2330 100%);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(74, 144, 226, 0.2);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #e8eef9;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #242b38;
  background: #0b0f15;
  color: #e8eef9;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pixar-blue);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--gradient-magic);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-magic);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(74, 144, 226, 0.4);
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid rgba(74, 144, 226, 0.2);
  margin-top: 60px;
}

.site-footer p {
  margin: 8px 0;
  color: #a0acc0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .before-after {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .arrow {
    transform: rotate(90deg);
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .before-image, .after-image {
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: 20px 15px;
  }
  
  .hero-section {
    padding: 40px 20px;
  }
  
  .transformation-card {
    padding: 20px;
  }
  
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
} 