/* Base Styles */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
body {
  background-color: #FFFFFF;
  color: #1A1A1A;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background-color: #0ef0c8; color: #0d3443; }

/* Cursor */
@media (pointer: fine) {
  .cursor-dot {
    width: 6px; height: 6px; background: #0ef0c8;
    border-radius: 50%; position: fixed; top: 0; left: 0;
    transform: translate(-50%, -50%); pointer-events: none; z-index: 9999;
  }
  .cursor-circle {
    width: 40px; height: 40px; border: 1px solid rgba(13, 52, 67, 0.2);
    border-radius: 50%; position: fixed; top: 0; left: 0;
    transform: translate(-50%, -50%); pointer-events: none; z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
  }
  body.hover-active .cursor-circle {
    width: 60px; height: 60px;
    background-color: rgba(14, 240, 200, 0.1);
    border-color: #0ef0c8;
  }
}

/* Glassmorphism */
.glass-panel {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Slider Transitions */
.slide-image { opacity: 0; transition: opacity 1.5s ease-in-out; }
.slide-image.active { opacity: 0.4; }

/* Ceramic Curve Styles */
.ceramic-container {
  box-shadow: 20px 20px 60px #040c11, -20px -20px 60px #06141b;
}

/* Services Hover */
.service-card:hover h3, .service-card:hover p, .service-card:hover li, .service-card:hover span, .service-card:hover div, .service-card:hover i {
  color: white;
  border-color: rgba(255,255,255,0.2);
}
.service-card:hover .service-icon {
  color: #0ef0c8 !important;
}
.service-card:hover .check-icon {
  background-color: #0ef0c8;
  color: #0d3443;
}

/* Smooth Fade In utility */
.fade-enter-active {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 16, 22, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: white;
  border-radius: 2rem;
  padding: 0;
  max-width: 480px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

/* Fix scrolling */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Navigation adjustments */
  nav {
    top: 1rem !important;
    padding: 0 1rem !important;
  }
  
  nav .glass-panel {
    padding: 0.5rem 1rem !important;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  nav .glass-panel > div:first-child {
    margin-right: 0.5rem;
  }
  
  nav button {
    padding: 0.5rem 1rem !important;
    font-size: 0.7rem !important;
  }
  
  /* Hero section */
  section.min-h-screen {
    padding-top: 6rem !important;
    padding-bottom: 2rem !important;
  }
  
  .ceramic-container {
    flex-direction: column !important;
    min-height: auto !important;
    padding: 1.5rem !important;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
  }
  
  h2 {
    font-size: 2rem !important;
  }
  
  /* Grid adjustments */
  .grid {
    gap: 1.5rem !important;
  }
  
  /* Service cards */
  .service-card {
    padding: 1.5rem !important;
  }
  
  /* Footer adjustments */
  footer {
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
  }
  
  footer .container {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  
  /* Modal adjustments */
  .modal-content {
    width: 95% !important;
    max-height: 90vh;
    padding: 1.5rem !important;
  }
  
  /* Button sizes */
  button {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.875rem !important;
  }
  
  /* Input fields */
  input, textarea {
    font-size: 16px !important; /* Prevents zoom on iOS */
  }
  
  /* Pricing cards */
  #pricing .grid {
    grid-template-columns: 1fr !important;
  }
  
  /* FAQ section */
  #faq .space-y-6 > div {
    padding: 1rem !important;
  }
}

/* Tablet responsive styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .ceramic-container {
    padding: 2rem !important;
  }
  
  h1 {
    font-size: 3.5rem !important;
  }
  
  #pricing .grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}


