/* =========================
   CONTACT PAGE STYLES
========================= */

/* Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a0a 100%);
  padding: 140px 0 60px;
  text-align: center;
}

.contact-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 52px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 15px 0;
  background: linear-gradient(180deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 18px;
}

/* Contact Section */
.contact-section {
  background: #000;
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: stretch;
}

/* Contact Form */
.contact-form-wrapper {
  background: #111;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.05);
}

.form-header {
  margin-bottom: 30px;
}

.form-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  color: #fff;
  margin: 0 0 10px;
}

.form-header p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin: 0;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #c8d300;
  background: rgba(200, 211, 0, 0.05);
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23c8d300'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
  padding-right: 45px;
}

.contact-form select option {
  background: #111;
  color: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 35px;
  background: #c8d300;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form .submit-btn:hover {
  background: #dae630;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(200, 211, 0, 0.3);
}

.contact-form .submit-btn svg {
  width: 18px;
  height: 18px;
}

/* Contact Info */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  justify-content: space-between;
}

.info-card {
  background: #111;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  gap: 20px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: rgba(200, 211, 0, 0.2);
  transform: translateX(5px);
}

.info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 211, 0, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  color: #c8d300;
}

.info-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: #fff;
  margin: 0 0 8px;
}

.info-content p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.info-content a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: #c8d300;
}

.info-link {
  display: inline-block;
  margin-top: 10px;
  color: #c8d300 !important;
  font-size: 13px;
  font-weight: 600;
}

/* Social Card */
.social-card {
  background: linear-gradient(135deg, rgba(200, 211, 0, 0.1) 0%, rgba(200, 211, 0, 0.02) 100%);
  border: 1px solid rgba(200, 211, 0, 0.2);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
}

.social-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: #fff;
  margin: 0 0 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #c8d300;
  transform: translateY(-3px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  transition: fill 0.3s ease;
}

.social-links a:hover svg {
  fill: #000;
}

/* Map Section */
.map-section {
  background: #0a0a0a;
  padding: 0;
}

.map-container {
  width: 100%;
  height: 450px;
  filter: grayscale(100%) invert(92%) contrast(83%);
}

.map-container iframe {
  display: block;
}

/* Equal Height Cards */
.info-card {
  flex: 1;
}

.social-card {
  flex-shrink: 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 120px 0 40px;
  }
  
  .contact-hero h1 {
    font-size: 36px;
  }
  
  .contact-section {
    padding: 50px 0;
  }
  
  .contact-form-wrapper {
    padding: 25px;
  }
  
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .form-header h2 {
    font-size: 24px;
  }
  
  .info-card {
    padding: 20px;
  }
  
  .map-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 28px;
  }
  
  .info-card {
    flex-direction: column;
    text-align: center;
  }
  
  .info-icon {
    margin: 0 auto;
  }
}