/* UMAY Hukuk Bürosu - CSS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Core colors - Dark luxurious theme */
  --background: hsl(220, 20%, 6%);
  --foreground: hsl(45, 20%, 95%);
  --card: hsl(220, 18%, 10%);
  --card-foreground: hsl(45, 20%, 95%);
  
  /* Gold accent - primary brand color */
  --primary: hsl(43, 50%, 55%);
  --primary-foreground: hsl(220, 20%, 6%);
  
  /* Secondary - slightly lighter dark */
  --secondary: hsl(220, 15%, 15%);
  --secondary-foreground: hsl(45, 20%, 95%);
  
  /* Muted tones */
  --muted: hsl(220, 15%, 18%);
  --muted-foreground: hsl(220, 10%, 60%);
  
  /* Accent - warm gold glow */
  --accent: hsl(43, 45%, 45%);
  --accent-foreground: hsl(45, 20%, 95%);
  
  --border: hsl(220, 15%, 20%);
  --input: hsl(220, 15%, 20%);
  
  /* Custom brand tokens */
  --gold: hsl(43, 50%, 55%);
  --gold-light: hsl(43, 55%, 70%);
  --gold-dark: hsl(43, 45%, 40%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

p {
  font-size: 1.25rem;
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Container */
.container-legal {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

header.scrolled {
  background-color: rgba(14, 17, 23, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(197, 161, 90, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

.logo img {
  height: 48px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

nav a {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: var(--primary);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: var(--primary);
}

/* Mobile Menu */
.mobile-menu-button {
  display: none;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-button:hover {
  color: var(--primary);
}

.mobile-menu {
  display: none;
  background-color: var(--card);
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.mobile-menu nav a {
  width: 100%;
  padding: 0.5rem 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 17, 23, 0.6) 0%, rgba(14, 17, 23, 0.85) 100%);
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 17, 23, 0.4) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 80rem;
  padding: 0 1rem;
}

.hero blockquote {
  position: relative;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  line-height: 1.6;
  font-style: italic;
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
  padding: 0 2rem;
}

.quote-mark {
  position: absolute;
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.15;
  font-family: 'Playfair Display', serif;
  user-select: none;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.25; transform: scale(1.05); }
}

.quote-open {
  top: -2rem;
  left: 0;
}

.quote-close {
  bottom: -3rem;
  right: 0;
}

.gold-line {
  height: 1px;
  max-width: 24rem;
  margin: 5rem auto 0;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; box-shadow: 0 0 20px rgba(197, 161, 90, 0.5); }
}

.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
}

.scroll-indicator:hover {
  color: var(--primary);
  transform: translateX(-50%) scale(1.1);
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-padding {
  padding: 7rem 0;
}

.bg-card {
  background-color: var(--card);
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-label {
  color: var(--primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
}

.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  filter: brightness(1.2);
}

.section-description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: 400;
}

/* Enhanced text colors for better readability */
p, span, div {
  color: rgba(242, 237, 227, 0.95);
}

.text-muted {
  color: rgba(242, 237, 227, 0.75);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text h3 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
  font-weight: 500;
  margin-top: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.read-more:hover {
  color: var(--gold-dark);
  gap: 1rem;
}

.read-more span:last-child {
  transition: transform 0.3s ease;
}

.read-more:hover span:last-child {
  transform: translateX(5px);
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1.25rem;
  border-left: 2px solid rgba(197, 161, 90, 0.3);
  background-color: rgba(40, 44, 52, 0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.value-item:hover {
  border-left-color: var(--primary);
  background-color: rgba(40, 44, 52, 0.5);
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(197, 161, 90, 0.15);
}

.value-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.value-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.value-item:hover h4 {
  color: var(--primary);
}

.value-item p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background-color: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
  border-color: rgba(197, 161, 90, 0.4);
  box-shadow: 0 8px 40px rgba(197, 161, 90, 0.25);
  transform: translateY(-8px);
  background-color: rgba(40, 44, 52, 0.6);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(197, 161, 90, 0.1);
  margin-bottom: 1.25rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  border-radius: 4px;
}

.service-card:hover .service-icon {
  background-color: rgba(197, 161, 90, 0.25);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 20px rgba(197, 161, 90, 0.3);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-icon svg {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px rgba(197, 161, 90, 0.6));
}

.service-icon::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 32px;
  height: 1px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon::after {
  transform: scaleX(1);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary);
}

.service-card p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-top: 3rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(197, 161, 90, 0.2);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(197, 161, 90, 0.3), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197, 161, 90, 0.4);
}

/* Footer */
footer {
  background-color: var(--card);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  height: 200px;
  width: auto;
  transition: transform 0.3s ease;
}

.footer-logo:hover img {
  transform: scale(1.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-column {
  text-align: center;
}

.footer-column h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.footer-column nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.footer-services .services-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2rem;
  justify-items: center;
}

.footer-services {
  text-align: center;
}

.footer-services h4 {
  text-align: center;
}

.footer-services .services-columns nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

.footer-column a {
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  border-top: 1px solid rgba(197, 161, 90, 0.3);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom p {
  margin: 0;
  padding: 0;
}

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

.contact-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 40px rgba(197, 161, 90, 0.25);
  transform: translateY(-8px) scale(1.02);
}

.contact-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(197, 161, 90, 0.1);
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-card:hover .contact-icon {
  background-color: rgba(197, 161, 90, 0.25);
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 4px 20px rgba(197, 161, 90, 0.4);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px rgba(197, 161, 90, 0.6));
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 500;
}

.contact-card a {
  color: rgba(255, 255, 255, 0.95);
  transition: color 0.3s ease;
  font-size: 1.25rem;
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--primary);
}

/* Map */
.map-container {
  margin-top: 3rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* Principles Grid */
.principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.principle-card {
  background-color: var(--secondary);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.principle-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 40px rgba(197, 161, 90, 0.25);
  transform: translateY(-8px);
  background-color: rgba(40, 44, 52, 0.8);
}

.principle-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.principle-card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Responsive */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .header-content {
    height: 96px;
  }
  
  .logo img {
    height: 75px;
  }
  
  .hero blockquote {
    font-size: 1.875rem;
  }
  
  .quote-mark {
    font-size: 8rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .about-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-column {
    text-align: left;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  nav {
    display: flex;
  }
  
  .mobile-menu-button {
    display: none;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero blockquote {
    font-size: 2.75rem;
  }
  
  .section-title {
    font-size: 4rem;
  }
  
  .principles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1023px) {
  nav {
    display: none;
  }
  
  .mobile-menu-button {
    display: block;
  }
  
  .phone-link {
    display: none;
  }
  
  .header-content {
    justify-content: flex-end;
  }
  
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-services .services-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem 0;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 1.125rem;
  }
  
  p {
    font-size: 1.125rem;
    line-height: 1.7;
  }
  
  .container-legal {
    padding: 0 1.25rem;
  }
  
  .header-content {
    height: 70px;
  }
  
  .logo img {
    height: 48px;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .hero blockquote {
    font-size: 1.5rem;
    padding: 0 1rem;
  }
  
  nav a {
    font-size: 1.125rem;
  }
  
  .service-card h3 {
    font-size: 1.25rem;
  }
  
  .service-card p {
    font-size: 1rem;
  }
  
  .contact-card h3 {
    font-size: 1.25rem;
  }
  
  .contact-card p {
    font-size: 1rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-services {
    text-align: center;
  }
  
  .footer-services .services-columns {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .mobile-menu {
    padding: 1rem 0;
  }
  
  .mobile-menu nav a {
    font-size: 1.125rem;
    padding: 0.75rem 1rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-3 {
  margin-top: 3rem;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease-out forwards;
}

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: slideLeft 0.8s ease-out forwards;
}

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  animation: slideRight 0.8s ease-out forwards;
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  animation: scaleIn 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.active > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-children.active > *:nth-child(7) { transition-delay: 0.7s; }
.stagger-children.active > *:nth-child(8) { transition-delay: 0.8s; }
.stagger-children.active > *:nth-child(9) { transition-delay: 0.9s; }

.stagger-children.active > * {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.whatsapp-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.7), 0 4px 12px rgba(0, 0, 0, 0.5);
}

.whatsapp-button:active {
  transform: scale(0.95);
}

.whatsapp-button img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@media (max-width: 767px) {
  .whatsapp-button {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-button img {
    width: 28px;
    height: 28px;
  }
}
