/* Contact page specific styles */

/* Contact Hero Section */
.contact-hero {
  text-align: center;
  padding: 60px 0 40px;
}

.contact-hero h1 {
  font-size: 48px;
  letter-spacing: 1px;
  margin: 6px 0 16px;
  color: var(--accent);
  text-shadow: 0 8px 28px rgba(255,74,26,0.12);
}

.contact-hero p {
  color: rgba(255,255,255,0.88);
  font-size: 18px;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.6;
}

/* Main Contact Layout */
.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: start;
}

/* Contact Information Section */
.contact-info-section {
  background: linear-gradient(180deg, var(--card), #0f0f0f);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.contact-info-section:hover {
  border-color: rgba(255,74,26,0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-info-section h2 {
  color: var(--accent);
  font-size: 28px;
  margin: 0 0 24px;
  font-weight: 700;
}

.contact-method {
  margin-bottom: 32px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-method:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.contact-method h3 {
  color: var(--accent);
  font-size: 18px;
  margin: 0 0 12px;
  font-weight: 600;
}

.contact-method p {
  color: rgba(255,255,255,0.9);
  margin: 4px 0;
  font-size: 15px;
  line-height: 1.5;
}

.contact-method a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-method a:hover {
  color: var(--accent-2);
  text-shadow: 0 0 8px rgba(255,74,26,0.3);
}

/* Business Hours */
.business-hours {
  background: rgba(255,74,26,0.05);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,74,26,0.1);
  margin-top: 24px;
}

.business-hours h4 {
  color: var(--accent);
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

/* Social Media Links */
.social-contact-section {
  margin-top: 32px;
}

.social-contact-section h3 {
  color: var(--accent);
  font-size: 18px;
  margin: 0 0 16px;
  font-weight: 600;
}

.social-contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.social-contact-link:hover {
  color: var(--accent);
  background: rgba(255,74,26,0.1);
  border-color: rgba(255,74,26,0.2);
  transform: translateX(4px);
}

.social-contact-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(180deg, rgba(255,74,26,0.04), transparent);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255,74,26,0.08);
  transition: all 0.3s ease;
}

.contact-form-section:hover {
  border-color: rgba(255,74,26,0.15);
  background: linear-gradient(180deg, rgba(255,74,26,0.06), transparent);
}

.contact-form-section h2 {
  color: var(--accent);
  font-size: 28px;
  margin: 0 0 16px;
  font-weight: 700;
}

.contact-form-section p {
  color: rgba(255,255,255,0.8);
  margin: 0 0 32px;
  line-height: 1.6;
}

/* Enhanced Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,74,26,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form-submit {
  background: var(--accent);
  color: #111;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}

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

.form-submit:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,74,26,0.4);
}

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

.form-submit:active {
  transform: translateY(0);
}

/* Location/Map Section */
.location-section {
  margin-top: 60px;
  text-align: center;
}

.location-section h2 {
  color: var(--accent);
  font-size: 32px;
  margin: 0 0 16px;
  font-weight: 700;
}

.location-section p {
  color: rgba(255,255,255,0.8);
  margin: 0 0 32px;
  font-size: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.map-placeholder {
  background: linear-gradient(135deg, var(--card), #0f0f0f);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  transition: all 0.3s ease;
}

.map-placeholder:hover {
  border-color: rgba(255,74,26,0.2);
  background: linear-gradient(135deg, rgba(255,74,26,0.05), var(--card));
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-main {
    gap: 50px;
  }
  
  .contact-info-section,
  .contact-form-section {
    padding: 36px;
  }
}

@media (max-width: 968px) {
  .contact-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-hero h1 {
    font-size: 36px;
  }
  
  .contact-info-section,
  .contact-form-section {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact-hero {
    padding: 32px 0 24px;
  }
  
  .contact-hero h1 {
    font-size: 28px;
  }
  
  .contact-hero p {
    font-size: 16px;
  }
  
  .contact-info-section,
  .contact-form-section {
    padding: 24px;
  }
  
  .contact-main {
    gap: 28px;
    margin-top: 32px;
  }
  
  .contact-info-section h2,
  .contact-form-section h2 {
    font-size: 24px;
  }
  
  .contact-method h3,
  .social-contact-section h3 {
    font-size: 16px;
  }
  
  .location-section {
    margin-top: 40px;
  }
  
  .location-section h2 {
    font-size: 28px;
  }
  
  .map-placeholder {
    height: 250px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 24px 0 20px;
  }
  
  .contact-hero h1 {
    font-size: 24px;
  }
  
  .contact-hero p {
    font-size: 15px;
  }
  
  .contact-info-section,
  .contact-form-section {
    padding: 20px;
  }
  
  .contact-main {
    gap: 24px;
    margin-top: 24px;
  }
  
  .contact-info-section h2,
  .contact-form-section h2 {
    font-size: 20px;
  }
  
  .contact-method {
    padding: 16px 0;
    margin-bottom: 24px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 14px;
  }
  
  .form-submit {
    padding: 14px 24px;
    font-size: 15px;
  }
  
  .social-contact-links {
    gap: 8px;
  }
  
  .social-contact-link {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .business-hours {
    padding: 16px;
  }
  
  .hours-list li {
    font-size: 13px;
  }
  
  .location-section h2 {
    font-size: 24px;
  }
  
  .map-placeholder {
    height: 200px;
    font-size: 14px;
  }
}
