/* Modern Design System - Theralys Style with Animated Grid */

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

body {
  scroll-behavior: smooth;
  background-color: #1A1A1A;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Animated Grid Background - Subtle */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(245, 124, 31, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 124, 31, 0.01) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: 0 0, 0 0;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
}

@keyframes gridMove {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 50px 50px, 50px 50px;
  }
}

/* Ensure content is above grid */
header, section, footer, main {
  position: relative;
  z-index: 10;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
  background: #F57C1F;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #D96818;
}

/* Selection */
::selection {
  background-color: #F57C1F;
  color: white;
}

/* Smooth transitions for all elements */
* {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

/* Focus visible for accessibility */
*:focus-visible {
  outline: 2px solid #F57C1F;
  outline-offset: 2px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(245, 124, 31, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(245, 124, 31, 0.4);
  }
}

/* Gradient Overlays */
.gradient-overlay {
  position: relative;
  overflow: hidden;
}

.gradient-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(245, 124, 31, 0.05), transparent);
  pointer-events: none;
}

/* Card Hover Effects */
.card-hover {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(245, 124, 31, 0.15);
}

/* Button Animations */
button, a[class*="bg-accent"] {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

button::before, a[class*="bg-accent"]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

button:hover::before, a[class*="bg-accent"]:hover::before {
  width: 300px;
  height: 300px;
}

/* Backdrop Blur Support */
@supports (backdrop-filter: blur(10px)) {
  .backdrop-blur-xl {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }
  
  .backdrop-blur-sm {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  line-height: 1.7;
}

/* Hover Underline Effect */
.hover-underline {
  position: relative;
}

.hover-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #F57C1F;
  transition: width 0.3s ease;
}

.hover-underline:hover::after {
  width: 100%;
}

/* Glass Morphism */
.glass {
  background: rgba(37, 37, 37, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Pulse Animation for CTA */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(245, 124, 31, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(245, 124, 31, 0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #F57C1F 0%, #FF9D5C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Smooth Image Loading */
img {
  opacity: 0;
  animation: fadeIn 0.5s ease-in forwards;
}

/* Logo specific styles */
.logo-img {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(245, 124, 31, 0.3));
  transition: all 0.3s ease;
  /* Remove blend mode for new logo */
  border-radius: 0;
}

.logo-img:hover {
  filter: drop-shadow(0 0 20px rgba(245, 124, 31, 0.6));
  transform: scale(1.05);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  body::before {
    background-size: 30px 30px;
    animation: gridMove 15s linear infinite;
  }
  
  body {
    font-size: 16px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
}

/* Print Styles */
@media print {
  body::before {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  header, footer {
    display: none;
  }
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  body::before {
    animation: none !important;
  }
}

/* Iframe Booking Styles */
iframe[id*="1GjQxjD5uZhfb622Jqw0"] {
  border-radius: 12px;
  background: transparent;
}

/* Responsive iframe height */
@media (max-width: 768px) {
  iframe[id*="1GjQxjD5uZhfb622Jqw0"] {
    min-height: 480px !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  body {
    background: #000;
    color: #fff;
  }
  
  .border-white\/5 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
}

/* Typography Variations */
.text-elegant {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.text-elegant-bold {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Section Separators */
.section-separator {
  position: relative;
  margin: 4rem auto;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(245, 124, 31, 0.3) 20%, 
    rgba(245, 124, 31, 0.8) 50%, 
    rgba(245, 124, 31, 0.3) 80%, 
    transparent 100%
  );
}

.section-separator::before,
.section-separator::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F57C1F;
}

.section-separator::before {
  left: 0;
}

.section-separator::after {
  right: 0;
}

.section-separator-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin: 3rem auto;
}

.section-separator-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #F57C1F;
  opacity: 0.6;
}

.section-separator-dots span:nth-child(2) {
  width: 6px;
  height: 6px;
  opacity: 0.8;
}

.section-separator-dots span:nth-child(3) {
  width: 8px;
  height: 8px;
  opacity: 1;
}

.section-separator-dots span:nth-child(4) {
  width: 6px;
  height: 6px;
  opacity: 0.8;
}

.section-separator-dots span:nth-child(5) {
  width: 4px;
  height: 4px;
  opacity: 0.6;
}

/* ===================================
   MOBILE OPTIMIZATIONS
   =================================== */

@media (max-width: 768px) {
  /* Prevent horizontal overflow */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  /* Container padding */
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Hero Section Mobile */
  section.pt-32 {
    padding-top: 6rem !important;
  }
  
  /* Typography adjustments */
  h1, .text-4xl, .text-5xl {
    font-size: 1.875rem !important; /* 30px */
    line-height: 1.2 !important;
  }
  
  h2, .text-3xl {
    font-size: 1.5rem !important; /* 24px */
    line-height: 1.3 !important;
  }
  
  /* Process timeline cards */
  .grid.md\\:grid-cols-5 {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  /* Offer cards */
  .grid.md\\:grid-cols-2 {
    grid-template-columns: 1fr !important;
  }
  
  /* Footer */
  .grid.md\\:grid-cols-5 {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  /* Logo mobile */
  .logo-img {
    width: 3rem !important;
    height: 2.25rem !important;
  }
  
  /* Badge mobile */
  .bg-accent\\/10 {
    font-size: 0.625rem !important; /* 10px */
    padding: 0.25rem 0.5rem !important;
  }
  
  /* Buttons mobile */
  .bg-accent {
    font-size: 0.75rem !important; /* 12px */
    padding: 0.5rem 1rem !important;
  }
  
  /* Reduce section padding mobile */
  section {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Grid background mobile */
  body::before {
    background-size: 30px 30px !important;
  }
  
  @keyframes gridMove {
    0% {
      background-position: 0 0, 0 0;
    }
    100% {
      background-position: 30px 30px, 30px 30px;
    }
  }
  
  /* Testimonials mobile */
  .grid.md\\:grid-cols-3 {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  /* Comparison section */
  .grid.md\\:grid-cols-2 {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  /* Text size adjustments */
  .text-xs {
    font-size: 0.625rem !important; /* 10px */
  }
  
  .text-sm {
    font-size: 0.75rem !important; /* 12px */
  }
  
  .text-base {
    font-size: 0.875rem !important; /* 14px */
  }
  
  /* Iframe mobile optimization */
  iframe[id*="1GjQxjD5uZhfb622Jqw0"] {
    min-height: 550px !important;
  }
  
  /* Center all text content on mobile */
  p, li, span {
    text-align: left !important;
  }
  
  /* Card padding mobile */
  .p-6, .p-8 {
    padding: 1rem !important;
  }
  
  .p-10 {
    padding: 1.5rem !important;
  }
}

/* Small mobile (< 480px) */
@media (max-width: 480px) {
  h1, .text-4xl, .text-5xl {
    font-size: 1.5rem !important; /* 24px */
  }
  
  h2, .text-3xl {
    font-size: 1.25rem !important; /* 20px */
  }
  
  .text-2xl {
    font-size: 1.125rem !important; /* 18px */
  }
  
  .logo-img {
    width: 2.5rem !important;
    height: 1.875rem !important;
  }
}

/* ===================================
   CRUMPLED PAPER EFFECT
   =================================== */

.crumpled-paper {
  position: relative;
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  padding: 4rem 0;
  overflow: hidden;
}

.crumpled-paper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 124, 31, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  filter: url(#crumple);
  opacity: 0.8;
  pointer-events: none;
}

.crumpled-paper::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, #1A1A1A 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}


/* Decorative elements */
.decorative-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.1;
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: #F57C1F;
  top: 10%;
  left: -100px;
  animation-delay: 0s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: #F57C1F;
  bottom: 10%;
  right: -150px;
  animation-delay: 7s;
}

.blob-3 {
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.5);
  top: 50%;
  left: 50%;
  animation-delay: 14s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* Stats counter animation */
.stat-number {
  background: linear-gradient(135deg, #F57C1F 0%, #ff9d5c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  text-shadow: 0 0 30px rgba(245, 124, 31, 0.3);
}

/* Parallax effect on scroll */
.parallax-slow {
  transition: transform 0.3s ease-out;
}

/* Glitch effect for emphasis */
.glitch-text {
  position: relative;
  display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.glitch-text:hover::before {
  animation: glitch-1 0.3s ease-in-out;
  color: #F57C1F;
  z-index: -1;
}

.glitch-text:hover::after {
  animation: glitch-2 0.3s ease-in-out;
  color: rgba(245, 124, 31, 0.5);
  z-index: -2;
}

@keyframes glitch-1 {
  0%, 100% {
    transform: translate(0);
    opacity: 0;
  }
  20% {
    transform: translate(-2px, 2px);
    opacity: 0.7;
  }
  40% {
    transform: translate(-2px, -2px);
    opacity: 0.7;
  }
  60% {
    transform: translate(2px, 2px);
    opacity: 0.7;
  }
  80% {
    transform: translate(2px, -2px);
    opacity: 0.7;
  }
}

@keyframes glitch-2 {
  0%, 100% {
    transform: translate(0);
    opacity: 0;
  }
  20% {
    transform: translate(2px, -2px);
    opacity: 0.5;
  }
  40% {
    transform: translate(2px, 2px);
    opacity: 0.5;
  }
  60% {
    transform: translate(-2px, -2px);
    opacity: 0.5;
  }
  80% {
    transform: translate(-2px, 2px);
    opacity: 0.5;
  }
}

/* ===================================
   ULTRA-MODERN FAQ 2026
   =================================== */

/* Floating particles */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #F57C1F;
  border-radius: 50%;
  opacity: 0.3;
  animation: particleFloat 15s ease-in-out infinite;
}

.particle-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  top: 60%;
  right: 15%;
  animation-delay: 3s;
  width: 6px;
  height: 6px;
}

.particle-3 {
  bottom: 20%;
  left: 30%;
  animation-delay: 6s;
}

.particle-4 {
  top: 30%;
  right: 25%;
  animation-delay: 9s;
  width: 5px;
  height: 5px;
}

.particle-5 {
  bottom: 40%;
  right: 10%;
  animation-delay: 12s;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(50px, -80px) scale(1.3);
    opacity: 0.6;
  }
  50% {
    transform: translate(-30px, -150px) scale(0.8);
    opacity: 0.4;
  }
  75% {
    transform: translate(80px, -100px) scale(1.5);
    opacity: 0.7;
  }
}

/* Glow pulse effect */
.glow-pulse {
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(245, 124, 31, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(245, 124, 31, 0.6);
  }
}

/* Animated gradient text */
.text-gradient-animated {
  background: linear-gradient(90deg, #F57C1F, #ff9d5c, #F57C1F);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Modern FAQ Card */
.faq-card-modern {
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card-modern:hover {
  transform: translateY(-4px);
}

.faq-card-inner {
  position: relative;
  background: linear-gradient(135deg, rgba(37, 37, 37, 0.95) 0%, rgba(30, 30, 30, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.75rem;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
}

.faq-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #F57C1F, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.faq-card-modern:hover .faq-card-inner {
  border-color: rgba(245, 124, 31, 0.4);
  box-shadow: 0 20px 60px rgba(245, 124, 31, 0.15),
              0 0 0 1px rgba(245, 124, 31, 0.1) inset;
}

.faq-card-modern.active .faq-card-inner {
  background: linear-gradient(135deg, rgba(245, 124, 31, 0.08) 0%, rgba(37, 37, 37, 0.95) 100%);
  border-color: rgba(245, 124, 31, 0.5);
  box-shadow: 0 25px 70px rgba(245, 124, 31, 0.25),
              0 0 0 1px rgba(245, 124, 31, 0.3) inset;
}

.faq-card-modern.active .faq-card-inner::before {
  opacity: 1;
}

/* FAQ Number Badge */
.faq-number {
  position: absolute;
  top: -12px;
  left: 1.75rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #F57C1F 0%, #ff9d5c 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  color: white;
  box-shadow: 0 10px 30px rgba(245, 124, 31, 0.4);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.faq-card-modern:hover .faq-number {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(245, 124, 31, 0.6);
}

.faq-card-modern.active .faq-number {
  background: linear-gradient(135deg, #ff9d5c 0%, #F57C1F 100%);
  transform: scale(1.15) rotate(5deg);
}

/* FAQ Content */
.faq-content-modern {
  margin-top: 1.5rem;
}

.faq-header-modern {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.faq-title-modern {
  font-size: 1.125rem;
  font-weight: 700;
  color: #E8E8E8;
  line-height: 1.4;
  transition: color 0.3s ease;
  flex: 1;
}

.faq-card-modern:hover .faq-title-modern {
  color: #ffffff;
}

.faq-card-modern.active .faq-title-modern {
  color: #F57C1F;
}

/* FAQ Icon */
.faq-icon-modern {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(245, 124, 31, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon-modern i {
  font-size: 0.875rem;
  color: #F57C1F;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card-modern:hover .faq-icon-modern {
  background: rgba(245, 124, 31, 0.2);
  transform: scale(1.1);
}

.faq-card-modern.active .faq-icon-modern {
  background: rgba(245, 124, 31, 0.3);
  transform: rotate(180deg) scale(1.15);
}

.faq-card-modern.active .faq-icon-modern i {
  transform: rotate(180deg);
}

/* FAQ Body with smooth animation */
.faq-body-modern {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
  padding-top: 0;
}

.faq-card-modern.active .faq-body-modern {
  max-height: 600px;
  opacity: 1;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(245, 124, 31, 0.2);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .faq-card-inner {
    padding: 1.25rem;
  }
  
  .faq-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    top: -10px;
    left: 1.25rem;
  }
  
  .faq-title-modern {
    font-size: 1rem;
  }
  
  .faq-icon-modern {
    width: 28px;
    height: 28px;
  }
}

/* ===================================
   MINIMALIST FAQ - KAWAAK STYLE
   =================================== */

.faq-minimal {
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(37, 37, 37, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  padding: 0 1.5rem;
  transition: all 0.2s ease;
}

.faq-minimal:hover {
  background: rgba(37, 37, 37, 0.85);
  border-color: rgba(245, 124, 31, 0.3);
}

.faq-minimal-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.faq-minimal-trigger:hover span {
  color: #F57C1F;
}

.faq-minimal-icon {
  flex-shrink: 0;
  color: #9CA3AF;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-minimal.active .faq-minimal-icon {
  transform: rotate(180deg);
  color: #F57C1F;
}

.faq-minimal-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.faq-minimal.active .faq-minimal-content {
  max-height: 500px;
  padding-bottom: 1.75rem;
}

/* Smooth transitions */
.faq-minimal-trigger span {
  transition: color 0.2s ease;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .faq-minimal-trigger {
    padding: 1.25rem 0;
  }
  
  .faq-minimal.active .faq-minimal-content {
    padding-bottom: 1.25rem;
  }
}

/* ===================================
   SCROLL DOWN ANIMATION
   =================================== */

.scroll-down-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 3rem auto;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-down-indicator:hover {
  transform: translateY(5px);
}

.scroll-down-indicator svg {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.scroll-down-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9CA3AF;
  opacity: 0.6;
}

/* Enhanced Animations */

/* Smooth hover scale for cards */
.group:hover {
  transform: translateY(-2px) scale(1.01);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fade in up animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in left animation */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade in right animation */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale in animation */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Pulse glow effect for CTA buttons */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(245, 124, 31, 0.4);
  }
  50% {
    box-shadow: 0 0 20px 5px rgba(245, 124, 31, 0.2);
  }
}

/* Apply pulse to primary CTAs */
a[href="#contact"]:hover,
button[type="submit"]:hover {
  animation: pulseGlow 2s ease-in-out infinite;
}

/* Smooth image transitions */
img {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

/* Icon rotation on hover */
.fa-arrow-right {
  transition: transform 0.3s ease;
}

.group:hover .fa-arrow-right {
  transform: translateX(5px);
}

/* Stagger children animation */
.stagger-item {
  animation: fadeInUp 0.6s ease-out backwards;
}

.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.2s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.4s; }
.stagger-item:nth-child(5) { animation-delay: 0.5s; }

/* Smooth border animation */
.border-animate {
  position: relative;
  overflow: hidden;
}

.border-animate::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #F57C1F, transparent);
  animation: borderSlide 3s linear infinite;
}

@keyframes borderSlide {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Floating animation for hero elements */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Performance optimizations */
* {
  will-change: auto;
}

.group:hover, 
[data-aos], 
img,
a[href="#contact"] {
  will-change: transform, opacity;
}

/* Line Clamp Utilities */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
