/* Contact Page Styles */

.contact-header {
  text-align: center;
  padding: 140px 20px 60px;
  max-width: 700px;
  margin: 0 auto;
}

.contact-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-header p {
  font-size: 18px;
  color: #999;
}

/* Contact Section */
.contact-section {
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0 20px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
}

body.light-theme .contact-form-wrapper {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

body.light-theme .form-group label {
  color: #111;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #22c55e;
  background: rgba(255, 255, 255, 0.08);
}

body.light-theme .form-group input,
body.light-theme .form-group textarea {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.2);
  color: #111;
}

body.light-theme .form-group input:focus,
body.light-theme .form-group textarea:focus {
  background: rgba(0, 0, 0, 0.05);
  border-color: #22c55e;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 14px 20px;
  background: #22c55e;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

.send-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

/* Contact Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 25px;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
}

body.light-theme .info-card {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .info-card:hover {
  border-color: rgba(0, 0, 0, 0.3);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  stroke: #22c55e;
  stroke-width: 2;
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
}

body.light-theme .info-card h3 {
  color: #111;
}

.info-card p {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 5px;
}

body.light-theme .info-card p {
  color: #666;
}

.info-detail {
  font-size: 13px;
  color: #777;
  font-style: italic;
}

.info-link {
  color: #22c55e;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  transition: gap 0.3s ease;
}

.info-link:hover {
  gap: 10px;
}

.social-links-vertical {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.social-links-vertical a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.social-links-vertical a:hover {
  color: #22c55e;
  transform: translateX(5px);
}

body.light-theme .social-links-vertical a {
  color: #666;
}

body.light-theme .social-links-vertical a:hover {
  color: #22c55e;
}

/* Quick Links Section */
.quick-links-section {
  max-width: 1200px;
  margin: 80px auto 100px;
  padding: 0 20px;
  text-align: center;
}

.quick-links-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.quick-link-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.quick-link-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

body.light-theme .quick-link-card {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .quick-link-card:hover {
  border-color: rgba(0, 0, 0, 0.3);
  background: #fafafa;
}

.quick-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 15px;
}

.quick-link-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #fff;
}

body.light-theme .quick-link-card h3 {
  color: #111;
}

.quick-link-card p {
  font-size: 14px;
  color: #aaa;
}

body.light-theme .quick-link-card p {
  color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .contact-header h1 {
    font-size: 36px;
  }

  .contact-form-wrapper {
    padding: 30px 25px;
  }

  .contact-info {
    flex-direction: column;
  }

  .quick-links-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .contact-header {
    padding: 120px 20px 40px;
  }

  .contact-header h1 {
    font-size: 28px;
  }

  .contact-form-wrapper {
    padding: 25px 20px;
  }

  .quick-links-grid {
    grid-template-columns: 1fr;
  }
}
