/* CODIRA Website - CSS Styles */
/* Converted from React + Tailwind to Pure CSS */

/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ========== UTILITY CLASSES ========== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

/* ========== NAVBAR ========== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

#navbar .nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-3d {
  width: 64px;
  height: 64px;
  position: relative;
  perspective: 1000px;
  transition: transform 0.5s ease;
}

.logo-3d:hover {
  transform: scale(1.25) rotate(12deg);
}

.logo-3d .logo-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #3b82f6, #8b5cf6, #ec4899, #10b981, #3b82f6);
  background-size: 400% 400%;
  border-radius: 1rem;
  filter: blur(20px);
  opacity: 0.7;
  animation: spin-slow 20s linear infinite, pulse 2s ease-in-out infinite;
}

.logo-3d .logo-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  padding: 0.375rem;
  transform: rotateX(8deg) rotateY(-8deg);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15), 0 15px 30px rgba(99, 102, 241, 0.25);
}

.logo-3d img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.1) saturate(1.2);
  animation: rainbow-glow 5s ease-in-out infinite;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 25%, #ec4899 50%, #10b981 75%, #3b82f6 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 8s linear infinite;
  text-shadow: 0 2px 20px rgba(99, 102, 241, 0.4);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: #475569;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #0891b2;
}

.nav-link.blue:hover { color: #3b82f6; }
.nav-link.purple:hover { color: #8b5cf6; }
.nav-link.cyan:hover { color: #06b6d4; }
.nav-link.green:hover { color: #10b981; }
.nav-link.orange:hover { color: #f97316; }

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: #475569;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(to right, #3b82f6, #8b5cf6, #06b6d4);
  background-size: 200% auto;
  color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  animation: gradient-shift 8s linear infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  border: 2px solid currentColor;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.btn-outline:hover {
  background: rgba(0, 0, 0, 0.05);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* ========== HERO SECTION ========== */
#hero {
  position: relative;
  padding: 8rem 1rem 5rem;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #eff6ff, #f5f3ff, #ecfeff);
  opacity: 0.7;
}

.hero-animated-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1), rgba(34, 197, 94, 0.1));
  background-size: 400% 400%;
  animation: gradient-shift 8s ease infinite;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  mix-blend-mode: multiply;
  animation: pulse-scale 3s ease-in-out infinite;
}

.hero-orb-1 {
  top: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: linear-gradient(to bottom right, #a78bfa, #ec4899, #06b6d4);
  opacity: 0.5;
}

.hero-orb-2 {
  bottom: 5rem;
  left: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: linear-gradient(to bottom right, #fbbf24, #f97316, #ef4444);
  opacity: 0.5;
  animation-delay: 1.5s;
}

.hero-orb-3 {
  top: 50%;
  left: 50%;
  width: 24rem;
  height: 24rem;
  background: linear-gradient(to bottom right, #10b981, #14b8a6, #06b6d4);
  opacity: 0.4;
  animation-delay: 3s;
  transform: translate(-50%, -50%);
}

/* Floating Logo Decorations */
.floating-logo {
  position: absolute;
  animation: float-3d 8s ease-in-out infinite;
  opacity: 0.3;
}

.floating-logo-large {
  top: 8rem;
  right: 8rem;
  width: 10rem;
  height: 10rem;
}

.floating-logo-small {
  bottom: 10rem;
  left: 5rem;
  width: 6rem;
  height: 6rem;
  animation-delay: 2s;
  animation-duration: 10s;
}

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

@keyframes rainbow-glow {
  0% { filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5)); }
  25% { filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5)); }
  50% { filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.5)); }
  75% { filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.5)); }
  100% { filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5)); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

@keyframes float-3d {
  0%, 100% { transform: rotateX(20deg) rotateY(-20deg) translateY(0px); }
  50% { transform: rotateX(25deg) rotateY(-25deg) translateY(-20px); }
}

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

.animate-fade-in {
  animation: fade-in-up 0.8s ease-out;
}

/* ========== CARDS ========== */
.card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

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

/* ========== SECTIONS ========== */
section {
  padding: 5rem 1rem;
  position: relative;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0f172a;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  #hero {
    padding: 6rem 1rem 3rem;
  }
  
  .hero-orb {
    width: 16rem !important;
    height: 16rem !important;
  }
  
  .floating-logo-large,
  .floating-logo-small {
    display: none;
  }
}

/* ========== SHIMMER EFFECT ========== */
.shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer-slide 3s infinite;
}

@keyframes shimmer-slide {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ========== SCROLL STYLES ========== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #14b8a6;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0d9488;
}

/* ========== TOAST NOTIFICATION ========== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
  animation: slide-in-bottom 0.3s ease;
}

.toast.show {
  display: block;
}

.toast.success {
  border-left: 4px solid #10b981;
}

.toast.error {
  border-left: 4px solid #ef4444;
}

@keyframes slide-in-bottom {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ========== GRADIENT UTILITIES ========== */
.gradient-text {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-blue {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.gradient-purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.gradient-green {
  background: linear-gradient(135deg, #10b981, #14b8a6);
}

.gradient-orange {
  background: linear-gradient(135deg, #f97316, #fb923c);
}

.gradient-red {
  background: linear-gradient(135deg, #ef4444, #f87171);
}

.gradient-yellow {
  background: linear-gradient(135deg, #fbbf24, #f97316);
}

.gradient-cyan {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.gradient-pink {
  background: linear-gradient(135deg, #ec4899, #f472b6);
}

.gradient-emerald {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.gradient-indigo {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
}

.gradient-violet {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.gradient-teal {
  background: linear-gradient(135deg, #14b8a6, #06b6d4);
}

/* ========== REPORTS SECTION ========== */
.reports-section {
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  padding: 5rem 1rem;
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 48rem;
  margin: 0 auto;
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.report-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
}

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

.report-header {
  text-align: center;
  margin-bottom: 2rem;
}

.report-icon {
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
}

.report-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.report-description {
  color: #64748b;
  line-height: 1.6;
}

.report-diagram {
height: auto; /* Tidak fixed 200px lagi */
min-height: 300px; /* Minimum height untuk konsistensi */
}

.report-diagram .diagram-img {
width: 100%;
height: auto; /* Maintain aspect ratio asli */
object-fit: contain; /* Tidak crop, tampilkan full */
background: #f8fafc; /* Background putih */
border: 1px solid #e2e8f0;
}

.diagram-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.diagram-label {
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
}

.report-categories {
  margin-bottom: 2rem;
}

.category-accordion {
  margin-bottom: 1rem;
}

.accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  overflow: hidden;
  background: white;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f8fafc;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-trigger:hover {
  background: #f1f5f9;
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.accordion-header .icon {
  color: #0891b2;
}

.category-name {
  font-weight: 600;
  color: #0f172a;
  font-size: 1rem;
}

.accordion-icon {
  font-size: 1.5rem;
  color: #64748b;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  display: none;
  padding: 1rem;
  background: white;
}

.category-item {
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  background: #f8fafc;
  border-radius: 0.375rem;
  border-left: 3px solid #0891b2;
}

.category-item:last-child {
  margin-bottom: 0;
}

.category-item strong {
  color: #0f172a;
  display: block;
  margin-bottom: 0.25rem;
}

.category-item small {
  color: #64748b;
  line-height: 1.5;
}

.report-benefits {
  background: linear-gradient(135deg, #eff6ff, #f0f9ff);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 2px solid #dbeafe;
}

.benefits-title {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 0.5rem 0;
  color: #475569;
  line-height: 1.6;
}

/* ========== CLIENTS SECTION ========== */
.clients-section {
  background: white;
  padding: 5rem 1rem;
}

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

.client-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.client-card:hover {
  transform: translateY(-8px);
}

.client-logo {
  width: 150px;
  height: 150px;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.client-card:hover .client-logo {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%);
  transition: filter 0.3s ease;
}

.client-card:hover .client-logo img {
  filter: grayscale(0%);
}

.client-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.client-card:hover .client-overlay {
  opacity: 1;
}

.client-name {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-top: 0.75rem;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
  padding: 5rem 1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
}

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

.stars {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.testimonial-text {
  color: #475569;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 700;
  color: #0f172a;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.author-position {
  color: #64748b;
  font-size: 0.875rem;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  background: white;
  padding: 5rem 1rem;
}

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

.contact-info {
  padding: 2rem;
}

.contact-info-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.contact-info-text {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 2rem;
}

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

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

.method-icon {
  width: 50px;
  height: 50px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.method-content {
  flex: 1;
}

.method-title {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.method-value {
  color: #64748b;
  margin-bottom: 0.5rem;
}

.whatsapp-btn,
.email-link {
  display: inline-block;
  color: #0891b2;
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.whatsapp-btn:hover,
.email-link:hover {
  color: #0e7490;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-4px);
}

/* Contact Form */
.contact-form-wrapper {
  background: linear-gradient(135deg, #eff6ff, #f0f9ff);
  padding: 2.5rem;
  border-radius: 1rem;
  border: 2px solid #dbeafe;
}

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

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

.form-label {
  font-weight: 600;
  color: #0f172a;
  font-size: 0.875rem;
}

.form-input,
.form-textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #cbd5e1;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #0891b2;
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-block {
  width: 100%;
}

/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #cbd5e1;
  padding: 4rem 1rem 2rem;
}

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

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 0.75rem;
  padding: 0.5rem;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-description {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: #0891b2;
  transform: translateY(-4px);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #94a3b8;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #0891b2;
}

.footer-contact {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
}

.footer-contact svg {
  color: #0891b2;
  flex-shrink: 0;
}

.footer-contact a {
  color: #94a3b8;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #0891b2;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #334155;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: #94a3b8;
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-links a {
  color: #94a3b8;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #0891b2;
}

.separator {
  color: #475569;
}

/* ========== FADE IN ELEMENTS ========== */
.fade-in-element {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .reports-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .clients-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
