/* -------- General Page Styling -------- */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0a0f2c, #09203f, #2c5364);
  color: #fff;
  scroll-behavior: smooth;
}

/* Header */
header {
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
  padding: 0.8rem 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .logo {
  font-size: 1.3rem;
  text-align: center;
  color: #00e5ff;
}
nav {
  text-align: center;
  margin-top: 0.5rem;
}
nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
  font-weight: 500;
  transition: 0.3s;
}
nav a:hover, nav .active {
  color: #00f5d4;
}

/* Hero Section */
#hero {
  text-align: center;
  background: linear-gradient(135deg, #1a2980, #26d0ce);
  color: #fff;
  padding: 3rem 1rem;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.25);
}
#hero h2 {
  font-size: 1.8rem;
}
#hero p {
  font-size: 1rem;
  color: #e0e0e0;
}

/* Currency Selector */
.currency-selector {
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.currency-selector label {
  color: #00f0ff;
  margin-right: 8px;
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 1.6rem;
  color: #00f2fe;
  margin-top: 2rem;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* -------- Service Cards Grid -------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  justify-items: center;
}

/* -------- Individual Cards -------- */
.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1rem;
  text-align: center;
  width: 230px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.4);
}

/* Images inside cards */
.service-card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
}

/* Text in cards */
.service-card h3 {
  font-size: 1rem;
  color: #00e5ff;
  margin: 0.5rem 0;
}
.service-card p {
  font-size: 0.9rem;
  color: #ccc;
  margin: 0.4rem 0;
}
.price {
  color: #00ffb3;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Dropdowns and buttons */
.price-select {
  width: 100%;
  padding: 0.5rem;
  margin: 0.5rem 0;
  border-radius: 8px;
  border: none;
  background: rgba(0, 255, 255, 0.1);
  color: #fff;
  font-size: 0.9rem;
}
.price-select:focus {
  outline: 2px solid #00ffff;
}

/* Buttons */
.add-btn {
  display: inline-block;
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  color: #000;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: 0.3s;
}
.add-btn:hover {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  transform: scale(1.05);
}

/* Basket Popup */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #111;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  z-index: 999;
  transition: transform 0.3s ease-in-out;
  width: 90%;
  max-width: 400px;
  color: #fff;
}
.popup.active {
  transform: translate(-50%, -50%) scale(1);
}
.popup h3 {
  text-align: center;
  color: #00f2fe;
}
.basket-summary {
  text-align: center;
  margin-top: 1rem;
}
.secondary {
  background: #ff4757;
  color: #fff;
}
.close-btn {
  margin-top: 0.8rem;
  background: #333;
  color: #fff;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: #aaa;
  margin-top: 2rem;
}
