/* ========== CONTACT US PAGE SPECIFIC STYLES ========== */

/* Contact Hero Section with Three.js Background */
.contact-hero {
  position: relative;
  height: 65vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
}

#contactHeroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInUp 1.2s ease;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 14px;
  letter-spacing: 1px;
}

.breadcrumbs a {
  color: var(--white);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs .separator {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs .current {
  color: var(--gold);
  font-weight: 600;
}

.contact-hero-title {
  font-size: 64px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 
    2px 2px 8px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(212, 162, 74, 0.5);
  letter-spacing: 3px;
}

.contact-hero-subtitle {
  font-size: 18px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Contact Container */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Contact Info Cards Section */
.contact-info-section {
  padding: 80px 20px;
  background: var(--light-gray);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-info-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 4px solid transparent;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-top-color: var(--gold);
}

.contact-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: var(--gold);
  transition: all 0.4s ease;
}

.contact-info-card:hover .contact-card-icon {
  transform: rotateY(360deg);
  box-shadow: 0 8px 25px rgba(0, 51, 102, 0.3);
}

.contact-info-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-detail {
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
  word-break: break-word;
}

.contact-sub {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.btn-contact-action {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-contact-action:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
}

/* Contact Form Section */
.contact-form-section {
  padding: 100px 20px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.contact-form-left h2 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
}

.contact-form-left h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.form-intro {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.contact-detail-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-left-color: var(--gold);
  transform: translateX(5px);
}

.detail-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold) 0%, #c49440 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-detail-item:hover .detail-icon {
  transform: rotateY(360deg);
  box-shadow: 0 8px 20px rgba(212, 162, 74, 0.4);
}

.detail-content {
  flex: 1;
}

.detail-content h4 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 700;
}

.detail-content p {
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 5px;
  word-break: break-word;
}

.detail-content span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

/* Contact Form Right */
.contact-form-right {
  background: rgba(255, 255, 255, 0.95);
  padding: 45px 40px;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.main-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label i {
  color: var(--gold);
  font-size: 13px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 162, 74, 0.1);
}

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit-contact {
  background: var(--gold);
  color: var(--white);
  padding: 16px 40px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.btn-submit-contact:hover {
  background: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 51, 102, 0.3);
}

.btn-submit-contact i {
  font-size: 16px;
}

/* Why Contact Us Section */
.why-contact-section {
  padding: 100px 20px;
  background: var(--white);
}

.section-title.centered {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

.section-title.centered::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.why-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.why-contact-card {
  text-align: center;
  padding: 40px 25px;
  background: var(--light-gray);
  border-radius: 12px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.why-contact-card:hover {
  background: var(--white);
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-contact-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.why-contact-card:hover .why-contact-number {
  opacity: 0.6;
}

.why-contact-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 15px;
  font-weight: 700;
}

.why-contact-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Scroll Animations */
[data-scroll] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-scroll].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-hero-title {
    font-size: 42px;
  }

  .contact-hero-subtitle {
    font-size: 15px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-right {
    padding: 35px 30px;
  }

  .why-contact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    height: 55vh;
    min-height: 380px;
  }

  .breadcrumbs {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .contact-hero-title {
    font-size: 32px;
  }

  .contact-hero-subtitle {
    font-size: 13px;
  }

  .contact-info-section,
  .contact-form-section,
  .why-contact-section,
  .map-section {
    padding: 60px 15px;
  }

  .contact-form-left h2 {
    font-size: 28px;
  }

  .contact-form-right {
    padding: 30px 20px;
  }

  .btn-submit-contact {
    padding: 14px 30px;
    font-size: 14px;
  }
}
