@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
    sans-serif;
  padding: 0;
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Navigation Styles */
.navbar {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 255, 254, 0.95) 100%
  );
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 122, 85, 0.1);
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  box-shadow: 0 4px 20px rgba(0, 122, 85, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  height: 80px;
}

/* Brand Logo */
.nav-brand-link {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-brand-link:hover {
  transform: translateY(-1px);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  width: 32px;
  height: 32px;
}

.logo-pixel {
  background: linear-gradient(45deg, #007a55, #10b981);
  border-radius: 3px;
  animation: pixelPulse 2s ease-in-out infinite;
}

.logo-pixel:nth-child(1) {
  animation-delay: 0s;
}
.logo-pixel:nth-child(2) {
  animation-delay: 0.2s;
}
.logo-pixel:nth-child(3) {
  animation-delay: 0.4s;
}
.logo-pixel:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes pixelPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}

.brand-text h1 {
  color: #1a1a1a;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #1a1a1a 0%, #007a55 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
  margin-top: -2px;
  display: block;
  letter-spacing: 0.02em;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.nav-item {
  margin: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a5568;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px 16px;
  border-radius: 10px;
  position: relative;
  background: transparent;
}

.nav-link:hover {
  color: #007a55;
  background: rgba(0, 122, 85, 0.08);
  transform: translateY(-1px);
}

.nav-link.active {
  color: #007a55;
  background: rgba(0, 122, 85, 0.12);
  font-weight: 600;
}

.nav-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.nav-link:hover .nav-icon {
  transform: scale(1.1);
}

/* CTA Button */
.nav-cta {
  display: flex;
  align-items: center;
}

.join-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #007a55 0%, #10b981 100%);
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 122, 85, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 122, 85, 0.4);
  background: linear-gradient(135deg, #008b61 0%, #059669 100%);
}

.join-icon {
  width: 16px;
  height: 16px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.hamburger .bar {
  width: 20px;
  height: 2px;
  background-color: #333;
  margin: 2px 0;
  transition: 0.3s;
}

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

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

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

.header {
  text-align: center;
  margin-bottom: 20px;
}

.header h1 {
  color: #1a1a1a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.header p {
  color: #6b7280;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
}

.canvas-container {
  display: flex;
  justify-content: center;
  margin: 20px auto;
  max-width: 100%;
  padding: 0 20px;
}

.pixel-canvas {
  display: grid;
  grid-template-columns: repeat(100, 1fr);
  grid-template-rows: repeat(100, 1fr);
  width: 1000px;
  height: 1000px;
  max-width: 1000px;
  max-height: 1000px;
  background-color: white;
  gap: 0;
  position: relative;
}

.pixel-block {
  width: 100%;
  height: 100%;
  background-color: #f9fafb;
  border: 1px solid #edeef0;
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
}

.pixel-block:hover {
  border-color: #007a55;
  border-width: 2px;
  z-index: 10;
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pixel-block.logo {
  background-image: url('images/logo.jpg');
  background-repeat: no-repeat;
  border: none;
}

/* Image container styles for object-fit cover images */
.image-container {
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
}

.image-container:hover {
  transform: scale(2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.image-container img {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container:hover img {
  transform: scale(1.05);
}

/* Block info on page side */
.block-info-top {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1000;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(-50%) translateX(100%);
  min-width: 200px;
}

.block-info-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.block-info-text {
  font-size: 0.95rem;
  color: #4a5568;
  font-weight: 500;
  text-align: left;
  line-height: 1.5;
}

.block-info-text strong {
  color: #1a1a1a;
  font-weight: 600;
}

.block-info-text .status {
  font-weight: 600;
}

.block-info-text .status.available {
  color: #10b981;
}

.block-info-text .status.unavailable {
  color: #ef4444;
}

/* Legacy info box - keeping for backward compatibility but hidden */
.info-box {
  display: none;
}

.info-box.visible {
  opacity: 1;
  visibility: visible;
}

.info-box h3 {
  margin: 0 0 12px 0;
  color: #1a1a1a;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.info-box p {
  margin: 6px 0;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 400;
}

.info-box .status {
  font-weight: bold;
}

.info-box .status.available {
  color: #28a745;
}

.info-box .status.unavailable {
  color: #dc3545;
}

/* Loading screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.section-container-special {
  flex-direction: column;
}

.section-container-special .image-content {
  height: 300px !important;
  width: 100% !important;
}
.section-container-special img {
  height: 300px !important;
  width: 100% !important;
  object-fit: cover;
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Pixel Grid Animation */
.pixel-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 4px;
  padding: 20px;
  margin-bottom: 20px;
}

.pixel-item {
  width: 20px;
  height: 20px;
  background: #007a55;
  border-radius: 3px;
  opacity: 0;
  transform: scale(0) rotate(45deg);
  animation: pixelAppear 0.6s ease-out forwards;
  box-shadow: 0 2px 8px rgba(0, 122, 85, 0.3);
}

.pixel-item:nth-child(odd) {
  background: linear-gradient(45deg, #007a55, #10b981);
}

.pixel-item:nth-child(even) {
  background: linear-gradient(45deg, #10b981, #34d399);
}

@keyframes pixelAppear {
  0% {
    opacity: 0;
    transform: scale(0) rotate(45deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* Loading Text */
.loading-text {
  text-align: center;
  margin-bottom: 30px;
}

.loading-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  opacity: 0;
  animation: titleFadeIn 1s ease-out 0.25s forwards;
  letter-spacing: -0.02em;
}

.loading-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  animation: subtitleFadeIn 1s ease-out 0.5s forwards;
}

.loading-message {
  font-size: 1.1rem;
  font-weight: 400;
  color: #6b7280;
}

/* Loading Dots Animation */
.loading-dots {
  display: flex;
  gap: 4px;
}

.dot {
  width: 6px;
  height: 6px;
  background: #007a55;
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}

.dot:nth-child(1) {
  animation-delay: 0s;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotPulse {
  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Progress Bar */
.loading-progress {
  width: 300px;
  text-align: center;
  opacity: 0;
  animation: progressFadeIn 1s ease-out 0.75s forwards;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #007a55, #10b981, #34d399);
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s ease;
  animation: progressPulse 2s ease-in-out infinite;
}

.progress-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4b5563;
}

@keyframes progressPulse {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(0, 122, 85, 0.3);
  }
  50% {
    box-shadow: 0 0 15px rgba(0, 122, 85, 0.6);
  }
}

/* Fade-in animations */
@keyframes titleFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .loading-title {
    font-size: 1.8rem;
  }

  .loading-message {
    font-size: 1rem;
  }

  .pixel-grid {
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 3px;
  }

  .pixel-item {
    width: 16px;
    height: 16px;
  }

  .loading-progress {
    width: 250px;
  }
}

@media (max-width: 480px) {
  .loading-title {
    font-size: 1.5rem;
  }

  .pixel-grid {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 2px;
  }

  .pixel-item {
    width: 14px;
    height: 14px;
  }

  .loading-progress {
    width: 200px;
  }
}

/* Main content - initially hidden */
.main-content {
  opacity: 0;
  transition: opacity 0.5s ease;
  padding-top: 90px;
}

.main-content.visible {
  opacity: 1;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 20px;
  }

  .nav-menu {
    gap: 30px;
  }

  .footer-container {
    padding: 0 20px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
    height: 70px;
  }

  .brand-text h1 {
    font-size: 1.2rem;
  }

  .brand-tagline {
    font-size: 0.7rem;
  }

  .logo-grid {
    width: 28px;
    height: 28px;
  }

  .nav-menu {
    gap: 4px;
  }

  .nav-link {
    font-size: 0.85rem;
    padding: 10px 12px;
  }

  .nav-icon {
    width: 16px;
    height: 16px;
  }

  .nav-cta {
    display: none;
  }

  .main-content {
    padding-top: 80px;
  }

  .canvas-container {
    padding: 0 10px;
    margin: 15px auto;
  }

  .pixel-canvas {
    width: 95vmin;
    height: 95vmin;
  }

  .block-info-top {
    right: 15px;
    padding: 14px 18px;
    min-width: 190px;
  }

  .block-info-text {
    font-size: 0.9rem;
  }

  /* Footer Mobile */
  .footer-container {
    padding: 40px 20px 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 25px;
  }

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

  .footer-logo {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

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

  .footer-brand-text h3 {
    font-size: 1.3rem;
  }

  .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
  }

  .footer-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .social-links {
    justify-content: center;
    gap: 16px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .nav-container {
    padding: 0 15px;
    height: 65px;
  }

  .brand-logo {
    gap: 12px;
  }

  .brand-text h1 {
    font-size: 1rem;
  }

  .brand-tagline {
    display: none;
  }

  .logo-grid {
    width: 24px;
    height: 24px;
  }

  .hamburger {
    display: flex;
    z-index: 1003;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 65px;
    flex-direction: column;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(248, 255, 254, 0.95) 100%
    );
    backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 40px rgba(0, 122, 85, 0.1);
    padding: 30px 0;
    gap: 8px;
    border-top: 1px solid rgba(0, 122, 85, 0.1);
  }

  .nav-menu.active {
    left: 0;
    z-index: 1002;
  }

  .nav-item {
    margin: 8px 20px;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 16px 20px;
    display: flex;
    justify-content: center;
    border-radius: 12px;
    background: transparent;
    width: 100%;
  }

  .nav-link:hover {
    background: rgba(0, 122, 85, 0.08);
  }

  .main-content {
    padding-top: 75px;
  }

  .canvas-container {
    padding: 0 5px;
    margin: 10px auto;
  }

  .pixel-canvas {
    width: 98vmin;
    height: 98vmin;
  }

  .block-info-top {
    right: 10px;
    padding: 12px 16px;
    min-width: 180px;
  }

  .block-info-text {
    font-size: 0.85rem;
  }

  /* Footer Small Mobile */
  .footer-container {
    padding: 30px 15px 15px;
  }

  .footer-main {
    gap: 25px;
    margin-bottom: 20px;
  }

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

  .footer-logo {
    gap: 10px;
  }

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

  .footer-logo-grid {
    width: 40px;
    height: 28px;
  }

  .footer-brand-text h3 {
    font-size: 1.2rem;
  }

  .footer-brand-text p {
    font-size: 0.9rem;
  }

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

  .footer-section h4 {
    font-size: 0.95rem;
    margin-bottom: 14px;
    text-align: center;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    gap: 16px;
    padding-top: 16px;
  }

  .footer-stats {
    gap: 16px;
    justify-content: center;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .footer-legal p {
    font-size: 0.8rem;
    text-align: center;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }

  .footer-contact-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f2027 100%);
  color: #f8fafc;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

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

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 30px 30px;
  position: relative;
}

/* Footer Main Content */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 25px;
}

/* Improved responsive layout for footer main */
@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Brand Section */
.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

/* Responsive footer logo adjustments */
@media (max-width: 992px) {
  .footer-logo {
    align-items: center;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-brand {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .footer-logo {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

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

.footer-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  width: 48px;
  height: 32px;
  flex-shrink: 0;
}

.footer-pixel {
  background: linear-gradient(45deg, #007a55, #10b981);
  border-radius: 4px;
  animation: footerPixelGlow 3s ease-in-out infinite;
}

.footer-pixel:nth-child(1) {
  animation-delay: 0s;
}
.footer-pixel:nth-child(2) {
  animation-delay: 0.3s;
}
.footer-pixel:nth-child(3) {
  animation-delay: 0.6s;
}
.footer-pixel:nth-child(4) {
  animation-delay: 0.9s;
}
.footer-pixel:nth-child(5) {
  animation-delay: 1.2s;
}
.footer-pixel:nth-child(6) {
  animation-delay: 1.5s;
}

@keyframes footerPixelGlow {
  0%,
  100% {
    opacity: 0.8;
    box-shadow: 0 0 5px rgba(16, 185, 129, 0.3);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.6);
  }
}

.footer-brand-text h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-brand-text p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Footer Sections */
.footer-section h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  color: #10b981;
  padding-left: 8px;
  transform: translateX(4px);
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #10b981;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
  opacity: 1;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

/* Responsive social links adjustments */
@media (max-width: 992px) {
  .social-links {
    gap: 14px;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .social-links {
    justify-content: center;
    gap: 12px;
  }
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: #10b981;
  color: #10b981;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Footer Contact Button */
.footer-contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #007a55 0%, #10b981 100%);
  color: white;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 122, 85, 0.3);
  background: linear-gradient(135deg, #008b61 0%, #059669 100%);
}

.contact-icon {
  width: 16px;
  height: 16px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-stats {
  display: flex;
  gap: 40px;
}

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

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #10b981;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}

.stat-label {
  font-size: 0.8rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.footer-legal p {
  color: #64748b;
  font-size: 0.85rem;
  margin: 0;
}
