:root {
    --wayne-ivory: #f9f6f1;
    --wayne-platinum: #bfbfbf;
    --wayne-gold: #d4b46a;
    --wayne-bronze: #b8964c;
    --wayne-midnight: #1a1a1a;
    --wayne-obsidian: #0b0c10;
    --wayne-charcoal: #1f2833;
    --wayne-foreground: #e0e0e0;
  }




/* --------------------------first-section------------------------------------------ */



.whg-contact-hero {
  position: relative;
  height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.whg-contact-bg {
  position: absolute;
  inset: 0;
  background-image: url(../image/contact-hero-CfDxU4C-.jpg);
  background-size: cover;
  background-position: center;
  z-index: 1;
}


.whg-contact-overlay {
  position: absolute;
  inset: 0;
   background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.9),
    rgba(10, 10, 10, 0.8),
    rgba(10, 10, 10, 1)
   ); 
  z-index: 2;
}


.whg-contact-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
}

.whg-contact-title {
  font-size: 3rem;
  font-weight: 700;
  color: #f3f3f3;
  margin-bottom: 20px;
  opacity: 0;
  animation: whgFadeIn 1.2s ease forwards;
}

@media (min-width: 768px) {
  .whg-contact-title {
    font-size: 4.5rem;
  }
}

.whg-contact-subtitle {
  font-size: 1.3rem;
  color: var(--wayne-gold);
  max-width: 700px;
  margin: 0 auto;
}


@keyframes whgFadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}


/* -------------------------------------------second-section---------------------------------------------- */



#whg-contact-box-section {
  padding: 60px 0;
  background: #1a1a1a; 
}


.whg-contact-box-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}


.whg-contact-box-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .whg-contact-box-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.whg-contact-box-card {
  background: #0f0f0f; 
  border: 1px solid rgba(197, 162, 95, 0.2);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.whg-contact-box-card:hover {
  border-color: #c5a25f; 
}


.whg-contact-box-iconwrap {
  display: inline-flex;
  padding: 16px;
  border-radius: 999px;
  background: rgba(197, 162, 95, 0.1);
  margin-bottom: 16px;
  transition: background 0.3s ease;
}

.whg-contact-box-card:hover .whg-contact-box-iconwrap {
  background: rgba(197, 162, 95, 0.2);
}


.whg-contact-box-icon {
  width: 28px;
  height: 28px;
  stroke: #c5a25f;
}


.whg-contact-box-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 8px;
}


.whg-contact-box-link,
.whg-contact-box-text {
  font-size: 1rem;
  color: var(--wayne-bronze);
  transition: color 0.3s ease;
}
.whg-contact-box-link{
    text-decoration: none;
}

.whg-contact-box-link:hover {
  color: var(--wayne-gold);
}

/* -------------------------------------------form-section-------------------------------------------- */


#whg-form-section {
  padding: 90px 0;
  background: #0b0b0b; 
}


.whg-form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.whg-form-header {
  text-align: center;
  margin-bottom: 48px;
}

.whg-form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 12px;
}

.whg-form-divider {
  width: 100px;
  height: 4px;
  background: #c5a25f;
  margin: 0 auto 20px auto;
  border-radius: 4px;
}

.whg-form-subtext {
  color:var(--wayne-gold);
  font-size: 1.1rem;
}


.whg-form-card {
  background: #1a1a1a; 
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(197, 162, 95, 0.2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.whg-form-textarea::placeholder{
    color: var(--wayne-bronze);
}


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

@media (min-width: 768px) {
  .whg-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.whg-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 8px 0 25px 0;
}


.whg-form-label {
  font-size: 0.9rem;
  color: #f5f5f5;
  font-weight: 600;
}


.whg-form-input,
.whg-form-textarea {
  background: #0b0b0b;
  border: 1px solid rgba(197, 162, 95, 0.3);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 1rem;
  transition: 0.3s ease;
}

/* .whg-form-input::placeholder,
.whg-form-textarea::placeholder {
  color: rgba(220, 220, 220, 0.4);
} */
.whg-form-input::placeholder{
    color: var(--wayne-bronze);
}

.whg-form-input:focus,
.whg-form-textarea:focus {
  border-color: #c5a25f;
  outline: none;
}


.whg-form-textarea {
  min-height: 150px;
  resize: vertical;
}


.whg-form-submit {
  background: #d4b46a;
  color: #0b0b0b;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px;
  width: 100%;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  transition: 0.3s ease;
  box-shadow: 0 0 20px rgba(212, 180, 106, 0.3);
}

.whg-form-submit:hover {
  background: #b8904d;
  box-shadow: 0 0 30px rgba(212, 180, 106, 0.5);
}


.whg-form-submit-icon {
  stroke: #0b0b0b;
}


