/* Optinex Contact Page Styles */
.contact-page {
  padding: 140px 6% 100px;
  background: #060606;
  min-height: 100vh;
  position: relative;
}

.contact-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.contact-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(191, 161, 129, 0.08);
  border: 1px solid rgba(191, 161, 129, 0.25);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-title em {
  color: var(--gold);
  font-style: italic;
}

.contact-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

/* Contact Info Cards */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 70px;
}

.contact-card {
  background: rgba(191, 161, 129, 0.03);
  border: 1px solid rgba(191, 161, 129, 0.15);
  border-radius: 12px;
  padding: 30px 24px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(191, 161, 129, 0.06);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(191, 161, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card-title {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-card-value {
  font-size: 16px;
  color: var(--white);
  line-height: 1.6;
}

.contact-card-value a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card-value a:hover {
  color: var(--gold);
}

/* Main Form Section */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 80px;
  align-items: start;
}

@media (max-width: 992px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
  }
}

.contact-sidebar {
  background: rgba(191, 161, 129, 0.02);
  border: 1px solid rgba(191, 161, 129, 0.12);
  border-radius: 16px;
  padding: 40px;
}

.contact-sidebar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-sidebar p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.contact-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}

.contact-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

.contact-feature-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(191, 161, 129, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Contact Form Container */
.contact-form-container {
  background: rgba(191, 161, 129, 0.03);
  border: 1px solid rgba(191, 161, 129, 0.2);
  border-radius: 16px;
  padding: 44px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px) {
  .contact-form-container {
    padding: 24px;
  }
}

.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-form-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

@media (max-width: 600px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(191, 161, 129, 0.25);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(191, 161, 129, 0.25);
  background: rgba(0, 0, 0, 0.7);
}

.contact-form-select option {
  background: #111111;
  color: var(--white);
}

.contact-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #bfa181 0%, #8c6f4e 100%);
  border: none;
  border-radius: 8px;
  color: #060606;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(191, 161, 129, 0.3);
  margin-top: 10px;
}

.contact-submit-btn:hover {
  background: linear-gradient(135deg, #d4b595 0%, #a3825f 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(191, 161, 129, 0.5);
}

/* Regional Office Hubs */
.office-hubs-section {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(191, 161, 129, 0.15);
}

.office-hubs-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 40px;
}

.office-hubs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.office-hub-card {
  background: rgba(191, 161, 129, 0.03);
  border: 1px solid rgba(191, 161, 129, 0.15);
  border-radius: 12px;
  padding: 30px;
}

.office-hub-city {
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin-bottom: 6px;
}

.office-hub-country {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.office-hub-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}
