/* About Page Styles */
.page-header {
  background: linear-gradient(135deg, #511f06 0%, #300404 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(81, 31, 6, 0.8) 0%, rgba(48, 4, 4, 0.9) 100%);
  z-index: 2;
}

.page-header-content {
  position: relative;
  z-index: 3;
}

.page-header h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  font-family: "Playfair Display", serif;
}

.page-header p {
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.breadcrumb {
  background: transparent;
  justify-content: center;
  margin: 0;
}

.breadcrumb-item a {
  color: #d8cfc9;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: white;
}

/* Contact Section - Futuristic Block Design */
.contact-section {
  padding: 6rem 0;
  background: white;
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #511f06, #300404, #ac8c7c);
  z-index: 1;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: #d8cfc9;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(to bottom, #511f06, #300404);
  z-index: 1;
}

.contact-form-wrapper::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #ac8c7c;
  z-index: 1;
}

.contact-form-wrapper h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #300404;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.contact-form-wrapper p {
  font-size: 1.1rem;
  color: #511f06;
  margin-bottom: 3rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Form Styling */
.contact-form {
  position: relative;
  z-index: 2;
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #300404;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-control {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: none;
  background: white;
  color: #300404;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 10px rgba(81, 31, 6, 0.1);
}

.form-control::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #511f06, #ac8c7c);
  transition: width 0.3s ease;
}

.form-control:focus {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(81, 31, 6, 0.2);
}

.form-control:focus::before {
  width: 100%;
}

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

select.form-control {
  cursor: pointer;
}

.form-control::placeholder {
  color: #ac8c7c;
  font-style: italic;
}

/* Submit Button */
.btn-primary-custom {
  background: linear-gradient(135deg, #511f06, #300404);
  color: white;
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.btn-primary-custom::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: #ac8c7c;
  transform: translate(15px, -15px);
  transition: transform 0.3s ease;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(81, 31, 6, 0.4);
}

.btn-primary-custom:hover::before {
  transform: translate(0, 0);
}

.btn-primary-custom i {
  margin-right: 0.8rem;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
  background: #300404;
  color: white;
  padding: 4rem 3rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #ac8c7c, #d8cfc9);
}

.contact-info-wrapper::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 35px;
  height: 35px;
  background: #511f06;
}

.contact-info-wrapper h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #d8cfc9;
  margin-bottom: 3rem;
  position: relative;
}

.contact-info-wrapper h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ac8c7c;
}

/* Contact Items */
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: rgba(81, 31, 6, 0.3);
  position: relative;
  transition: all 0.3s ease;
}

.contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #ac8c7c;
}

.contact-item:hover {
  transform: translateX(10px);
  background: rgba(81, 31, 6, 0.5);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #511f06, #ac8c7c);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  font-size: 1.5rem;
  position: relative;
  flex-shrink: 0;
}

.contact-icon::after {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 16px;
  height: 16px;
  background: #d8cfc9;
}

.contact-details h4 {
  color: #d8cfc9;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.contact-details p {
  color: white;
  opacity: 0.9;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Contact Action Buttons */
.btn-outline-custom,
.btn-success {
  border: 2px solid #ac8c7c;
  color: #ac8c7c;
  background: transparent;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-outline-custom:hover {
  background: #ac8c7c;
  color: white;
  transform: translateY(-2px);
}

.btn-success {
  border-color: #25D366;
  color: #25D366;
}

.btn-success:hover {
  background: #25D366;
  color: white;
  transform: translateY(-2px);
}

/* Business Hours */
.business-hours {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(172, 140, 124, 0.1);
  position: relative;
}

.business-hours::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ac8c7c, #d8cfc9);
}

.business-hours h4 {
  color: #d8cfc9;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(172, 140, 124, 0.3);
  color: white;
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item span:first-child {
  font-weight: 600;
  color: #d8cfc9;
}

.hours-item span:last-child {
  color: #ac8c7c;
  font-weight: 500;
}

/* Map Section */
.map-section {
  padding: 6rem 0;
  background: #d8cfc9;
  position: relative;
}

.map-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #300404;
  margin-bottom: 4rem;
  position: relative;
}

.map-section h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #511f06, #ac8c7c);
}

.map-wrapper {
  position: relative;
  overflow: hidden;
  background: white;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(81, 31, 6, 0.2);
}

.map-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #511f06, #300404, #ac8c7c);
}

.map-wrapper::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: #511f06;
  z-index: 2;
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  transition: all 0.3s ease;
}

.map-wrapper:hover iframe {
  transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 2.5rem 2rem;
  }
  
  .contact-form-wrapper h2 {
    font-size: 2.2rem;
  }
  
  .contact-info-wrapper h3 {
    font-size: 1.8rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin: 0 auto 1.5rem;
  }
  
  .map-section h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 4rem 0;
  }
  
  .map-section {
    padding: 4rem 0;
  }
  
  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 2rem 1.5rem;
  }
}
