:root {
  --background: 210 20% 98%;
  --foreground: 222 47% 11%;
  --primary: 183 100% 25%;
  --primary-foreground: 0 0% 100%;
  --secondary: 183 30% 94%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --accent: 330 80% 60%;
  --accent-foreground: 0 0% 100%;
  --border: 214.3 31.8% 91.4%;
  --radius: 0.75rem;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: hsl(210 20% 98%);
  color: hsl(222 47% 11%);
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.025em;
}

::selection {
  background-color: #f472b6;
  color: white;
}

.glass {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
}

@keyframes pan-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-20%); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); }
  30% { transform: translate(7%, -25%); }
  40% { transform: translate(-5%, 25%); }
  50% { transform: translate(-15%, 10%); }
  60% { transform: translate(15%, 0%); }
  70% { transform: translate(0%, 15%); }
  80% { transform: translate(3%, 35%); }
  90% { transform: translate(-10%, 10%); }
}

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

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

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

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

/* Entrance animations disabled by user request — show content instantly on load. */
.animate-scale-in,
.animate-fade-in-up,
.animate-slide-in-bottom,
.animate-slide-in-left,
.animate-slide-in-right {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.animate-gradient-x {
  background-size: 200% auto;
  animation: gradient-x 3s ease infinite;
}

.btn-glass {
  position: relative;
  overflow: hidden;
}
.btn-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent, transparent);
  opacity: 0;
  transition: opacity 0.5s;
}
.btn-glass:hover::before {
  opacity: 1;
}
.btn-glass::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0s;
}
.btn-glass:hover::after {
  animation: shine 0.6s ease-out;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.hover-media-container .hover-media {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.hover-media-container .hover-media.active {
  opacity: 1;
}
.hover-media-container .default-media {
  transition: opacity 0.7s ease;
}
.hover-media-container .default-media.hidden-media {
  opacity: 0;
}

.service-item {
  cursor: pointer;
  transition: all 0.3s ease;
}
.service-item:hover {
  padding-left: 0.5rem;
}
.service-item .service-title {
  transition: color 0.3s ease;
}
.service-item:hover .service-title,
.service-item.active .service-title {
  color: #9333ea;
}

.mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.mobile-accordion-content.open {
  max-height: 500px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.tab-button {
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  background: transparent;
  color: #475569;
}
.tab-button:hover {
  background: #f1f5f9;
  color: #0f172a;
}
.tab-button.active {
  background: linear-gradient(to right, #fabfdc, #66ffff);
  color: #333030;
  box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.2);
  transform: scale(1.05);
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
  animation: fade-in-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.stats-carousel {
  position: relative;
  overflow: hidden;
}
.stats-carousel .slides {
  display: flex;
  transition: transform 0.5s ease;
}
.stats-carousel .slide {
  min-width: 100%;
  flex-shrink: 0;
}

.wp-block-image img,
.wp-block-video video {
  max-width: 100%;
  height: auto;
}
