/* Photography Portfolio - Modern Animated Styles */

/* CSS Variables */
:root {
  --primary-color: #0a0e27;
  --secondary-color: #6366f1;
  --accent-color: #ec4899;
  --accent-secondary: #8b5cf6;
  --text-color: #1e293b;
  --text-light: #64748b;
  --bg-color: #ffffff;
  --bg-dark: #0f172a;
  --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-soft: 0 8px 32px rgba(31, 38, 135, 0.15);
  --shadow-hover: 0 20px 60px rgba(31, 38, 135, 0.3);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.4);
  --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Modern Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--accent-color);
}

/* Smooth Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Custom Cursor */
body.cursor-active {
  cursor: none;
}

.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.2s ease, border-color 0.2s ease;
  display: none;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  opacity: 0.2;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.3s ease;
  display: none;
}

@media (pointer: fine) {
  .custom-cursor,
  .cursor-follower {
    display: block;
  }
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Glass Morphism Navigation */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 15px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
  animation: slideDown 0.8s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.navbar.scrolled {
  background: rgba(10, 14, 39, 0.9);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.2);
}

.navbar-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  border-radius: 25px;
  position: relative;
  transition: var(--transition-smooth);
  text-transform: uppercase;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  transition: width 0.4s ease;
}

.nav-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.nav-link:hover::before {
  width: 80%;
}

.nav-link.active {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: white;
}

/* Hamburger Menu for Mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: white;
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu .nav-link {
  font-size: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.mobile-menu.active .nav-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .nav-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .nav-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .nav-link:nth-child(4) { transition-delay: 0.4s; }

/* Modern Buttons with Hover Effects */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  font-size: 16px;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: white;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Modern Typography with Gradient Effects */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

h1 { 
  font-size: clamp(2.5rem, 6vw, 5rem);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 8s ease infinite;
  background-size: 200% 200%;
}

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

h2 { 
  font-size: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  border-radius: 2px;
}

h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.subtitle {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-family: 'Inter', sans-serif;
}

.tagline {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 300;
}

.section-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  color: var(--text-light);
  font-size: 1.125rem;
  line-height: 1.8;
}

/* Hero Section with Parallax and Animations */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 120px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Animated Background Gradient */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(99, 102, 241, 0.3) 0%, 
    rgba(139, 92, 246, 0.2) 50%, 
    rgba(236, 72, 153, 0.3) 100%);
  animation: gradient-animation 15s ease infinite;
  background-size: 400% 400%;
}

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

/* Floating Particles */
.hero::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: 
    radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px;
  background-position: 0 0, 40px 40px;
  animation: particle-float 20s linear infinite;
}

@keyframes particle-float {
  from { transform: translateY(0); }
  to { transform: translateY(-100px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  animation: hero-fade-in 1.2s ease;
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  color: white;
  margin-bottom: 1.5rem;
  animation: hero-title 1.2s ease 0.2s both;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.hero .subtitle {
  animation: hero-subtitle 1.2s ease 0.4s both;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.hero .tagline {
  margin-bottom: 3rem;
  animation: hero-tagline 1.2s ease 0.6s both;
}

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

.hero .btn {
  animation: hero-cta 1.2s ease 0.8s both;
}

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

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

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

.scroll-indicator::before {
  content: '↓';
  font-size: 32px;
  color: rgba(255, 255, 255, 0.7);
}

/* Section Spacing */
.portfolio,
.services,
.experience,
.equipment,
.testimonials,
.add-ons,
.faq,
.bio,
.services-intro,
.contact-header,
.contact-main,
.cta-section {
  padding: 100px 40px;
  position: relative;
}

.portfolio {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Masonry Gallery Grid with Hover Effects */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 3rem;
  grid-auto-flow: dense;
}

.gallery-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  animation: card-appear 0.6s ease both;
}

@keyframes card-appear {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.gallery-card:nth-child(1) { animation-delay: 0.1s; }
.gallery-card:nth-child(2) { animation-delay: 0.2s; }
.gallery-card:nth-child(3) { animation-delay: 0.3s; }
.gallery-card:nth-child(4) { animation-delay: 0.4s; }
.gallery-card:nth-child(5) { animation-delay: 0.5s; }
.gallery-card:nth-child(6) { animation-delay: 0.6s; }

.gallery-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(99, 102, 241, 0.25);
}

.gallery-image {
  height: 400px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-dark);
  position: relative;
  display: flex;
  align-items: flex-end;
  transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  background: linear-gradient(to top, 
    rgba(10, 14, 39, 0.95) 0%, 
    rgba(10, 14, 39, 0.7) 50%,
    transparent 100%);
  color: white;
  padding: 40px 30px;
  width: 100%;
  transform: translateY(0);
  transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-overlay {
  background: linear-gradient(to top, 
    rgba(99, 102, 241, 0.95) 0%, 
    rgba(99, 102, 241, 0.7) 50%,
    transparent 100%);
}

.gallery-overlay h3 {
  color: white;
  margin-bottom: 10px;
  font-size: 28px;
  transform: translateY(0);
  transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-overlay h3 {
  transform: translateY(-5px);
}

.gallery-overlay p {
  opacity: 0.9;
  font-size: 15px;
  margin-bottom: 10px;
}

.photo-count {
  font-size: 14px;
  opacity: 0.8;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Testimonials Carousel */
.testimonials {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease infinite;
}

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

.testimonials h2 {
  text-align: center;
  margin-bottom: 4rem;
  color: white;
  position: relative;
  z-index: 1;
}

.testimonials h2::after {
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
}

.testimonials-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.testimonials-grid {
  display: flex;
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.testimonial-card {
  min-width: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 60px 50px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.stars {
  font-size: 24px;
  margin-bottom: 30px;
  color: #fbbf24;
  letter-spacing: 5px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 30px;
  line-height: 2;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 60px;
  color: var(--secondary-color);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-author {
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
  font-size: 20px;
}

.testimonial-occasion {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Carousel Navigation */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: white;
  width: 40px;
  border-radius: 6px;
}

/* Bio Section */
.bio-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}

.bio-image-container {
  position: sticky;
  top: 100px;
}

.bio-image-container img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  width: 100%;
}

.profile-placeholder {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}

.profile-placeholder:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(236, 72, 153, 0.4);
}

.profile-placeholder svg {
  display: block;
  width: 100%;
  height: auto;
}

.bio-text .intro {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.bio-text p {
  margin-bottom: 1.25rem;
  text-align: justify;
}

/* Experience Section */
.experience {
  background-color: var(--bg-light);
}

.experience-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.timeline-year {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 1.25rem;
  min-width: 60px;
}

.timeline-event {
  flex: 1;
  padding-top: 0.25rem;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.skill-tag {
  background-color: var(--secondary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Equipment Section */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.equipment-item {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.equipment-icon {
  font-size: 2rem;
}

/* Services Page */
.services-intro {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 4rem 2rem;
}

.services-intro h1,
.services-intro .subtitle,
.services-intro .tagline {
  color: white;
}

#services-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-card {
  background-color: var(--bg-light);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-icon {
  font-size: 3rem;
}

.service-description {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.service-features {
  margin-bottom: 2rem;
}

.service-features ul {
  list-style: none;
  margin-top: 1rem;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li::before {
  content: '✓';
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.package-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--border-color);
  transition: var(--transition);
}

.package-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.package-card h5 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.package-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.package-details p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* Add-ons */
.add-ons {
  background-color: var(--bg-light);
}

.add-ons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.add-on-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
}

.add-on-price {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Contact Page */
.contact-header {
  text-align: center;
  padding: 3rem 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.5rem;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.availability {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

.office-hours {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 600;
}

/* Contact Form */
.contact-form {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid,
.form-group textarea:valid:not(:placeholder-shown) {
  border-color: #10b981;
}

.form-success {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
  border: 2px solid var(--primary-color);
  color: var(--text-color);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin-top: 1rem;
  text-align: center;
  animation: slideInUp 0.5s ease;
}

.form-success .success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  animation: scaleIn 0.5s ease 0.2s backwards;
}

.form-success h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.form-success p {
  color: var(--text-light);
  font-size: 1.1rem;
}

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

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

/* FAQ */
.faq {
  background-color: var(--bg-light);
}

.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  background-color: white;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background-color: white;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--bg-light);
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--secondary-color);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Footer with Modern Design */
.footer {
  background: linear-gradient(135deg, #0a0e27 0%, #1e293b 100%);
  color: white;
  padding: 80px 40px 40px;
  text-align: center;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--secondary-color) 50%, 
    transparent 100%);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-info p {
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
  border-color: transparent;
}

/* Loading Animation */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--bg-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  opacity: 1;
  transition: opacity 0.8s ease;
}

.page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-spinner {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--secondary-color);
  border-right-color: var(--accent-color);
  border-radius: 50%;
  animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

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

.loader-text {
  color: white;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.loader-text .dots::after {
  content: '';
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%, 20% { content: ''; }
  40% { content: '.'; }
  60% { content: '..'; }
  80%, 100% { content: '...'; }
}

/* Floating Animation for Elements */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

/* Glow Effect */
.glow {
  position: relative;
}

.glow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: inherit;
  filter: blur(20px);
  opacity: 0.5;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: opacity 0.3s ease;
}

.glow:hover::after {
  opacity: 0.8;
}

/* Image Reveal Animation */
.reveal-image {
  position: relative;
  overflow: hidden;
}

.reveal-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1;
}

.reveal-image.active::before {
  transform: scaleX(1);
  transform-origin: right;
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
}

/* Selection Color */
::selection {
  background: var(--secondary-color);
  color: white;
}

::-moz-selection {
  background: var(--secondary-color);
  color: white;
}

/* Stagger Animation Utility */
.stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-item:nth-child(5) { transition-delay: 0.5s; }
.stagger-item:nth-child(6) { transition-delay: 0.6s; }
.stagger-item:nth-child(7) { transition-delay: 0.7s; }
.stagger-item:nth-child(8) { transition-delay: 0.8s; }
.stagger-item:nth-child(9) { transition-delay: 0.9s; }
.stagger-item:nth-child(10) { transition-delay: 1s; }
.stagger-item:nth-child(11) { transition-delay: 1.1s; }
.stagger-item:nth-child(12) { transition-delay: 1.2s; }

/* Work Page Styles */
.work-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: white;
  padding: 140px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.work-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(236, 72, 153, 0.3) 100%);
  animation: gradient-animation 15s ease infinite;
  background-size: 400% 400%;
}

.work-hero h1 {
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.work-hero .subtitle {
  position: relative;
  z-index: 2;
  opacity: 0.95;
}

.work-hero .scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10;
}

.work-hero .scroll-indicator::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: scroll-bounce 2s infinite;
}

.work-hero .scroll-indicator:hover {
  border-color: white;
  transform: translateX(-50%) scale(1.1);
}

@keyframes scroll-bounce {
  0%, 100% {
    top: 8px;
    opacity: 1;
  }
  50% {
    top: 32px;
    opacity: 0.5;
  }
}

.work-gallery {
  padding: 100px 40px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Filter Buttons */
.filter-container {
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 80px;
  z-index: 100;
  padding: 20px 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  transition: var(--transition-smooth);
}

.filter-container.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.filter-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.filter-btn {
  padding: 12px 30px;
  border: 2px solid rgba(99, 102, 241, 0.2);
  background: white;
  color: var(--text-color);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
  width: 300px;
  height: 300px;
}

.filter-btn:hover,
.filter-btn.active {
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.filter-count {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 6px;
  min-width: 24px;
  text-align: center;
  transition: var(--transition-smooth);
}

.filter-btn:not(.active) .filter-count {
  background: rgba(99, 102, 241, 0.1);
  color: var(--secondary-color);
}

.filter-btn:hover .filter-count,
.filter-btn.active .filter-count {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 3rem;
  min-height: 400px;
}

/* Empty State */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 40px;
  display: none;
  animation: fadeIn 0.4s ease;
}

.empty-state-icon {
  font-size: 80px;
  margin-bottom: 20px;
  opacity: 0.3;
}

.empty-state h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.empty-state p {
  color: var(--text-light);
  font-size: 1rem;
}

.work-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  height: 450px;
  opacity: 1;
  transform: scale(1);
  will-change: transform, opacity;
}

/* Add border glow effect on hover */
.work-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 22px;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: -1;
}

.work-item:hover::before {
  opacity: 0.6;
}

.work-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(99, 102, 241, 0.25);
}

.work-image {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: var(--transition-smooth);
  background-color: #e2e8f0; /* Placeholder background */
}

/* Loading skeleton for images */
.work-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(226, 232, 240, 0) 0%,
    rgba(226, 232, 240, 0.3) 50%,
    rgba(226, 232, 240, 0) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  z-index: 1;
}

.work-image.loaded::before {
  display: none;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.work-item:hover .work-image {
  transform: scale(1.05);
}

.work-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, 
    rgba(10, 14, 39, 0.85) 0%, 
    rgba(10, 14, 39, 0.6) 60%,
    transparent 100%);
  color: white;
  padding: 30px;
  transform: translateY(0);
  opacity: 1;
  transition: var(--transition-smooth);
}

.work-item:hover .work-overlay {
  background: linear-gradient(to top, 
    rgba(10, 14, 39, 0.95) 0%, 
    rgba(10, 14, 39, 0.8) 70%,
    transparent 100%);
  padding: 35px 30px;
}

.work-category {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 10px;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  transition: var(--transition-smooth);
}

.work-item:hover .work-category {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.work-overlay h3 {
  color: white;
  margin-bottom: 10px;
  font-size: 24px;
}

.work-overlay p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 15px;
  line-height: 1.5;
}

.work-view-btn {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 14px;
  opacity: 0.9;
}

.work-item:hover .work-view-btn {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

/* Instagram CTA Section */
.instagram-cta {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.instagram-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease infinite;
}

.instagram-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.instagram-icon {
  font-size: 80px;
  margin-bottom: 20px;
  animation: float 6s ease-in-out infinite;
}

.instagram-cta h2 {
  color: white;
  margin-bottom: 20px;
  font-size: 3rem;
}

.instagram-cta h2::after {
  display: none;
}

.instagram-cta p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.8;
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #833ab4;
  font-size: 18px;
  padding: 18px 40px;
  margin-bottom: 20px;
}

.instagram-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-5px) scale(1.05);
}

.btn-icon {
  font-size: 24px;
}

.instagram-handle {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

.lightbox-caption {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  text-align: center;
}

.lightbox-caption h3 {
  color: white;
  margin-bottom: 10px;
}

.lightbox-caption p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.lightbox-close {
  top: 30px;
  right: 30px;
  font-size: 30px;
}

.lightbox-prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-close:hover {
  transform: scale(1.1) rotate(90deg);
}

/* Futuristic Page Headers for About & Contact */
.futuristic-header {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 140px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Animated geometric shapes background */
.futuristic-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(30deg, rgba(99, 102, 241, 0.3) 12%, transparent 12.5%, transparent 87%, rgba(99, 102, 241, 0.3) 87.5%, rgba(99, 102, 241, 0.3)),
    linear-gradient(150deg, rgba(99, 102, 241, 0.3) 12%, transparent 12.5%, transparent 87%, rgba(99, 102, 241, 0.3) 87.5%, rgba(99, 102, 241, 0.3)),
    linear-gradient(30deg, rgba(236, 72, 153, 0.3) 12%, transparent 12.5%, transparent 87%, rgba(236, 72, 153, 0.3) 87.5%, rgba(236, 72, 153, 0.3)),
    linear-gradient(150deg, rgba(236, 72, 153, 0.3) 12%, transparent 12.5%, transparent 87%, rgba(236, 72, 153, 0.3) 87.5%, rgba(236, 72, 153, 0.3));
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px;
  animation: geometric-move 20s linear infinite;
  opacity: 0.3;
}

@keyframes geometric-move {
  0% { background-position: 0 0, 0 0, 40px 70px, 40px 70px; }
  100% { background-position: 80px 140px, 80px 140px, 120px 210px, 120px 210px; }
}

/* Floating particles */
.futuristic-header::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: 
    radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
    radial-gradient(circle, rgba(99, 102, 241, 0.2) 1px, transparent 1px),
    radial-gradient(circle, rgba(236, 72, 153, 0.2) 1px, transparent 1px);
  background-size: 100px 100px, 60px 60px, 80px 80px;
  background-position: 0 0, 40px 60px, 130px 270px;
  animation: particle-drift 30s linear infinite;
}

@keyframes particle-drift {
  from { transform: translateY(0); }
  to { transform: translateY(-200px); }
}

/* Glowing orbs */
.futuristic-header .glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: float 8s ease-in-out infinite;
}

.futuristic-header .glow-orb-1 {
  top: 10%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.6) 0%, transparent 70%);
  animation-delay: 0s;
}

.futuristic-header .glow-orb-2 {
  bottom: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.6) 0%, transparent 70%);
  animation-delay: 2s;
}

.futuristic-header .glow-orb-3 {
  top: 50%;
  left: 50%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.6) 0%, transparent 70%);
  animation-delay: 4s;
}

.futuristic-header .header-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.futuristic-header h1 {
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 0 40px rgba(99, 102, 241, 0.5);
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% {
    text-shadow: 0 0 40px rgba(99, 102, 241, 0.5),
                 0 0 80px rgba(99, 102, 241, 0.3);
  }
  50% {
    text-shadow: 0 0 60px rgba(236, 72, 153, 0.6),
                 0 0 100px rgba(236, 72, 153, 0.4);
  }
}

.futuristic-header .subtitle {
  position: relative;
  z-index: 10;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Scan line effect */
.futuristic-header .scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(99, 102, 241, 0.8) 50%, 
    transparent 100%);
  animation: scan 4s linear infinite;
}

@keyframes scan {
  0% { transform: translateY(0); }
  100% { transform: translateY(40vh); }
}

/* Bio Section */
.bio-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}

.bio-image-container {
  position: sticky;
  top: 100px;
}

.bio-image-container img {
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  width: 100%;
  transition: var(--transition-smooth);
}

.bio-image-container img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

.bio-text .intro {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.bio-text p {
  margin-bottom: 1.25rem;
  text-align: justify;
  line-height: 1.8;
}

/* Experience Section */
.experience {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* Animated Stats Section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin: 60px 0;
  padding: 60px 0;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
  border: 1px solid rgba(99, 102, 241, 0.1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease;
}

.stat-card.visible::before {
  transform: scaleX(1);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
  border-color: var(--secondary-color);
}

.stat-number {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.experience-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
  transition: var(--transition-smooth);
}

.timeline-item:hover {
  transform: translateX(10px);
  border-bottom-color: var(--secondary-color);
}

.timeline-year {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 1.25rem;
  min-width: 60px;
}

.timeline-event {
  flex: 1;
  padding-top: 0.25rem;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.skill-tag {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  cursor: default;
}

.skill-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(99, 102, 241, 0.3);
}

/* Equipment Section */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.equipment-item {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.equipment-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary-color);
}

.equipment-icon {
  font-size: 2rem;
}

/* Services Page */
.services-intro {
  text-align: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.services-intro::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

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

.services-intro h1,
.services-intro .subtitle,
.services-intro .tagline {
  color: white;
  position: relative;
  z-index: 1;
}

#services-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary-color);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-icon {
  font-size: 3rem;
}

.service-description {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.service-features {
  margin-bottom: 2rem;
}

.service-features ul {
  list-style: none;
  margin-top: 1rem;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  transition: var(--transition-smooth);
}

.service-features li:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.service-features li::before {
  content: '✓';
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.package-card {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid rgba(99, 102, 241, 0.1);
  transition: var(--transition-smooth);
}

.package-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
  background: white;
}

.package-card h5 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.package-price {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.package-details p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* Add-ons */
.add-ons {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.add-ons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.add-on-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.add-on-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary-color);
}

.add-on-price {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  text-align: center;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-section h2::after {
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

/* Contact Page */
.contact-header {
  text-align: center;
  padding: 80px 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 10px;
  transition: var(--transition-smooth);
}

.contact-info-item:hover {
  background: rgba(99, 102, 241, 0.05);
  transform: translateX(5px);
}

.info-icon {
  font-size: 1.5rem;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.availability {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

.office-hours {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 600;
}

/* Contact Form */
.contact-form {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid rgba(99, 102, 241, 0.2);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition-smooth);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #c3e6cb;
  margin-top: 1rem;
}

/* FAQ */
.faq {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(99, 102, 241, 0.1);
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: white;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary-color);
  transition: var(--transition-smooth);
}

.faq-question:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
  color: var(--secondary-color);
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--secondary-color);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .container {
    padding: 0 20px;
  }
  
  .hero {
    padding: 100px 20px 60px;
    min-height: 90vh;
  }
  
  .navbar {
    padding: 12px 20px;
    width: calc(100% - 40px);
    left: 20px;
    transform: none;
  }
  
  .navbar-content {
    width: 100%;
    justify-content: space-between;
  }
  
  .navbar-content .nav-link {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .gallery-image {
    height: 300px;
  }
  
  .testimonial-card {
    padding: 40px 30px;
  }
  
  .testimonial-text {
    font-size: 16px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .bio-content,
  .experience-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .bio-image-container {
    position: static;
  }
  
  section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .btn {
    padding: 14px 30px;
    font-size: 14px;
  }
  
  .testimonials,
  .portfolio {
    padding: 60px 20px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* Work Page Responsive Styles */
@media (max-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
  }
  
  .work-item {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .work-hero {
    padding: 120px 20px 60px;
    min-height: 40vh;
  }
  
  .work-hero h1 {
    font-size: 2.5rem;
  }
  
  .work-hero .subtitle {
    font-size: 1rem;
  }
  
  .work-gallery {
    padding: 60px 20px;
  }
  
  .filter-buttons {
    padding: 15px;
    gap: 10px;
  }
  
  .filter-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
  
  .work-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .work-item {
    height: 380px;
  }
  
  .work-overlay {
    padding: 25px;
  }
  
  .work-overlay h3 {
    font-size: 20px;
  }
  
  .work-overlay p {
    font-size: 13px;
  }
  
  .instagram-cta {
    padding: 60px 20px;
  }
  
  .instagram-icon {
    font-size: 60px;
  }
  
  .instagram-cta h2 {
    font-size: 2rem;
  }
  
  .instagram-cta p {
    font-size: 1rem;
  }
  
  .instagram-btn {
    font-size: 16px;
    padding: 15px 30px;
  }
  
  .instagram-handle {
    font-size: 1.2rem;
  }
  
  .lightbox-content {
    max-width: 95%;
    max-height: 95%;
  }
  
  .lightbox-content img {
    max-height: 70vh;
  }
  
  .lightbox-caption {
    padding: 15px;
    margin-top: 15px;
  }
  
  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  .lightbox-close {
    top: 20px;
    right: 20px;
  }
  
  .lightbox-prev {
    left: 20px;
  }
  
  .lightbox-next {
    right: 20px;
  }
}

@media (max-width: 480px) {
  .work-hero h1 {
    font-size: 2rem;
  }
  
  .work-hero .subtitle {
    font-size: 0.9rem;
  }
  
  .work-gallery {
    padding: 40px 15px;
  }
  
  .filter-buttons {
    padding: 10px;
    gap: 8px;
    border-radius: 30px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 11px;
  }
  
  .work-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .work-item {
    height: 350px;
  }
  
  .work-category {
    font-size: 10px;
    padding: 4px 12px;
  }
  
  .work-overlay h3 {
    font-size: 18px;
  }
  
  .work-overlay p {
    font-size: 12px;
  }
  
  .work-view-btn {
    padding: 8px 20px;
    font-size: 12px;
  }
  
  .instagram-cta {
    padding: 50px 20px;
  }
  
  .instagram-icon {
    font-size: 50px;
  }
  
  .instagram-cta h2 {
    font-size: 1.75rem;
  }
  
  .instagram-cta p {
    font-size: 0.95rem;
  }
  
  .instagram-btn {
    font-size: 14px;
    padding: 12px 25px;
  }
  
  .btn-icon {
    font-size: 20px;
  }
  
  .instagram-handle {
    font-size: 1rem;
  }
  
  .lightbox-caption h3 {
    font-size: 18px;
  }
  
  .lightbox-caption p {
    font-size: 13px;
  }
  
  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .lightbox-close {
    top: 15px;
    right: 15px;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
}

/* Enhanced Animations for Work Page */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

/* Apply animations to work items */
.work-item.visible {
  animation: scaleIn 0.5s ease forwards;
}

.filter-btn.visible {
  animation: slideInUp 0.4s ease forwards;
}

/* Stagger animation for grid items */
.stagger-item {
  opacity: 0;
}

.stagger-item.visible {
  animation: slideInUp 0.6s ease forwards;
}

.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; }
.stagger-item:nth-child(6) { animation-delay: 0.6s; }

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
  .work-item:hover {
    transform: none;
  }
  
  .work-item:active {
    transform: scale(0.98);
  }
  
  .filter-btn:hover {
    transform: none;
  }
  
  .filter-btn:active {
    transform: scale(0.95);
  }
  
  .work-view-btn:hover {
    transform: none;
  }
  
  .work-view-btn:active {
    transform: scale(0.95);
  }
  
  .instagram-btn:hover {
    transform: none;
  }
  
  .instagram-btn:active {
    transform: scale(0.98);
  }
  
  /* Disable custom cursor on touch devices */
  .custom-cursor,
  .cursor-follower {
    display: none;
  }
}
