/* Design System & Variables */
:root {
  /* Color Palette (OKLCH with HEX Fallbacks where useful) */
  --background: oklch(98.5% 0.012 130); /* Light Sage Tint, #f6f8f6 */
  --foreground: oklch(22% 0.04 155); /* Dark Forest Slate, #1c3028 */
  --card: oklch(100% 0 0); /* Pure White */
  --card-foreground: oklch(22% 0.04 155);
  
  --primary: oklch(42% 0.09 155); /* Elegant Forest Green, #246b54 */
  --primary-glow: oklch(52% 0.11 150); /* Lighter Sage Green, #388a6d */
  --primary-foreground: oklch(98.5% 0.01 130);
  
  --secondary: oklch(94% 0.025 140); /* Sage Soft Tint, #e6ede8 */
  --secondary-foreground: oklch(28% 0.06 155); /* Medium Forest Green, #214237 */
  
  --muted: oklch(95% 0.018 135); /* Soft Grey-Sage, #edf1ee */
  --muted-foreground: oklch(46% 0.03 150); /* Slate Green, #64786d */
  
  --accent: oklch(78% 0.11 140); /* Golden Sand, #d9c490 */
  --accent-foreground: oklch(22% 0.05 155);
  
  --border: oklch(90% 0.02 140); /* Soft Border, #d8e0da */
  --input: oklch(92% 0.02 140);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-glow));
  --gradient-soft: linear-gradient(180deg, oklch(97% 0.02 135), oklch(93% 0.04 140));
  --gradient-hero: linear-gradient(135deg, oklch(22% 0.05 155 / 0.85), oklch(14% 0.03 155 / 0.75));
  
  /* Fonts */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  
  /* Spacing & Layout */
  --radius: 0.875rem;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-elegant: 0 20px 40px -15px rgba(28, 48, 40, 0.08);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
}

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

ul {
  list-style: none;
}

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

/* Layout Utilities */
.section-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  font-size: 0.937rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff !important; /* Forces text to be white */
}

.btn-primary:hover {
  background-color: var(--primary-glow);
  transform: translateY(-2px);
}

.btn-primary-glow {
  background: var(--gradient-primary);
  color: #ffffff !important; /* Forces text to be white */
  box-shadow: 0 4px 14px 0 rgba(36, 107, 84, 0.3);
}

.btn-primary-glow:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(36, 107, 84, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-foreground);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.btn-white-glow {
  background-color: var(--card);
  color: var(--primary);
  box-shadow: 0 4px 14px 0 rgba(255, 255, 255, 0.2);
}

.btn-white-glow:hover {
  background-color: var(--background);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn-icon {
  width: 1.125rem;
  height: 1.125rem;
}

/* Header & Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--card);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  height: 90px;
}

/* When header is scrolled, it can become slightly smaller and gain a shadow */
.site-header.scrolled {
  height: 75px;
  box-shadow: var(--shadow-md);
}

.header-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 55px;
  width: auto;
  transition: var(--transition);
}

.site-header.scrolled .logo-img {
  height: 48px;
}

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

.desktop-nav ul {
  display: flex;
  gap: 2rem;
}

.desktop-nav a {
  font-size: 0.937rem;
  font-weight: 500;
  color: var(--foreground);
  opacity: 0.85;
}

.desktop-nav a:hover {
  color: var(--primary);
  opacity: 1;
}

.nav-cta {
  font-size: 0.875rem;
  padding: 0.6rem 1.4rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

/* Mobile Drawer */
.mobile-nav {
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  background-color: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transform: translateY(-110%);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.site-header.scrolled .mobile-nav {
  top: 75px;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav a {
  font-size: 1.062rem;
  font-weight: 500;
  color: var(--foreground);
  display: block;
}

.mobile-cta-li {
  margin-top: 0.5rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  background-image: var(--gradient-hero), url('assets/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: var(--primary-foreground);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(28, 48, 40, 0.2); /* Extra subtle cover */
  z-index: 1;
}

.hero-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 44rem;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.badge-text {
  font-size: 0.812rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  font-weight: 300;
  margin-bottom: 2.25rem;
  max-width: 38rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--accent);
}

.stat-label {
  font-size: 0.812rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

/* About Section */
.about-section {
  padding: 7rem 0;
  background-color: var(--background);
}

.about-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.image-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
}

.about-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.about-image-wrapper:hover .about-img {
  transform: scale(1.02);
}

/* Floating Badge */
.crp-floating-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: float 5s ease-in-out infinite;
}

.floating-crp-title {
  font-size: 0.687rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.floating-crp-value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-description {
  margin-bottom: 2.25rem;
  font-size: 1rem;
  color: var(--muted-foreground);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.value-item {
  display: flex;
  gap: 1rem;
}

.value-icon-box {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius);
  background-color: var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.value-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.value-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* Services Section */
.services-section {
  padding: 7rem 0;
  background-color: var(--secondary);
}

.services-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--card);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-elegant);
  border-color: var(--primary);
}

.service-icon-box {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius);
  background-color: var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.service-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.service-card-title {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.service-card-text {
  font-size: 0.937rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Testimonials (Depoimentos) Section - Carousel Slider Layout (1 Card at a time) */
.testimonials-section {
  padding: 7rem 0;
  background-color: var(--background);
}

.testimonials-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.testimonials-slider-container {
  position: relative;
  max-width: 44rem; /* Width of a single bubble card */
  margin: 3rem auto 0 auto;
  overflow: hidden; /* CRITICAL: Hides the other testimonials that are side-by-side */
  border-radius: var(--radius-lg);
}

.testimonials-slider {
  display: flex; /* Lines up cards horizontally */
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-elegant);
  width: 100%;
  min-width: 100%; /* CRITICAL: Forces each card to occupy exactly 100% of the container width */
  flex-shrink: 0; /* CRITICAL: Prevents cards from shrinking to fit on one screen */
  box-sizing: border-box;
}

.quote-mark {
  position: absolute;
  top: -0.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(36, 107, 84, 0.1);
  pointer-events: none;
  transition: var(--transition);
}

.testimonial-card:hover .quote-mark {
  color: rgba(36, 107, 84, 0.2);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.star-icon {
  width: 1.125rem;
  height: 1.125rem;
}

.star-icon.fill {
  fill: currentColor;
}

.testimonial-card blockquote {
  font-style: normal;
  font-size: 0.937rem;
  line-height: 1.625;
  color: var(--foreground);
  opacity: 0.9;
  margin-bottom: 2rem;
  flex: 1;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-top: auto;
}

.author-avatar-fallback {
  flex-shrink: 0;
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  box-shadow: var(--shadow-sm);
}

.author-meta {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-style: normal;
  font-weight: 600;
  color: var(--foreground);
  font-size: 0.937rem;
}

.author-role {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.125rem;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.slider-control-btn {
  background-color: var(--card);
  border: 1px solid var(--border);
  color: var(--foreground);
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.slider-control-btn:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: var(--primary);
  width: 20px;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 44rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Contact Section */
.contact-section {
  padding: 7rem 0;
  background: var(--gradient-soft);
}

.contact-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-subtitle {
  color: var(--muted-foreground);
  font-size: 1.062rem;
  margin-bottom: 3rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.info-icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background-color: var(--card);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.info-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.info-label {
  font-size: 0.812rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-value {
  font-size: 1.062rem;
  font-weight: 500;
  color: var(--foreground);
}

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

.break-all {
  word-break: break-all;
}

/* Contact Form */
.contact-form-wrapper {
  background-color: var(--card);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-elegant);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.812rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 0.937rem;
  transition: var(--transition);
  outline: none;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  background-color: var(--card);
  box-shadow: 0 0 0 3px rgba(36, 107, 84, 0.1);
}

.form-textarea {
  resize: vertical;
}

/* Footer */
.site-footer {
  background-color: var(--foreground); /* Very dark forest color */
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem 0;
  font-size: 0.937rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1); /* Forces logo to display white */
  align-self: start;
}

.footer-desc {
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--card); /* Pure white */
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a:hover {
  color: var(--card);
  padding-left: 5px;
}

.footer-text-light {
  margin-bottom: 0.5rem;
}

.footer-whatsapp-badge {
  margin-top: 1.5rem;
}

.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--card);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
}

.footer-wa-link:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.wa-icon-small {
  width: 1rem;
  height: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.812rem;
}

.developer-credit {
  opacity: 0.7;
}

/* Floating WhatsApp Button */
.whatsapp-floating-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: inline-flex;
  height: 56px;
  width: 56px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background-color: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-ring 2s infinite;
}

.whatsapp-floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.wa-floating-svg {
  height: 28px;
  width: 28px;
}

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

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

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

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.animate-fade-in-delayed {
  opacity: 0;
  animation: fadeIn 1.2s ease-out 0.6s forwards;
}

.animate-slide-up {
  opacity: 0;
  animation: slideUp 0.8s ease-out 0.2s forwards;
}

.animate-slide-up-delayed {
  opacity: 0;
  animation: slideUp 0.8s ease-out 0.4s forwards;
}

/* Media Queries (Responsive Design) */

@media (max-width: 1024px) {
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-image-wrapper {
    max-width: 25rem;
    margin: 0 auto;
  }
  
  .crp-floating-badge {
    right: -1rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .stat-value {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.875rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .contact-form-wrapper {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding-top: 110px;
    padding-bottom: 60px;
  }
  
  .hero-ctas {
    flex-direction: column;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
}
