body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #111;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo img {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #2e7d32;
}

.menu-toggle {
  display: none;
  background: none;
  font-size: 1.8rem;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    width: 70%;
    padding: 1rem 2rem;
    gap: 1.2rem;
    height: 100%;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
  }

  .nav-links.open {
    right: 0;
  }
}

/* Additional shared styles for layout */
main {
  padding: 2rem 1rem;
}

.greeting {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .greeting {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.service-card {
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  background-color: #f9f9f9;
}

.service-emoji {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

.service-text {
  font-weight: 600;
  font-size: 1rem;
  color: #222;
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.2rem;
  }

  .service-emoji {
    font-size: 1.6rem;
  }

  .service-text {
    font-size: 0.95rem;
  }
}

.discord-box {
  max-width: 500px;
  background: white;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 3rem auto;
}

.discord-box:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

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

.coming-soon {
  text-align: center;
  padding: 6rem 1.5rem;
}

.coming-soon h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.coming-soon p {
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

main {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.pricing h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #111;
}

.card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease;
  flex: 0 1 280px;
}

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

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.price {
  margin: 0;
  font-size: 1.1rem;
  color: #2e7d32;
  font-weight: bold;
}

.notice {
  margin-top: 3rem;
  text-align: center;
  font-size: 1rem;
  color: #444;
}

.notice a {
  color: #2e7d32;
  text-decoration: none;
  font-weight: 600;
}

.notice a:hover {
  text-decoration: underline;
}

@media(max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 0.75rem;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing h1 {
    font-size: 1.75rem;
  }
}

    .contact-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      max-width: 600px;
      margin: 0 auto;
      padding: 2rem;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(6px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    }

    .contact-card {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 1.2rem;
      width: 100%;
      background: white;
      padding: 1rem 1.5rem;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      transition: transform 0.2s ease;
    }

    .contact-card:hover {
      transform: translateY(-3px);
    }

    .contact-icon {
      font-size: 1.8rem;
    }

    .coming-soon {
      color: #888;
      font-style: italic;
    }

    @media (max-width: 600px) {
      .contact-card {
        flex-direction: column;
        align-items: flex-start;
        font-size: 1rem;
      }

      .contact-icon {
        font-size: 1.5rem;
      }
    }







form#pcBuildForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  max-width: 600px;
  margin: 2rem auto;
}

form label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

form input {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.popup-btn {
  display: block;
  margin: 2rem auto;
  padding: 0.75rem 1.5rem;
  background-color: #eeeeee;
  color: #222;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.popup-btn:hover {
  background-color: #256428;
}

.success {
  display: none;
  margin-top: 1rem;
  color: green;
  font-weight: 600;
  text-align: center;
}

/* Popup styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0,0,0,0.4);
  z-index: 1000;
}

.popup-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  max-width: 800px;
  width: 90%;
  position: relative;
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

.card {
  flex: 1 1 200px;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.card .emoji {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.card .title {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.card .desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.card .price {
  font-weight: 600;
  color: #2e7d32;
}







/* Center the form title */
.form-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #111;
}

/* Clean up the form styling */
#pcBuildForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

/* Uniform input styling */
#pcBuildForm input {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 12px;
  outline: none;
  transition: border 0.2s;
}

#pcBuildForm input:focus {
  border-color: #2e7d32;
}

/* Buttons: grouped and styled */
.popup-btn {
  padding: 0.75rem 1.2rem;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
  background-color: #2e7d32;
  color: white;
}

.popup-btn:hover {
  background-color: #256529;
}

.popup-btn.secondary {
  background-color: #eeeeee;
  color: #222;
  margin-top: 0.5rem;
}

.popup-btn.secondary:hover {
  background-color: #dddddd;
}

/* Success message */
.success {
  display: none;
  text-align: center;
  color: green;
  font-weight: bold;
  margin-top: 1rem;
}

.button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
}


/* Navbar: Desktop */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Nav Links (Desktop) */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #2e7d32;
}

/* Hide the mobile menu on desktop */
.menu-toggle {
  display: none;
}

/* Mobile View */
@media (max-width: 768px) {
  /* Show the menu toggle button */
  .menu-toggle {
    display: block;
  }

  /* Position and style the mobile nav links */
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%; /* Initially off-screen */
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    width: 70%;
    padding: 1rem 2rem;
    gap: 1.2rem;
    height: 100%;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }

  /* When menu is open, bring the nav links in */
  .nav-links.open {
    right: 0;
  }
}


.popup-btn.nosutit {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  background-color: #eeeeee; /* Gray background like the Check Prices button */
  color: #222; /* Dark text */
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.popup-btn.nosutit:hover {
  background-color: #dddddd; /* Lighter gray on hover */
}


/* before the shit update */
/* Fullscreen Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.show {
  display: flex;
  opacity: 1;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links li a {
  text-decoration: none;
  font-size: 1.5rem;
  color: #111;
  font-weight: 600;
  transition: color 0.2s;
}

.mobile-nav-links li a:hover {
  color: #2e7d32;
}

.close-menu {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

/* Only show toggle on small screens */
.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
  }

  .nav-links {
    display: none;
  }
}

.mobile-nav-links li {
  opacity: 0;
  transform: translateY(10px);
  animation: slideUpFade 0.4s ease forwards;
}

.mobile-nav-links li:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-links li:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-links li:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-links li:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav-links li:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-menu {
  animation: pulseIdle 2s ease-in-out infinite;
  display: inline-block;
  transition: transform 0.3s ease;
}

@keyframes pulseIdle {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(1.05);
  }
}


/* kontakti update */



/* --- CONTACT PAGE STYLING --- */
.contact-section {
  text-align: center;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
}

.contact-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  animation: fadeIn 0.6s ease;
  color: #111;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-list li {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: fadeInUp 0.6s ease both;
  transition: all 0.3s ease;
}

.contact-list a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.contact-list a:hover {
  text-decoration: underline;
}

.emoji {
  font-size: 1.4rem;
  animation: pulse 1.8s infinite ease-in-out;
}

.soon {
  font-style: italic;
  color: #888;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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




/* WELCOME UPDATE */ 

#welcome-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

#fireworks-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
}

#welcome-message {
  color: white;
  font-size: 2rem;
  text-align: center;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 2s ease-in-out forwards;
}

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


/* cenas update */

/* Improve desktop card layout */
@media (min-width: 769px) {
  .card-wrapper {
    max-width: 900px;
    margin: 0 auto;
  }

  .card {
    flex: 1 1 calc(33% - 1.5rem);
    max-width: 260px;
  }
}

/* Glow effect on hover */
.card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 20px rgba(46, 125, 50, 0.2);
  background: #f9fdf9;
}

/* LOGO UPDATE */

/* Mobile-specific logo size */
@media (max-width: 768px) {
  .navbar .logo img {
    height: 60px; /* You can tweak this value */
  }
}

/* Disable blue tap highlight on mobile */
.contact-card {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

body, .contact-card {
  -webkit-tap-highlight-color: rgba(0,0,0,0); /* iOS Safari */
  -webkit-touch-callout: none; /* Disable callout on long press */
  user-select: none; /* Prevent text selection while tapping */
  outline: none;
}


@media (max-width: 768px) {
  .navbar {
    position: static;
  }
}



/* PC SALE UPDATE */

.pc-build {
  max-width: 350px;
  background: white;
  margin: 2rem auto;
  padding: 1.2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.pc-image {
  max-width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.8rem;
}

.pc-title {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 0.3rem;
}

.pc-description {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.pc-specs {
  text-align: left;
  padding-left: 1.2rem;
  font-size: 0.85rem;
  color: #374151;
  margin-bottom: 1rem;
  list-style: disc;
}

.pc-price {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
}

.yt-link {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
}

.yt-link:hover {
  text-decoration: underline;
}

/* ✅ RESPONSIVE GRID FOR MULTIPLE PC BUILDS */

.pc-build-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ✅ CARD REFINEMENT FOR 4-PER-ROW LAYOUT */

.pc-build-card {
  flex: 1 1 250px;
  max-width: 260px;
  background: white;
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pc-build-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pc-build-img {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.8rem;
}

.pc-build-title {
  font-size: 1.4rem;
  color: #1f2937;
  margin-bottom: 0.4rem;
}

.pc-build-desc {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.8rem;
}

.pc-build-list {
  text-align: left;
  padding-left: 1.2rem;
  font-size: 0.85rem;
  color: #374151;
  margin-bottom: 1rem;
}

.pc-build-price {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.pc-build-yt {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: #3b82f6;
  font-weight: 500;
  text-decoration: none;
}

.pc-build-yt:hover {
  text-decoration: underline;
}

.pc-build-card {
  text-decoration: none;
  color: inherit;
}
.pc-build-yt {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  text-decoration: none;
  color: #6366f1;
  font-weight: 500;
  transition: color 0.2s;
}

.pc-build-yt:hover {
  color: #4338ca;
  text-decoration: underline;
}

.pc-build-order-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.pc-build-order-link:hover {
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
  border-radius: 1rem;
}

.pc-build-content {
  padding: 1rem;
}

.pc-build-card a {
  color: inherit;
  text-decoration: none;
}

.pc-build-yt {
  display: block;
  margin-top: 0.5rem;
  text-align: center;
  font-weight: 500;
  color: #6b7280;
  transition: color 0.3s ease;
}

.pc-build-yt:hover {
  color: #374151;
}

.service-card-link {
  text-decoration: none;
  color: inherit;
}

.service-card-link:visited,
.service-card-link:hover,
.service-card-link:active {
  text-decoration: none;
  color: inherit;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  padding: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

.service-card-link {
  text-decoration: none;
  color: inherit;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 250px;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card div {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin: 0;
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px 20px;
}

.service-card-link {
  text-decoration: none;
  color: inherit;
  flex: 1 1 calc(25% - 40px); /* 4 per row max, minus gap */
  max-width: 260px;
  min-width: 220px;
  display: flex;
  justify-content: center;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card div {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin: 0;
}
@media (max-width: 768px) {
  .service-card-link {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .service-grid {
    gap: 15px;
    padding: 20px;
  }

  .service-card {
    padding: 20px 15px;
  }
}
@media (max-width: 768px) {
  .service-card-link {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .service-grid {
    gap: 15px;
    padding: 20px;
  }

  .service-card {
    padding: 20px 15px;
  }
}
@media (max-width: 768px) {
  .service-card-link {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .service-grid {
    gap: 15px;
    padding: 20px;
  }

  .service-card {
    padding: 20px 15px;
  }
}



.service-card {
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  text-align: center;
}
.service-card div {
  font-size: 2.2rem;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.service-card:hover div {
  transform: scale(1.1);
}
.service-card p {
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
  margin: 0;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.12),
    0 4px 6px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 240px;
  text-align: center;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ff4d4f;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  padding: 4px 8px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 5;
}





.card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #e0f7fa, #ffffff);
  color: #333;
  font-size: 0.95rem;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
  border: 1px solid #d0e0e3;
}
.card-back a {
  color: #00796b;
  font-weight: 600;
  text-decoration: none;
}
.card-back a:hover {
  text-decoration: underline;
}


.frameless-contact {
  max-width: 700px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  font-family: 'Inter', sans-serif;
}

.frameless-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.frameless-contact li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 1rem;
  animation: fadeInUp 0.6s ease both;
  transition: color 0.3s ease;
}

.frameless-contact .emoji {
  font-size: 2rem;
  margin-bottom: 0.4rem;
  animation: pulse 2s ease-in-out infinite;
}

.frameless-contact .label {
  font-weight: 600;
  color: #111;
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.frameless-contact a {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.frameless-contact a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.frameless-contact .soon {
  color: #888;
  font-style: italic;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive tweak */
@media (max-width: 600px) {
  .frameless-contact li {
    font-size: 0.95rem;
  }
}

.emoji-rain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.1;
}

.emoji-drop {
  position: absolute;
  top: -2rem;
  animation-name: drop;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

@keyframes drop {
  0% {
    transform: translateY(0);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh);
    opacity: 0;
  }
}
.emoji-rain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.08;
}

.emoji-drop {
  position: absolute;
  top: -2rem;
  animation-name: drop;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

@keyframes drop {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(110vh);
  }
}
