/* Contacts page styles */
.contacts-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(99, 102, 241, 0.05));
  backdrop-filter: blur(8px);
}

.contacts-hero::before {
  content: '';
  position: absolute;
  top: clamp(-2.5rem, -7vw, -1.5rem);
  left: 50%;
  transform: translate(-50%, 0);
  width: clamp(170px, 28vw, 240px);
  height: clamp(170px, 28vw, 240px);
  background: url("../img/logo.da7f3328173a.svg") center/contain no-repeat;
  opacity: 0.14;
  pointer-events: none;
  /* filter: drop-shadow(...) REMOVED for performance */
  z-index: 0;
}

.contacts-hero .hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.contacts-hero .hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(99, 102, 241, 0.2) 0%, transparent 50%);
}

.contacts-hero .hero-pattern {
  position: absolute;
  inset: 0;
  background: url("../img/noise_optimized.ec0031a6b539.png") repeat;
  opacity: 0.1;
}

.contacts-hero .hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contacts-hero .hero-sparkles .sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(45deg, #8b5cf6, #6366f1);
  border-radius: 50%;
  animation: sparkleFloat 3s ease-in-out infinite;
}

.contacts-hero .sparkle-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.contacts-hero .sparkle-2 {
  top: 30%;
  right: 15%;
  animation-delay: 0.5s;
}

.contacts-hero .sparkle-3 {
  top: 60%;
  left: 20%;
  animation-delay: 1s;
}

.contacts-hero .sparkle-4 {
  top: 70%;
  right: 25%;
  animation-delay: 1.5s;
}

.contacts-hero .sparkle-5 {
  top: 40%;
  left: 5%;
  animation-delay: 2s;
}

.contacts-hero .sparkle-6 {
  top: 80%;
  right: 10%;
  animation-delay: 2.5s;
}

.contacts-hero .hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5rem) 1.5rem clamp(2.5rem, 6vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.contacts-hero .hero-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(99, 102, 241, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b5cf6;
  position: relative;
  z-index: 2;
}

.contacts-hero .hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.contacts-hero .hero-subtitle {
  font-size: 1.25rem;
  color: rgba(232, 233, 236, 0.8);
  position: relative;
  z-index: 2;
}

/* Contact Methods */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-method {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.contact-method:hover::before {
  left: 100%;
}

.contact-method:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.method-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(99, 102, 241, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b5cf6;
  flex-shrink: 0;
}

.method-content {
  flex: 1;
}

.method-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--tc-text);
}

.phone-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.show-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 0.5rem;
  color: #8b5cf6;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.show-phone-btn:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-1px);
}

.phone-number {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.phone-number:hover {
  color: #059669;
  text-decoration: underline;
}

.contact-link {
  color: #8b5cf6;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #7c3aed;
  text-decoration: underline;
}

/* Store Locations */
.store-locations {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  padding: 3rem;
  margin-bottom: 3rem;
}

.locations-header {
  text-align: center;
  margin-bottom: 3rem;
}

.locations-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.locations-subtitle {
  font-size: 1.1rem;
  color: rgba(232, 233, 236, 0.8);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.location-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.location-card:hover::before {
  left: 100%;
}

.location-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.location-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(99, 102, 241, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b5cf6;
  margin-bottom: 1.5rem;
}

.location-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--tc-text);
}

.location-address {
  font-size: 1rem;
  color: rgba(232, 233, 236, 0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.location-address.blurred {
  filter: blur(3px);
  user-select: none;
  pointer-events: none;
  opacity: 0.6;
}

.location-hours {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hours-label {
  font-size: 0.9rem;
  color: rgba(232, 233, 236, 0.6);
  font-weight: 500;
}

.hours-time {
  font-size: 1rem;
  color: #10b981;
  font-weight: 600;
}

/* Contact Form */
.contact-form-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  padding: 3rem;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-subtitle {
  font-size: 1.1rem;
  color: rgba(232, 233, 236, 0.8);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--tc-text);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  color: var(--tc-text);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  border: 1px solid rgba(139, 92, 246, 0.5);
  border-radius: 1rem;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .contacts-hero {
    min-height: 50vh;
    padding: 2rem 1rem;
  }

  .contacts-hero .hero-title {
    font-size: 2.5rem;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-method {
    padding: 1.5rem;
  }

  .store-locations,
  .contact-form-section {
    padding: 2rem 1.5rem;
  }

  .locations-title,
  .form-title {
    font-size: 2rem;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
  }
}

