/**
 * BlueCart Contact Page - Premium Enhanced Styles
 * Premium contact page styling using unified blue theme
 */

/* ========================================
   PREMIUM CONTACT PAGE LAYOUT
   ======================================== */

.contact-page {
  background: var(--gradient-background-light);
  min-height: 100vh;
}

.contact-main {
  position: relative;
}

/* ========================================
   PREMIUM HERO SECTION
   ======================================== */

.contact-hero {
  position: relative;
  background: var(--bluecart-gradient);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(46, 134, 193, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 242, 254, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
}

.hero-badge svg {
  color: var(--bluecart-secondary);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin: 0 0 20px;
  color: white;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin: 0 0 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0 0;
  flex-wrap: wrap;
}

.hero-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.stat-icon {
  font-size: 1.5rem;
}

.stat-text {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

/* ========================================
   PREMIUM CONTACT METHODS SECTION
   ======================================== */

.contact-methods-section {
  padding: 80px 0;
  background: var(--slate-50);
}

.methods-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.contact-method.premium {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(46, 134, 193, 0.1);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.contact-method.premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bluecart-gradient);
}

.contact-method.premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(46, 134, 193, 0.12);
}

.method-icon {
  width: 80px;
  height: 80px;
  background: var(--bluecart-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  box-shadow: 0 8px 20px rgba(46, 134, 193, 0.3);
}

.contact-method h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px;
}

.contact-method p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 20px;
}

.contact-info {
  font-weight: 600;
  color: var(--bluecart-primary);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.contact-method .btn {
  background: var(--bluecart-gradient);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 134, 193, 0.3);
}

.contact-method .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 134, 193, 0.4);
}

.contact-method.whatsapp .btn.btn-success {
  background: linear-gradient(135deg, var(--bluecart-success) 0%, #1e7e34 100%);
}

/* ========================================
   PREMIUM CONTACT FORM SECTION
   ======================================== */

.contact-form-section {
  padding: 80px 0;
  background: white;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-form-wrapper {
  background: var(--slate-50);
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(46, 134, 193, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.form-input {
  padding: 16px;
  border: 2px solid var(--slate-200);
  border-radius: 12px;
  font-size: 1rem;
  background: white;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: var(--bluecart-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 134, 193, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.submit-btn {
  background: var(--bluecart-gradient);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 134, 193, 0.3);
  cursor: pointer;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 134, 193, 0.4);
}

/* ========================================
   BUSINESS HOURS SECTION
   ======================================== */

.business-hours-section {
  padding: 80px 0;
  background: var(--slate-50);
}

.hours-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.hours-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(46, 134, 193, 0.1);
}

.hours-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-align: center;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--slate-100);
}

.hours-item:last-child {
  border-bottom: none;
}

.day {
  font-weight: 500;
  color: var(--text-secondary);
}

.time {
  font-weight: 600;
  color: var(--bluecart-primary);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 0 60px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-form-wrapper {
    padding: 40px 20px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .hours-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}
