/*
 Theme Name:   Twenty Twenty-Five Child
 Theme URI:    https://example.com/
 Description:  Child theme for Twenty Twenty-Five
 Author:       Your Name
 Author URI:   https://example.com/
 Template:     twentytwentyfive
 Version:      1.0.0
*/

/* Add your custom styles below */



/* Custom CSS Variables and Styles */
:root {
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --card: 0 0% 100%;
  --card-foreground: 222.2 84% 4.9%;
  --primary: 16 100% 66%;
  --primary-foreground: 0 0% 98%;
  --secondary: 20 14.3% 95.1%;
  --secondary-foreground: 222.2 84% 4.9%;
  --muted: 20 14.3% 95.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --accent: 25 95% 53%;
  --accent-foreground: 222.2 84% 4.9%;
  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --ring: 16 100% 66%;
  --radius: 0.5rem;
  
  /* Additional custom variables */
  --primary-hsl: 16 100% 66%;
  --primary-foreground-hsl: 0 0% 98%;
  --secondary-hsl: 20 14.3% 95.1%;
  --accent-hsl: 25 95% 53%;
  --muted-hsl: 20 14.3% 95.1%;
  --orange-500: #f97316;
}

/* Animation keyframes */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}

@keyframes bounce-in {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes slide-in-left {
  0% { transform: translateX(-50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes slide-in-right {
  0% { transform: translateX(50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes slide-in-up {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes scale-up {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Feature carousel styles */
.feature-card {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.feature-card.active {
    opacity: 1;
    visibility: visible;
}

.feature-indicator {
    transition: all 0.3s ease;
}

.feature-indicator.active {
    background-color: hsl(var(--primary)) !important;
    width: 2rem !important;
}

/* Animation classes */
.animate-float {
  animation: float 2s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 4s ease-in-out infinite;
}

.animate-bounce-in {
  animation: bounce-in 0.6s ease-out;
}

.animate-slide-in-left {
  animation: slide-in-left 0.8s ease-out;
}

.animate-slide-in-right {
  animation: slide-in-right 0.8s ease-out;
}

.animate-slide-in-up {
  animation: slide-in-up 0.6s ease-out;
}

.animate-fade-in {
  animation: fade-in 0.8s ease-out;
}

.animate-scale-up {
  animation: scale-up 0.5s ease-out;
}

/* Hover effects */
.hover-scale:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
  transition: box-shadow 0.3s ease;
}

/* Custom button styles */
.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: hsl(var(--primary) / 0.9);
  transform: scale(1.05);
}

.btn-secondary {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-ghost {
  background: transparent;
  color: hsl(var(--foreground));
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-ghost:hover {
  background: hsl(var(--muted));
}

/* Card styles */
.card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

/* Badge styles */
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}

.badge-primary {
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  border: 1px solid hsl(var(--primary) / 0.2);
}

/* Gradient backgrounds */
.bg-gradient-primary {
  background: linear-gradient(135deg, hsl(var(--primary) / 0.1) 0%, hsl(var(--primary) / 0.05) 100%);
}

.bg-gradient-orange {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
}

/* Service Cards Styles */
.service-card {
  position: relative;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-2px);
}

.service-details {
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-chevron {
  transition: transform 0.3s ease;
}

/* Consultation CTA Styles */
.consultation-feature:hover {
  transform: scale(1.05) translateY(-2px);
}

.consultation-btn {
  position: relative;
  overflow: hidden;
}

/* Benefits Section Styles */
.benefit-card {
  position: relative;
  overflow: hidden;
}

.benefit-overlay {
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-progress {
  width: 0;
  transition: width 1.5s ease-out;
}

.benefit-icon {
  transition: transform 0.3s ease;
}

/* Why Choose Section Styles */
.reason-item {
  transition: transform 0.2s ease;
}

.achievement-card {
  transition: all 0.3s ease;
}

.achievement-icon {
  transition: transform 2s ease;
}

.achievement-progress {
  width: 0;
  transition: width 1.5s ease-out;
}

/* Process Timeline Styles */
.process-step {
  transition: all 0.3s ease;
}

.process-dot {
  transition: all 0.3s ease;
  z-index: 10;
}

.process-details {
  opacity: 0;
  height: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.process-check {
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

/* Tab Styles */
.tab-btn {
  transition: all 0.3s ease;
}

.tab-content {
  transition: opacity 0.3s ease;
}

/* Floating Button Styles */
.floating-btn-container {
  transition: transform 0.1s ease-out;
}

#floating-btn {
  transform: scale(0);
  opacity: 0;
  transition: all 0.3s ease;
  animation: float 2s ease-in-out infinite;
}

/* Modal Styles */
.consultation-modal-content {
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.3s ease-out;
}

#consultation-modal.show .consultation-modal-content {
  transform: scale(1);
  opacity: 1;
}

/* Footer CTA Styles */
.footer-benefit {
  transition: transform 0.3s ease;
}

.footer-benefit:hover {
  transform: translateX(5px);
}

.footer-cta-btn {
  position: relative;
  overflow: hidden;
}

.floating-dot {
  transition: all 0.1s ease;
}

/* Background Animation Styles */
.consultation-bg-1,
.consultation-bg-2,
.benefits-bg-1,
.benefits-bg-2,
.why-choose-bg,
.footer-bg-1,
.footer-bg-2 {
  transition: all 0.1s ease;
}

/* Ripple Effect */
@keyframes ripple {
  to {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll[data-animation="fadeInLeft"] {
  transform: translateX(-50px);
}

.animate-on-scroll[data-animation="fadeInLeft"].in-view {
  transform: translateX(0);
}

.animate-on-scroll[data-animation="fadeInRight"] {
  transform: translateX(50px);
}

.animate-on-scroll[data-animation="fadeInRight"].in-view {
  transform: translateX(0);
}

.animate-on-scroll[data-animation="fadeIn"] {
  transform: none;
}

.animate-on-scroll[data-animation="fadeIn"].in-view {
  transform: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-card {
    margin-bottom: 1rem;
  }
  
  .consultation-feature {
    padding: 0.75rem;
  }
  
  .benefit-card {
    margin-bottom: 1.5rem;
  }
  
  .achievement-card {
    margin-bottom: 1rem;
  }
  
  .process-step {
    margin-bottom: 1.5rem;
  }
  
  .floating-btn-container {
    bottom: 1rem;
    right: 1rem;
  }
  
  .consultation-modal-content {
    margin: 1rem;
    max-width: calc(100vw - 2rem);
  }
}

@media (max-width: 640px) {
  .grid.md\\:grid-cols-2 {
    grid-template-columns: 1fr;
  }
  
  .grid.lg\\:grid-cols-3 {
    grid-template-columns: 1fr;
  }
  
  .grid.lg\\:grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .text-4xl {
    font-size: 2rem;
  }
  
  .text-5xl {
    font-size: 2.5rem;
  }
}

/* Enhanced hover effects */
.service-card:hover .service-chevron {
  color: hsl(var(--primary));
}

.benefit-card:hover .benefit-icon {
  animation: bounce-in 0.5s ease;
}

.achievement-card:hover .achievement-icon {
  animation: float 1s ease infinite;
}

.reason-item:hover {
  transform: translateX(10px);
}

/* Form focus styles */
input:focus,
textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsla(var(--primary), 0.1);
}

/* Button press effects */
button:active {
  transform: scale(0.98);
}

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: hsl(var(--muted));
}

::-webkit-scrollbar-thumb {
  background: hsl(var(--primary));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--primary) / 0.8);
}
