/* Contact Page Styles *//* Contact Page Specific Styles */

.page-header {

/* Hero Section */    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 

.contact-hero {                url('/images/contact-bg.jpg') no-repeat center center/cover;

  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);    height: 300px;

  padding: 80px 0 60px;    display: flex;

  position: relative;    align-items: center;

  overflow: hidden;}

}

.form-control, .form-select {

.contact-hero::before {    background-color: rgba(255, 255, 255, 0.1);

  content: '';    border: 1px solid var(--bs-warning);

  position: absolute;    color: var(--bs-body-color);

  top: 0;}

  left: 0;

  right: 0;.form-control:focus, .form-select:focus {

  bottom: 0;    background-color: rgba(255, 255, 255, 0.2);

  background: url('../images/construction-pattern.jpg') center/cover;    border-color: var(--bs-warning);

  opacity: 0.1;    color: var(--bs-body-color);

  z-index: 0;    box-shadow: 0 0 0 0.25rem rgba(218, 165, 32, 0.25);

}}



.hero-overlay {#map {

  position: absolute;    height: 450px;

  top: 0;    width: 100%;

  left: 0;    filter: grayscale(50%) contrast(110%);

  right: 0;}

  bottom: 0;

  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 45, 45, 0.9) 100%);@media (max-width: 768px) {

  z-index: 1;    .page-header {

}        height: auto;

        padding: 80px 0;

.contact-hero .container {    }

  position: relative;    

  z-index: 2;    #map {

}        height: 300px;

    }

.min-vh-70 {}
  min-height: 70vh;
}

.tracking-wide {
  letter-spacing: 2px;
}

.contact-hero h1 {
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
}

.contact-hero .lead {
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.contact-hero .btn {
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
  transition: all 0.3s ease;
}

.contact-hero .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(199, 160, 59, 0.3);
}

/* Contact Info Cards */
.contact-info-card {
  padding: 40px 20px;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-10px);
}

.contact-info-card .icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #C7A03B 0%, #d4b356 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(199, 160, 59, 0.3);
}

.contact-info-card:hover .icon-wrapper {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(199, 160, 59, 0.5);
}

.contact-info-card .icon-wrapper i {
  font-size: 2rem;
  color: white;
}

/* Contact Sidebar */
.contact-sidebar {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.tracking-wide {
  letter-spacing: 2px;
}

/* Feature Items */
.feature-item {
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: #f8f9fa;
  transform: translateX(5px);
}

.feature-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.feature-text h6 {
  margin-bottom: 5px;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Form Styling */
.form-label {
  color: #495057;
  margin-bottom: 8px;
}

.input-group-text {
  background: #f8f9fa;
  border-right: none;
  color: #6c757d;
}

.form-control,
.form-select {
  border-left: none;
  padding: 12px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-group .form-control,
.input-group .form-select {
  border-left: 1px solid #dee2e6;
}

.form-control:focus,
.form-select:focus {
  border-color: #C7A03B;
  box-shadow: 0 0 0 0.2rem rgba(199, 160, 59, 0.25);
}

.input-group:focus-within .input-group-text {
  border-color: #C7A03B;
  background: rgba(199, 160, 59, 0.1);
  color: #C7A03B;
}

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

/* Form Check */
.form-check-input:checked {
  background-color: #C7A03B;
  border-color: #C7A03B;
}

.form-check-input:focus {
  border-color: #C7A03B;
  box-shadow: 0 0 0 0.2rem rgba(199, 160, 59, 0.25);
}

/* Submit Button */
.contact-form button[type="submit"] {
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
}

.contact-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(199, 160, 59, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-sidebar {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 0 40px;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .min-vh-70 {
    min-height: auto;
    padding: 40px 0;
  }

  .contact-info-card {
    margin-bottom: 30px;
  }

  .contact-sidebar,
  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .feature-item {
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .contact-info-card .icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .contact-info-card .icon-wrapper i {
    font-size: 1.5rem;
  }

  .contact-sidebar,
  .contact-form-wrapper {
    padding: 25px 15px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .contact-sidebar,
  .contact-form-wrapper {
    background: #2d2d2d;
  }

  .form-label {
    color: #ced4da;
  }

  .input-group-text {
    background: #1a1a1a;
    color: #adb5bd;
  }

  .form-control,
  .form-select {
    background: #1a1a1a;
    color: white;
    border-color: #495057;
  }

  .form-control:focus,
  .form-select:focus {
    background: #1a1a1a;
    color: white;
  }

  .feature-item:hover {
    background: #1a1a1a;
  }
}
