/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--brand-red);
  border: 1px solid var(--brand-red);
  border-radius: 50px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(255, 10, 6, 0.3);
}

.contact-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.contact-hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Main Contact Section */
.contact-main-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* Contact Methods Sidebar */
.contact-methods-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-header {
  margin-bottom: 8px;
}

.sidebar-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px 0;
}

.sidebar-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.contact-methods-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method-item {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-method-item:hover {
  box-shadow: 0 8px 32px rgba(255, 10, 6, 0.15);
  transform: translateY(-2px);
  border-color: var(--brand-red);
}

.contact-method-item {
  display: flex;
  gap: 20px;
}

.method-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.method-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 16px 0;
}

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

.method-link-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.link-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.link-value {
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.link-value:hover {
  color: var(--brand-red);
}

/* Company Info Card */
.company-info-card {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  border-radius: 12px;
  padding: 32px;
  color: #ffffff;
  margin-top: 8px;
}

.company-info-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: #ffffff;
}

.company-details-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.company-detail-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.detail-label {
  font-size: 13px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.detail-value {
  font-size: 16px;
  font-weight: 500;
}

/* Contact Form Sidebar */
.contact-form-sidebar {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 10, 6, 0.1);
}

.form-header {
  margin-bottom: 32px;
}

.form-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px 0;
}

.form-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.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;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 4px;
}

.required {
  color: var(--brand-red);
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(255, 10, 6, 0.1);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 4L6 8L10 4" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--brand-red);
}

.form-checkbox-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox-label a {
  color: var(--brand-red);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.form-checkbox-label a:hover {
  color: var(--brand-red-dark);
  text-decoration: underline;
}

.form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 10, 6, 0.3);
}

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

.form-submit-btn svg {
  transition: transform 0.3s ease;
}

.form-submit-btn:hover svg {
  transform: translateX(4px);
}

/* Press & Media Section */
.press-media-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.press-media-card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border: 2px solid rgba(255, 10, 6, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.press-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.press-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 12px 0;
}

.press-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-sidebar {
    order: -1;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 0 60px;
  }

  .contact-hero-title {
    font-size: 36px;
  }

  .contact-hero-description {
    font-size: 16px;
  }

  .contact-main-section {
    padding: 60px 0;
  }

  .contact-form-sidebar {
    padding: 32px 24px;
  }

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

  .sidebar-header h2,
  .form-header h2 {
    font-size: 28px;
  }

  .press-media-card {
    flex-direction: column;
    padding: 32px 24px;
  }

  .contact-method-item {
    flex-direction: column;
  }

  .method-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .contact-hero-title {
    font-size: 28px;
  }

  .contact-form-sidebar {
    padding: 24px 20px;
  }

  .company-info-card {
    padding: 24px 20px;
  }

  .press-media-card {
    padding: 24px 20px;
  }
}
