/* ==========================================
   CONTACT US PAGE - DIOR LUXURY STYLE
   ========================================== */

/* Contact Hero */
.contact-hero-dior {
  position: relative;
  height: 450px;
  background: linear-gradient(135deg, #2c2c2c 0%, #444 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/img/contact-pattern.png') center/cover;
  opacity: 0.1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-hero-tag {
  display: inline-block;
  padding: 8px 25px;
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.contact-hero-title {
  font-size: 64px;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.contact-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  letter-spacing: 1px;
}

/* Contact Intro */
.contact-intro-dior {
  padding: 100px 0 60px;
  background: white;
}

.contact-intro-text {
  text-align: center;
  font-size: 18px;
  color: #666;
  line-height: 1.9;
  max-width: 800px;
  margin: 30px auto 0;
  font-weight: 300;
}

/* Contact Cards */
.contact-cards-dior {
  padding: 60px 0 100px;
  background: white;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 60px;
}

.contact-card-dior {
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.03), rgba(255, 107, 53, 0.03));
  padding: 60px 50px;
  border: 1px solid #f0f0f0;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.contact-card-dior::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff8c42, #ff6b35);
  transition: width 0.5s ease;
}

.contact-card-dior:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.contact-card-dior:hover::before {
  width: 100%;
}

.contact-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  border-radius: 50%;
}

.contact-card-icon i {
  font-size: 32px;
  color: white;
}

.contact-card-title {
  font-size: 26px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
  text-align: center;
  letter-spacing: 0.5px;
}

.contact-card-desc {
  font-size: 15px;
  color: #666;
  text-align: center;
  margin-bottom: 35px;
  line-height: 1.7;
}

.contact-card-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: white;
  border-radius: 0;
  transition: all 0.3s ease;
}

.contact-detail-item:hover {
  background: rgba(255, 140, 66, 0.05);
  transform: translateX(5px);
}

.contact-detail-item i {
  font-size: 18px;
  color: #ff8c42;
  width: 25px;
}

.contact-detail-item a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-detail-item a:hover {
  color: #ff8c42;
}

.contact-detail-item span {
  color: #666;
  font-size: 15px;
}

.contact-hours {
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
  margin-top: 10px;
}

/* Social Media Section */
.contact-social-dior {
  padding: 100px 0;
  background: linear-gradient(180deg, #fdfbf7 0%, #ffffff 100%);
}

.contact-social-text {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin: 20px 0 50px;
}

.contact-social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.contact-social-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 2px solid #f0f0f0;
  transition: all 0.4s ease;
  text-decoration: none;
}

.contact-social-icon i {
  font-size: 28px;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.contact-social-icon:hover {
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  border-color: #ff8c42;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 140, 66, 0.3);
}

.contact-social-icon:hover i {
  color: white;
  transform: scale(1.1);
}

/* Contact Form */
.contact-form-dior {
  padding: 100px 0;
  background: white;
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.03), rgba(255, 107, 53, 0.03));
  padding: 80px 70px;
  border: 1px solid #f0f0f0;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-form-title {
  font-size: 38px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.contact-form-subtitle {
  font-size: 16px;
  color: #666;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.contact-form-group {
  margin-bottom: 30px;
}

.contact-form-label {
  display: block;
  font-size: 13px;
  color: #1a1a1a;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-form-input,
.contact-form-textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e0e0e0;
  background: white;
  font-size: 15px;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
  outline: none;
  border-color: #ff8c42;
  box-shadow: 0 0 0 4px rgba(255, 140, 66, 0.1);
}

.contact-form-textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form-submit {
  width: 100%;
  padding: 20px 40px;
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  color: white;
  border: 2px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.contact-form-submit:hover {
  background: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-form-submit i {
  transition: transform 0.3s ease;
}

.contact-form-submit:hover i {
  transform: translateX(5px);
}

/* Map Section */
.contact-map-dior {
  padding: 100px 0;
  background: linear-gradient(180deg, #fdfbf7 0%, #ffffff 100%);
}

.contact-map-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin: 20px 0 50px;
}

.contact-map-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  height: 500px;
  border: 2px solid #f0f0f0;
  overflow: hidden;
}

.contact-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3);
  transition: filter 0.4s ease;
}

.contact-map-wrapper:hover .contact-map-iframe {
  filter: grayscale(0);
}

/* Final CTA */
.contact-final-cta {
  padding: 80px 0;
  background: #1a1a1a;
}

.contact-final-text {
  text-align: center;
  font-size: 24px;
  color: white;
  font-weight: 300;
  letter-spacing: 1px;
  font-style: italic;
}

/* Responsive Contact Page */
@media (max-width: 992px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero-dior {
    height: 350px;
  }
  
  .contact-hero-title {
    font-size: 48px;
  }
  
  .contact-intro-dior,
  .contact-cards-dior,
  .contact-social-dior,
  .contact-form-dior,
  .contact-map-dior {
    padding: 60px 0;
  }
  
  .contact-card-dior {
    padding: 40px 30px;
  }
  
  .contact-form-wrapper {
    padding: 50px 30px;
  }
  
  .contact-form-title {
    font-size: 28px;
  }
  
  .contact-map-wrapper {
    height: 400px;
  }
}


/* Social Media Section */
.contact-social-dior {
  padding: 100px 0;
  background: linear-gradient(180deg, #fdfbf7 0%, #ffffff 100%);
}

/* Added academy gallery styles for the new image showcase section */
/* Academy Gallery Section */
.academy-gallery-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.02), rgba(255, 107, 53, 0.02));
}

.academy-gallery-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin: 20px auto 60px;
  max-width: 600px;
  line-height: 1.7;
}

.academy-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.academy-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  height: 400px;
  cursor: pointer;
  border: 1px solid #f0f0f0;
  transition: all 0.5s ease;
}

.academy-item-large {
  grid-row: span 2;
  height: 830px;
}

.academy-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
  filter: brightness(0.95);
}

.academy-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
  opacity: 0;
  transition: all 0.5s ease;
}

.academy-gallery-item:hover .academy-gallery-overlay {
  opacity: 1;
}

.academy-gallery-item:hover .academy-gallery-img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.academy-gallery-item:hover {
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.academy-overlay-content {
  color: white;
  transform: translateY(30px);
  transition: all 0.5s ease 0.1s;
}

.academy-gallery-item:hover .academy-overlay-content {
  transform: translateY(0);
}

.academy-overlay-content i {
  font-size: 36px;
  color: #ff8c42;
  margin-bottom: 15px;
  display: block;
}

.academy-overlay-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.academy-overlay-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-weight: 300;
}

/* Responsive Academy Gallery */
@media (max-width: 992px) {
  .academy-gallery-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .academy-item-large {
    grid-row: span 1;
    height: 450px;
  }

  .academy-gallery-item {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .academy-gallery-section {
    padding: 60px 0;
  }

  .academy-gallery-item {
    height: 300px;
  }

  .academy-item-large {
    height: 400px;
  }

  .academy-gallery-overlay {
    padding: 25px;
  }

  .academy-overlay-content h3 {
    font-size: 20px;
  }

  .academy-overlay-content i {
    font-size: 28px;
  }
}
