:root {
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.08);
  --accent: #6366f1;
}

body {
  background-color: #0e0612;
  font-family: "Inter Tight", sans-serif;
}

.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 10px;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  color: white;
  transition: all 0.3s ease;
}

/* Native select list: avoid white panel + white text (Windows/Chrome). */
select.form-input {
  color-scheme: dark;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
}

select.form-input option,
select.form-input optgroup {
  background-color: #0e0612;
  color: #ffffff;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.find-us-container {
  background: #0a040d;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  padding: 10px;
  margin-top: 100px;
}

.location-tag {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
}

.find-us-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.address-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.map-frame-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 450px;
  position: relative;
}

.google-maps-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  margin-top: 30px;
  float: right;
  transition: all 0.3s ease;
}

.google-maps-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 80px;
}

.contact-info-card {
  padding: 30px;
  text-align: center;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: var(--accent);
  font-size: 24px;
}

@media (max-width: 991px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .find-us-title {
    font-size: 36px;
  }
}
