/* ==========================================
   SERVICES PAGE – LUXURY INTERACTIVE FLOW
   ========================================== */

.services-hero {
  padding: 80px 0 60px;
  background: #f8f8f8;
}

.services-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: #777;
  margin-bottom: 10px;
}

.services-title {
  font-size: 38px;
  margin-bottom: 12px;
}

.services-subtitle {
  max-width: 640px;
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
}

.services-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.services-hero-point {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.services-hero-point h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.services-hero-point p {
  font-size: 13px;
  color: #555;
}

.services-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 999px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}

.services-cta-btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

/* ===== OVERVIEW CARDS ===== */

.services-overview {
  padding: 50px 0 40px;
  background: #ffffff;
}

.services-overview-title {
  font-size: 28px;
  margin-bottom: 24px;
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.services-card {
  border-radius: 14px;
  border: 1px solid #eee;
  padding: 18px 20px;
  background: #fafafa;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.services-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.services-card p {
  font-size: 13px;
  color: #555;
}

/* ===== ZIP CHECKER ===== */

.services-zip {
  padding: 60px 0;
  background: #f6f6f6;
}

.zip-title {
  font-size: 26px;
  margin-bottom: 6px;
}

.zip-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.zip-checker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.zip-input {
  flex: 0 0 160px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid #ccc;
  font-size: 14px;
  outline: none;
}

.zip-input:focus {
  border-color: #000;
}

.zip-btn {
  padding: 10px 24px;
  border-radius: 999px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.zip-btn:hover {
  background: #333;
}

.zip-message {
  min-height: 20px;
  font-size: 13px;
  margin-bottom: 16px;
}

.zip-message.success {
  color: #0a7b3d;
}

.zip-message.info {
  color: #555;
}

.zip-message.error {
  color: #b00020;
}

/* ===== INTERACTIVE AREA ===== */

.services-interactive {
  margin-top: 18px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(6px);
}

.services-interactive.hidden {
  display: none;
}

.services-interactive.ready {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.service-step-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #777;
  margin-bottom: 14px;
}

/* White glass selector cards */
.service-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.service-card {
  flex: 1 1 0;
  min-width: 200px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  padding: 12px 18px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: all 0.25s ease;
}

.service-card-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card-text {
  font-size: 11px;
  color: #666;
}

.service-card:hover {
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}

.service-card.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* Dark sliding panels */
.service-panel {
  background: radial-gradient(circle at top, #191919 0%, #101010 60%, #050505 100%);
  border-radius: 16px;
  border: 1px solid #262626;
  box-shadow: 0 18px 40px rgba(0,0,0,0.75);
  color: #f5f5f5;
  padding: 20px 22px 18px;
  margin-top: 6px;
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease;
}

.service-panel.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  max-height: 1000px;
}

.service-panel h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.service-panel p {
  font-size: 13px;
  color: #d2d2d2;
  margin-bottom: 12px;
}

/* Form styles inside dark panel */
.service-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-field {
  flex: 1 1 0;
  min-width: min(220px, 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-form label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #bbbbbb;
}

.service-form input,
.service-form textarea {
  border-radius: 10px;
  border: 1px solid #333;
  padding: 9px 10px;
  background: rgba(0,0,0,0.35);
  color: #f5f5f5;
  font-size: 13px;
  outline: none;
}

.service-form input:focus,
.service-form textarea:focus {
  border-color: #f5c32e;
}

.service-submit-btn {
  align-self: flex-start;
  margin-top: 4px;
  padding: 10px 24px;
  border-radius: 999px;
  border: none;
  background: #f5c32e;
  color: #111;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.service-submit-btn:hover {
  background: #ffd95e;
  transform: translateY(-1px);
}

/* ===== COVERAGE / SHIPPING ===== */

.services-coverage {
  padding: 60px 0 70px;
  background: #ffffff;
}

.coverage-title {
  font-size: 26px;
  margin-bottom: 6px;
}

.coverage-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 22px;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.coverage-column {
  border-radius: 14px;
  border: 1px solid #eee;
  padding: 16px 18px;
  background: #fafafa;
}

.coverage-column h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.coverage-column p {
  font-size: 13px;
  color: #555;
}

.coverage-bottom h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.coverage-bottom p {
  font-size: 13px;
  color: #555;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .services-hero {
    padding: 60px 0 40px;
  }

  .services-title {
    font-size: 30px;
  }

  .services-hero-grid {
    grid-template-columns: 1fr;
  }

  .zip-checker {
    flex-direction: column;
    align-items: flex-start;
  }
}
